diff --git a/.editorconfig b/.editorconfig index 2de5aef7..8247b27b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,7 +13,10 @@ indent_size = 4 trim_trailing_whitespace = true [*.json] -ij_formatter_enabled = false +ij_formatter_enabled = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true # C# files [*.cs] diff --git a/.github/workflows/prevent-main-target.yml b/.github/workflows/prevent-main-target.yml new file mode 100644 index 00000000..3b4d4630 --- /dev/null +++ b/.github/workflows/prevent-main-target.yml @@ -0,0 +1,25 @@ +# This workflow prevents pull requests from targeting the 'main' branch. +name: Prevent PRs Targeting Main +on: + pull_request: + types: + - opened + - reopened + - synchronize + - edited +jobs: + check_base_branch: + name: Check Target Branch + runs-on: ubuntu-latest + steps: + - name: Target Branch Check + if: github.event.pull_request.base.ref == 'main' + run: | + echo "::error::Pull requests targeting the 'main' branch are not allowed." + echo "Please change the target branch of this PR to 'develop' or a feature branch." + exit 1 + - name: Target branch is allowed + if: github.event.pull_request.base.ref != 'main' + run: | + echo "Target branch (${{ github.event.pull_request.base.ref }}) is allowed. We good." + exit 0 diff --git a/Benchmarks/Benchmarks.csproj b/Benchmarks/Benchmarks.csproj index ce51df85..705c5e3c 100644 --- a/Benchmarks/Benchmarks.csproj +++ b/Benchmarks/Benchmarks.csproj @@ -1,6 +1,6 @@ - + Exe @@ -9,10 +9,10 @@ - - - - + + + + diff --git a/Benchmarks/ClonerBenchmarks.cs b/Benchmarks/ClonerBenchmarks.cs index 8997b529..6f5a3f15 100644 --- a/Benchmarks/ClonerBenchmarks.cs +++ b/Benchmarks/ClonerBenchmarks.cs @@ -10,17 +10,17 @@ namespace Benchmarks; [MemoryDiagnoser] public class ClonerBenchmarks { - private Templates? _templates; + private ICloner _fastCloner; private ICloner _jsonCloner; private ICloner _reflectionsCloner; - private ICloner _fastCloner; + private Templates? _templates; [GlobalSetup] public void Setup() { var jsonUtil = new JsonUtil(); - var importer = new ImporterUtil(new MockLogger(), new FileUtil(new MockLogger()), + var importer = new ImporterUtil(new MockLogger(), new FileUtil(), jsonUtil); var loadTask = importer.LoadRecursiveAsync("./Assets/database/templates/"); loadTask.Wait(); diff --git a/Benchmarks/Mock/MockLogger.cs b/Benchmarks/Mock/MockLogger.cs index 1907879d..25a6ee1d 100644 --- a/Benchmarks/Mock/MockLogger.cs +++ b/Benchmarks/Mock/MockLogger.cs @@ -41,6 +41,17 @@ public class MockLogger : ISptLogger Console.WriteLine(data); } + public void Log( + LogLevel level, + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) + { + throw new NotImplementedException(); + } + public void WriteToLogFile(string body, LogLevel level = LogLevel.Info) { throw new NotImplementedException(); @@ -51,6 +62,11 @@ public class MockLogger : ISptLogger return false; } + public void DumpAndStop() + { + throw new NotImplementedException(); + } + public void LogWithColor( string data, Exception? ex = null, diff --git a/Libraries/SPTarkov.Common/Extensions/HttpContextExtensions.cs b/Libraries/SPTarkov.Common/Extensions/HttpContextExtensions.cs index e24023a4..26c03736 100644 --- a/Libraries/SPTarkov.Common/Extensions/HttpContextExtensions.cs +++ b/Libraries/SPTarkov.Common/Extensions/HttpContextExtensions.cs @@ -1,18 +1,17 @@ using Microsoft.Extensions.Primitives; -namespace SPTarkov.Common.Extensions -{ - public static class HttpContextExtensions - { - public static StringValues? GetHeaderIfExists(this HttpContext context, string key) - { - context.Request.Headers.TryGetValue(key, out var value); - if (string.IsNullOrEmpty(value)) - { - return null; - } +namespace SPTarkov.Common.Extensions; - return value; +public static class HttpContextExtensions +{ + public static StringValues? GetHeaderIfExists(this HttpContext context, string key) + { + context.Request.Headers.TryGetValue(key, out var value); + if (string.IsNullOrEmpty(value)) + { + return null; } + + return value; } } diff --git a/Libraries/SPTarkov.Common/Extensions/StringExtensions.cs b/Libraries/SPTarkov.Common/Extensions/StringExtensions.cs index 4910e4a5..c444e332 100644 --- a/Libraries/SPTarkov.Common/Extensions/StringExtensions.cs +++ b/Libraries/SPTarkov.Common/Extensions/StringExtensions.cs @@ -5,18 +5,18 @@ namespace SPTarkov.Common.Extensions; public static class StringExtensions { - private static readonly Dictionary RegexCache = new(); - private static readonly Lock RegexCacheLock = new(); + private static readonly Dictionary _regexCache = new(); + private static readonly Lock _regexCacheLock = new(); public static string RegexReplace(this string source, [StringSyntax(StringSyntaxAttribute.Regex)] string regexString, string newValue) { Regex regex; - lock (RegexCacheLock) + lock (_regexCacheLock) { - if (!RegexCache.TryGetValue(regexString, out regex)) + if (!_regexCache.TryGetValue(regexString, out regex)) { regex = new Regex(regexString); - RegexCache[regexString] = regex; + _regexCache[regexString] = regex; } } @@ -26,12 +26,12 @@ public static class StringExtensions public static bool RegexMatch(this string source, [StringSyntax(StringSyntaxAttribute.Regex)] string regexString, out Match? matchedString) { Regex regex; - lock (RegexCacheLock) + lock (_regexCacheLock) { - if (!RegexCache.TryGetValue(regexString, out regex)) + if (!_regexCache.TryGetValue(regexString, out regex)) { regex = new Regex(regexString); - RegexCache[regexString] = regex; + _regexCache[regexString] = regex; } } diff --git a/Libraries/SPTarkov.Common/SPTarkov.Common.csproj b/Libraries/SPTarkov.Common/SPTarkov.Common.csproj index 2cfda8db..43bc8a11 100644 --- a/Libraries/SPTarkov.Common/SPTarkov.Common.csproj +++ b/Libraries/SPTarkov.Common/SPTarkov.Common.csproj @@ -1,7 +1,7 @@ - - + + SPTarkov.Common Single Player Tarkov @@ -16,11 +16,11 @@ - + - + diff --git a/Libraries/SPTarkov.DI/DependencyInjectionRegistrator.cs b/Libraries/SPTarkov.DI/DependencyInjectionRegistrator.cs index 8014709f..d424f6ba 100644 --- a/Libraries/SPTarkov.DI/DependencyInjectionRegistrator.cs +++ b/Libraries/SPTarkov.DI/DependencyInjectionRegistrator.cs @@ -20,8 +20,7 @@ public static class DependencyInjectionRegistrator public static void RegisterComponents(IServiceCollection builderServices, IEnumerable types) { - var groupedTypes = types.SelectMany( - t => + var groupedTypes = types.SelectMany(t => { var attributes = (Injectable[]) Attribute.GetCustomAttributes(t, typeof(Injectable)); var registerableType = t; @@ -45,7 +44,7 @@ public static class DependencyInjectionRegistrator return registerableComponents; } ) - .GroupBy(t => t.RegistrableInterface.FullName); + .GroupBy(t => $"{t.RegistrableInterface.Namespace}.{t.RegistrableInterface.Name}"); // We get all injectable services to register them on our services foreach (var groupedInjectables in groupedTypes) { @@ -74,21 +73,20 @@ public static class DependencyInjectionRegistrator { _allLoadedTypes ??= AppDomain.CurrentDomain.GetAssemblies().SelectMany(t => t.GetTypes()).ToList(); } - catch(ReflectionTypeLoadException ex) + catch (ReflectionTypeLoadException ex) { Console.WriteLine($"COULD NOT LOAD TYPE: {ex}"); } + _allConstructors ??= _allLoadedTypes.SelectMany(t => t.GetConstructors()).ToList(); var typeName = $"{valueTuple.RegistrableInterface.Namespace}.{valueTuple.RegistrableInterface.Name}"; try { - var matchedConstructors = _allConstructors.Where( - c => c.GetParameters() - .Any( - p => p.ParameterType.IsGenericType && - p.ParameterType.GetGenericTypeDefinition().FullName == typeName - ) + var matchedConstructors = _allConstructors.Where(c => c.GetParameters() + .Any(p => p.ParameterType.IsGenericType && + p.ParameterType.GetGenericTypeDefinition().FullName == typeName + ) ); var constructorInfos = matchedConstructors.ToList(); @@ -100,7 +98,7 @@ public static class DependencyInjectionRegistrator foreach (var matchedConstructor in constructorInfos) { var constructorParams = matchedConstructor.GetParameters(); - foreach (var parameterInfo in constructorParams.Where(x => IsMatchingGenericType(x,typeName))) + foreach (var parameterInfo in constructorParams.Where(x => IsMatchingGenericType(x, typeName))) { var parameters = parameterInfo.ParameterType.GetGenericArguments(); var typedGeneric = valueTuple.TypeToRegister.MakeGenericType(parameters); @@ -159,10 +157,7 @@ public static class DependencyInjectionRegistrator RegisterComponents( builderServices, serverLauncherAssembly.GetTypes().Where(type => Attribute.IsDefined(type, typeof(Injectable))) - ); - RegisterComponents( - builderServices, - coreAssembly.GetTypes().Where(type => Attribute.IsDefined(type, typeof(Injectable))) + .Concat(coreAssembly.GetTypes().Where(type => Attribute.IsDefined(type, typeof(Injectable)))) ); } diff --git a/Libraries/SPTarkov.DI/SPTarkov.DI.csproj b/Libraries/SPTarkov.DI/SPTarkov.DI.csproj index 6a39c7dd..b0225cdd 100644 --- a/Libraries/SPTarkov.DI/SPTarkov.DI.csproj +++ b/Libraries/SPTarkov.DI/SPTarkov.DI.csproj @@ -1,6 +1,6 @@ - + SPTarkov.DI @@ -16,11 +16,11 @@ - + - + diff --git a/Libraries/SPTarkov.Server.Assets/Assets/configs/core.json b/Libraries/SPTarkov.Server.Assets/Assets/configs/core.json index d6fc93ce..e9c78216 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/configs/core.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/configs/core.json @@ -1,7 +1,7 @@ { "sptVersion": "4.0.0", "projectName": "SPT", - "compatibleTarkovVersion": "0.16.0.36217", + "compatibleTarkovVersion": "0.16.0.36625", "serverName": "SPT Server", "profileSaveIntervalSeconds": 15, "sptFriendNickname": "SPT", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/configs/location.json b/Libraries/SPTarkov.Server.Assets/Assets/configs/location.json index 0292d18b..dd29efa6 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/configs/location.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/configs/location.json @@ -177,6 +177,7 @@ "laboratory": true, "rezervbase": true, "sandbox": true, + "sandbox_high": true, "labyrinth": true }, "containerTypesToNotRandomise": [ diff --git a/Libraries/SPTarkov.Server.Assets/Assets/configs/ragfair.json b/Libraries/SPTarkov.Server.Assets/Assets/configs/ragfair.json index df050b97..096eed7c 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/configs/ragfair.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/configs/ragfair.json @@ -263,7 +263,7 @@ "min": 7 }, "pack": { - "chancePercent": 6, + "chancePercent": 0.5, "itemCountMax": 17, "itemCountMin": 4, "itemTypeWhitelist": [ diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/bear.json b/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/bear.json index edc34f87..5bd485d6 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/bear.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/bear.json @@ -269,7 +269,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -532,7 +532,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -646,7 +645,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -794,7 +792,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -967,8 +965,8 @@ "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, "MIDDLE_DIST": 90, "MIDDLE_DIST_CAN_SHOOT_HEAD": false, "MIN_LOOK_AROUD_TIME": 20, @@ -1057,7 +1055,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -1171,7 +1168,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1319,7 +1315,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1581,7 +1577,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 0.5, @@ -1693,7 +1688,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1841,7 +1835,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2104,7 +2098,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 5, @@ -2218,7 +2211,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -2452,7 +2444,6 @@ "Borkel", "Helldiver", "Sanote", - "ViolentAmbush", "Jeo", "Dirtbikercj", "svbtext", @@ -2638,7 +2629,6 @@ "SilverParsnip", "nader", "IsaacSin", - "Kaeno", "TheSparta", "Akiw", "Capital_Grin", @@ -2740,7 +2730,6 @@ "devilwalker", "Fatheals", "HereticJ", - "InternalError_", "jayy", "JP21", "Juniper", @@ -2753,7 +2742,152 @@ "The_Antman", "worshipme", "Myksa", - "weeny" + "weeny", + "3xtremehamster", + "AcidMC", + "AcksBerg", + "adishee", + "Affengeneral", + "ALameLlama", + "alta1r", + "AmsPhysics", + "APerson", + "AT233", + "BababooeyRatatouille", + "BigTastyNugz", + "Blackleaf420", + "Blahaj Enjoyer", + "BubbaGMobile", + "cabanyakeglya", + "CausingAphid01", + "ChooChoo", + "Colobos9mm", + "Cougarinou", + "CptMoreGun", + "cybensis", + "CZPZ", + "DarkEsteves", + "DeadW0Lf", + "Delod", + "DrunkGeko", + "ehaugw", + "EpicRangeTime", + "FlatCult", + "flir", + "Flowless", + "FriedEngineer", + "Fums", + "garlicbreadtcg", + "GeneralGoon", + "GhostFenixx", + "Gipphe", + "Golani", + "GromAV", + "h3ticnade", + "Hauzman", + "Hjal", + "Hood", + "Hooshu", + "HOT DOG", + "ImBenCole", + "ItsReaperGirl", + "J0nathan550", + "JankyTheClown", + "JonBons", + "jordanbr", + "Josh Mate", + "K.V'7K'PVRIS", + "KaikiNoodles", + "KappaCam", + "knon", + "konstantin90s", + "Kopat1ch", + "kyoukopan", + "LeftHandedCat", + "LightoftheWorld", + "Lily Potter", + "Local Crew", + "madmanbeavis", + "MAGICERASER", + "Magyeong", + "MakerMacher", + "Marine", + "matsix", + "MDZZWOC", + "melonyninja", + "MiseryMachinery", + "mpstark", + "MrUlfen", + "MT_Militia", + "Murasame_chan", + "mynamealien", + "NanamiTV", + "NateDog", + "Navi", + "netVnum", + "Nicholas", + "NoNeedName", + "November75", + "OperatorD9", + "OptimusChad", + "Peepo", + "pein", + "penguingreentea", + "Pizza_rat", + "Praxideke", + "prezidento23", + "privateryan", + "Provocator", + "PulledP0rk", + "PureRussianVodka", + "Qwertyalex", + "Radzig", + "RagingBeardo", + "ragnaroks", + "Randomizzatore", + "Rising_Star", + "RivviN", + "rodentmessiah", + "rzambol", + "S3NN0M0", + "saintdeer", + "SashaSwan", + "Schrader", + "ScottieKnowz", + "Sever12", + "sgt_dogwater", + "sgtlaggy", + "Shibdib", + "Sianyde", + "Skulltag", + "Sneaky_Weasel", + "Solethia", + "stckytwl", + "sugonyak", + "Szonszczyk", + "szszss", + "Tadikas", + "TakiiiNotFound", + "techy", + "TeejayMerks", + "TexaHans", + "TheDevilsrevenge", + "Therkelsen", + "trap", + "Troike", + "turbodestroyer", + "Turok", + "UnderdomeRiot", + "Vesuvius1300", + "viniHNS", + "VioletAmbush", + "ViP3R_76", + "Vortania", + "watsy", + "WispsFlame", + "WUVGAWORE", + "YukoVR", + "ZenosBleed" ], "generation": { "items": { diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/usec.json b/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/usec.json index a56ba4bf..03fa2aec 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/usec.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/bots/types/usec.json @@ -259,7 +259,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -423,6 +423,7 @@ "FAR_DISTANCE": 160, "FarDeltaTimeSec": 3, "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.05, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, @@ -436,11 +437,10 @@ "MIDDLE_DIST_CAN_SHOOT_HEAD": false, "MIN_LOOK_AROUD_TIME": 20, "MiddleDeltaTimeSec": 1, + "NO_GRASS_DIST": 8, + "NO_GREEN_DIST": 8, "OLD_TIME_POINT": 11, "OPTIMIZE_TO_ONLY_BODY": true, - "NO_GRASS_DIST": 8, - "NO_GREEN_DIST": 8, - "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "POSIBLE_VISION_SPACE": 1.2, "VISIBLE_DISNACE_WITH_LIGHT": 100, "WAIT_NEW_SENSOR": 2.1, @@ -522,7 +522,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -636,7 +635,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -784,7 +782,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -948,6 +946,7 @@ "FAR_DISTANCE": 160, "FarDeltaTimeSec": 3, "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.05, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 993, @@ -962,11 +961,10 @@ "MIDDLE_DIST_CAN_SHOOT_HEAD": false, "MIN_LOOK_AROUD_TIME": 20, "MiddleDeltaTimeSec": 1, + "NO_GRASS_DIST": 8, + "NO_GREEN_DIST": 8, "OLD_TIME_POINT": 11, "OPTIMIZE_TO_ONLY_BODY": true, - "NO_GRASS_DIST": 8, - "NO_GREEN_DIST": 8, - "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "POSIBLE_VISION_SPACE": 1.2, "VISIBLE_DISNACE_WITH_LIGHT": 100, "WAIT_NEW_SENSOR": 2.1, @@ -1047,7 +1045,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -1161,7 +1158,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1309,7 +1305,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1473,6 +1469,7 @@ "FAR_DISTANCE": 160, "FarDeltaTimeSec": 3, "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.05, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 993, @@ -1486,11 +1483,10 @@ "MIDDLE_DIST_CAN_SHOOT_HEAD": true, "MIN_LOOK_AROUD_TIME": 20, "MiddleDeltaTimeSec": 1, + "NO_GRASS_DIST": 8, + "NO_GREEN_DIST": 8, "OLD_TIME_POINT": 11, "OPTIMIZE_TO_ONLY_BODY": true, - "NO_GRASS_DIST": 8, - "NO_GREEN_DIST": 8, - "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "POSIBLE_VISION_SPACE": 1.2, "VISIBLE_DISNACE_WITH_LIGHT": 100, "WAIT_NEW_SENSOR": 2.1, @@ -1571,7 +1567,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 0.5, @@ -1683,7 +1678,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1831,7 +1825,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 1.2, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1995,6 +1989,7 @@ "FAR_DISTANCE": 160, "FarDeltaTimeSec": 3, "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.05, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, @@ -2008,11 +2003,10 @@ "MIDDLE_DIST_CAN_SHOOT_HEAD": false, "MIN_LOOK_AROUD_TIME": 20, "MiddleDeltaTimeSec": 1, + "NO_GRASS_DIST": 8, + "NO_GREEN_DIST": 8, "OLD_TIME_POINT": 11, "OPTIMIZE_TO_ONLY_BODY": true, - "NO_GRASS_DIST": 8, - "NO_GREEN_DIST": 8, - "GOAL_TO_FULL_DISSAPEAR_GREEN": 2, "POSIBLE_VISION_SPACE": 1.2, "VISIBLE_DISNACE_WITH_LIGHT": 100, "WAIT_NEW_SENSOR": 2.1, @@ -2094,7 +2088,6 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, - "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 10000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 5, @@ -2208,7 +2201,6 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -2442,7 +2434,6 @@ "Borkel", "Helldiver", "Sanote", - "ViolentAmbush", "Jeo", "Dirtbikercj", "svbtext", @@ -2628,7 +2619,6 @@ "SilverParsnip", "nader", "IsaacSin", - "Kaeno", "TheSparta", "Akiw", "Capital_Grin", @@ -2667,83 +2657,227 @@ "mr_puudlik_", "TarkovBasement", "Damirka_EA", - "John Halo", - "AGX", - "Mugnum", - "Spring", - "rpmwpm", - "IdiotTurtle", - "MrVibesRSA", - "FiveF", - "desze", - "Boogle", - "sch_kuromi", - "Lillian", - "Tarkin", - "Netnikogo", - "ZGFueDkx", - "TakiiNotFound", - "bushtail", - "wizard83", - "Super", - "harmony", - "SKINNY BEPIS GAMING", - "toothpaste OJ combo", - "Cooler daniel", - "Markosz", - "RootsNine", - "Dsnyder", - "inory", - "HANAVI", - "Dildz", - "fryciarz7", - "PenOkOh", - "Randek", - "ThinkSlow", - "House16", - "egbog", - "bakahashi", - "Harmer", - "Slickboi", - "blkdnm", - "numberdjester", - "vargrasen", - "doom", - "cardsmen", - "Saryn", - "sirdadbearingtonthe69", - "sarynkia", - "estamnar", - "dvize", - "floofyyq", - "jpdarkone", - "gley", - "loafedbread", - "bkreporn", - "malachitekell", - "chonkiee", - "schuetze_klaus", - "yojenkz", - "[666]Silent", - "Berryok", - "Bloom", - "devilwalker", - "Fatheals", - "HereticJ", - "InternalError_", - "jayy", - "JP21", - "Juniper", - "Mauzy-Mir", - "ngage", - "Plaguey", - "roman biznes", - "Slayer-of-Reshala", - "Straxus", - "The_Antman", - "worshipme", - "Myksa", - "weeny" + "John Halo", + "AGX", + "Mugnum", + "Spring", + "rpmwpm", + "IdiotTurtle", + "MrVibesRSA", + "FiveF", + "desze", + "Boogle", + "sch_kuromi", + "Lillian", + "Tarkin", + "Netnikogo", + "ZGFueDkx", + "TakiiNotFound", + "bushtail", + "wizard83", + "Super", + "harmony", + "SKINNY BEPIS GAMING", + "toothpaste OJ combo", + "Cooler daniel", + "Markosz", + "RootsNine", + "Dsnyder", + "inory", + "HANAVI", + "Dildz", + "fryciarz7", + "PenOkOh", + "Randek", + "ThinkSlow", + "House16", + "egbog", + "bakahashi", + "Harmer", + "Slickboi", + "blkdnm", + "numberdjester", + "vargrasen", + "doom", + "cardsmen", + "Saryn", + "sirdadbearingtonthe69", + "sarynkia", + "estamnar", + "dvize", + "floofyyq", + "jpdarkone", + "gley", + "loafedbread", + "bkreporn", + "malachitekell", + "chonkiee", + "schuetze_klaus", + "yojenkz", + "[666]Silent", + "Berryok", + "Bloom", + "devilwalker", + "Fatheals", + "HereticJ", + "jayy", + "JP21", + "Juniper", + "Mauzy-Mir", + "ngage", + "Plaguey", + "roman biznes", + "Slayer-of-Reshala", + "Straxus", + "The_Antman", + "worshipme", + "Myksa", + "weeny", + "3xtremehamster", + "AcidMC", + "AcksBerg", + "adishee", + "Affengeneral", + "ALameLlama", + "alta1r", + "AmsPhysics", + "APerson", + "AT233", + "BababooeyRatatouille", + "BigTastyNugz", + "Blackleaf420", + "Blahaj Enjoyer", + "BubbaGMobile", + "cabanyakeglya", + "CausingAphid01", + "ChooChoo", + "Colobos9mm", + "Cougarinou", + "CptMoreGun", + "cybensis", + "CZPZ", + "DarkEsteves", + "DeadW0Lf", + "Delod", + "DrunkGeko", + "ehaugw", + "EpicRangeTime", + "FlatCult", + "flir", + "Flowless", + "FriedEngineer", + "Fums", + "garlicbreadtcg", + "GeneralGoon", + "GhostFenixx", + "Gipphe", + "Golani", + "GromAV", + "h3ticnade", + "Hauzman", + "Hjal", + "Hood", + "Hooshu", + "HOT DOG", + "ImBenCole", + "ItsReaperGirl", + "J0nathan550", + "JankyTheClown", + "JonBons", + "jordanbr", + "Josh Mate", + "K.V'7K'PVRIS", + "KaikiNoodles", + "KappaCam", + "knon", + "konstantin90s", + "Kopat1ch", + "kyoukopan", + "LeftHandedCat", + "LightoftheWorld", + "Lily Potter", + "Local Crew", + "madmanbeavis", + "MAGICERASER", + "Magyeong", + "MakerMacher", + "Marine", + "matsix", + "MDZZWOC", + "melonyninja", + "MiseryMachinery", + "mpstark", + "MrUlfen", + "MT_Militia", + "Murasame_chan", + "mynamealien", + "NanamiTV", + "NateDog", + "Navi", + "netVnum", + "Nicholas", + "NoNeedName", + "November75", + "OperatorD9", + "OptimusChad", + "Peepo", + "pein", + "penguingreentea", + "Pizza_rat", + "Praxideke", + "prezidento23", + "privateryan", + "Provocator", + "PulledP0rk", + "PureRussianVodka", + "Qwertyalex", + "Radzig", + "RagingBeardo", + "ragnaroks", + "Randomizzatore", + "Rising_Star", + "RivviN", + "rodentmessiah", + "rzambol", + "S3NN0M0", + "saintdeer", + "SashaSwan", + "Schrader", + "ScottieKnowz", + "Sever12", + "sgt_dogwater", + "sgtlaggy", + "Shibdib", + "Sianyde", + "Skulltag", + "Sneaky_Weasel", + "Solethia", + "stckytwl", + "sugonyak", + "Szonszczyk", + "szszss", + "Tadikas", + "TakiiiNotFound", + "techy", + "TeejayMerks", + "TexaHans", + "TheDevilsrevenge", + "Therkelsen", + "trap", + "Troike", + "turbodestroyer", + "Turok", + "UnderdomeRiot", + "Vesuvius1300", + "viniHNS", + "VioletAmbush", + "ViP3R_76", + "Vortania", + "watsy", + "WispsFlame", + "WUVGAWORE", + "YukoVR", + "ZenosBleed" ], "generation": { "items": { @@ -3153,9 +3287,7 @@ "5c0e5edb86f77461f55ed1f7": 25, "5c0e625a86f7742d77340f62": 17, "5c0e655586f774045612eeb2": 160, - "67ab2f94dafe3b22670c912c": 160, "5ca2151486f774244a3b8d30": 17, - "67ab2f5adafe3b22670c911f": 17, "5ca21c6986f77479963115a7": 17, "5df8a2ca86f7740bfe6df777": 5, "5e4abb5086f77406975c9342": 17, @@ -3168,10 +3300,12 @@ "60a283193cb70855c43a381d": 17, "62a09d79de7ac81993580530": 10, "63737f448b28897f2802b874": 50, - "67ab2eecfe82855dcc0f2af6": 50, "64abd93857958b4249003418": 100, "64be79c487d1510151095552": 50, - "64be79e2bf8412471d0d9bcc": 50 + "64be79e2bf8412471d0d9bcc": 50, + "67ab2eecfe82855dcc0f2af6": 50, + "67ab2f5adafe3b22670c911f": 17, + "67ab2f94dafe3b22670c912c": 160 }, "Backpack": { "544a5cde4bdc2d39388b456b": 5, @@ -3226,55 +3360,28 @@ "557ff21e4bdc2d89578b4586": 1, "59e770b986f7742cbd762754": 1, "5aa2b986e5b5b00014028f4c": 1, - "67af41dd1eb308667602db4a": 1, "5aa2b9aee5b5b00015693121": 1, "5b432be65acfc433000ed01f": 1, "5c0d32fcd174af02a1659c75": 1, "5c1a1cc52e221602b3136e3d": 1, - "67af42942676ade5750b50e8": 1, "5d5fca1ea4b93635fd598c07": 1, "5d6d2e22a4b9361bd5780d05": 1, "5d6d2ef3a4b93618084f58bd": 1, - "67af425c2676ade5750b50e6": 1, "603409c80ca681766b6a0fb2": 1, - "62a61c988ec41a51b34758d5": 1 + "62a61c988ec41a51b34758d5": 1, + "67af41dd1eb308667602db4a": 1, + "67af425c2676ade5750b50e6": 1, + "67af42942676ade5750b50e8": 1 }, "FaceCover": { "572b7f1624597762ae139822": 1, - "67a9cd28cade15e0f00123b6": 1, - "67a9e9e0c185de5a4d0c2a13": 1, - "67a9ea004fb4a4a8a00d2828": 1, - "67a9cc9cf05be177170bcd76": 1, - "67a9cd6ecade15e0f00123b8": 1, - "67a9cd381fb22063280728a6": 1, - "67a9e9d04fb4a4a8a00d2826": 1, - "67a9ea39de7fb0f19e077da6": 1, - "67a9ccfff05be177170bcd78": 1, - "67a9cd18f05be177170bcd7a": 1, - "67a9e9f09de6826a650ee074": 1, - "67a9ea98de7fb0f19e077da8": 1, - "67a9ea7e4fb4a4a8a00d282a": 1, - "67a9cd55c2a2d940930aec86": 1, - "67a9ea10c185de5a4d0c2a15": 1, "572b7fa524597762b747ce82": 1, - "67a5fa01fafb8efd440694ba": 1, - "67a5f989f7041a25760dda36": 1, - "67a5f968fafb8efd440694b6": 1, - "67a5f917dfdf568c9009af6b": 1, - "67a5f9a193f7b62b6b0f6576": 1, - "67a5f94e802d287c670bb966": 1, "59e7715586f7742ee5789605": 5, "5ab8f39486f7745cd93a1cca": 1, - "67a9dccf9de6826a650ee06a": 1, - "67a9dc769de6826a650ee066": 1, - "67a9dce47faa4210bb0807c8": 1, - "67a9dca99de6826a650ee068": 1, - "67a9dc997faa4210bb0807c6": 1, - "67a9dcbac185de5a4d0c2a06": 1, - "67a9dd619de6826a650ee06c": 1, "5ab8f4ff86f77431c60d91ba": 5, "5ab8f85d86f7745cd93a1cf5": 5, "5b4325355acfc40019478126": 5, + "5b4326435acfc433000ed01d": 1, "5b432f3d5acfc4704b4a1dfb": 5, "5bd0716d86f774171822ef4b": 2, "5bd073a586f7747e6f135799": 2, @@ -3285,21 +3392,48 @@ "60a7ad2a2198820d95707a2e": 2, "62a09dd4621468534a797ac7": 2, "657089638db3adca1009f4ca": 2, - "67a5c5f37f52620c5b05b4d6": 1, - "67a5c5b6dfdf568c9009af66": 1, - "67a4b71ad3228756b6088ee2": 1, - "67a5c6068fcd9fb73f0752cf": 1, - "67a5c5df782ce4655104db14": 1, - "67a5c657782ce4655104db16": 1, - "67a5c61c7f52620c5b05b4d8": 1, "675ac888803644528007b3f6": 4, - "5b4326435acfc433000ed01d": 1, - "67aaf82d508ee9b6440e9c46": 1, - "67aaf84104dca1c82c071cf6": 1, - "67aaf808bf7609058606a926": 1, - "67aaf879508ee9b6440e9c48": 1, - "67aaf863de7fb0f19e077db9": 1, - "67aaf851bf7609058606a928": 1 + "67a4b71ad3228756b6088ee2": 1, + "67a5c5b6dfdf568c9009af66": 1, + "67a5c5df782ce4655104db14": 1, + "67a5c5f37f52620c5b05b4d6": 1, + "67a5c6068fcd9fb73f0752cf": 1, + "67a5c61c7f52620c5b05b4d8": 1, + "67a5c657782ce4655104db16": 1, + "67a5f917dfdf568c9009af6b": 1, + "67a5f94e802d287c670bb966": 1, + "67a5f968fafb8efd440694b6": 1, + "67a5f989f7041a25760dda36": 1, + "67a5f9a193f7b62b6b0f6576": 1, + "67a5fa01fafb8efd440694ba": 1, + "67a9cc9cf05be177170bcd76": 1, + "67a9ccfff05be177170bcd78": 1, + "67a9cd18f05be177170bcd7a": 1, + "67a9cd28cade15e0f00123b6": 1, + "67a9cd381fb22063280728a6": 1, + "67a9cd55c2a2d940930aec86": 1, + "67a9cd6ecade15e0f00123b8": 1, + "67a9dc769de6826a650ee066": 1, + "67a9dc997faa4210bb0807c6": 1, + "67a9dca99de6826a650ee068": 1, + "67a9dcbac185de5a4d0c2a06": 1, + "67a9dccf9de6826a650ee06a": 1, + "67a9dce47faa4210bb0807c8": 1, + "67a9dd619de6826a650ee06c": 1, + "67a9e9d04fb4a4a8a00d2826": 1, + "67a9e9e0c185de5a4d0c2a13": 1, + "67a9e9f09de6826a650ee074": 1, + "67a9ea004fb4a4a8a00d2828": 1, + "67a9ea10c185de5a4d0c2a15": 1, + "67a9ea39de7fb0f19e077da6": 1, + "67a9ea7e4fb4a4a8a00d282a": 1, + "67a9ea98de7fb0f19e077da8": 1, + "67aaf808bf7609058606a926": 1, + "67aaf82d508ee9b6440e9c46": 1, + "67aaf84104dca1c82c071cf6": 1, + "67aaf851bf7609058606a928": 1, + "67aaf863de7fb0f19e077db9": 1, + "67aaf879508ee9b6440e9c48": 1 }, "FirstPrimaryWeapon": { "5447a9cd4bdc2dbd208b4567": 4, @@ -3527,19 +3661,15 @@ }, "TacticalVest": { "544a5caa4bdc2d1a388b4568": 38, - "67ab49aab9c7a1e18c095686": 38, "5648a69d4bdc2ded0b8b457b": 38, - "67ab3f146d7ece17bf0096ff": 38, "572b7adb24597762ae139821": 5, "5929a2a086f7744f4b234d43": 38, "592c2d1a86f7746dbe2af32a": 38, - "67ab3ea96d7ece17bf0096f6": 38, "59e7643b86f7742cbf2c109a": 38, "5ab8dab586f77441cd04f2a2": 38, "5ab8dced86f774646209ec87": 38, "5b44c8ea86f7742d1627baf1": 38, "5b44cad286f77402a54ae7e5": 45, - "67ab4b2d6f7ae4aa550bbcf6": 45, "5c0e3eb886f7742015526062": 3, "5c0e446786f7742013381639": 38, "5c0e6a1586f77404597b4965": 38, @@ -3584,7 +3714,11 @@ "66b6295178bbc0200425f995": 25, "66b6295a8ca68c6461709efa": 25, "66b6296d7994640992013b17": 25, - "674589d98dd67746010329e6": 15 + "674589d98dd67746010329e6": 15, + "67ab3ea96d7ece17bf0096f6": 38, + "67ab3f146d7ece17bf0096ff": 38, + "67ab49aab9c7a1e18c095686": 38, + "67ab4b2d6f7ae4aa550bbcf6": 45 } }, "items": { @@ -3878,57 +4012,6 @@ "6570e83223c1f638ef0b0ede" ] }, - "67ab49aab9c7a1e18c095686": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656fb21fa0dce000a2020f7c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Groin": [ - "6570e90b3a5689d85f08db97" - ], - "Soft_armor_back": [ - "6570e87c23c1f638ef0b0ee2" - ], - "Soft_armor_front": [ - "6570e83223c1f638ef0b0ede" - ] - }, "545cdb794bdc2d3a198b456a": { "Back_plate": [ "656f9d5900d62bcd2e02407c", @@ -8682,54 +8765,6 @@ "6575bc88c6700bd6b40e8a57" ] }, - "67ab4b2d6f7ae4aa550bbcf6": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa8d700d62bcd2e024084", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Soft_armor_back": [ - "6575bca0dc9932aed601c5d7" - ], - "Soft_armor_front": [ - "6575bc88c6700bd6b40e8a57" - ] - }, "5b44cd8b86f774503d30cba2": { "Back_plate": [ "656f9d5900d62bcd2e02407c", @@ -10613,54 +10648,6 @@ "6570e025615f54368b04fcb0" ] }, - "67ab2f94dafe3b22670c912c": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Front_plate": [ - "656fa8d700d62bcd2e024084", - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa0fb498d1b7e3e071d9c", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Soft_armor_back": [ - "6570e0610b57c03ec90b96ef" - ], - "Soft_armor_front": [ - "6570e025615f54368b04fcb0" - ] - }, "5c0e722886f7740458316a57": { "Back_plate": [ "656f9d5900d62bcd2e02407c", @@ -11542,83 +11529,6 @@ "6575dd6e9d3a0ddf660b9047" ] }, - "67ab2f5adafe3b22670c911f": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Collar": [ - "6575dd769d3a0ddf660b904b" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Groin": [ - "6575dd800546f8b1de093df6" - ], - "Groin_back": [ - "6575dd94945bf78edd04c43c" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "Soft_armor_back": [ - "6575dd519e27f4a85e081146" - ], - "Soft_armor_front": [ - "6575dd3e9e27f4a85e081142" - ], - "Soft_armor_left": [ - "6575dd64945bf78edd04c438" - ], - "soft_armor_right": [ - "6575dd6e9d3a0ddf660b9047" - ] - }, "5ca21c6986f77479963115a7": { "Back_plate": [ "656f9d5900d62bcd2e02407c", @@ -17993,48 +17903,6 @@ "64afdcb83efdfea28601d041" ] }, - "67ab2eecfe82855dcc0f2af6": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fafe3498d1b7e3e071da4", - "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ] - }, "637f57b78d137b27f70c496a": { "mod_foregrip": [ "58c157c886f774032749fb06" @@ -21231,6 +21099,272 @@ "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577" ] + }, + "67ab2eecfe82855dcc0f2af6": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ] + }, + "67ab2f5adafe3b22670c911f": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Collar": [ + "6575dd769d3a0ddf660b904b" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Groin": [ + "6575dd800546f8b1de093df6" + ], + "Groin_back": [ + "6575dd94945bf78edd04c43c" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "6575dd519e27f4a85e081146" + ], + "Soft_armor_front": [ + "6575dd3e9e27f4a85e081142" + ], + "Soft_armor_left": [ + "6575dd64945bf78edd04c438" + ], + "soft_armor_right": [ + "6575dd6e9d3a0ddf660b9047" + ] + }, + "67ab2f94dafe3b22670c912c": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656fa8d700d62bcd2e024084", + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa0fb498d1b7e3e071d9c", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Soft_armor_back": [ + "6570e0610b57c03ec90b96ef" + ], + "Soft_armor_front": [ + "6570e025615f54368b04fcb0" + ] + }, + "67ab49aab9c7a1e18c095686": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656fb21fa0dce000a2020f7c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Groin": [ + "6570e90b3a5689d85f08db97" + ], + "Soft_armor_back": [ + "6570e87c23c1f638ef0b0ee2" + ], + "Soft_armor_front": [ + "6570e83223c1f638ef0b0ede" + ] + }, + "67ab4b2d6f7ae4aa550bbcf6": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Soft_armor_back": [ + "6575bca0dc9932aed601c5d7" + ], + "Soft_armor_front": [ + "6575bc88c6700bd6b40e8a57" + ] } } }, diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/globals.json b/Libraries/SPTarkov.Server.Assets/Assets/database/globals.json index ad2dd0c5..f0954682 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/globals.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/globals.json @@ -23670,6 +23670,32 @@ "_parent": "676408beba9ecbb20a005306", "_type": "Preset" }, + "67a328326e3613a197068d05": { + "_changeWeaponName": false, + "_encyclopedia": "676bf44c5539167c3603e869", + "_id": "67a328326e3613a197068d05", + "_items": [ + { + "_id": "67a328326e3613a197068d08", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "67a328326e3613a197068d09", + "_tpl": "67446fdd752be02c220f27b3", + "parentId": "67a328326e3613a197068d08", + "slotId": "patron_in_weapon" + } + ], + "_name": "rshg2_std", + "_parent": "67a328326e3613a197068d08", + "_type": "Preset" + }, "67c86f58179c494df00eedf6": { "_changeWeaponName": false, "_encyclopedia": "67ab2f28dafe3b22670c9116", @@ -29767,6 +29793,7 @@ } }, "PmcBotKillStandingMultiplier": 1, + "ScavEquipmentChancePercentThreshold": 5, "paidExitStandingNumerator": 0.2 }, "FractureCausedByBulletHit": { @@ -32426,6 +32453,7 @@ }, "LegsOverdamage": 1, "LoadTimeSpeedProgress": 1, + "MailItemsExpirationTimeLimitWarning": 24, "Malfunction": { "AllowMalfForBots": false, "AmmoFeedWt": 0.2, @@ -34725,6 +34753,11 @@ "MaxInLobby": 0, "MaxInRaid": 0, "TemplateId": "67ea616a74f765cefd009fb7" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "676bf44c5539167c3603e869" } ], "RunddansSettings": { diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/hideout/production.json b/Libraries/SPTarkov.Server.Assets/Assets/database/hideout/production.json index cd6c048f..1ea867ee 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/hideout/production.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/hideout/production.json @@ -1,78 +1,76 @@ { - "cultistRecipes": [ - { - "_id": "66827062405f392b203a44cf" - } - ], "recipes": [ { - "_id": "5d5c1f5ed582a543983ee82e", - "areaType": 7, - "continuous": false, - "count": 3, - "endProduct": "5755356824597772cb798962", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1320, + "_id": "63a2327c151bfb591645c104", + "areaType": 10, "requirements": [ { - "areaType": 7, - "requiredLevel": 1, + "areaType": 10, + "requiredLevel": 3, "type": "Area" }, { - "count": 1, + "templateId": "5d0377ce86f774186372f689", + "count": 4, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", "type": "Item" - } - ] - }, - { - "_id": "5dd1126571e3fd3f634b1c8b", - "areaType": 10, - "continuous": false, - "count": 8, - "endProduct": "5c06779c86f77426e00dd782", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7100, - "requirements": [ + }, { + "templateId": "5d1b2ffd86f77425243e8d17", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "59e36c6f86f774176c10a2a7", "type": "Item" }, { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" + "templateId": "6389c7750ef44505c87f5996", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + }, + { + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "6396701b9113f06a7c3b2379", + "type": "QuestComplete" } - ] + ], + "productionTime": 86400, + "endProduct": "5a1eaa87fcdbcb001865f75e", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "661e6c26750e453380391f55", "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "660bc341c38b837877075e4c", - "isCodeProduction": true, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, "requirements": [ { "areaType": 11, @@ -80,204 +78,222 @@ "type": "Area" }, { + "templateId": "660bbc47c38b837877075e47", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "660bbc47c38b837877075e47", "type": "Item" }, { "type": "QuestComplete" } - ] - }, - { - "_id": "5d8a1a7d7a3dfe597c2e459e", - "areaType": 7, + ], + "productionTime": 600, + "endProduct": "660bc341c38b837877075e4c", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, "continuous": false, "count": 1, - "endProduct": "544fb45d4bdc2dee738b4568", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 2350, + "isCodeProduction": true + }, + { + "_id": "5dd1126571e3fd3f634b1c8b", + "areaType": 10, "requirements": [ { + "templateId": "59e36c6f86f774176c10a2a7", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c661e86f7741e566b646a", "type": "Item" }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 7100, + "endProduct": "5c06779c86f77426e00dd782", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 8, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b58a49db22d43ab42b709", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "560d5e524bdc2d25448b4571", + "count": 60, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5bbd86f774785762df04", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 4200, + "endProduct": "5d6e68c4a4b9361b93413f79", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 60, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61c77c830f3639492721e99c", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c595c86f7747884343ad7", + "type": "Tool" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + }, + { + "templateId": "62a0a043cf4a99369e2624a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 17500, + "endProduct": "5c0fa877d174af02a012e1cf", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d5c1f5ed582a543983ee82e", + "areaType": 7, + "requirements": [ { "areaType": 7, "requiredLevel": 1, "type": "Area" }, { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e831507ea0a7c419c2f9bd9", - "type": "Item" - } - ] - }, - { - "_id": "5ed9fd73f6626f08ef0efec6", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "544fb3f34bdc2d03748b456a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4350, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "544fb37f4bdc2dee738b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3f2d86f774253763b735", "type": "Item" } - ] - }, - { - "_id": "5d5c205bd582a50d042a3c0e", - "areaType": 20, - "continuous": true, - "count": 1, - "endProduct": "59faff1d86f7746c51718c9c", - "isCodeProduction": false, + ], + "productionTime": 1320, + "endProduct": "5755356824597772cb798962", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 3, - "productionTime": 145000, - "requirements": [] - }, - { - "_id": "5eeca7724a8a9b668f0d89cd", - "areaType": 10, "continuous": false, - "count": 180, - "endProduct": "5c925fa22e221601da359b7b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, + "count": 3, "productionLimitCount": 0, - "productionTime": 7250, + "isCodeProduction": false + }, + { + "_id": "5d8b8ddd322e8650762f6e3a", + "areaType": 2, "requirements": [ { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 150, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7bbb74b75259c590fa897", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "6002ed409f2c60461a2d0f5a", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d0376a486f7747d8050965c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8200, - "requirements": [ - { - "areaType": 10, + "areaType": 2, "requiredLevel": 2, "type": "Area" }, { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { + "templateId": "5c13cd2486f774072c757944", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59faf98186f774067b6be103", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e35abd86f7741778269d82", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c052f6886f7746b1e3db148", "type": "Item" } - ] + ], + "productionTime": 2310, + "endProduct": "59e3556c86f7741776641ac2", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "655b34dc1273611d2462ab74", "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "5c0d5ae286f7741e46554302", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2770, "requirements": [ { "areaType": 10, @@ -285,223 +301,39 @@ "type": "Area" }, { + "templateId": "59e6927d86f77411da468256", "count": 180, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "59e6927d86f77411da468256", "type": "Item" }, { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "590c31c586f774245e3141b2", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" }, { "templateId": "62a0a0bb621468534a797ad5", "type": "Tool" } - ] - }, - { - "_id": "5ffcad24f3fdc212a91d5536", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "64b8ee384b75259c590fa89b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5250, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b36a186f7742523398433", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "655b48fe065b076eb02c4b46", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "5656d7c34bdc2d9d198b4587", - "isCodeProduction": false, + ], + "productionTime": 2770, + "endProduct": "5c0d5ae286f7741e46554302", "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 15480, - "requirements": [ - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7af5a8532cf95ee0a0dbd", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a09ee4cf4a99369e262453", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5ede0502879619077751d00a", - "areaType": 7, "continuous": false, - "count": 2, - "endProduct": "5c0e531d86f7747fa23f4d42", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, + "count": 180, "productionLimitCount": 0, - "productionTime": 5100, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e531286f7747fa54205c2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - } - ] + "isCodeProduction": false }, { - "_id": "600ab813d19f85018a7489c4", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d1b385e86f774252167b98a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c595c86f7747884343ad7", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "577e1c9d2459773cd707c525", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "658975e25c4f0642a502d54e", + "_id": "61c4f862324588369162ac8c", "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "668fe5a998b5ad715703ddd6", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5950, "requirements": [ { "areaType": 21, @@ -509,563 +341,43 @@ "type": "Area" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "63a3359eaf870e651d58e61a", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "55d485be4bdc2d962f8b456f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1200, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ea034f65aad6446a939737e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448c12b4bdc2d02308b456f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af22086f7746d3f3c33fa", - "type": "Item" - } - ] - }, - { - "_id": "62a11658650cc35fa94e009a", - "areaType": 8, - "continuous": false, - "count": 10, - "endProduct": "62a09f32621468534a797acb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 36000, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d3d245977448f7b7f61", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e8f3423fd7471236e6e3b64", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - } - ] - }, - { - "_id": "62a11415c30cfa1d366aeb83", - "areaType": 2, - "continuous": false, - "count": 6, - "endProduct": "5c13cd2486f774072c757944", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59faf98186f774067b6be103", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a09ee4cf4a99369e262453", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "635a758bfefc88a93f021b8a", - "type": "Item" - } - ] - }, - { - "_id": "5d8a13fc2d9612419804003c", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "590c5d4b86f774784e1b9c45", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2900, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448ff904bdc2d6f028b456e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d7224597744596b4e72", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d8724597744596b4e76", - "type": "Item" - }, - { - "areaType": 8, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "5f245f875b664e084523a4ce", - "areaType": 10, - "continuous": false, - "count": 100, - "endProduct": "5f0596629e22f464da6bbdd9", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8470, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0d668f86f7747ccb7f13b2", - "type": "Item" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5656d7c34bdc2d9d198b4587", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - }, - { - "questId": "5bc47dbf86f7741ee74e93b9", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5d558968f934db006d2d5b32", - "areaType": 10, - "continuous": false, - "count": 140, - "endProduct": "57371aab2459775a77142f22", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6200, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "655b4bbe4343a16d2e047668", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "5e023e53d4353e3302577c4c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5900, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "5d93ba4486f77454bd61d2a9", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d1b2f3f86f774252167a52c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9400, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c595c86f7747884343ad7", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b385e86f774252167b98a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "5d40425986f7743185265461", - "type": "Tool" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "5fe337e6c646836c3b6fc985", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5c0530ee86f774697952d952", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12500, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 30, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - } - ] - }, - { - "_id": "63bd4c3964d7e356983c4cf5", - "areaType": 10, - "continuous": false, - "count": 100, - "endProduct": "5cc80f38e4a949001152b560", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8700, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 100, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5cc80f79e4a949033c7343b2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "67092bbfc45f0546bf097a7e", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "6707d0804e617ec94f0e562f", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "questId": "67040cae4ac6d9c18c0ade2c", - "type": "QuestComplete" - }, - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c6c7dbfd5e4b95197e68", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5fca138c2a7b221b2852a5c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ed5166ad380ab312177c100", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", - "type": "Item" - } - ] - }, - { - "_id": "5e0755b97f8ea74cc332bf78", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "6680304edadb7aa61d00cef0", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5210, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5df8a6a186f77412640e2e80", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" } - ] - }, - { - "_id": "5ede01e062155304b6512067", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5b4335ba86f7744d2837a264", - "isCodeProduction": false, + ], + "productionTime": 11500, + "endProduct": "590a3efd86f77437d351a25b", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, "productionLimitCount": 0, - "productionTime": 1670, + "isCodeProduction": false + }, + { + "_id": "5ed9fd73f6626f08ef0efec6", + "areaType": 7, "requirements": [ { "areaType": 7, @@ -1073,35 +385,87 @@ "type": "Area" }, { + "templateId": "5d1b3a5d86f774252167ba22", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d1b39a386f774252339976f", "type": "Item" }, { + "templateId": "544fb37f4bdc2dee738b4567", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3f2d86f774253763b735", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4350, + "endProduct": "544fb3f34bdc2d03748b456a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d5c21aed582a50066024610", + "areaType": 7, + "requirements": [ + { + "templateId": "5d1b3a5d86f774252167ba22", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d1b3f2d86f774253763b735", + "type": "Item" + }, + { + "templateId": "5751a25924597722c463c472", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e831507ea0a7c419c2f9bd9", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" } - ] + ], + "productionTime": 3000, + "endProduct": "590c678286f77426c9660122", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false }, { - "_id": "655b598db71eeb7c4168c626", + "_id": "655b5af31273611d2462ab76", "areaType": 10, - "continuous": false, - "count": 60, - "endProduct": "5d6e6911a4b9361bd5780d52", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3000, "requirements": [ { "areaType": 10, @@ -1109,395 +473,239 @@ "type": "Area" }, { + "templateId": "5d6fc78386f77449d825f9dc", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c31c586f774245e3141b2", "type": "Item" }, { - "count": 2, + "templateId": "560d5e524bdc2d25448b4571", + "count": 50, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", "type": "Item" }, { - "templateId": "63a0b208f444d32d6f03ea1e", - "type": "Tool" - }, - { - "questId": "5c0bc91486f7746ab41857a2", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5ee49f2c6abbcb7ba704abc2", - "areaType": 10, - "continuous": false, - "count": 200, - "endProduct": "573719df2459775a626ccbc2", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { + "templateId": "590c5c9f86f77477c91c36e7", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", "type": "Item" }, - { - "count": 200, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5737201124597760fc4431f1", - "type": "Item" - } - ] - }, - { - "_id": "67da02e9078f1947650d7bb8", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "6389c8c5dbfd5e4b95197e6b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 39600, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a16d0b9d3c46de5b6e97", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7c024770ee6f9c6b8b53", - "type": "Item" - } - ] - }, - { - "_id": "67caf5c5bfe0242ab1032966", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "67cad3226bf74131800752b7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 60, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, { "templateId": "5d1b317c86f7742523398392", "type": "Tool" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67cad1ec19b006e9e50f44d6", - "type": "Item" + "questId": "6179ad0a6e9dd54ac275e3f2", + "type": "QuestComplete" } - ] - }, - { - "_id": "629e1b3a0694b45420210cad", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "5af0484c86f7740f02001f7f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2700, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e54f6af86f7742199090bf3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - } - ] - }, - { - "_id": "61c4f862324588369162ac8c", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "590a3efd86f77437d351a25b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 11500, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "5e0759e73c392e0367260488", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "674d6121c09f69dfb201a888", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5950, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - } - ] - }, - { - "_id": "6002eec9cc73cd34ac64188a", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5fca138c2a7b221b2852a5c6", - "isCodeProduction": false, + ], + "productionTime": 8400, + "endProduct": "5d6e68a8a4b9360b6c0d54e2", "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 50, "productionLimitCount": 0, - "productionTime": 4200, + "isCodeProduction": false + }, + { + "_id": "5eda0247658fac5b8c3862a8", + "areaType": 2, "requirements": [ { - "areaType": 7, + "areaType": 2, "requiredLevel": 2, "type": "Area" }, { + "templateId": "55d480c04bdc2d1d4e8b456a", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af29386f7746d4159f077", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", "type": "Item" }, { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5755356824597772cb798962", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "questId": "60e71c11d54b755a3b53eb65", - "type": "QuestComplete" + "templateId": "5d4042a986f7743185265463", + "type": "Tool" } - ] - }, - { - "_id": "61dc03711bdcfa2f253c9b7c", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5e2aedd986f7746d404f3aa4", - "isCodeProduction": false, + ], + "productionTime": 5000, + "endProduct": "55d482194bdc2d1d4e8b456b", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, "productionLimitCount": 0, - "productionTime": 18000, + "isCodeProduction": false + }, + { + "_id": "600a98d076fc4b1877509ead", + "areaType": 10, "requirements": [ { "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1c819a86f774771b0acd6c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5648b0744bdc2d363b8b4578", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5649b1c04bdc2d16268b457c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 4900, + "endProduct": "5644bd2b4bdc2d3b4c8b4572", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5f240f45f4a9420a8c328ee0", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "57514643245977207f2c2d09", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0484c86f7740f02001f7f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a09e73af34e73a266d932a", + "type": "Tool" + } + ], + "productionTime": 6500, + "endProduct": "5751435d24597720a27126d1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 4, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6012ea1a01328b2dec3c1a9d", + "areaType": 2, + "requirements": [ + { + "areaType": 2, "requiredLevel": 2, "type": "Area" }, { + "templateId": "56e33634d2720bd8058b456b", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57e26fc7245977162a14b800", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5909e99886f7740c983b9984", "type": "Item" }, { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a358486f77429692b2790", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "templateId": "5d1b31ce86f7742523398394", + "templateId": "56742c284bdc2d98058b456d", "type": "Tool" } - ] + ], + "productionTime": 15500, + "endProduct": "5c12688486f77426843c7d32", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "63a232f8ab6bb51044344bff", "areaType": 10, - "continuous": false, - "count": 4, - "endProduct": "6389c7750ef44505c87f5996", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 50400, "requirements": [ { "areaType": 10, @@ -1505,11 +713,11 @@ "type": "Area" }, { + "templateId": "6389c7f115805221fb410466", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c7f115805221fb410466", "type": "Item" }, { @@ -1528,754 +736,20 @@ "questId": "6396700fea19ac7ed845db32", "type": "QuestComplete" } - ] - }, - { - "_id": "5eda007f658fac5b8c3862a6", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c052f6886f7746b1e3db148", - "isCodeProduction": false, + ], + "productionTime": 50400, + "endProduct": "6389c7750ef44505c87f5996", "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 140000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1265fc86f7743f896a21c2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0376a486f7747d8050965c", - "type": "Item" - }, - { - "templateId": "590c639286f774151567fa95", - "type": "Tool" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c7750ef44505c87f5996", - "type": "Item" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "63966fbeea19ac7ed845db2e", - "type": "QuestComplete" - } - ] - }, - { - "_id": "67093210d514d26f8408612b", - "areaType": 7, "continuous": false, - "count": 1, - "endProduct": "6707d0bdaab679420007e01a", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, + "count": 4, "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "type": "QuestComplete" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6707d0804e617ec94f0e562f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c695186f7741e566b64a2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", - "type": "Item" - } - ] + "isCodeProduction": false }, { - "_id": "6617cdb6b24b0ea24505f618", + "_id": "655b4669b71eeb7c4168c625", "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "63a0b2eabea67a6d93009e52", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1800, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5d1b31ce86f7742523398394", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0376a486f7747d8050965c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a358486f77429692b2790", - "type": "Item" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b58a49db22d43ab42b709", - "areaType": 10, - "continuous": false, - "count": 60, - "endProduct": "5d6e68c4a4b9361b93413f79", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4200, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 60, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "560d5e524bdc2d25448b4571", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5bbd86f774785762df04", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5ffcac4e1285295b7441ee01", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "590a3b0486f7743954552bdb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2900, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3efd86f77437d351a25b", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "600aa140090cb63380270290", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af41e86f774755a234b67", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2900, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ab8f04f86f774585f4237d8", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "5e0756095a20a05b76027357", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "674da107c512807d1a0e7436", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5550, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] - }, - { - "_id": "5ffcacbf24fa2e741e767234", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5672cb724bdc2dc2088b456b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3efd86f77437d351a25b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb124bdc2d1a0f8b4568", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "655b54e7065b076eb02c4b47", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5cc80f53e4a949000e1ea4f8", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3400, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "655b56eb32b0b1645e6f54c8", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5a26abfac4a28232980eabff", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - } - ] - }, - { - "_id": "600a9b10adfcb94fee6d3e06", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "57347cd0245977445a2d6ff1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c31c586f774245e3141b2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e36c6f86f774176c10a2a7", - "type": "Item" - } - ] - }, - { - "_id": "5fe3394e8a67d12f5f24c8e0", - "areaType": 21, - "continuous": false, - "count": 2, - "endProduct": "590c657e86f77412b013051d", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2100, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] - }, - { - "_id": "5de951483c52683d810b4a10", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "590a3b0486f7743954552bdb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1980, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734781f24597737e04bf32a", - "type": "Item" - }, - { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" - } - ] - }, - { - "_id": "600a98d076fc4b1877509ead", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5644bd2b4bdc2d3b4c8b4572", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4900, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c819a86f774771b0acd6c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5648b0744bdc2d363b8b4578", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5649b1c04bdc2d16268b457c", - "type": "Item" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "5eeca8e327ccd70521107fdc", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5c052e6986f7746b207bc3c9", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 18900, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "600ab99ce4022c380a726090", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5e8488fa988a8701445df1e4", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1800, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e8488fa988a8701445df1e4", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - } - ] - }, - { - "_id": "5ede0053879619077751cff1", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5d02797c86f774203f38e30a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4600, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "619cc01e0a7c3a1a2731940c", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3364bdc2d34748b456a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d02797c86f774203f38e30a", - "type": "Item" - } - ] - }, - { - "_id": "655b4a73975a7f3c734661a5", - "areaType": 10, - "continuous": false, - "count": 90, - "endProduct": "59e0d99486f7744a32234762", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9400, "requirements": [ { "areaType": 10, @@ -2283,283 +757,43 @@ "type": "Area" }, { - "templateId": "619cbfccbedcde2f5b3f7bdd", - "type": "Tool" - }, - { - "templateId": "59e35de086f7741778269d84", - "type": "Tool" - }, - { + "templateId": "64b8725c4b75259c590fa899", "count": 90, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "64b7af434b75259c590fa893", "type": "Item" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5751496424597720a27126da", "type": "Item" }, { - "questId": "60e71bb4e456d449cd47ca75", + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "questId": "60e71c9ad54b755a3b53eb66", "type": "QuestComplete" } - ] - }, - { - "_id": "5e13301cc7049d4d9738e1a7", - "areaType": 7, - "continuous": false, - "count": 3, - "endProduct": "5d1b3a5d86f774252167ba22", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2880, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5755356824597772cb798962", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb25a4bdc2dfb738b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c695186f7741e566b64a2", - "type": "Item" - } - ] - }, - { - "_id": "5d78f27d115f693ad750d2c6", - "areaType": 10, - "continuous": false, - "count": 6, - "endProduct": "5448be9a4bdc2dfd2f8b456a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 18300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391b0fb847c71012789415", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" - } - ] - }, - { - "_id": "5ed9ff023a68ec264e5233c2", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c05308086f7746b2101e90b", - "isCodeProduction": false, + ], + "productionTime": 13000, + "endProduct": "5fd20ff893a8961fc660a954", "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 135399, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0376a486f7747d8050965c", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "573477e124597737dd42e191", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "63966faeea19ac7ed845db2c", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e075ac73c392e0367260489", - "areaType": 21, "continuous": false, - "count": 1, - "endProduct": "67600929bd0a0549d70993f6", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, + "count": 90, "productionLimitCount": 0, - "productionTime": 17510, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 13, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - }, - { - "count": 20, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - } - ] + "isCodeProduction": false }, { - "_id": "655b6c381fe356507267b2f6", + "_id": "5df8fe0deddb880fd56f2d7d", "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "59e763f286f7742ee57895da", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2500, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2c9c86f774245b1f03f2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5f5e45cc5021ce62144be7aa", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "5df8ffcbaab5f257bd7ff3a8", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "590c5bbd86f774785762df04", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9000, "requirements": [ { "areaType": 2, @@ -2567,75 +801,79 @@ "type": "Area" }, { + "templateId": "5d40407c86f774318526545a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40412b86f7743cb332ac3a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", + "type": "Tool" + } + ], + "productionTime": 2450, + "endProduct": "59e358a886f7741776641ac3", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600ab813d19f85018a7489c4", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590c595c86f7747884343ad7", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "577e1c9d2459773cd707c525", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c5c9f86f77477c91c36e7", "type": "Item" }, { "templateId": "5d40419286f774318526545f", "type": "Tool" } - ] - }, - { - "_id": "655b33429db22d43ab42b704", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "56dfef82d2720bbd668b4567", - "isCodeProduction": false, + ], + "productionTime": 8000, + "endProduct": "5d1b385e86f774252167b98a", "isEncoded": false, - "locked": true, + "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 13000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56dff3afd2720bba668b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "questId": "64e7b9bffd30422ed03dad38", - "type": "QuestComplete" - } - ] - }, - { - "_id": "63a571802116d261d2336cd1", - "areaType": 10, "continuous": false, "count": 1, - "endProduct": "63a0b2eabea67a6d93009e52", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 5400, + "isCodeProduction": false + }, + { + "_id": "5dd11303b78bb413d5133f79", + "areaType": 10, "requirements": [ { "areaType": 10, @@ -2643,322 +881,117 @@ "type": "Area" }, { + "templateId": "57347c2e24597744902c94a1", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c052f6886f7746b1e3db148", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3efd86f77437d351a25b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c324bdc2d150f8b456d", "type": "Item" }, { "templateId": "590c2d8786f774245b1f03f3", "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "questId": "625d6ffaf7308432be1d44c5", - "type": "QuestComplete" } - ] - }, - { - "_id": "5de021b30f6d581e965bcde7", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d1c819a86f774771b0acd6c", - "isCodeProduction": false, + ], + "productionTime": 7450, + "endProduct": "5c06782b86f77426df5407d2", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 6, "productionLimitCount": 0, - "productionTime": 4700, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": true, - "isSpawnedInSession": false, - "templateId": "59e6687d86f77411d949b251", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] + "isCodeProduction": false }, { - "_id": "61c77d465a98404dee40a77c", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5efb0cabfb3e451d70735af5", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12400, + "_id": "5d5c1fd4d582a500650132f0", + "areaType": 19, "requirements": [ { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 150, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5efb0d4f4bc50b58e81710f3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c31c586f774245e3141b2", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - } - ] - }, - { - "_id": "6002e55595c402039a2747f4", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c1e495a86f7743109743dfb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 476000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c94bbff86f7747ee735c08f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1d0d6d86f7744bb2683e1f", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7c024770ee6f9c6b8b53", - "type": "Item" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - } - ] - }, - { - "_id": "655b5dc8065b076eb02c4b48", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c0e5edb86f77461f55ed1f7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656f57dc27aed95beb08f628", - "type": "Item" - } - ] - }, - { - "_id": "655b675e1f2b6843ec751fd6", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "628d0618d1ba6e4fa07ce5a4", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { + "templateId": "59e3577886f774176a362503", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "65573fa5655447403702a816", "type": "Item" }, { + "templateId": "5d1b33a686f7742523398398", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", "type": "Item" + } + ], + "productionTime": 11000, + "endProduct": "5d1b376e86f774252519444e", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600aa209f64dfd63ec1293d6", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" }, { - "count": 2, + "templateId": "5e4abfed86f77406a2713cf7", + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, + "type": "Item" + }, + { "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "templateId": "63a0b208f444d32d6f03ea1e", - "type": "Tool" - }, - { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { "templateId": "61bf83814088ec1a363d7097", - "type": "Item" - }, - { - "questId": "5c1141f386f77430ff393792", - "type": "QuestComplete" + "type": "Tool" } - ] + ], + "productionTime": 3600, + "endProduct": "5648a69d4bdc2ded0b8b457b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "6399c421d65735732c6ba765", "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "62e910aaf957f2915e0a5e36", - "isCodeProduction": false, - "isEncoded": true, - "locked": true, - "needFuelForAllProductionTime": true, - "productionLimitCount": 0, - "productionTime": 43200, "requirements": [ { + "templateId": "62e910aaf957f2915e0a5e36", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "62e910aaf957f2915e0a5e36", "type": "Item" }, { @@ -2979,27 +1012,315 @@ "type": "Tool" }, { + "templateId": "6389c70ca33d8c4cdf4932c6", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", "type": "Item" } - ] + ], + "productionTime": 43200, + "endProduct": "62e910aaf957f2915e0a5e36", + "isEncoded": true, + "locked": true, + "needFuelForAllProductionTime": true, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { - "_id": "5eda0ad40699b81bb9142aae", - "areaType": 11, + "_id": "655b60774343a16d2e04766b", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3556c86f7741776641ac2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59faf98186f774067b6be103", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "656fa25e94b480b8a500c0e0", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 7000, + "endProduct": "5ab8dced86f774646209ec87", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, "continuous": false, - "count": 2, - "endProduct": "5c05300686f7746dce784e5d", - "isCodeProduction": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61b9da6a66f37641c8240014", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a6a186f77412640e2e80", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 8400, + "endProduct": "5ed5160a87bb8443d10680b5", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e13301cc7049d4d9738e1a7", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5755356824597772cb798962", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb25a4bdc2dfb738b4567", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c695186f7741e566b64a2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2880, + "endProduct": "5d1b3a5d86f774252167ba22", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a11354b552772a0c4ba09e", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5780cf722459777a5108b9a1", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ], + "productionTime": 10000, + "endProduct": "60391a8b3364dc22b04d0ce5", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "63a571802116d261d2336cd1", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "6389c70ca33d8c4cdf4932c6", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c052f6886f7746b1e3db148", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a3efd86f77437d351a25b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "56742c324bdc2d150f8b456d", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "questId": "625d6ffaf7308432be1d44c5", + "type": "QuestComplete" + } + ], + "productionTime": 5400, + "endProduct": "63a0b2eabea67a6d93009e52", "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, "productionLimitCount": 0, - "productionTime": 225000, + "isCodeProduction": false + }, + { + "_id": "5de021b30f6d581e965bcde7", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "59e6687d86f77411d949b251", + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 4700, + "endProduct": "5d1c819a86f774771b0acd6c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da02e9078f1947650d7bb8", + "areaType": 11, "requirements": [ { "areaType": 11, @@ -3007,27 +1328,391 @@ "type": "Area" }, { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347baf24597738002c6178", - "type": "Item" + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" }, { + "templateId": "590c621186f774138d11ea29", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c392f86f77444754deb29", "type": "Item" }, { + "templateId": "62a0a16d0b9d3c46de5b6e97", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7c024770ee6f9c6b8b53", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 39600, + "endProduct": "6389c8c5dbfd5e4b95197e6b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67f4ec82690e0a541a021d3d", + "areaType": 6, + "requirements": [ + { + "areaType": 6, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "57513f9324597720a7128161", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", + "type": "Tool" + } + ], + "productionTime": 1800, + "endProduct": "60098b1705871270cd5352a1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6012ee7e44a0465ee67a58de", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c0e533786f7747fa23f4d47", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb3f34bdc2d03748b456a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5751435d24597720a27126d1", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "60e71c48c1bfa3050473b8e5", + "type": "QuestComplete" + } + ], + "productionTime": 5500, + "endProduct": "5ed51652f6c34d2cc26336a1", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600a9a34189b226f40059743", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5b4391a586f7745321235ab2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e366c186f7741778269d85", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "590c639286f774151567fa95", + "type": "Tool" + } + ], + "productionTime": 9100, + "endProduct": "5d1b2ffd86f77425243e8d17", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de951483c52683d810b4a10", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5734781f24597737e04bf32a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + } + ], + "productionTime": 1980, + "endProduct": "590a3b0486f7743954552bdb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61c226d91b8c294cd411c881", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5672cb124bdc2d1a0f8b4568", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5672cb724bdc2dc2088b456b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a391c86f774385a33c404", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + } + ], + "productionTime": 61300, + "endProduct": "590a3efd86f77437d351a25b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "658976555aa97f488d096ca7", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 8, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 10400, + "endProduct": "66b6296d7994640992013b17", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002e26ac6b84d04cc62045e", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590a386e86f77429692b27ab", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 2600, + "endProduct": "590a391c86f774385a33c404", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de10c50c607752a1f1262c7", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "57505f6224597709a92585a9", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5000, + "endProduct": "59e3577886f774176a362503", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eda0ad40699b81bb9142aae", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "57347baf24597738002c6178", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c392f86f77444754deb29", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { "templateId": "56742c324bdc2d150f8b456d", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" }, { @@ -3042,103 +1727,263 @@ "questId": "63966fe7ea74a47c2d3fc0e6", "type": "QuestComplete" } - ] + ], + "productionTime": 225000, + "endProduct": "5c05300686f7746dce784e5d", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false }, { - "_id": "600abc08e4022c380a7260a8", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5c0530ee86f774697952d952", - "isCodeProduction": false, + "_id": "5dcfe2582f9b3d566c7af977", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b39a386f774252339976f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 12100, + "endProduct": "59e35cbb86f7741778269d83", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, "productionLimitCount": 0, - "productionTime": 120000, + "isCodeProduction": false + }, + { + "_id": "63a2abbb31772a61500d5336", + "areaType": 10, "requirements": [ { - "areaType": 7, + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5ac4c50d5acfc40019262e87", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1500, + "endProduct": "59e366c186f7741778269d85", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d78f27d115f693ad750d2c6", + "areaType": 10, + "requirements": [ + { + "areaType": 10, "requiredLevel": 3, "type": "Area" }, { + "templateId": "60391b0fb847c71012789415", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5af0534a86f7743b6f354284", "type": "Item" }, { + "templateId": "5e2af51086f7746d3f3c3402", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", "type": "Item" + } + ], + "productionTime": 18300, + "endProduct": "5448be9a4bdc2dfd2f8b456a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 6, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002e8fb41d38607bc4198ab", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" }, { - "count": 3, + "templateId": "590c621186f774138d11ea29", + "count": 5, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c052fb986f7746b2101e909", "type": "Item" }, { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { + "templateId": "5e42c83786f7742a021fdf3c", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c7750ef44505c87f5996", "type": "Item" }, { - "templateId": "6389c8fb46b54c634724d847", + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + }, + { + "templateId": "5c05300686f7746dce784e5d", + "type": "Tool" + }, + { + "templateId": "61bf7c024770ee6f9c6b8b53", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 236000, + "endProduct": "5e42c81886f7742a01529f57", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61c77cc6fcc1673f08540e9b", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af29386f7746d4159f077", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", "type": "Tool" } - ] + ], + "productionTime": 4000, + "endProduct": "60098b1705871270cd5352a1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e0758f99694354c4d2bfd47", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 6200, + "endProduct": "651450ce0e00edc794068371", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "5dd3c5a67da3785e63275437", "areaType": 10, - "continuous": false, - "count": 3, - "endProduct": "5d6fc87386f77449db3db94e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6750, "requirements": [ { + "templateId": "5d0379a886f77420407aa271", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d0379a886f77420407aa271", "type": "Item" }, { + "templateId": "590c5a7286f7747884343aea", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", "type": "Item" }, { @@ -3150,1261 +1995,27 @@ "templateId": "60391afc25aff57af81f7085", "type": "Tool" } - ] - }, - { - "_id": "655b457c9db22d43ab42b706", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "619636be6db0f2477964e710", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6800, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e68f6f86f7746c9f75e846", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a373286f774287540368b", - "type": "Item" - }, - { - "templateId": "5e2af37686f774755a234b65", - "type": "Tool" - }, - { - "questId": "5a27bb8386f7741c770d2d0a", - "type": "QuestComplete" - } - ] - }, - { - "_id": "66509e8c9398c9c9e10a31bb", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "66507eabf5ddb0818b085b68", - "isCodeProduction": false, + ], + "productionTime": 6750, + "endProduct": "5d6fc87386f77449db3db94e", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "619cc01e0a7c3a1a2731940c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "gameVersions": [ - "edge_of_darkness", - "eod_tue_edition" - ], - "type": "GameVersion" - } - ] - }, - { - "_id": "619eb0eb56579138ec08fed8", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5d02778e86f774203e7dedbe", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2950, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "619cc01e0a7c3a1a2731940c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c661e86f7741e566b646a", - "type": "Item" - } - ] - }, - { - "_id": "62a115db5c6bbf22c15ac19d", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b31ce86f7742523398394", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 900, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2b4386f77425357b6123", - "type": "Item" - } - ] - }, - { - "_id": "5d5c21aed582a50066024610", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "590c678286f77426c9660122", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3000, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751a25924597722c463c472", - "type": "Item" - }, - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e831507ea0a7c419c2f9bd9", - "type": "Item" - } - ] - }, - { - "_id": "655b5af31273611d2462ab76", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "5d6e68a8a4b9360b6c0d54e2", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "560d5e524bdc2d25448b4571", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5c9f86f77477c91c36e7", - "type": "Item" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "questId": "6179ad0a6e9dd54ac275e3f2", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5ffcafd468c55773943fc71e", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af47786f7746d404f3aaa", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2600, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5aa2ba46e5b5b000137b758d", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "629e19eddb6e1a02066676f1", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5910968f86f77425cf569c32", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 50400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2e1186f77425357b6124", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb5454bdc2df8738b456a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5bc9b355d4351e6d1509862a", - "type": "Item" - }, - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c819a86f774771b0acd6c", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a0bb621468534a797ad5", - "type": "Item" - } - ] - }, - { - "_id": "655b68b4769de97e1d62d117", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d5e9c74a4b9364855191c40", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4305, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - } - ] - }, - { - "_id": "67449c79268737ef6908d636", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "674078c4a9c9adf0450d59f9", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6740987b89d5e1ddc603f4f0", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67449b6c89d5e1ddc603f504", - "type": "Item" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b4669b71eeb7c4168c625", - "areaType": 10, - "continuous": false, - "count": 90, - "endProduct": "5fd20ff893a8961fc660a954", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 13000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 90, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b8725c4b75259c590fa899", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "questId": "60e71c9ad54b755a3b53eb66", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5d78dbfb65aebb016d20b6f3", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5ac4cd105acfc40016339859", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c819a86f774771b0acd6c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5648b1504bdc2d9d488b4584", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ac50c185acfc400163398d4", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "64b6aefe25251516d768542d", - "areaType": 10, - "continuous": false, - "count": 5, - "endProduct": "5e32f56fcb6d5863cc5e5ee4", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "62a0a098de7ac8199358053b", - "type": "Tool" - }, - { - "questId": "5c0d190cd09282029f5390d8", - "type": "QuestComplete" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391b0fb847c71012789415", - "type": "Item" - } - ] - }, - { - "_id": "655b6b641273611d2462ab78", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "56e335e4d2720b6c058b456d", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1200, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - } - ] - }, - { - "_id": "6002e68bca41c53bee18813b", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af29386f7746d4159f077", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e358a886f7741776641ac3", - "type": "Item" - }, - { - "templateId": "56742c284bdc2d98058b456d", - "type": "Tool" - } - ] - }, - { - "_id": "676a9fe717262755cf0ff52f", - "areaType": 21, - "continuous": false, - "count": 4, - "endProduct": "67586bee39b1b82b0d0f9d06", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 16000, - "requirements": [ - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d403f9186f7743cac3f229b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - }, - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "67da05c8078f1947650d7bb9", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c1d0dc586f7744baf2e7b79", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 90000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c94bbff86f7747ee735c08f", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c8c5dbfd5e4b95197e6b", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a16d0b9d3c46de5b6e97", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05308086f7746b2101e90b", - "type": "Item" - } - ] - }, - { - "_id": "655b50e7c023e22044165de5", - "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "5a3c16fe86f77452b62de32a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5600, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7bbb74b75259c590fa897", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c774f86f7746d6620f8db", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - } - ] - }, - { - "_id": "5d5c1f25d582a5479d4ec458", - "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "56dff2ced2720bb4668b4567", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56dff3afd2720bba668b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "5d40425986f7743185265461", - "type": "Tool" - }, - { - "questId": "59c512ad86f7741f0d09de9b", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5ede07163c345121732a10e9", - "areaType": 2, - "continuous": false, - "count": 10, - "endProduct": "5751a25924597722c463c472", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb25a4bdc2dfb738b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - } - ] - }, - { - "_id": "61c77c830f3639492721e99c", - "areaType": 8, "continuous": false, "count": 3, - "endProduct": "5c0fa877d174af02a012e1cf", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 17500, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "templateId": "590c595c86f7747884343ad7", - "type": "Tool" - }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - } - ] - }, - { - "_id": "5de950a845b5d67bad6e9ef7", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "59e36c6f86f774176c10a2a7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347cd0245977445a2d6ff1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - } - ] - }, - { - "_id": "5e37f15386f774299f112a2e", - "areaType": 10, - "continuous": false, - "count": 5, - "endProduct": "5a0c27731526d80618476ac4", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4670, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a2a57cfc4a2826c6e06d44a", - "type": "Item" - } - ] - }, - { - "_id": "5d8a13564ac882218d2085b0", - "areaType": 8, - "continuous": false, - "count": 3, - "endProduct": "5734773724597737fd047c14", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4900, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "575146b724597720a27126d5", - "type": "Item" - }, - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "655b60774343a16d2e04766b", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5ab8dced86f774646209ec87", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59faf98186f774067b6be103", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656fa25e94b480b8a500c0e0", - "type": "Item" - } - ] - }, - { - "_id": "63a2abbb31772a61500d5336", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "59e366c186f7741778269d85", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ac4c50d5acfc40019262e87", - "type": "Item" - } - ] - }, - { - "_id": "66575197464c4b4ba4671004", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665732e7ac60f009f270d1ef", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572b3f6a723f7f005a066c", - "type": "Item" - } - ] - }, - { - "_id": "5fe338e364adb27bb90594be", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5ed51652f6c34d2cc26336a1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4600, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] + "isCodeProduction": false }, { "_id": "5d8f5ee9de0799001d229ed2", "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d1b371186f774253763a656", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3720, "requirements": [ { + "templateId": "56742c2e4bdc2d95058b456d", "count": 10, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "56742c2e4bdc2d95058b456d", "type": "Item" }, { @@ -4413,118 +2024,91 @@ "type": "Area" }, { + "templateId": "56742c284bdc2d98058b456d", "count": 10, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "56742c284bdc2d98058b456d", "type": "Item" }, { "templateId": "5d1b39a386f774252339976f", "type": "Tool" } - ] - }, - { - "_id": "5dc1f4d9e078d303d91b44c7", - "areaType": 8, - "continuous": false, - "count": 8, - "endProduct": "5448fee04bdc2dbc018b4567", - "isCodeProduction": false, + ], + "productionTime": 3720, + "endProduct": "5d1b371186f774253763a656", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6650, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - }, - { - "templateId": "5d1b39a386f774252339976f", - "type": "Tool" - } - ] - }, - { - "_id": "6671d4fef3bee343f5000703", - "areaType": 7, "continuous": false, "count": 1, - "endProduct": "66507eabf5ddb0818b085b68", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4800, + "isCodeProduction": false + }, + { + "_id": "5df8ffcbaab5f257bd7ff3a8", + "areaType": 2, "requirements": [ { - "areaType": 7, + "areaType": 2, "requiredLevel": 2, "type": "Area" }, { + "templateId": "590c5c9f86f77477c91c36e7", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", "type": "Item" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "619cc01e0a7c3a1a2731940c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "type": "QuestComplete" + "templateId": "5d40419286f774318526545f", + "type": "Tool" } - ] - }, - { - "_id": "62a1123ac30cfa1d366aeb82", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "57f4c844245977379d5c14d1", - "isCodeProduction": false, + ], + "productionTime": 9000, + "endProduct": "590c5bbd86f774785762df04", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, "productionLimitCount": 0, - "productionTime": 1800, + "isCodeProduction": false + }, + { + "_id": "658975e25c4f0642a502d54e", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5950, + "endProduct": "668fe5a998b5ad715703ddd6", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "63a3359eaf870e651d58e61a", + "areaType": 10, "requirements": [ { "areaType": 10, @@ -4532,31 +2116,179 @@ "type": "Area" }, { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + }, + { + "templateId": "5ea034f65aad6446a939737e", "count": 1, "isEncoded": false, - "isFunctional": true, + "isFunctional": false, "isSpawnedInSession": false, - "templateId": "57d14d2524597714373db789", "type": "Item" }, { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" + "templateId": "5448c12b4bdc2d02308b456f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af22086f7746d3f3c33fa", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" } - ] - }, - { - "_id": "5d78d8a03fe9fc21602e16be", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "590c657e86f77412b013051d", - "isCodeProduction": false, + ], + "productionTime": 1200, + "endProduct": "55d485be4bdc2d962f8b456f", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, "productionLimitCount": 0, - "productionTime": 4500, + "isCodeProduction": false + }, + { + "_id": "655b5dc8065b076eb02c4b48", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "656f57dc27aed95beb08f628", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4000, + "endProduct": "5c0e5edb86f77461f55ed1f7", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b48fe065b076eb02c4b46", + "areaType": 10, + "requirements": [ + { + "templateId": "64b7af5a8532cf95ee0a0dbd", + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a09ee4cf4a99369e262453", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 15480, + "endProduct": "5656d7c34bdc2d9d198b4587", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d8a1a7d7a3dfe597c2e459e", + "areaType": 7, + "requirements": [ + { + "templateId": "590c661e86f7741e566b646a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 7, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5e831507ea0a7c419c2f9bd9", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2350, + "endProduct": "544fb45d4bdc2dee738b4568", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede0502879619077751d00a", + "areaType": 7, "requirements": [ { "areaType": 7, @@ -4564,43 +2296,187 @@ "type": "Area" }, { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60098af40accd37ef2175f27", - "type": "Item" - }, - { + "templateId": "5c0e531286f7747fa54205c2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3606886f77417674759a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a043cf4a99369e2624a5", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5af0454c86f7746bf20992e8", "type": "Item" } - ] + ], + "productionTime": 5100, + "endProduct": "5c0e531d86f7747fa23f4d42", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ed9ff023a68ec264e5233c2", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d0376a486f7747d8050965c", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "573477e124597737dd42e191", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "63966faeea19ac7ed845db2c", + "type": "QuestComplete" + } + ], + "productionTime": 135399, + "endProduct": "5c05308086f7746b2101e90b", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede07163c345121732a10e9", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "544fb25a4bdc2dfb738b4567", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40407c86f774318526545a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1000, + "endProduct": "5751a25924597722c463c472", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 10, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e075ac73c392e0367260489", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 13, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 20, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "67586c61a0c49554ed0bb4a8", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 17510, + "endProduct": "67600929bd0a0549d70993f6", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "603ce7c5fd70f047f93bee2a", "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5aa7cfc0e5b5b00015693143", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2890, "requirements": [ { "areaType": 2, @@ -4608,4464 +2484,83 @@ "type": "Area" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5ea05cf85ad9772e6624305d", - "type": "Item" - }, - { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, + "type": "Item" + }, + { "templateId": "57347c1124597737fb1379e3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" }, { + "templateId": "5e2af4d286f7746d4159f07a", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", "type": "Item" }, { "templateId": "61bf83814088ec1a363d7097", "type": "Tool" } - ] - }, - { - "_id": "5dd3c5487058311d4b267186", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "590c5a7286f7747884343aea", - "isCodeProduction": false, + ], + "productionTime": 2890, + "endProduct": "5aa7cfc0e5b5b00015693143", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5350, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56dff216d2720bbd668b4568", - "type": "Item" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - } - ] - }, - { - "_id": "658976555aa97f488d096ca7", - "areaType": 21, "continuous": false, "count": 1, - "endProduct": "66b6296d7994640992013b17", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 10400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 8, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] + "isCodeProduction": false }, { - "_id": "5dde60e0e2c8f57eb6465327", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "61962d879bb3d20b0946d385", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7350, - "requirements": [ - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5e2af37686f774755a234b65", - "type": "Tool" - }, - { - "questId": "5c0bd94186f7747a727f09b2", - "type": "QuestComplete" - } - ] - }, - { - "_id": "600a9955ba91d953182d69f0", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "59d6088586f774275f37482f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": true, - "isSpawnedInSession": false, - "templateId": "59e6152586f77473dc057aa1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59d64fc686f774171b243fe2", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - } - ] - }, - { - "_id": "655b4e591fe356507267b2f5", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "59e77a2386f7742ee578960a", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "619cbfccbedcde2f5b3f7bdd", - "type": "Tool" - } - ] - }, - { - "_id": "6002e26ac6b84d04cc62045e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590a391c86f774385a33c404", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2600, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a386e86f77429692b27ab", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "61b9da6a66f37641c8240014", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5ed5160a87bb8443d10680b5", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] - }, - { - "_id": "6558d7894626375d6735670c", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "5fc275cf85fd526b824a571a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 15000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5fc382c1016cce60e8341b20", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "6666d829a8298779fc40e537", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665732f4464c4b4ba4670fa9", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572b88ac60f009f270d1dc", - "type": "Item" - } - ] - }, - { - "_id": "5df8fe0deddb880fd56f2d7d", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "59e358a886f7741776641ac3", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2450, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40412b86f7743cb332ac3a", - "type": "Item" - }, - { - "templateId": "5d1b39a386f774252339976f", - "type": "Tool" - } - ] - }, - { - "_id": "655b4de41f2b6843ec751fd5", - "areaType": 10, - "continuous": false, - "count": 70, - "endProduct": "5887431f2459777e1612938f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 14400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 70, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b8f7968532cf95ee0a0dbf", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5dc1f7de6058e020335c9d88", + "_id": "5d8a13564ac882218d2085b0", "areaType": 8, - "continuous": false, - "count": 7, - "endProduct": "544fb6cc4bdc2d34748b456e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4300, "requirements": [ { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d90245977448f7b7f65", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448ff904bdc2d6f028b456e", - "type": "Item" - } - ] - }, - { - "_id": "5f241246232409155b66b809", - "areaType": 8, - "continuous": false, - "count": 20, - "endProduct": "5751496424597720a27126da", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 43200, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5af0484c86f7740f02001f7f", "type": "Item" }, { + "templateId": "575146b724597720a27126d5", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5bc9be8fd4351e00334cae6e", "type": "Item" }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - }, - { - "templateId": "62a09e73af34e73a266d932a", - "type": "Tool" - } - ] - }, - { - "_id": "600a9bd0189b226f40059751", - "areaType": 10, - "continuous": false, - "count": 7, - "endProduct": "5e85a9f4add9fe03027d9bf1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 16500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af37686f774755a234b65", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a0c27731526d80618476ac4", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "677d4fdb42cdfce74006f961", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b304286f774253763a528", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1887, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b309586f77425227d1676", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "5ede1e0b7690fa313b632e88", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "57347d7224597744596b4e72", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4710, - "requirements": [ { "areaType": 8, - "requiredLevel": 1, + "requiredLevel": 2, "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347da92459774491567cf5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d8724597744596b4e76", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d3d245977448f7b7f61", - "type": "Item" } - ] - }, - { - "_id": "67c9d447b53b0fcf1d0bb0ab", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "66573310a1657263d816a139", - "isCodeProduction": false, + ], + "productionTime": 4900, + "endProduct": "5734773724597737fd047c14", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 60, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572bb3ac60f009f270d1df", - "type": "Item" - } - ] - }, - { - "_id": "67da01179cbeb8d6f4011961", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "61bf7c024770ee6f9c6b8b53", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 14400, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3b0486f7743954552bdb", - "type": "Item" - } - ] - }, - { - "_id": "5d93b91286f77467310ca15d", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5c13cef886f774072e618e82", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1560, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "577e1c9d2459773cd707c525", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "63baedefe6ebc10fe0201083", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "5ba26835d4351e0035628ff5", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ba2678ad4351e44f824b344", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "templateId": "590a3d9c86f774385926e510", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "questId": "5c0d4e61d09282029f53920e", - "type": "QuestComplete" - } - ] - }, - { - "_id": "60048c82a7903e00382d9593", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b5e94d7ad1a2b865a96b0", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 32200, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b2ffd86f77425243e8d17", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0377ce86f774186372f689", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05308086f7746b2101e90b", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c37d286f77443be3d7827", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "6389c8fb46b54c634724d847", - "type": "Tool" - }, - { - "questId": "63966ff54c3ef01b6f3ffad8", - "type": "QuestComplete" - } - ] - }, - { - "_id": "600ab8e3e4022c380a726088", - "areaType": 8, "continuous": false, "count": 3, - "endProduct": "5d403f9186f7743cac3f229b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 6400, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5bc9be8fd4351e00334cae6e", - "type": "Item" - }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - } - ] - }, - { - "_id": "5d8f5e1af3a8f83c8600afb2", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5d40412b86f7743cb332ac3a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2100, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c13cd2486f774072c757944", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a09f32621468534a797acb", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "63a2327c151bfb591645c104", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5a1eaa87fcdbcb001865f75e", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 86400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0377ce86f774186372f689", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b2ffd86f77425243e8d17", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c7750ef44505c87f5996", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05308086f7746b2101e90b", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "6389c8fb46b54c634724d847", - "type": "Tool" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "6396701b9113f06a7c3b2379", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e58e0c286f7740ba7486ca3", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c12613b86f7743bbe2c3f76", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 114000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a16d0b9d3c46de5b6e97", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "577e1c9d2459773cd707c525", - "type": "Item" - } - ] - }, - { - "_id": "655b65fc1273611d2462ab77", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5b44cad286f77402a54ae7e5", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 14000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656fae5f7c2d57afe200c0d7", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "questId": "5ae4497b86f7744cf402ed00", - "type": "QuestComplete" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - } - ] - }, - { - "_id": "64b6b5c1c3abf20a9660daad", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5c0e534186f7747fa1419867", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "questId": "60e71c48c1bfa3050473b8e5", - "type": "QuestComplete" - }, - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3f2d86f774253763b735", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e530286f7747fa1419862", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e8f3423fd7471236e6e3b64", - "type": "Item" - } - ] - }, - { - "_id": "6666d7ea0b734650a91d0a42", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "66573310a1657263d816a139", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572bb3ac60f009f270d1df", - "type": "Item" - } - ] - }, - { - "_id": "5df138986c38ba26da0b3a77", - "areaType": 10, - "continuous": false, - "count": 4, - "endProduct": "5d1b309586f77425227d1676", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1320, - "requirements": [ - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b304286f774253763a528", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "5eeca9bad874f914d2536585", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5b7c710788a4506dec015957", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 18000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c127c4486f7745625356c13", - "type": "Item" - }, - { - "count": 6, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af29386f7746d4159f077", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "5df914a53ce0f648b833bb37", - "areaType": 11, - "continuous": false, - "count": 3, - "endProduct": "590c621186f774138d11ea29", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 123200, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c324bdc2d150f8b456d", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1265fc86f7743f896a21c2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c392f86f77444754deb29", - "type": "Item" - }, - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "5de919ec1b25d85cf30ca39a", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d6fc78386f77449d825f9dc", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5870, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "58d3db5386f77426186285a0", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "617aa4dd8166f034d57de9c5", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "619e45ea98398d3b104e8419", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "619cbfeb6b8a1b37a54eebfa", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 25000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2e1186f77425357b6124", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5bbd86f774785762df04", - "type": "Item" - }, - { - "templateId": "5d40425986f7743185265461", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d4042a986f7743185265463", - "type": "Item" - } - ] - }, - { - "_id": "5dc1f634ee5f2440a9272dc7", - "areaType": 8, - "continuous": false, - "count": 10, - "endProduct": "5d40407c86f774318526545a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5750, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b376e86f774252519444e", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - } - ] - }, - { - "_id": "5dceb6964a98801ba2075d27", - "areaType": 10, - "continuous": false, - "count": 80, - "endProduct": "5a6086ea4f39f99cd479502f", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8256, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c774f86f7746d6620f8db", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "count": 80, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "58dd3ad986f77403051cba8f", - "type": "Item" - }, - { - "questId": "5a27bc8586f7741b543d8ea4", - "type": "QuestComplete" - } - ] - }, - { - "_id": "6012ee7e44a0465ee67a58de", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5ed51652f6c34d2cc26336a1", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5500, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e533786f7747fa23f4d47", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751435d24597720a27126d1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "questId": "60e71c48c1bfa3050473b8e5", - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b650ab71eeb7c4168c627", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5ab8e79e86f7742d8b372e78", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "templateId": "591094e086f7747caa7bb2ef", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656f611f94b480b8a500c0db", - "type": "Item" - } - ] - }, - { - "_id": "5e1330dca0f0f8773c069c99", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "590c595c86f7747884343ad7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 120, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60363c0c92ec1c31037959f5", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "5ffcadeff3fdc212a91d5539", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "5e8f3423fd7471236e6e3b64", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3800, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751487e245977207e26a315", - "type": "Item" - } - ] - }, - { - "_id": "655b6a50b71eeb7c4168c628", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5f60c74e3b85f6263c145586", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5aa7e276e5b5b000171d0647", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af47786f7746d404f3aaa", - "type": "Item" - }, - { - "templateId": "5d40407c86f774318526545a", - "type": "Tool" - }, - { - "templateId": "63a0b208f444d32d6f03ea1e", - "type": "Tool" - }, - { - "questId": "60e71b62a0beca400d69efc4", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5dceeaf100b3815535149f5a", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c127c4486f7745625356c13", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b371186f774253763a656", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c77245977448d35f6e2", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "5ede0135f7db6021ee400dfe", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "5755383e24597772cb798966", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3300, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c13cd2486f774072c757944", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40412b86f7743cb332ac3a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - } - ] - }, - { - "_id": "655b47d1769de97e1d62d115", - "areaType": 10, - "continuous": false, - "count": 200, - "endProduct": "64b7af5a8532cf95ee0a0dbd", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "62a0a098de7ac8199358053b", - "type": "Tool" - } - ] - }, - { - "_id": "61b9da10695bdc188002db3a", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5c0e531286f7747fa54205c2", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "5ffcab66fd851f4b000d61ef", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af55f86f7746d4159f07c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 30000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b36a186f7742523398433", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c77245977448d35f6e2", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "5e6cfc53a3e6886b9e6c39a8", - "areaType": 7, - "continuous": false, - "count": 5, - "endProduct": "5c0e531286f7747fa54205c2", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4990, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 7, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e530286f7747fa1419862", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", - "type": "Item" - } - ] - }, - { - "_id": "5dd3c9c8449c0c31795b0f0b", - "areaType": 10, - "continuous": false, - "count": 3, - "endProduct": "5d6fc87386f77449db3db94e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2150, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347b8b24597737dd42e192", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "62a11354b552772a0c4ba09e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "60391a8b3364dc22b04d0ce5", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5780cf722459777a5108b9a1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "67da0223078f1947650d7bb7", - "areaType": 11, - "continuous": false, - "count": 3, - "endProduct": "5c94bbff86f7747ee735c08f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2400, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - } - ] - }, - { - "_id": "655b5fd2975a7f3c734661a8", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "61bcc89aef0f505f0c6cd0fc", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - }, - { - "questId": "5b478d0f86f7744d190d91b5", - "type": "QuestComplete" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656fb21fa0dce000a2020f7c", - "type": "Item" - } - ] - }, - { - "_id": "5ee4a093a297eb185236194f", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c052fb986f7746b2101e909", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 192000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c94bbff86f7747ee735c08f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05300686f7746dce784e5d", - "type": "Item" - }, - { - "templateId": "5ac78a9b86f7741cca0bbd8d", - "type": "Tool" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "63966fccac6f8f3c677b9d89", - "type": "QuestComplete" - } - ] - }, - { - "_id": "61c226d91b8c294cd411c881", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590a3efd86f77437d351a25b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 61300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb124bdc2d1a0f8b4568", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb724bdc2dc2088b456b", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "600aa209f64dfd63ec1293d6", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5648a69d4bdc2ded0b8b457b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3600, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e4abfed86f77406a2713cf7", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "5de10c50c607752a1f1262c7", - "areaType": 8, - "continuous": false, - "count": 1, - "endProduct": "59e3577886f774176a362503", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5000, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", - "type": "Item" - } - ] - }, - { - "_id": "62a112fec1cce91d2c46a06e", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "62a0a124de7ac81993580542", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 43200, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a8036fb86f77407252ddc02", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "574eb85c245977648157eec3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5900b89686f7744e704a8747", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a80a29286f7742b25692012", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5798a2832459774b53341029", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5be4038986f774527d3fae60", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - } - ] - }, - { - "_id": "5dcfe2582f9b3d566c7af977", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "59e35cbb86f7741778269d83", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12100, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b39a386f774252339976f", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - } - ] - }, - { - "_id": "5eecaa6327ccd70521107ff5", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5e2af4a786f7746d3f3c3400", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2200, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "572b7adb24597762ae139821", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "6002e8fb41d38607bc4198ab", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5e42c81886f7742a01529f57", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 236000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e42c83786f7742a021fdf3c", - "type": "Item" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "templateId": "5c05300686f7746dce784e5d", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7c024770ee6f9c6b8b53", - "type": "Item" - } - ] - }, - { - "_id": "5eda07acb6c564225571536c", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e4abfed86f77406a2713cf7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2800, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "templateId": "62a0a098de7ac8199358053b", - "type": "Tool" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "66582be04de4820934746cea", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "66582972ac60f009f270d2aa", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "665828c44de4820934746ce4", - "type": "Item" - } - ] - }, - { - "_id": "6745925da9c9adf0450d5bca", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "674098588466ebb03408b210", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67409848d0b2f8eb9b034db9", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "67da04db9cbeb8d6f4011962", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c1d0efb86f7744baf2e7b7b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 90000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c94bbff86f7747ee735c08f", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c8c5dbfd5e4b95197e6b", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05300686f7746dce784e5d", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05308086f7746b2101e90b", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7c024770ee6f9c6b8b53", - "type": "Item" - } - ] - }, - { - "_id": "603cf3094bb658618458e010", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "56742c324bdc2d150f8b456d", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1265fc86f7743f896a21c2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b309586f77425227d1676", - "type": "Item" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - } - ] - }, - { - "_id": "5dea63e21ecdbf7668030f24", - "areaType": 10, - "continuous": false, - "count": 5, - "endProduct": "5733279d245977289b77ec24", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d03794386f77420415576f5", - "type": "Item" - }, - { - "templateId": "619cbfccbedcde2f5b3f7bdd", - "type": "Tool" - } - ] - }, - { - "_id": "66140c4a9688754de10dac07", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "660bc341c38b837877075e4c", - "isCodeProduction": true, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "660bbc47c38b837877075e47", - "type": "Item" - }, - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b4f57769de97e1d62d116", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "5e023d34e8a400319a28ed44", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e77a2386f7742ee578960a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391a8b3364dc22b04d0ce5", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "questId": "5bc4856986f77454c317bea7", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e66408286f7747b2c2d7786", - "areaType": 10, - "continuous": false, - "count": 8, - "endProduct": "5e340dcdcb6d5863cc5e5efb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5656eb674bdc2d35148b457c", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "655b4489065b076eb02c4b45", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "54527ac44bdc2d36668b4567", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "54527a984bdc2d4e668b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "questId": "639135534b15ca31f76bc317", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e0758f99694354c4d2bfd47", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "651450ce0e00edc794068371", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6200, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "62a116282c5e0c325b62d5ec", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "62a0a16d0b9d3c46de5b6e97", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 36000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "templateId": "5c05308086f7746b2101e90b", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a124de7ac81993580542", - "type": "Item" - } - ] - }, - { - "_id": "5de95f1c9517b140195ab717", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "590a358486f77429692b2790", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4400, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" - } - ] - }, - { - "_id": "67c9d5035be7fc94c806dee9", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665732e7ac60f009f270d1ef", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 60, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572b3f6a723f7f005a066c", - "type": "Item" - } - ] - }, - { - "_id": "5d8b8ddd322e8650762f6e3a", - "areaType": 2, - "continuous": false, - "count": 5, - "endProduct": "59e3556c86f7741776641ac2", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2310, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c13cd2486f774072c757944", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59faf98186f774067b6be103", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e35abd86f7741778269d82", - "type": "Item" - } - ] - }, - { - "_id": "600a9a34189b226f40059743", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d1b2ffd86f77425243e8d17", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5b4391a586f7745321235ab2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e366c186f7741778269d85", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "590c639286f774151567fa95", - "type": "Tool" - } - ] - }, - { - "_id": "670932d7b564327a0e023fcb", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "6707d13e4e617ec94f0e5631", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 900, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "questId": "67040c22cc1f3752720376e9", - "type": "QuestComplete" - } - ] - }, - { - "_id": "6666d899eb78191c502350b2", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665730fa4de4820934746c48", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66571bf06a723f7f005a0619", - "type": "Item" - } - ] - }, - { - "_id": "677d4db74ac9193862043ee9", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590c2e1186f77425357b6124", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 462, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2b4386f77425357b6123", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2d8786f774245b1f03f3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c311186f77424d1667482", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2c9c86f774245b1f03f2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "6589756f5c4f0642a502d54d", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "6176aca650224f204c1da3fb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5950, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - } - ] - }, - { - "_id": "660c2dbaa2a92e70cc074863", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "660bbc98c38b837877075e4a", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 900, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "660bbc47c38b837877075e47", - "type": "Item" - }, - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b5ebc32b0b1645e6f54c9", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c0e57ba86f7747fa141986d", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656f603f94b480b8a500c0d6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" - }, - { - "questId": "5ae4495086f77443c122bc40", - "type": "QuestComplete" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - } - ] - }, - { - "_id": "61b9da93e7304721fe66ab53", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "637b620db7afa97bfc3d7009", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "657fc79cfd86b9d9680c4a24", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "656efd66034e8e01c407f35c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1600, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "657b22485f444d6dff0c6c2f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af22086f7746d3f3c33fa", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", - "type": "Item" - }, - { - "templateId": "63a0b208f444d32d6f03ea1e", - "type": "Tool" - }, - { - "templateId": "59e35de086f7741778269d84", - "type": "Tool" - } - ] - }, - { - "_id": "67da000f1556838cf90d1716", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "590c37d286f77443be3d7827", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10800, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a386e86f77429692b27ab", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", - "type": "Item" - } - ] - }, - { - "_id": "67c9d4b251ce173bff01eec7", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665732f4464c4b4ba4670fa9", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 60, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572b88ac60f009f270d1dc", - "type": "Item" - } - ] - }, - { - "_id": "5eda072cf6626f08ef0efed4", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "59e7635f86f7742cbf2c1095", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3250, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - } - ] - }, - { - "_id": "5f240f45f4a9420a8c328ee0", - "areaType": 8, - "continuous": false, - "count": 4, - "endProduct": "5751435d24597720a27126d1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6500, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57514643245977207f2c2d09", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0484c86f7740f02001f7f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "templateId": "62a09e73af34e73a266d932a", - "type": "Tool" - } - ] - }, - { - "_id": "655b505c32b0b1645e6f54c5", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5737218f245977612125ba51", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 150, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "573720e02459776143012541", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - } - ] - }, - { - "_id": "6012ea1a01328b2dec3c1a9d", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c12688486f77426843c7d32", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 15500, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56e33634d2720bd8058b456b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57e26fc7245977162a14b800", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "templateId": "56742c284bdc2d98058b456d", - "type": "Tool" - } - ] - }, - { - "_id": "61b9d9deef9a1b5d6a798986", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5d403f9186f7743cac3f229b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5200, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "5d78d81757c9b8484a2bcb99", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "60194943740c5d77f6705eea", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6250, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "5dd11303b78bb413d5133f79", - "areaType": 10, - "continuous": false, - "count": 6, - "endProduct": "5c06782b86f77426df5407d2", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7450, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c2e24597744902c94a1", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "600a9fb7ba91d953182d6a1c", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d0379a886f77420407aa271", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 39000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391b0fb847c71012789415", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391a8b3364dc22b04d0ce5", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "5d8f614c9ea122564c316462", - "areaType": 7, - "continuous": false, - "count": 7, - "endProduct": "5c0e530286f7747fa1419862", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6900, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0548586f7743a532b7e99", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751a89d24597722aa0e8db0", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - } - ] - }, - { - "_id": "5d5589c1f934db045e6c5492", - "areaType": 6, - "continuous": true, - "count": 1, - "endProduct": "5d1b33a686f7742523398398", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 1, - "productionTime": 19500, - "requirements": [ - { - "areaType": 6, - "requiredLevel": 3, - "type": "Area" - }, - { - "resource": 66, - "templateId": "5d1b385e86f774252167b98a", - "type": "Resource" - } - ] - }, - { - "_id": "5d5c1fd4d582a500650132f0", - "areaType": 19, - "continuous": false, - "count": 1, - "endProduct": "5d1b376e86f774252519444e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 11000, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - } - ] - }, - { - "_id": "5eda0247658fac5b8c3862a8", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "55d482194bdc2d1d4e8b456b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "55d480c04bdc2d1d4e8b456a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af29386f7746d4159f077", - "type": "Item" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - } - ] - }, - { - "_id": "615c3d27966c85458e4c49cf", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "60098ad7c2240c0fe85c570a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3600, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c678286f77426c9660122", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751a25924597722c463c472", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60098af40accd37ef2175f27", - "type": "Item" - } - ] - }, - { - "_id": "603cf23a420e7f487e175d7f", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590a3c0a86f774385a33c450", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7000, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c77245977448d35f6e2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af37686f774755a234b65", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - } - ] - }, - { - "_id": "5eda04a30699b81bb9142aa2", - "areaType": 2, - "continuous": false, - "count": 6, - "endProduct": "544fb25a4bdc2dfb738b4567", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1900, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af47786f7746d404f3aaa", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "5d8a1568df9fc649e81b8b1b", - "areaType": 8, - "continuous": false, - "count": 5, - "endProduct": "573476f124597737e04bf328", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6100, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "573475fb24597737fb1379e1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5bc9be8fd4351e00334cae6e", - "type": "Item" - } - ] - }, - { - "_id": "615c3d800d3afc358a55405e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1c819a86f774771b0acd6c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "574d967124597745970e7c94", - "type": "Item" - }, - { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" - } - ] - }, - { - "_id": "5ffcaa60f3fdc212a91d552b", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5e2af4d286f7746d4159f07a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5648a7494bdc2d9d488b4583", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] + "isCodeProduction": false }, { "_id": "655b63ac9db22d43ab42b70a", "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d5d87f786f77427997cfaef", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9000, "requirements": [ { "areaType": 2, @@ -9073,27 +2568,27 @@ "type": "Area" }, { + "templateId": "5e2af41e86f774755a234b67", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", "type": "Item" }, { + "templateId": "5e2af4d286f7746d4159f07a", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", "type": "Item" }, { + "templateId": "5e2af4a786f7746d3f3c3400", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", "type": "Item" }, { @@ -9109,34 +2604,377 @@ "type": "QuestComplete" }, { + "templateId": "656f9fa0498d1b7e3e071d98", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "656f9fa0498d1b7e3e071d98", "type": "Item" } - ] - }, - { - "_id": "5de95c91225b0a76ca0ea0b7", - "areaType": 10, + ], + "productionTime": 9000, + "endProduct": "5d5d87f786f77427997cfaef", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, "continuous": false, "count": 1, - "endProduct": "5d1b2fa286f77425227d1674", - "isCodeProduction": false, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e6cfc53a3e6886b9e6c39a8", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 7, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3606886f77417674759a5", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c0e530286f7747fa1419862", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb3f34bdc2d03748b456a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4990, + "endProduct": "5c0e531286f7747fa54205c2", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, "productionLimitCount": 0, - "productionTime": 4800, + "isCodeProduction": false + }, + { + "_id": "600aa0d1090cb6338027028c", + "areaType": 2, "requirements": [ { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5ab8e4ed86f7742d8e50c7fa", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ], + "productionTime": 3200, + "endProduct": "5af0454c86f7746bf20992e8", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b457c9db22d43ab42b706", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "59e68f6f86f7746c9f75e846", + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a373286f774287540368b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af37686f774755a234b65", + "type": "Tool" + }, + { + "questId": "5a27bb8386f7741c770d2d0a", + "type": "QuestComplete" + } + ], + "productionTime": 6800, + "endProduct": "619636be6db0f2477964e710", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b6b641273611d2462ab78", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1200, + "endProduct": "56e335e4d2720b6c058b456d", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a115db5c6bbf22c15ac19d", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "590c2b4386f77425357b6123", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 900, + "endProduct": "5d1b31ce86f7742523398394", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6617cdb6b24b0ea24505f618", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5d1b31ce86f7742523398394", + "type": "Tool" + }, + { + "templateId": "5d0376a486f7747d8050965c", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "59e35de086f7741778269d84", + "type": "Item" + }, + { + "templateId": "6389c70ca33d8c4cdf4932c6", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a358486f77429692b2790", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "type": "QuestComplete" + } + ], + "productionTime": 1800, + "endProduct": "63a0b2eabea67a6d93009e52", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ee4a093a297eb185236194f", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c94bbff86f7747ee735c08f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05300686f7746dce784e5d", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5ac78a9b86f7741cca0bbd8d", + "type": "Tool" + }, + { + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "63966fccac6f8f3c677b9d89", + "type": "QuestComplete" + } + ], + "productionTime": 192000, + "endProduct": "5c052fb986f7746b2101e909", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d93b91286f77467310ca15d", + "areaType": 2, + "requirements": [ + { + "templateId": "577e1c9d2459773cd707c525", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 1560, + "endProduct": "5c13cef886f774072e618e82", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "603cf23a420e7f487e175d7f", + "areaType": 10, + "requirements": [ + { + "templateId": "57347c77245977448d35f6e2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c5b245977448d35f6e1", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af37686f774755a234b65", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, "type": "Item" }, { @@ -9145,35 +2983,79 @@ "type": "Area" }, { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + } + ], + "productionTime": 7000, + "endProduct": "590a3c0a86f774385a33c450", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "64b6b5c1c3abf20a9660daad", + "areaType": 7, + "requirements": [ + { + "questId": "60e71c48c1bfa3050473b8e5", + "type": "QuestComplete" + }, + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", "type": "Item" }, { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" + "templateId": "5d1b3f2d86f774253763b735", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" }, { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" + "templateId": "5c0e530286f7747fa1419862", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e8f3423fd7471236e6e3b64", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" } - ] + ], + "productionTime": 4800, + "endProduct": "5c0e534186f7747fa1419867", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { - "_id": "61c77cc6fcc1673f08540e9b", + "_id": "5ffcadeff3fdc212a91d5539", "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "60098b1705871270cd5352a1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4000, "requirements": [ { "areaType": 8, @@ -9181,39 +3063,159 @@ "type": "Area" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "count": 1, + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af29386f7746d4159f077", "type": "Item" }, { - "templateId": "5d1b39a386f774252339976f", - "type": "Tool" + "templateId": "5751487e245977207e26a315", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" } - ] - }, - { - "_id": "600aa0d1090cb6338027028c", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5af0454c86f7746bf20992e8", - "isCodeProduction": false, + ], + "productionTime": 3800, + "endProduct": "5e8f3423fd7471236e6e3b64", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, "productionLimitCount": 0, - "productionTime": 3200, + "isCodeProduction": false + }, + { + "_id": "5df138986c38ba26da0b3a77", + "areaType": 10, + "requirements": [ + { + "templateId": "5d1b304286f774253763a528", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 1320, + "endProduct": "5d1b309586f77425227d1676", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 4, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5fe337e6c646836c3b6fc985", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 30, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "67586c61a0c49554ed0bb4a8", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 12500, + "endProduct": "5c0530ee86f774697952d952", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "63bd4c3964d7e356983c4cf5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5cc80f79e4a949033c7343b2", + "count": 100, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 8700, + "endProduct": "5cc80f38e4a949001152b560", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 100, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b5ebc32b0b1645e6f54c9", + "areaType": 2, "requirements": [ { "areaType": 2, @@ -9221,87 +3223,90 @@ "type": "Area" }, { + "templateId": "656f603f94b480b8a500c0d6", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5ab8e4ed86f7742d8e50c7fa", "type": "Item" }, { - "templateId": "5d40419286f774318526545f", - "type": "Tool" + "templateId": "5e2af41e86f774755a234b67", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3556c86f7741776641ac2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "5ae4495086f77443c122bc40", + "type": "QuestComplete" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" } - ] - }, - { - "_id": "655b6bc01f2b6843ec751fd7", - "areaType": 2, + ], + "productionTime": 7000, + "endProduct": "5c0e57ba86f7747fa141986d", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, "continuous": false, "count": 1, - "endProduct": "5f5e467b0bc58666c37e7821", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 2500, + "isCodeProduction": false + }, + { + "_id": "6745925da9c9adf0450d5bca", + "areaType": 10, "requirements": [ { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, + "areaType": 10, + "requiredLevel": 1, "type": "Area" }, { + "templateId": "67409848d0b2f8eb9b034db9", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", "type": "Item" }, { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af47786f7746d404f3aaa", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", + "templateId": "544fb5454bdc2df8738b456a", "type": "Tool" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" + "type": "QuestComplete" } - ] + ], + "productionTime": 10, + "endProduct": "674098588466ebb03408b210", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false }, { "_id": "5eeca812c4c989140245ae0c", "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "57347ca924597744596b4e71", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 349000, "requirements": [ { "areaType": 11, @@ -9309,35 +3314,35 @@ "type": "Area" }, { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "590a3b0486f7743954552bdb", - "type": "Item" - }, - { "count": 10, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "573477e124597737dd42e191", "type": "Item" }, { + "templateId": "573477e124597737dd42e191", + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734779624597737e04bf329", "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5734779624597737e04bf329", "type": "Item" }, { + "templateId": "5c05300686f7746dce784e5d", "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c05300686f7746dce784e5d", "type": "Item" }, { @@ -9348,20 +3353,880 @@ "templateId": "590c639286f774151567fa95", "type": "Tool" } - ] - }, - { - "_id": "67c9d54b017035dd060bff5e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665730fa4de4820934746c48", - "isCodeProduction": false, + ], + "productionTime": 349000, + "endProduct": "57347ca924597744596b4e71", "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, "productionLimitCount": 0, - "productionTime": 60, + "isCodeProduction": false + }, + { + "_id": "5eeca9bad874f914d2536585", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c127c4486f7745625356c13", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c5b245977448d35f6e1", + "count": 6, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af29386f7746d4159f077", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ], + "productionTime": 18000, + "endProduct": "5b7c710788a4506dec015957", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "657fc79cfd86b9d9680c4a24", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "657b22485f444d6dff0c6c2f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af22086f7746d3f3c33fa", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c1124597737fb1379e3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "63a0b208f444d32d6f03ea1e", + "type": "Tool" + }, + { + "templateId": "59e35de086f7741778269d84", + "type": "Tool" + } + ], + "productionTime": 1600, + "endProduct": "656efd66034e8e01c407f35c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da05c8078f1947650d7bb9", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + }, + { + "templateId": "5c94bbff86f7747ee735c08f", + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c8c5dbfd5e4b95197e6b", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a16d0b9d3c46de5b6e97", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 90000, + "endProduct": "5c1d0dc586f7744baf2e7b79", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d5c1f25d582a5479d4ec458", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "56dff3afd2720bba668b4567", + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40425986f7743185265461", + "type": "Tool" + }, + { + "questId": "59c512ad86f7741f0d09de9b", + "type": "QuestComplete" + } + ], + "productionTime": 8500, + "endProduct": "56dff2ced2720bb4668b4567", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 180, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcac4e1285295b7441ee01", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590a3efd86f77437d351a25b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 2900, + "endProduct": "590a3b0486f7743954552bdb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5f245f875b664e084523a4ce", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c0d668f86f7747ccb7f13b2", + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5656d7c34bdc2d9d198b4587", + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + }, + { + "questId": "5bc47dbf86f7741ee74e93b9", + "type": "QuestComplete" + } + ], + "productionTime": 8470, + "endProduct": "5f0596629e22f464da6bbdd9", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 100, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b675e1f2b6843ec751fd6", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "65573fa5655447403702a816", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "63a0b208f444d32d6f03ea1e", + "type": "Tool" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "5c1141f386f77430ff393792", + "type": "QuestComplete" + } + ], + "productionTime": 8000, + "endProduct": "628d0618d1ba6e4fa07ce5a4", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eeca8e327ccd70521107fdc", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590a391c86f774385a33c404", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 18900, + "endProduct": "5c052e6986f7746b207bc3c9", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a112fec1cce91d2c46a06e", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5a8036fb86f77407252ddc02", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "574eb85c245977648157eec3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5900b89686f7744e704a8747", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5a80a29286f7742b25692012", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5798a2832459774b53341029", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5be4038986f774527d3fae60", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c621186f774138d11ea29", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 43200, + "endProduct": "62a0a124de7ac81993580542", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "615c3d800d3afc358a55405e", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "574d967124597745970e7c94", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + } + ], + "productionTime": 3100, + "endProduct": "5d1c819a86f774771b0acd6c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcaa60f3fdc212a91d552b", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5648a7494bdc2d9d488b4583", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 2000, + "endProduct": "5e2af4d286f7746d4159f07a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eecaa6327ccd70521107ff5", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "572b7adb24597762ae139821", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ], + "productionTime": 2200, + "endProduct": "5e2af4a786f7746d3f3c3400", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eda07acb6c564225571536c", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a098de7ac8199358053b", + "type": "Tool" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ], + "productionTime": 2800, + "endProduct": "5e4abfed86f77406a2713cf7", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "64b6aefe25251516d768542d", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "62a0a098de7ac8199358053b", + "type": "Tool" + }, + { + "questId": "5c0d190cd09282029f5390d8", + "type": "QuestComplete" + }, + { + "templateId": "5e2af51086f7746d3f3c3402", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60391b0fb847c71012789415", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4800, + "endProduct": "5e32f56fcb6d5863cc5e5ee4", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b6bc01f2b6843ec751fd7", + "areaType": 2, + "requirements": [ + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af47786f7746d404f3aaa", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "59e3556c86f7741776641ac2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2500, + "endProduct": "5f5e467b0bc58666c37e7821", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de95f1c9517b140195ab717", + "areaType": 10, + "requirements": [ + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + } + ], + "productionTime": 4400, + "endProduct": "590a358486f77429692b2790", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d8f614c9ea122564c316462", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5af0548586f7743a532b7e99", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5751a89d24597722aa0e8db0", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 6900, + "endProduct": "5c0e530286f7747fa1419862", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 7, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da01179cbeb8d6f4011961", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "590a391c86f774385a33c404", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c70ca33d8c4cdf4932c6", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a3b0486f7743954552bdb", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 14400, + "endProduct": "61bf7c024770ee6f9c6b8b53", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67caf5c5bfe0242ab1032966", + "areaType": 10, "requirements": [ { "areaType": 10, @@ -9373,47 +4238,5256 @@ "type": "Tool" }, { + "templateId": "67cad1ec19b006e9e50f44d6", "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "66571bf06a723f7f005a0619", "type": "Item" } - ] + ], + "productionTime": 60, + "endProduct": "67cad3226bf74131800752b7", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d8a13fc2d9612419804003c", + "areaType": 8, + "requirements": [ + { + "templateId": "5448ff904bdc2d6f028b456e", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347d7224597744596b4e72", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347d8724597744596b4e76", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 8, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 2900, + "endProduct": "590c5d4b86f774784e1b9c45", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b505c32b0b1645e6f54c5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "573720e02459776143012541", + "count": 150, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3300, + "endProduct": "5737218f245977612125ba51", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b4e591fe356507267b2f5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "619cbfccbedcde2f5b3f7bdd", + "type": "Tool" + } + ], + "productionTime": 8400, + "endProduct": "59e77a2386f7742ee578960a", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 50, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "670932d7b564327a0e023fcb", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c621186f774138d11ea29", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "67040c22cc1f3752720376e9", + "type": "QuestComplete" + } + ], + "productionTime": 900, + "endProduct": "6707d13e4e617ec94f0e5631", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eda007f658fac5b8c3862a6", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c1265fc86f7743f896a21c2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d0376a486f7747d8050965c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c639286f774151567fa95", + "type": "Tool" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c7750ef44505c87f5996", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "63966fbeea19ac7ed845db2e", + "type": "QuestComplete" + } + ], + "productionTime": 140000, + "endProduct": "5c052f6886f7746b1e3db148", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6589756f5c4f0642a502d54d", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a6a186f77412640e2e80", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5950, + "endProduct": "6176aca650224f204c1da3fb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcab66fd851f4b000d61ef", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b36a186f7742523398433", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c77245977448d35f6e2", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c5b245977448d35f6e1", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ], + "productionTime": 30000, + "endProduct": "5e2af55f86f7746d4159f07c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600a9bd0189b226f40059751", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af37686f774755a234b65", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5a0c27731526d80618476ac4", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 16500, + "endProduct": "5e85a9f4add9fe03027d9bf1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 7, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e0755b97f8ea74cc332bf78", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a6a186f77412640e2e80", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5210, + "endProduct": "6680304edadb7aa61d00cef0", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede01e062155304b6512067", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b39a386f774252339976f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3f2d86f774253763b735", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1670, + "endProduct": "5b4335ba86f7744d2837a264", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d78d81757c9b8484a2bcb99", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + } + ], + "productionTime": 6250, + "endProduct": "60194943740c5d77f6705eea", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ee49f2c6abbcb7ba704abc2", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5737201124597760fc4431f1", + "count": 200, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5400, + "endProduct": "573719df2459775a626ccbc2", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 200, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da0223078f1947650d7bb7", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + }, + { + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2400, + "endProduct": "5c94bbff86f7747ee735c08f", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002ed409f2c60461a2d0f5a", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "5c052f6886f7746b1e3db148", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 8200, + "endProduct": "5d0376a486f7747d8050965c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61c77d465a98404dee40a77c", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5efb0d4f4bc50b58e81710f3", + "count": 150, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c31c586f774245e3141b2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ], + "productionTime": 12400, + "endProduct": "5efb0cabfb3e451d70735af5", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dceb6964a98801ba2075d27", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1c774f86f7746d6620f8db", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "58dd3ad986f77403051cba8f", + "count": 80, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "5a27bc8586f7741b543d8ea4", + "type": "QuestComplete" + } + ], + "productionTime": 8256, + "endProduct": "5a6086ea4f39f99cd479502f", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 80, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a11658650cc35fa94e009a", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "57347d3d245977448f7b7f61", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e8f3423fd7471236e6e3b64", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b33a686f7742523398398", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 36000, + "endProduct": "62a09f32621468534a797acb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 10, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a11415c30cfa1d366aeb83", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "59faf98186f774067b6be103", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a09ee4cf4a99369e262453", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "635a758bfefc88a93f021b8a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3000, + "endProduct": "5c13cd2486f774072c757944", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 6, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61dc03711bdcfa2f253c9b7c", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5909e99886f7740c983b9984", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a358486f77429692b2790", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b31ce86f7742523398394", + "type": "Tool" + } + ], + "productionTime": 18000, + "endProduct": "5e2aedd986f7746d404f3aa4", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b6a50b71eeb7c4168c628", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5aa7e276e5b5b000171d0647", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af47786f7746d404f3aaa", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40407c86f774318526545a", + "type": "Tool" + }, + { + "templateId": "63a0b208f444d32d6f03ea1e", + "type": "Tool" + }, + { + "questId": "60e71b62a0beca400d69efc4", + "type": "QuestComplete" + } + ], + "productionTime": 3000, + "endProduct": "5f60c74e3b85f6263c145586", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e66408286f7747b2c2d7786", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af51086f7746d3f3c3402", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5656eb674bdc2d35148b457c", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 6000, + "endProduct": "5e340dcdcb6d5863cc5e5efb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 8, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b47d1769de97e1d62d115", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a098de7ac8199358053b", + "type": "Tool" + } + ], + "productionTime": 4400, + "endProduct": "64b7af5a8532cf95ee0a0dbd", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 200, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "677d4db74ac9193862043ee9", + "areaType": 10, + "requirements": [ + { + "templateId": "590c2b4386f77425357b6123", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c311186f77424d1667482", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2c9c86f774245b1f03f2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 462, + "endProduct": "590c2e1186f77425357b6124", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b4489065b076eb02c4b45", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "54527a984bdc2d4e668b4567", + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "questId": "639135534b15ca31f76bc317", + "type": "QuestComplete" + } + ], + "productionTime": 8400, + "endProduct": "54527ac44bdc2d36668b4567", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5df914a53ce0f648b833bb37", + "areaType": 11, + "requirements": [ + { + "templateId": "56742c324bdc2d150f8b456d", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c1265fc86f7743f896a21c2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c392f86f77444754deb29", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + } + ], + "productionTime": 123200, + "endProduct": "590c621186f774138d11ea29", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede1e0b7690fa313b632e88", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "57347da92459774491567cf5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347d8724597744596b4e76", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347d3d245977448f7b7f61", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4710, + "endProduct": "57347d7224597744596b4e72", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6671d4fef3bee343f5000703", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c10c8fd86f7743d7d706df3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a043cf4a99369e2624a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "619cc01e0a7c3a1a2731940c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3606886f77417674759a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "type": "QuestComplete" + } + ], + "productionTime": 4800, + "endProduct": "66507eabf5ddb0818b085b68", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dc1f634ee5f2440a9272dc7", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b376e86f774252519444e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5750, + "endProduct": "5d40407c86f774318526545a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 10, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b56eb32b0b1645e6f54c8", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5400, + "endProduct": "5a26abfac4a28232980eabff", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da04db9cbeb8d6f4011962", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + }, + { + "templateId": "5c94bbff86f7747ee735c08f", + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c8c5dbfd5e4b95197e6b", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05300686f7746dce784e5d", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7c024770ee6f9c6b8b53", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 90000, + "endProduct": "5c1d0efb86f7744baf2e7b7b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "629e1b3a0694b45420210cad", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e54f6af86f7742199090bf3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2700, + "endProduct": "5af0484c86f7740f02001f7f", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "603cf3094bb658618458e010", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5c1265fc86f7743f896a21c2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b309586f77425227d1676", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + } + ], + "productionTime": 6000, + "endProduct": "56742c324bdc2d150f8b456d", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "60048c82a7903e00382d9593", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b2ffd86f77425243e8d17", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d0377ce86f774186372f689", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c37d286f77443be3d7827", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + }, + { + "questId": "63966ff54c3ef01b6f3ffad8", + "type": "QuestComplete" + } + ], + "productionTime": 32200, + "endProduct": "5d1b5e94d7ad1a2b865a96b0", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600ab8e3e4022c380a726088", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40407c86f774318526545a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57505f6224597709a92585a9", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5bc9be8fd4351e00334cae6e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + } + ], + "productionTime": 6400, + "endProduct": "5d403f9186f7743cac3f229b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d8f5e1af3a8f83c8600afb2", + "areaType": 2, + "requirements": [ + { + "templateId": "5c13cd2486f774072c757944", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a09f32621468534a797acb", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + } + ], + "productionTime": 2100, + "endProduct": "5d40412b86f7743cb332ac3a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e58e0c286f7740ba7486ca3", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "62a0a16d0b9d3c46de5b6e97", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "577e1c9d2459773cd707c525", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 114000, + "endProduct": "5c12613b86f7743bbe2c3f76", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d5589c1f934db045e6c5492", + "areaType": 6, + "requirements": [ + { + "areaType": 6, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "resource": 66, + "type": "Resource" + } + ], + "productionTime": 19500, + "endProduct": "5d1b33a686f7742523398398", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": true, + "count": 1, + "productionLimitCount": 1, + "isCodeProduction": false + }, + { + "_id": "5dea63e21ecdbf7668030f24", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d03794386f77420415576f5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "619cbfccbedcde2f5b3f7bdd", + "type": "Tool" + } + ], + "productionTime": 10000, + "endProduct": "5733279d245977289b77ec24", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "63baedefe6ebc10fe0201083", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5ba2678ad4351e44f824b344", + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "590a3d9c86f774385926e510", + "type": "Tool" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "5c0d4e61d09282029f53920e", + "type": "QuestComplete" + } + ], + "productionTime": 12400, + "endProduct": "5ba26835d4351e0035628ff5", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de950a845b5d67bad6e9ef7", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "57347cd0245977445a2d6ff1", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2100, + "endProduct": "59e36c6f86f774176c10a2a7", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e0759e73c392e0367260488", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a6a186f77412640e2e80", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "67586c61a0c49554ed0bb4a8", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5950, + "endProduct": "674d6121c09f69dfb201a888", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002eec9cc73cd34ac64188a", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c10c8fd86f7743d7d706df3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5755356824597772cb798962", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "60e71c11d54b755a3b53eb65", + "type": "QuestComplete" + } + ], + "productionTime": 4200, + "endProduct": "5fca138c2a7b221b2852a5c6", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600a9955ba91d953182d69f0", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "59e6152586f77473dc057aa1", + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59d64fc686f774171b243fe2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ], + "productionTime": 5100, + "endProduct": "59d6088586f774275f37482f", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "66140c4a9688754de10dac07", + "areaType": 11, + "requirements": [ + { + "templateId": "660bbc47c38b837877075e47", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "type": "QuestComplete" + } + ], + "productionTime": 600, + "endProduct": "660bc341c38b837877075e4c", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": true + }, + { + "_id": "655b4de41f2b6843ec751fd5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "64b8f7968532cf95ee0a0dbf", + "count": 70, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 14400, + "endProduct": "5887431f2459777e1612938f", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 70, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dc1f7de6058e020335c9d88", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "57505f6224597709a92585a9", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347d90245977448f7b7f65", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5448ff904bdc2d6f028b456e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4300, + "endProduct": "544fb6cc4bdc2d34748b456e", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 7, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede0135f7db6021ee400dfe", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c13cd2486f774072c757944", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40412b86f7743cb332ac3a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3300, + "endProduct": "5755383e24597772cb798966", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67092bbfc45f0546bf097a7e", + "areaType": 7, + "requirements": [ + { + "questId": "67040cae4ac6d9c18c0ade2c", + "type": "QuestComplete" + }, + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c6c7dbfd5e4b95197e68", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3606886f77417674759a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5fca138c2a7b221b2852a5c6", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5ed5166ad380ab312177c100", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c10c8fd86f7743d7d706df3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 600, + "endProduct": "6707d0804e617ec94f0e562f", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67093210d514d26f8408612b", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "type": "QuestComplete" + }, + { + "templateId": "5d1b33a686f7742523398398", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6707d0804e617ec94f0e562f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c695186f7741e566b64a2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb3f34bdc2d03748b456a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 600, + "endProduct": "6707d0bdaab679420007e01a", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d78dbfb65aebb016d20b6f3", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1c819a86f774771b0acd6c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5648b1504bdc2d9d488b4584", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5ac50c185acfc400163398d4", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 5000, + "endProduct": "5ac4cd105acfc40016339859", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5f241246232409155b66b809", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b33a686f7742523398398", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3577886f774176a362503", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0484c86f7740f02001f7f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5bc9be8fd4351e00334cae6e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + }, + { + "templateId": "62a09e73af34e73a266d932a", + "type": "Tool" + } + ], + "productionTime": 43200, + "endProduct": "5751496424597720a27126da", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 20, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b6c381fe356507267b2f6", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "590c2c9c86f774245b1f03f2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5f5e45cc5021ce62144be7aa", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ], + "productionTime": 2500, + "endProduct": "59e763f286f7742ee57895da", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a116282c5e0c325b62d5ec", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "type": "Tool" + }, + { + "templateId": "590c621186f774138d11ea29", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a124de7ac81993580542", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 36000, + "endProduct": "62a0a16d0b9d3c46de5b6e97", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "676a9fe717262755cf0ff52f", + "areaType": 21, + "requirements": [ + { + "templateId": "5d40407c86f774318526545a", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d403f9186f7743cac3f229b", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "67586c61a0c49554ed0bb4a8", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 16000, + "endProduct": "67586bee39b1b82b0d0f9d06", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 4, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600a9b10adfcb94fee6d3e06", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c31c586f774245e3141b2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e36c6f86f774176c10a2a7", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3400, + "endProduct": "57347cd0245977445a2d6ff1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d78d8a03fe9fc21602e16be", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60098af40accd37ef2175f27", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0454c86f7746bf20992e8", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4500, + "endProduct": "590c657e86f77412b013051d", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600aa140090cb63380270290", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5ab8f04f86f774585f4237d8", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ], + "productionTime": 2900, + "endProduct": "5e2af41e86f774755a234b67", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "615c3d27966c85458e4c49cf", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "590c678286f77426c9660122", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5751a25924597722c463c472", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60098af40accd37ef2175f27", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3600, + "endProduct": "60098ad7c2240c0fe85c570a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcafd468c55773943fc71e", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5aa2ba46e5b5b000137b758d", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ], + "productionTime": 2600, + "endProduct": "5e2af47786f7746d404f3aaa", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e1330dca0f0f8773c069c99", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "60363c0c92ec1c31037959f5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 120, + "endProduct": "590c595c86f7747884343ad7", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b68b4769de97e1d62d117", + "areaType": 2, + "requirements": [ + { + "templateId": "57347c1124597737fb1379e3", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4305, + "endProduct": "5d5e9c74a4b9364855191c40", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6666d899eb78191c502350b2", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "66571bf06a723f7f005a0619", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 300, + "endProduct": "665730fa4de4820934746c48", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcacbf24fa2e741e767234", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590a3efd86f77437d351a25b", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5672cb124bdc2d1a0f8b4568", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 5500, + "endProduct": "5672cb724bdc2dc2088b456b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de95c91225b0a76ca0ea0b7", + "areaType": 10, + "requirements": [ + { + "templateId": "59e35de086f7741778269d84", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5734795124597738002c6176", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 4800, + "endProduct": "5d1b2fa286f77425227d1674", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "66582be04de4820934746cea", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c07df7f0db834001b73588a", + "type": "Tool" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "665828c44de4820934746ce4", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 300, + "endProduct": "66582972ac60f009f270d2aa", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "619e45ea98398d3b104e8419", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "590c2e1186f77425357b6124", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5bbd86f774785762df04", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40425986f7743185265461", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d4042a986f7743185265463", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 25000, + "endProduct": "619cbfeb6b8a1b37a54eebfa", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b33429db22d43ab42b704", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "56dff3afd2720bba668b4567", + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "questId": "64e7b9bffd30422ed03dad38", + "type": "QuestComplete" + } + ], + "productionTime": 13000, + "endProduct": "56dfef82d2720bbd668b4567", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "66509e8c9398c9c9e10a31bb", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5c10c8fd86f7743d7d706df3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a043cf4a99369e2624a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "619cc01e0a7c3a1a2731940c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e3606886f77417674759a5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "gameVersions": [ + "edge_of_darkness", + "eod_tue_edition" + ], + "type": "GameVersion" + } + ], + "productionTime": 4800, + "endProduct": "66507eabf5ddb0818b085b68", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "62a1123ac30cfa1d366aeb82", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "57d14d2524597714373db789", + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ], + "productionTime": 1800, + "endProduct": "57f4c844245977379d5c14d1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eda072cf6626f08ef0efed4", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3250, + "endProduct": "59e7635f86f7742cbf2c1095", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b65fc1273611d2462ab77", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "656fae5f7c2d57afe200c0d7", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "questId": "5ae4497b86f7744cf402ed00", + "type": "QuestComplete" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 14000, + "endProduct": "5b44cad286f77402a54ae7e5", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dde60e0e2c8f57eb6465327", + "areaType": 10, + "requirements": [ + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af37686f774755a234b65", + "type": "Tool" + }, + { + "questId": "5c0bd94186f7747a727f09b2", + "type": "QuestComplete" + } + ], + "productionTime": 7350, + "endProduct": "61962d879bb3d20b0946d385", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b4a73975a7f3c734661a5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "619cbfccbedcde2f5b3f7bdd", + "type": "Tool" + }, + { + "templateId": "59e35de086f7741778269d84", + "type": "Tool" + }, + { + "templateId": "64b7af434b75259c590fa893", + "count": 90, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5751496424597720a27126da", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "60e71bb4e456d449cd47ca75", + "type": "QuestComplete" + } + ], + "productionTime": 9400, + "endProduct": "59e0d99486f7744a32234762", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 90, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e0756095a20a05b76027357", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5550, + "endProduct": "674da107c512807d1a0e7436", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "66575197464c4b4ba4671004", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "66572b3f6a723f7f005a066c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 300, + "endProduct": "665732e7ac60f009f270d1ef", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5fe3394e8a67d12f5f24c8e0", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2100, + "endProduct": "590c657e86f77412b013051d", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67c9d447b53b0fcf1d0bb0ab", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "66572bb3ac60f009f270d1df", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 60, + "endProduct": "66573310a1657263d816a139", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67c9d4b251ce173bff01eec7", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "66572b88ac60f009f270d1dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 60, + "endProduct": "665732f4464c4b4ba4670fa9", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67f4ebb7d0fb51b8c705e80e", + "areaType": 6, + "requirements": [ + { + "areaType": 6, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1200, + "endProduct": "5448fee04bdc2dbc018b4567", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67f4ec521d41954d4f09a9c8", + "areaType": 6, + "requirements": [ + { + "areaType": 6, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5448fee04bdc2dbc018b4567", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c6c7dbfd5e4b95197e68", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 3600, + "endProduct": "5c0fa877d174af02a012e1cf", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d5c205bd582a50d042a3c0e", + "areaType": 20, + "requirements": [], + "productionTime": 145000, + "endProduct": "59faff1d86f7746c51718c9c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": true, + "count": 1, + "productionLimitCount": 3, + "isCodeProduction": false + }, + { + "_id": "5eeca7724a8a9b668f0d89cd", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "64b7bbb74b75259c590fa897", + "count": 150, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 7250, + "endProduct": "5c925fa22e221601da359b7b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 180, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ffcad24f3fdc212a91d5536", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b36a186f7742523398433", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 5250, + "endProduct": "64b8ee384b75259c590fa89b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 50, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b5fd2975a7f3c734661a8", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af4a786f7746d3f3c3400", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + }, + { + "questId": "5b478d0f86f7744d190d91b5", + "type": "QuestComplete" + }, + { + "templateId": "656fb21fa0dce000a2020f7c", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 6000, + "endProduct": "61bcc89aef0f505f0c6cd0fc", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b650ab71eeb7c4168c627", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "59e3556c86f7741776641ac2", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af4d286f7746d4159f07a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5e2af41e86f774755a234b67", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "591094e086f7747caa7bb2ef", + "type": "Tool" + }, + { + "templateId": "656f611f94b480b8a500c0db", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 10000, + "endProduct": "5ab8e79e86f7742d8b372e78", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600ab99ce4022c380a726090", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5e8488fa988a8701445df1e4", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 1800, + "endProduct": "5e8488fa988a8701445df1e4", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6666d829a8298779fc40e537", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "66572b88ac60f009f270d1dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 300, + "endProduct": "665732f4464c4b4ba4670fa9", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61b9da10695bdc188002db3a", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a6a186f77412640e2e80", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5400, + "endProduct": "5c0e531286f7747fa54205c2", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600abc08e4022c380a7260a8", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5af0534a86f7743b6f354284", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a391c86f774385a33c404", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af0561e86f7745f5f3ad6ac", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c7750ef44505c87f5996", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + } + ], + "productionTime": 120000, + "endProduct": "5c0530ee86f774697952d952", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5fe338e364adb27bb90594be", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4600, + "endProduct": "5ed51652f6c34d2cc26336a1", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "677d4fdb42cdfce74006f961", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b309586f77425227d1676", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06782b86f77426df5407d2", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "6389c70ca33d8c4cdf4932c6", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 1887, + "endProduct": "5d1b304286f774253763a528", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dd3c5487058311d4b267186", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "56dff216d2720bbd668b4568", + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + } + ], + "productionTime": 5350, + "endProduct": "590c5a7286f7747884343aea", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b4bbe4343a16d2e047668", + "areaType": 10, + "requirements": [ + { + "templateId": "590c5a7286f7747884343aea", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + } + ], + "productionTime": 5900, + "endProduct": "5e023e53d4353e3302577c4c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 120, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b50e7c023e22044165de5", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "64b7bbb74b75259c590fa897", + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1c774f86f7746d6620f8db", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c06779c86f77426e00dd782", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5600, + "endProduct": "5a3c16fe86f77452b62de32a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 180, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d8a1568df9fc649e81b8b1b", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "573475fb24597737fb1379e1", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5bc9be8fd4351e00334cae6e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 6100, + "endProduct": "573476f124597737e04bf328", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5e37f15386f774299f112a2e", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5e2af51086f7746d3f3c3402", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5a2a57cfc4a2826c6e06d44a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4670, + "endProduct": "5a0c27731526d80618476ac4", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 5, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6666d7ea0b734650a91d0a42", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "66572bb3ac60f009f270d1df", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 300, + "endProduct": "66573310a1657263d816a139", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5eda04a30699b81bb9142aa2", + "areaType": 2, + "requirements": [ + { + "templateId": "5e2af47786f7746d404f3aaa", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 1900, + "endProduct": "544fb25a4bdc2dfb738b4567", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 6, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dceeaf100b3815535149f5a", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b371186f774253763a656", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c5b245977448d35f6e1", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347c77245977448d35f6e2", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ], + "productionTime": 12000, + "endProduct": "5c127c4486f7745625356c13", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "629e19eddb6e1a02066676f1", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "590c2e1186f77425357b6124", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5bc9b355d4351e6d1509862a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1c819a86f774771b0acd6c", + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 50400, + "endProduct": "5910968f86f77425cf569c32", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67449c79268737ef6908d636", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "6740987b89d5e1ddc603f4f0", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "67449b6c89d5e1ddc603f504", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "type": "QuestComplete" + } + ], + "productionTime": 10, + "endProduct": "674078c4a9c9adf0450d59f9", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5ede0053879619077751cff1", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b3a5d86f774252167ba22", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "619cc01e0a7c3a1a2731940c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb3364bdc2d34748b456a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d02797c86f774203f38e30a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 4600, + "endProduct": "5d02797c86f774203f38e30a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b54e7065b076eb02c4b47", + "areaType": 10, + "requirements": [ + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 3400, + "endProduct": "5cc80f53e4a949000e1ea4f8", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 150, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dd3c9c8449c0c31795b0f0b", + "areaType": 10, + "requirements": [ + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "57347b8b24597737dd42e192", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 2150, + "endProduct": "5d6fc87386f77449db3db94e", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 3, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5dc1f4d9e078d303d91b44c7", + "areaType": 8, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d1b33a686f7742523398398", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", + "type": "Tool" + } + ], + "productionTime": 6650, + "endProduct": "5448fee04bdc2dbc018b4567", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 8, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61b9da93e7304721fe66ab53", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a72c86f77412640e2e83", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 10400, + "endProduct": "637b620db7afa97bfc3d7009", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b598db71eeb7c4168c626", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "590c31c586f774245e3141b2", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "63a0b208f444d32d6f03ea1e", + "type": "Tool" + }, + { + "questId": "5c0bc91486f7746ab41857a2", + "type": "QuestComplete" + } + ], + "productionTime": 3000, + "endProduct": "5d6e6911a4b9361bd5780d52", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 60, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "600a9fb7ba91d953182d6a1c", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60391b0fb847c71012789415", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60391a8b3364dc22b04d0ce5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + } + ], + "productionTime": 39000, + "endProduct": "5d0379a886f77420407aa271", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "619eb0eb56579138ec08fed8", + "areaType": 7, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "619cc01e0a7c3a1a2731940c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c661e86f7741e566b646a", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 2950, + "endProduct": "5d02778e86f774203e7dedbe", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67da000f1556838cf90d1716", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "590a386e86f77429692b27ab", + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590a391c86f774385a33c404", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 10800, + "endProduct": "590c37d286f77443be3d7827", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67c9d54b017035dd060bff5e", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "66571bf06a723f7f005a0619", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 60, + "endProduct": "665730fa4de4820934746c48", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "67c9d5035be7fc94c806dee9", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "66572b3f6a723f7f005a066c", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 60, + "endProduct": "665732e7ac60f009f270d1ef", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002e55595c402039a2747f4", + "areaType": 11, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c94bbff86f7747ee735c08f", + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c1d0d6d86f7744bb2683e1f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7c024770ee6f9c6b8b53", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + } + ], + "productionTime": 476000, + "endProduct": "5c1e495a86f7743109743dfb", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d558968f934db006d2d5b32", + "areaType": 10, + "requirements": [ + { + "templateId": "590c5a7286f7747884343aea", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + } + ], + "productionTime": 6200, + "endProduct": "57371aab2459775a77142f22", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 140, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6558d7894626375d6735670c", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5fc382c1016cce60e8341b20", + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d6fc87386f77449db3db94e", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ], + "productionTime": 15000, + "endProduct": "5fc275cf85fd526b824a571a", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 50, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5d93ba4486f77454bd61d2a9", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "590c595c86f7747884343ad7", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5d40425986f7743185265461", + "type": "Tool" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ], + "productionTime": 9400, + "endProduct": "5d1b2f3f86f774252167a52c", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "655b4f57769de97e1d62d116", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "59e77a2386f7742ee578960a", + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "60391a8b3364dc22b04d0ce5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "5d6fc78386f77449d825f9dc", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "questId": "5bc4856986f77454c317bea7", + "type": "QuestComplete" + } + ], + "productionTime": 9500, + "endProduct": "5e023d34e8a400319a28ed44", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 50, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "61b9d9deef9a1b5d6a798986", + "areaType": 21, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "5df8a77486f77412672a1e3f", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 5200, + "endProduct": "5d403f9186f7743cac3f229b", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "660c2dbaa2a92e70cc074863", + "areaType": 11, + "requirements": [ + { + "templateId": "660bbc47c38b837877075e47", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "type": "QuestComplete" + } + ], + "productionTime": 900, + "endProduct": "660bbc98c38b837877075e4a", + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "5de919ec1b25d85cf30ca39a", + "areaType": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "58d3db5386f77426186285a0", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "617aa4dd8166f034d57de9c5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ], + "productionTime": 5870, + "endProduct": "5d6fc78386f77449d825f9dc", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 2, + "productionLimitCount": 0, + "isCodeProduction": false + }, + { + "_id": "6002e68bca41c53bee18813b", + "areaType": 2, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "57347c1124597737fb1379e3", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "59e358a886f7741776641ac3", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + }, + { + "templateId": "56742c284bdc2d98058b456d", + "type": "Tool" + } + ], + "productionTime": 4800, + "endProduct": "5e2af29386f7746d4159f077", + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "continuous": false, + "count": 1, + "productionLimitCount": 0, + "isCodeProduction": false } ], "scavRecipes": [ { - "_id": "62710974e71632321e5afd5f", - "endProducts": { - "Common": { - "max": 2, - "min": 1 - }, - "Rare": { - "max": 1, - "min": 0 - }, - "Superrare": { - "max": 0, - "min": 0 - } - }, - "productionTime": 2500, + "_id": "62710a0e436dcc0b9c55f4ec", "requirements": [ { - "count": 2500, + "templateId": "5c12613b86f7743bbe2c3f76", + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5449016a4bdc2d6f028b456f", "type": "Item" } - ] - }, - { - "_id": "62710a0e436dcc0b9c55f4ec", + ], + "productionTime": 19200, "endProducts": { "Common": { "max": 0, @@ -9427,49 +9501,21 @@ "max": 3, "min": 2 } - }, - "productionTime": 19200, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" - } - ] - }, - { - "_id": "6271093e621b0a76055cd61e", - "endProducts": { - "Common": { - "max": 0, - "min": 0 - }, - "Rare": { - "max": 1, - "min": 1 - }, - "Superrare": { - "max": 5, - "min": 3 - } - }, - "productionTime": 16800, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b376e86f774252519444e", - "type": "Item" - } - ] + } }, { "_id": "62710a8c403346379e3de9be", + "requirements": [ + { + "templateId": "5449016a4bdc2d6f028b456f", + "count": 15000, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 7700, "endProducts": { "Common": { "max": 1, @@ -9483,21 +9529,21 @@ "max": 0, "min": 0 } - }, - "productionTime": 7700, - "requirements": [ - { - "count": 15000, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5449016a4bdc2d6f028b456f", - "type": "Item" - } - ] + } }, { "_id": "62710a69adfbd4354d79c58e", + "requirements": [ + { + "templateId": "5449016a4bdc2d6f028b456f", + "count": 95000, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 8100, "endProducts": { "Common": { "max": 0, @@ -9511,18 +9557,68 @@ "max": 2, "min": 1 } - }, - "productionTime": 8100, + } + }, + { + "_id": "62710974e71632321e5afd5f", "requirements": [ { - "count": 95000, + "templateId": "5449016a4bdc2d6f028b456f", + "count": 2500, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5449016a4bdc2d6f028b456f", "type": "Item" } - ] + ], + "productionTime": 2500, + "endProducts": { + "Common": { + "max": 2, + "min": 1 + }, + "Rare": { + "max": 1, + "min": 0 + }, + "Superrare": { + "max": 0, + "min": 0 + } + } + }, + { + "_id": "6271093e621b0a76055cd61e", + "requirements": [ + { + "templateId": "5d1b376e86f774252519444e", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "type": "Item" + } + ], + "productionTime": 16800, + "endProducts": { + "Common": { + "max": 0, + "min": 0 + }, + "Rare": { + "max": 1, + "min": 1 + }, + "Superrare": { + "max": 5, + "min": 3 + } + } + } + ], + "cultistRecipes": [ + { + "_id": "66827062405f392b203a44cf" } ] -} +} \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ch.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ch.json index f7310c23..34302485 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ch.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ch.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "战术裤", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "通往军事基地的载具撤离点", " Voip/DisabledForOffline": "VOIP在离线模式中不可用", " kg": "kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "你确定要销毁已改装的装备吗?", "APC/CustomizationTab": "自定义", "APC/EnterName": "输入名称", + "APC/EnterName ": "Enter name", "APC/FastAccess": "快速获取", "APC/Locked": "未解锁", "APC/PurchasedStatesAll": "所有", "APC/ReadyToUlock": "可解锁", "APC/Unlocked": "已解锁", "APC/ViewPreset": "查看", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}防御力{1}", "APCBar/Firepower": "{0}攻击力{1}", "APCBar/Metascore": "{0}战力{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "突击卡宾枪", "APCFilter/AssaultRifles": "突击步枪", "APCFilter/AssaultScope": "突击瞄准镜", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "辅助配件", "APCFilter/Barrel": "枪管", "APCFilter/Bipod": "脚架", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "拉机柄", "APCFilter/Collimator": "反射式瞄准镜", "APCFilter/CompactCollimator": "紧凑型反射式瞄准镜", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "近战武器", "APCFilter/Mount": "基座&导轨", "APCFilter/Muzzle": "枪口装置", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "膛口转接器", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "光学瞄准镜", "APCFilter/PistolGrip": "手枪式握把", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "手枪", "APCFilter/Receiver": "防尘盖、机匣、扳机", "APCFilter/SMGs": "冲锋枪", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "等级", "ARENA/ARMORY/LINKS": "关联", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "无法向本体转移", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "防弹级别", "ARMOR POINTS": "护甲耐久", "ARMOR TYPE": "护甲类型", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "物品不存在", "Arena/Armory/LevelReward/readyToUlockState": "准备就绪", "Arena/Armory/LevelReward/unlockedState": "就绪", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "锁定", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "没有足够的钱", "Arena/BigCustomPurchaseInfo/Purchase": "购买", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "加时", "Arena/BlastGang/ResultScreenRoundsProgress": "{0},共{1}", "Arena/BlastGang/ResultScreenSwapSides": "切换阵营", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "拒绝好友申请", "Arena/CustomGame/Lobby/cancel invite to group": "拒绝组队邀请", "Arena/CustomGame/Lobby/invite to friends": "申请添加好友", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "剩余尝试次数:", "Arena/CustomGames/Create/Maps": "地图", "Arena/CustomGames/Create/Modes": "模式", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "子模式", "Arena/CustomGames/Create/TournamentMode": "比赛模式", "Arena/CustomGames/Create/TournamentSettings": "比赛设置", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "加入空位", "Arena/CustomGames/No servers found": "未找到可用服务器", "Arena/CustomGames/Observers": "观察者", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "正在加入服务器", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "行动任务更换 / 裁判:", "Arena/CustomGames/Settings": "设置", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "禁用", "Arena/CustomGames/Settings/enable": "启用", "Arena/CustomGames/create/enter name": "输入名称", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "地区", "Arena/CustomGames/toggle/room name": "房间名称", "Arena/CustomGames/toggle/tournament": "比赛", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "对局已在你离开时结束", "Arena/EnterPresetName": "输入预设名称", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "对敌人造成的伤害", "Arena/MVP/DeactivatedBomb": "拆除装置", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "武器", "Arena/Rematching": "返回匹配并进入优先队列", "Arena/Rematching/NoServer": "由于技术性原因,无法连接服务器。正在返回搜索。", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "青", "Arena/TeamColor/azure_plural": "青", "Arena/TeamColor/blue": "蓝", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "蓝", "Arena/TeamColor/fuchsia": "粉", "Arena/TeamColor/fuchsia_plural": "粉", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "绿", "Arena/TeamColor/grey": "灰", "Arena/TeamColor/red": "红", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "红", "Arena/TeamColor/white": "白", "Arena/TeamColor/white_plural": "白", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "预设已解锁", "Arena/Tooltip/MapSelectedCounter": "已选地图数量", "Arena/Tooltip/MinMapCount {0}": "请选择多个地图。你需要同时选择至少 {0} 个地图。", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "尚未满足条件", "Arena/UI/APCItemBuyCaption": "解锁物品", "Arena/UI/APCItemBuyDescription": "购买物品?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "预设已被占用", "Arena/UI/Waiting": "等待中...", "Arena/Ui/ServerFounding": "寻找服务器中...", + "Arena/Widgets/ team {0} capturing point": "{0} 队正在夺取目标点", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "正在安放装置", "Arena/Widgets/Event/can activate object": "安放装置", "Arena/Widgets/Event/deactivate object": "拆除装置", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "准备就绪", "ArenaArmoryItemReward/Description": "解锁军械库:", "ArenaArmoryScreen/TutorialButton": "教程", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "剧毒", "ArenaMemberCategory/UniqueID": "Ryzhy版本", "ArenaPostMatchScreen/DailyExpBonus {0}": "每日首胜奖励: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "不满足更换任务的信任度及金钱要求", "ArenaQuestReroll/NotHaveStanding": "不满足更换任务的信任度要求", "ArenaRaidInviteDescription": "{0} 邀请你加入对局", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "任意模式", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "游戏模式", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "地点", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "多模式", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "你确定你要提前退出对局吗?", "ArenaUI/BattleMenu/FreeQuitWarning": "- 你现在可以离开对局并免受惩罚", "ArenaUI/BattleMenu/MatchLeave": "离开对局", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "销赃店", "Arena_Bay5": "5号湾", "Arena_Bowl": "体育馆", + "Arena_Prison": "Prison", "Arena_Yard": "街道", "Arena_equator_TDM_02": "Equator购物中心", "Arena_result_final": "最终", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "上后背", "ArmorVest": "身体护甲\n", "ArmoryCondition/ArenaArmoryProgression": "达到武器等级 {0} :", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "排位等级", "ArmoryCondition/CompletedDailyQuests": "已完成日常任务:", "ArmoryCondition/CompletedWeeklyQuests": "已完成周常任务:", @@ -15665,6 +15778,7 @@ "Barterdescription": "以物易物", "Battle category": "战斗类别", "BattleCategory": "战斗", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Bear AK系统", "BearAssaultoperations": "BEAR突击行动", "BearAuthority": "BEAR之威", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "降低保险服务费用 [{0:0.#%}]", "CharismaLevelingUpDescription": "魅力技能可以在提升专注、感知和智力技能时间接得到提升。", "CharismaScavCaseDiscount": "获得Scav宝箱折扣", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "以下物品将被转移到任务物品专用仓库:", "ChatScreen/QuestItemsMoved": "物品已被成功转移到任务物品专用仓库", "Check your email": "请检查您用于注册此帐户的电子邮箱。您将在5分钟内收到设备验证码。", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "不可用", "ClothingPanel/Available_both_games": "本体及竞技场均可用", "ClothingPanel/Available_only_arena": "仅在竞技场可用", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "可在网站上购买", "ClothingPanel/InternalObtain": "商人交易条件:", "ClothingPanel/LoyaltyLevel": "商人\n信任度等级:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "角色等级", "Conditional/ConditionQuest/Type": "任务:", "Conditional/ConditionSkill/Type": "技能:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "正在连接服务器......", "Connection to server lost": "服务器连接中断", "Console": "控制台", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "地下室锅炉房(合作撤离)", "CustomizationDirectReward/Description": "您将解锁该样式作为奖励", "CustomizationNotExists": "一个或多个预设中存在不可用的服饰", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "解锁战术服交易", "CustomizationReward/Description": "解锁战术服", "Customizations/ObtainHeader": "已获取:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "任务完成总数", "Daily/Stat/VeryEasy": "极简难度任务完成总数", "Daily/Stat/VeryHard": "极限难度任务完成总数", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "获胜对战", "DailyQuestName/ArenaWinRound": "获胜回合", "DailyQuestName/Completion": "寻物上交", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "火焰", "DamageType_GrenadeFragment": "破片", "DamageType_HeavyBleeding": "大出血", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "冲击", "DamageType_Landmine": "地雷", "DamageType_LightBleeding": "轻微出血", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "辐射", "DamageType_Sniper": "狙击手", "DamageType_Stimulator": "激素副作用", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "以前的损伤", "Day": "时间", "DeactivateObject": "拆除装置", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "火力掩护", "ETraderServiceType/BtrItemsDelivery": "运送物品至藏身处", "ETraderServiceType/PlayerTaxi": "坐车", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "装备", "EWishlistGroup/Hideout": "藏身处", "EWishlistGroup/Other": "其他", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "无法将{0} 添加到{1}。改造后的武器将占用比现在更多的空间。请试着把武器放在你仓库的其他地方。", "Escape": "返回", "Escape from Tarkov": "逃离塔科夫", + "EweaponQuality/High": "high", "ExamineWeapon": "检查当前武器", "Excellent standing": "杰出的", "ExceptionItem": "商人无法修复这个物品。", @@ -16627,6 +16771,7 @@ "FoundInRaid": "在战局中找到", "Free cam": "自由视角", "FreeChangeQuest": "免费", + "FreeWeekend": "Free Weekend", "Freetrading": "自由贸易", "Freetradingdescription": "自由贸易", "Friend invite to {0} was sent succesfully": "你的好友申请成功发送给了 {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "仪式圈", "Hideout/CircleOfCultists/MaxItemsCount": "物品上限:{0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "当你在藏身处时,邪教徒无法运送物品", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "这件物品将被用作为辅助工具。一旦制造完成,它会回到你的仓库中。", "Hideout/Customization/Ceiling/TabName": "天花板", "Hideout/Customization/Ceiling/WindowHeader": "选择安装天花板", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "最后的发电机", "Nakatani_stairs_free_exit": "Nakatani地下室楼梯", "Nape": "后颈", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "搜索需求", "NetworkError/SessionLostErrorMessage": "会话丢失。需要重新登录。", "NetworkError/TooManyFriendRequestsHeader": "好友请求过多", @@ -17620,6 +17768,7 @@ "PVE settings": "PVE设置", "Pain": "疼痛", "Painkiller": "止疼药生效中", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "恐惧", "PaperGesture": "纸", "Paramedic": "护理人员", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "更换费用:", "Quest/Change/TimeLeft": "任务剩余时间:", "Quest/Change/Tooltip": "行动任务更换费用:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": "阵亡{0}次", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": "阵亡少于{0}次", "QuestCondition/ArenaDeathCount/More{0}": "阵亡多于{0}次", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}\n{resetOnConditionFailed{0}}使用{playerPreset},{roundCount},{roundResult}并取得{playerInTeamPlace},同时{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}\n{resetOnConditionFailed{0}}使用{playerPreset},{resetOnSessionEnd},{playerAction}并取得{roundResult},同时{deathCount}", "QuestCondition/Category": "在单局中找到一件指定类别的物品:{0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "在{resetOnSessionEnd}中使用{kill}击杀{playerPreset}{zone}{enemyPreset}", "QuestCondition/Elimination/Kill": " {onesession}{weapon}{weapontype}{distance}{bodypart}击杀{target}{botrole}", "QuestCondition/Elimination/Kill/BodyPart": "击中{0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "带来一件指定类别的战局内发现物品:{0}", "QuestCondition/Many{0}{1}": "{0}{1}次", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "压制", "QuestCondition/Preset/632f8229f6541cacd808452c": "突击", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "任意地点", "QuestCondition/SurviveOnLocation/ExitName": "\"{0}\" 撤离点", "QuestCondition/SurviveOnLocation/Location": "地点", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "头部", "QuestCount/Transfered": "已转移", "QuestCount/Transferred": "淘汰人数:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "整体音量:", "Settings/Sound/ReadyToMatchSoundVolume": "接受对战界面音量:", "Settings/UnavailablePressType": "不可用", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "严重肌肉酸痛", "Shack": "军事基地检查站", "Shadow visibility:": "阴影可见度:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "开火模式", "Tactical": "开关战术设备", "Tactical clothing": "战术服", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "按住", "TacticalInteractionMode/Press": "按下", "TacticalVest": "战术胸挂", @@ -18582,6 +18746,7 @@ "Task": "任务", "Taskbar/Unavailable": "不可用", "Taskperformance": "任务表现", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "5对5团队赛。歼灭敌方队伍即可获胜。", "TeamFightDescriptionShort": "团队死斗", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "旧锯木厂", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "你想在列车停放处下车?你知道吧,没有我你可到不了那个地方。如果你觉得价钱合适,就确认一下时间吧,好吗?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "列车停放处", + "Trading/Dialog/PlayerTaxi/p1/Description": "好的,目的地——Rodina影院。这个车费没问题吧?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina影院", + "Trading/Dialog/PlayerTaxi/p2/Description": "准备前往电车站。你带够钱了,对吧?", + "Trading/Dialog/PlayerTaxi/p2/Name": "电车", + "Trading/Dialog/PlayerTaxi/p3/Description": "没问题,现在就去市中心。你带够钱了吗?", + "Trading/Dialog/PlayerTaxi/p3/Name": "市中心", + "Trading/Dialog/PlayerTaxi/p4/Description": "准备好就出发,去倒塌的吊车。这个车费没问题吧?", + "Trading/Dialog/PlayerTaxi/p4/Name": "倒塌的吊车", + "Trading/Dialog/PlayerTaxi/p5/Description": "我带你去废弃Scav检查点。这车费便宜吧?", + "Trading/Dialog/PlayerTaxi/p5/Name": "废弃Scav检查点", + "Trading/Dialog/PlayerTaxi/p6/Description": "我现在载你去Pinewood酒店。这个车费怎么样,完全可以吧?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood酒店", "Trading/Dialog/Quit": "离开", "Trading/Dialog/ServicePayoff{0}": "好了,这些应该就足够了。 (上交 \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "隐藏历史记录", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "无目的地进入许可", "Transit/InactivePoint": "无法使用移动功能", "Transit/Interaction": "互动", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "正在移动 ", "Transition in {0:F1}": "{0:F1} 后转移", "Tremor": "颤栗", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "仓库行数", "UI/Quest/Reward/AdditionalStashRowsTooltip": "你的仓库容量将会得到增加。变动会在后续生效(请关注游戏网站了解详情)。", "UI/Quest/Reward/AssortmentUnlockCaption": "{0} 信任度 {1} 级解锁购买", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "战术服", "UI/Quest/Reward/ItemCaption": "物品", "UI/Quest/Reward/ProductionSchemeCaption": "{0} {1}级解锁制作", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "关闭", "UI/Settings/NVidiaReflexMode/On": "开启", "UI/Settings/NVidiaReflexMode/OnAndBoost": "开启并增强", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "默认", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "其他动作", "UI/Settings/Rest": "其它", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "愿望单物品获取提醒", "UI/Skills/Charisma/CharismaDiscount": "魅力技能折扣", "UI/Standing:": "商人声望:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "未知错误", "UnknownErrorMessage": "发生未知错误。关闭游戏并提交错误报告。", "UnknownToxin": "未知毒素", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "卸除弹药", "Unloadmagazine": "卸除弹匣", "Unlock": "开锁", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "武器基础改装技能可以增加配件的人机工效并减少消音器的磨损。", "WeaponMounting": "架设武器", "WeaponPunch": "枪托攻击", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "降低武器后坐力 [{0:0.#%}]", "WeaponReloadBuff": "提升换弹速度 [{0:0.#%}]", "WeaponStiffHands": "提高武器人机功效 [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "您现在还不能使用跳蚤市场", "You can't use ragfair now": "您现在还不能使用跳蚤市场", "You can't use that symbol": "您不能使用此角色", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "您不能在战局中修改纹理质量。", "You cannot take off a dogtag from a friend or group member": "你不能取下好友或小队成员的狗牌", "You don't have some items to finish the deal": "你缺少完成交易所需的某些物品", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "助攻", "arena/CapturePointScores": "分数", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "占领并守住目标点", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "阵亡", "arena/Exp": "经验值", "arena/KillShort": "击杀", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "删除", "arena/contextInteractions/card/edit": "编辑", "arena/contextInteractions/card/inspect default preset": "检视", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "游戏模式(BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "游戏模式(CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "加时", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "可重复预设数量:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "比赛时长:", "arena/customGames/create/setOvertime": "设置加时", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "允许选用重复预设", "arena/customGames/create/setScoresToWinCount": "获胜分数:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "来自 {0} 的自定义游戏邀请", "arena/customGames/notify/GameRemoved": "房间已解散", "arena/customgames/errors/notification/gamealreadystarted": "游戏已经开始", "arena/customgames/popup/refreshdailyquest": "要更换行动任务吗?", "arena/customgames/popups/attemptscountleft:": "剩余尝试次数:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "升级所需ARP", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D比", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "选择竞技场", "arena/matching/SelectGametype": "选择游戏模式", "arena/matching/SelectRankedGamemode": "选择排位对战游戏模式", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "游戏类型", "arena/matching/UnavailableReason": "不可用", "arena/matching/buyPreset": "选择预设", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "已解锁栏位:", "arena/questLogTemplate/gameModes": "游戏模式", "arena/questLogTemplate/maps": "地点", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "对局MVP加成", "arena/resultContent/matchMVPMoneyTitle": "对局MVP加成", "arena/resultContent/roundMVPExpTitle": "回合MVP加成", "arena/resultContent/roundMVPMoneyTitle": "回合MVP加成", "arena/selection/gameMode": "游戏模式", "arena/selection/tiers": "等级", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "突击", "arena/tab/COLLECTION": "珍藏", "arena/tab/FAVORITES": "最爱", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "排位", "arena/tab/SCOUT": "侦查", "arena/tab/SQB": "压制", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP币。曾经用来在塔科夫中购买装备。可以通过完成竞技场行动任务来获取。", "arena/tooltip/OverallMatches": "排位和非排位对战的总胜场数。", "arena/tooltip/Presets": "预设", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "你的总胜率,统计数据来源于排位和非排位对局中的输赢结果。", "arena/widget/ally_capture_point": "你的队友夺取了目标点", "arena/widget/enemy_capture_point": "敌方队伍夺取了目标点", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "已完成日常任务:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "已完成周常任务:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "已完成日常任务:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "已完成周常任务:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "已完成日常任务:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "已完成周常任务:", "arenaui/presetview/lockedpreset": "预设不可用", "arm broke": "你把手臂弄伤了!", "assaultKills": "突击步枪击杀数", @@ -19643,6 +19860,29 @@ "camora_003": "枪膛4", "camora_004": "枪膛5", "camora_005": "枪膛6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "玩家 {0} 取消了好友请求", "cancelfriendrequest": "取消好友请求", "captcha/too frequent attempts": "尝试过于频繁。目前无法访问跳蚤市场和商人。请稍后再试.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "污水管道", "lab_Vent": "通风管道", "labir_exit": "The Way Up", + "laboratory": "实验室", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "上一次游戏", "leader": "队长", @@ -20358,6 +20599,7 @@ "un-sec": "北部UN路障", "undefined": "", "uninstall": "卸下", + "unlock requires:": "解锁需要:", "unlockedSafes": "保险箱解锁数", "unpack": "拆开", "usecKills": "USEC击杀数", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "塔科夫的经济中心,也是TerraGroup的总部驻地。这里就是一切开始的地方。", "65b8d6f5cdde2479cb2a3125 Name": "中心区", "65b8d6f5cdde2479cb2a3125 Description": "塔科夫的经济中心,也是TerraGroup的总部驻地。这里就是一切开始的地方。", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "联合保安公司", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "你找到了?给我吧,让我检查一下。卧槽,这玩意儿怎么会这么重?!行吧,我等会儿再看好了。拿着,给你的报酬。", "5ae9bb6986f77415a869b40b": "取得耐久度介于0-50%的6B13护甲", - "5ae9bc6e86f7746e0026222c": "上交耐久度介于0%-50%之间的6B13护甲", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "取得耐久度介于50-100%的6B13护甲", - "5ae9bea886f77468ab400e64": "上交耐久度介于50%-100%之间的6B13护甲", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "水瓶座行动 - 2", + "664ca9f577af670dad0ad339 description": "很高兴咱们又见面了。我的人已经搞清楚究竟是哪些人参与了这些不法行动来储存净水。根据你的准确情报,我们确定了是海关的那伙Scav搞的鬼。我提这种要求时真的很不舒服,可是生命危在旦夕的关头,这些无耻混蛋却依然继续着他们的肮脏生意。我们需要稍微吓唬一下,吓跑他们。所以让他们在痛苦中死去,这样他们就能明白他们所作的一切和被惩罚的原因。你能做这件事吗?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "你可以为自己感到骄傲了。虽然你今天杀了几个人,但夺走这些作恶者的命却给了很多平民一个生存下去的机会。", + "664ca9f577af670dad0ad33d": "在海关击杀Scav", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "水瓶座行动 - 2", + "6659a9716b1be75165030e4e description": "很高兴咱们又见面了。我的人已经搞清楚究竟是哪些人参与了这些不法行动来储存净水。根据你的准确情报,我们确定了是海关的那伙Scav搞的鬼。我提这种要求时真的很不舒服,可是生命危在旦夕的关头,这些无耻混蛋却依然继续着他们的肮脏生意。我们需要稍微吓唬一下,吓跑他们。所以让他们在痛苦中死去,这样他们就能明白他们所作的一切和被惩罚的原因。你能做这件事吗?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "你可以为自己感到骄傲了。虽然你今天杀了几个人,但夺走这些作恶者的命却给了很多平民一个生存下去的机会。", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,62 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f1e43f5a9e4aac60a8bab": "Победить в режиме Checkpoint 3 раза ", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28693,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28788,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28851,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "你的意思是都办好了?干得好,大兵。", @@ -28795,6 +29357,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "好。", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "所有需要的物品都列在清单上了。找到它们,然后带到秘密联络点去。", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "我手头上是有别的活儿,但你得知道,你这是在消耗我的耐心。", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC挚友", "6512ea46f7a078264a4376e4 description": "作为PMC,从立交桥的Scav合作撤离点撤离", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29749,256 @@ "670febed5ee0fc738a0965a4 name": "致命结果", "670febed5ee0fc738a0965a4 description": "在2024年万圣节任务线中,协助感染者摧毁病毒,并完成任务", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "美“轮”美奂", "675709bef4e2a2ce0f058f56 description": "解决BTR司机的问题", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30017,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/cz.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/cz.json index 7f707e36..2927ba5b 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/cz.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/cz.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Zamčená bedna", "6740987b89d5e1ddc603f4f0 ShortName": "Zamčená bedna", "6740987b89d5e1ddc603f4f0 Description": "Její obsah není znám, ale k otevření budeš potřebovat klíč.", + "67446fdd752be02c220f27b3 Name": "Útočný raketomet ShG-2", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Klíč od bedny", "67449b6c89d5e1ddc603f504 ShortName": "Klíč od bedny", "67449b6c89d5e1ddc603f504 Description": "Klíč vhodný k otevření většiny běžných kufrů.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Bedna Twitch Zima 2025 (Epická)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Bedna s parádními věcmi.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagillova svářečská maska \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Soudě podle téhle masky, Tagillův duševní stav byl Labyrintem silně poznamenán. Teď je ještě vyšinutější a krvežíznivější. Kdo by si pomyslel, že může být šílenější než dřív?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Taktické kalhoty", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "Bedna LATAM Dropů 2025 (Běžná)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "Bedna LATAM Dropů 2025 (Epická)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Pouzdro na klíče", "67d3ed3271c17ff82e0a5b0b ShortName": "Klíče", "67d3ed3271c17ff82e0a5b0b Description": "Toto pouzdro je ultimátním řešením kompulzivního hromadění klíčů ve stashi, umožňující úschovu na jednom místě.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Auto u cesty na vojenskou základnu", " Voip/DisabledForOffline": "VOIP není v offline režimu dostupný", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Jste si jisti, že chcete odstranit upravené vybavení?", "APC/CustomizationTab": "Přizpůsobení", "APC/EnterName": "Zadejte název", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Rychlý přístup", "APC/Locked": "Zamčeno", "APC/PurchasedStatesAll": "Všechny", "APC/ReadyToUlock": "K odemčení", "APC/Unlocked": "Odemčeno", "APC/ViewPreset": "Zobrazit", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Ochrana{1}", "APCBar/Firepower": "{0}Palebná síla{1}", "APCBar/Metascore": "{0}Meta skóre{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Útočné karabiny", "APCFilter/AssaultRifles": "Útočné pušky", "APCFilter/AssaultScope": "Útočné puškohledy", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Pomocné díly", "APCFilter/Barrel": "Hlavně", "APCFilter/Bipod": "Dvojnožky", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Přebíjecí táhla", "APCFilter/Collimator": "Kolimátory", "APCFilter/CompactCollimator": "Kompaktní kolimátory", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Chladné zbraně", "APCFilter/Mount": "Montáže", "APCFilter/Muzzle": "Úsťová zařízení", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Úsťové adaptéry", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Puškohledy", "APCFilter/PistolGrip": "Pažbičky", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistole", "APCFilter/Receiver": "Kryty závěru, Pouzdra závěru, Spouště", "APCFilter/SMGs": "Samopaly", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "ZLEPŠOVÁNÍ", "ARENA/ARMORY/LINKS": "PROPOJENÉ", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Přesun do EFT není dostupný", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "TŘÍDA OCHRANY", "ARMOR POINTS": "ŽIVOTNOST", "ARMOR TYPE": "TYP ARMORU", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Předmět nenalezen", "Arena/Armory/LevelReward/readyToUlockState": "Připraveno", "Arena/Armory/LevelReward/unlockedState": "Připraveno", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Zablokováno", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Nedostatek peněz", "Arena/BigCustomPurchaseInfo/Purchase": "Zakoupit", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Prodloužení", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} z {1}", "Arena/BlastGang/ResultScreenSwapSides": "Změna stran", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Zrušit žádost o přátelství", "Arena/CustomGame/Lobby/cancel invite to group": "Zrušit pozvánku do skupiny", "Arena/CustomGame/Lobby/invite to friends": "Přidat na seznam přátel", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Zbývá pokusů:", "Arena/CustomGames/Create/Maps": "Lokace", "Arena/CustomGames/Create/Modes": "Režimy", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Podrežimy", "Arena/CustomGames/Create/TournamentMode": "Turnajový režim", "Arena/CustomGames/Create/TournamentSettings": "Nastavení turnaje", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Vzít", "Arena/CustomGames/No servers found": "Nenalezeny aktivní servery", "Arena/CustomGames/Observers": "Pozorovatelé", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Vstup na server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Nahrazení operačního úkolu / Ref", "Arena/CustomGames/Settings": "Nastavení", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Vypnuto", "Arena/CustomGames/Settings/enable": "Zapnuto", "Arena/CustomGames/create/enter name": "Zadejte název", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Region", "Arena/CustomGames/toggle/room name": "Název místnosti", "Arena/CustomGames/toggle/tournament": "Turnaj", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Zápas skončil v době vaší nepřítomnosti", "Arena/EnterPresetName": "Pojmenujte šablonu", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Poškození do nepřátel", "Arena/MVP/DeactivatedBomb": "Deaktivovaných zařízení", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Zbraň", "Arena/Rematching": "Návrat do hry s vysokou prioritou", "Arena/Rematching/NoServer": "Z technických důvodů nebyl server nalezen. Vrácení k vyhledávání hry.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azurový", "Arena/TeamColor/azure_plural": "Azurový", "Arena/TeamColor/blue": "Modrý", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Modrý", "Arena/TeamColor/fuchsia": "Růžový", "Arena/TeamColor/fuchsia_plural": "Růžový", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Zelený", "Arena/TeamColor/grey": "Šedý", "Arena/TeamColor/red": "Červený", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Červený", "Arena/TeamColor/white": "Bílý", "Arena/TeamColor/white_plural": "Bílý", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Odemčeno šablon", "Arena/Tooltip/MapSelectedCounter": "Počet zvolených lokací", "Arena/Tooltip/MinMapCount {0}": "Vyberte několik lokací. Musíte vybrat alespoň {0} lokací", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Podmínky nejsou splněny", "Arena/UI/APCItemBuyCaption": "Odemčení předmětu", "Arena/UI/APCItemBuyDescription": "Zakoupit předmět?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Šablona obsazena", "Arena/UI/Waiting": "Čekání...", "Arena/Ui/ServerFounding": "Hledání serveru...", + "Arena/Widgets/ team {0} capturing point": "{0} tým obsazuje objekt", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Pokládání zařízení", "Arena/Widgets/Event/can activate object": "Položit zařízení", "Arena/Widgets/Event/deactivate object": "Deaktivovat zařízení", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "PŘIPRAVEN", "ArenaArmoryItemReward/Description": "Odemkne předmět ve zbrojnici", "ArenaArmoryScreen/TutorialButton": "Tutoriál", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Silný Jed", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Denní bonus na první výhru: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Nedostatek reputace a peněz pro nahrazení tohoto úkolu", "ArenaQuestReroll/NotHaveStanding": "Nedostatek reputace pro nahrazení tohoto úkolu", "ArenaRaidInviteDescription": "{0} vás zve do hry", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Jakýkoliv režim", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Herní režim(y)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Lokace", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Několik herních režimů", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Opravdu chcete předčasně opustit hru?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Opustíte tento zápas bez trestu", "ArenaUI/BattleMenu/MatchLeave": "OPUSTIT ZÁPAS", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finální", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Horní část zad", "ArmorVest": "Hruď", "ArmoryCondition/ArenaArmoryProgression": "Dokončit {0}. úroveň zbraně s:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Hodnost", "ArmoryCondition/CompletedDailyQuests": "Dokončit denní úkoly:", "ArmoryCondition/CompletedWeeklyQuests": "Dokončit týdenní úkoly:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Výměnné obchody", "Battle category": "Kategorie boje", "BattleCategory": "Bojové", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR - AK systémy", "BearAssaultoperations": "BEAR - Útočné operace", "BearAuthority": "BEAR - Autorita", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Snižuje cenu služby pojištění o [{0:0.#%}]", "CharismaLevelingUpDescription": "Dovednost Charisma se zlepšuje zlepšováním dovednosti Pozornost, Vnímání a Intelekt.", "CharismaScavCaseDiscount": "Zvyšuje slevu na ceny ve Schránce pro scavy", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Tyto předměty budou přesunuty do úkolové skrýše:", "ChatScreen/QuestItemsMoved": "Předměty úspěšně přesunuty do skrýše", "Check your email": "Zkontrolujte prosím svůj email, který jste zadali při registraci tohoto účtu. ID zařízení obdržíte do 5 minut.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Nedostupné", "ClothingPanel/Available_both_games": "Dostupné v EFT i Aréně", "ClothingPanel/Available_only_arena": "Dostupné pouze v Aréně", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "K dispozici k zakoupení na webových stránkách", "ClothingPanel/InternalObtain": "Podmínky pro nákup:", "ClothingPanel/LoyaltyLevel": "Úroveň reputace\ns obchodníkem:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Úroveň postavy", "Conditional/ConditionQuest/Type": "Úkoly:", "Conditional/ConditionSkill/Type": "Schopnosti:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Připojování k serveru...", "Connection to server lost": "Ztratil jste spojení se serverem", "Console": "Konzole", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Sklep kotelny (Co-op)", "CustomizationDirectReward/Description": "Tento styl odemknete jako odměnu", "CustomizationNotExists": "Nedostupné oblečení v jedné nebo více šablonách", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Odemkne nabídku taktického oblečení", "CustomizationReward/Description": "Odemkne taktické oblečení", "Customizations/ObtainHeader": "Získáno:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Celkem dokončeno úkolů", "Daily/Stat/VeryEasy": "Celkem dokončeno velmi snadných úkolů", "Daily/Stat/VeryHard": "Celkem dokončeno velmi těžkých úkolů", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Výhra zápasu", "DailyQuestName/ArenaWinRound": "Výhra kola", "DailyQuestName/Completion": "Nalezení a předání", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Plameny", "DamageType_GrenadeFragment": "Fragmenty", "DamageType_HeavyBleeding": "Těžké krvácení", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Dopadové poškození", "DamageType_Landmine": "Pozemní mina", "DamageType_LightBleeding": "Lehké krvácení", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Vystavení radiaci", "DamageType_Sniper": "Zásah odstřelovače", "DamageType_Stimulator": "Vedlejší účinek stimulátorů", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Předchozí poškození", "Day": "Den", "DeactivateObject": "Deaktivovat zařízení", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Krycí palba", "ETraderServiceType/BtrItemsDelivery": "Přesun předmětů do skrýše", "ETraderServiceType/PlayerTaxi": "Taxi", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Vybavení", "EWishlistGroup/Hideout": "Úkryt", "EWishlistGroup/Other": "Ostatní", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Nelze přidat {0} na {1}. Upravená zbraň zabírá více prostoru, než je k dispozici. Zkuste ve skrýši přemístit uložené věci.", "Escape": "Zpět", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Prohlédnutí zbraně v ruce", "Excellent standing": "vynikající", "ExceptionItem": "Vybraný obchodník nemůže tento předmět opravit", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Nalezeno v raidu", "Free cam": "Volný pohled", "FreeChangeQuest": "Zdarma", + "FreeWeekend": "Free Weekend", "Freetrading": "Volné obchodování", "Freetradingdescription": "Volné obchodování", "Friend invite to {0} was sent succesfully": "Žádost o přátelství byla úspěšně odeslána {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Kultistický kruh", "Hideout/CircleOfCultists/MaxItemsCount": "Maximum předmětů: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Kultisti vám nemohou předat Dar, když jste v Úkrytu", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Tento předmět se použije jako výpomocný nástroj. Po dokončení výroby se vrátí do vašeho inventáře.", "Hideout/Customization/Ceiling/TabName": "Strop", "Hideout/Customization/Ceiling/WindowHeader": "Vyberte stop k instalaci", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Finální generátor", "Nakatani_stairs_free_exit": "Schodiště do sklepa Nakatani", "Nape": "Šíje", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "FILTR - POŽADOVANÉ", "NetworkError/SessionLostErrorMessage": "Spojení ztraceno. Je nutné opětovné přihlášení", "NetworkError/TooManyFriendRequestsHeader": "Příliš mnoho žádostí", @@ -17620,6 +17768,7 @@ "PVE settings": "Nastavení AI", "Pain": "Bolest", "Painkiller": "Na analgetikách", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Mrazivá hrůza", "PaperGesture": "Papír", "Paramedic": "Paramedik", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Cena nahrazení:", "Quest/Change/TimeLeft": "Čas pro splnění:", "Quest/Change/Tooltip": "Cena nahrazení úkolu:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " úmrtí {0}x", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " úmrtí méně než {0}x", "QuestCondition/ArenaDeathCount/More{0}": " úmrtí více než {0}x", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Najít během jednoho raidu předmět z kategorie: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminovat{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " do {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extraktovat s předměty z kategorie: {0}", "QuestCondition/Many{0}{1}": "{0} {1}x", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Těžkooděnec", "QuestCondition/Preset/632f8229f6541cacd808452c": "Útočník", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "jakákoliv lokace", "QuestCondition/SurviveOnLocation/ExitName": " za využití východu \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "v lokaci", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "hlavy", "QuestCount/Transfered": "předáno", "QuestCount/Transferred": "Eliminováno:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Celková hlasitost:", "Settings/Sound/ReadyToMatchSoundVolume": "Hlasitost oznámení zápasu:", "Settings/UnavailablePressType": "Nedostupné", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Silná bolest svalů", "Shack": "KB Vojenské Základny", "Shadow visibility:": "Viditelnost stínů:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "REŽIMY STŘELBY", "Tactical": "Přepínání taktických zařízení (baterka, laser)", "Tactical clothing": "Taktické oblečení", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Držet", "TacticalInteractionMode/Press": "Stisknout", "TacticalVest": "Vesta", @@ -18582,6 +18746,7 @@ "Task": "Úkol", "Taskbar/Unavailable": "Nedostupné", "Taskperformance": "Pracovní Nasazení", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Týmový boj 5 proti 5. Cílem je zlikvidovat soupeře dříve, než oni zabijí vás.", "TeamFightDescriptionShort": "Team deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Stará pila", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Mám tě vysadit v depu? Jen abys věděl, beze mě se odtud nedostaneš. Jestli je cena v pohodě, hlídej si tam čas, jo?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Vlakové depo", + "Trading/Dialog/PlayerTaxi/p1/Description": "Dobře, cíl je kino Rodina. Cena vyhovuje?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Kino Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Jedem na tramvaj. Peníze máš, že?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tramvaj", + "Trading/Dialog/PlayerTaxi/p3/Description": "Skvělé, jsme na cestě do centra města. Máš dost peněz?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centrum města", + "Trading/Dialog/PlayerTaxi/p4/Description": "Pojedeme ke Zřícenému jeřábu. Je cena dobrá?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Zřícený jeřáb", + "Trading/Dialog/PlayerTaxi/p5/Description": "Vezmu tě na Starý kontrolní bod scavů. Cena je v pořádku, jo?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Starý kontrolní bod scavů", + "Trading/Dialog/PlayerTaxi/p6/Description": "Odvezu tě do hotelu Pinewood. Co cena, dobrý?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Rozloučit se a odejít", "Trading/Dialog/ServicePayoff{0}": "Dobře, tohle by mělo stačit. (předat \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Skrýt historii", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Přístup zamítnut", "Transit/InactivePoint": "Přesun nedostupný", "Transit/Interaction": "Interagovat", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Přesun na ", "Transition in {0:F1}": "Přesun za {0:F1}", "Tremor": "Třes", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Řádky ve skrýši", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Vaše skrýš bude zvětšeno o dodatečné řádky.\nTyto změny budou aplikovány později (zkontroluje web pro více info).", "UI/Quest/Reward/AssortmentUnlockCaption": "Odemyká sortiment u {0} na úrovni věrnosti {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Taktické oblečení", "UI/Quest/Reward/ItemCaption": "Předmět", "UI/Quest/Reward/ProductionSchemeCaption": "Výrobní recept pro {0} na úrovni {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "Vypnuto", "UI/Settings/NVidiaReflexMode/On": "zapnuto", "UI/Settings/NVidiaReflexMode/OnAndBoost": "zapnuto a vylepšeno", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Výchozí", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Ostatní akce", "UI/Settings/Rest": "Ostatní", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Upozornění na předměty v seznamu přání", "UI/Skills/Charisma/CharismaDiscount": "Sleva z dovednosti Charisma", "UI/Standing:": "Reputace s obchodníkem:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Neznámá chyba", "UnknownErrorMessage": "Došlo k neznámé chybě. Vypněte hru a nahlaste chybu.", "UnknownToxin": "Neznámý toxin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "VYBÍT MUNICI", "Unloadmagazine": "Vyjmutí zásobníku", "Unlock": "Odemknout", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Schonost základní úpravy zbraní v boji zvyšuje ergonomii modifikací a snižuje opotřebování tlumiče.", "WeaponMounting": "Zapřít zbraň", "WeaponPunch": "Úder pažbou", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Snižuje zpětný ráz zbraně o [{0:0.#%}]", "WeaponReloadBuff": "Zvyšuje rychlost přebíjení o [{0:0.#%}]", "WeaponStiffHands": "Zvyšuje ergonomii zbraně o [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Právě teď nemůžete použít bleší trh", "You can't use ragfair now": "Bleší trh momentálně nemůžete používat", "You can't use that symbol": "Tento znak nelze použít", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Během raidu nelze měnit kvalitu textur.", "You cannot take off a dogtag from a friend or group member": "Nemůžete sebrat psí známku příteli nebo členu týmu", "You don't have some items to finish the deal": "Nemáte potřebné věci k provedení obchodu", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Skóre", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Obsaďte a udržujte objekty", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "S", "arena/Exp": "Exp", "arena/KillShort": "Z", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Smazat", "arena/contextInteractions/card/edit": "Upravit", "arena/contextInteractions/card/inspect default preset": "Prozkoumat", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "HERNÍ MOD (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Herní režim (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Prodloužení", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicitní šablony:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Trvání zápasu:", "arena/customGames/create/setOvertime": "Nastavit prodloužení", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Povolit duplicitní šablony", "arena/customGames/create/setScoresToWinCount": "Bodů do výhry:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "POZVÁNKA DO VLASTNÍ HRY OD {0}", "arena/customGames/notify/GameRemoved": "Místnost byla rozpuštěna", "arena/customgames/errors/notification/gamealreadystarted": "Hra již začala", "arena/customgames/popup/refreshdailyquest": "Nahradit operační úkol?", "arena/customgames/popups/attemptscountleft:": "Zbývá pokusů:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ZBÝVÁ ARP", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "VYBERTE ARÉNU", "arena/matching/SelectGametype": "VYBERTE TYP HRY", "arena/matching/SelectRankedGamemode": "VYBRAT REŽIM HODNOCENÉ HRY", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYP", "arena/matching/UnavailableReason": "Nedostupné", "arena/matching/buyPreset": "VYBRAT ŠABLONU", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "odemčeno slotů:", "arena/questLogTemplate/gameModes": "Herní režim(y)", "arena/questLogTemplate/maps": "Lokace", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bonus MVP ocenění za zápas", "arena/resultContent/matchMVPMoneyTitle": "Bonus MVP ocenění za zápas", "arena/resultContent/roundMVPExpTitle": "Bonus MVP ocenění za kolo", "arena/resultContent/roundMVPMoneyTitle": "Bonus MVP ocenění za kolo", "arena/selection/gameMode": "režim hry", "arena/selection/tiers": "úroveň", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ÚTOČNÍK", "arena/tab/COLLECTION": "KOLEKCE", "arena/tab/FAVORITES": "OBLÍBENÉ", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "HODNOCENÉ", "arena/tab/SCOUT": "PRŮZKUMNÍK", "arena/tab/SQB": "TĚŽKOODĚNEC", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP mince. Slouží k odemykání vybavení pro šablony a k nákupu vybavení v EFT. Získávají se za plnění operačních úkolů v aréně.", "arena/tooltip/OverallMatches": "Celkový počet odehraných hodnocených a nehodnocených zápasů.", "arena/tooltip/Presets": "Šablony", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Váš celkový poměr výher vypočítaný ze všech výher a proher v hodnocených i nehodnocených zápasech.", "arena/widget/ally_capture_point": "Přátelé obsadili bod", "arena/widget/enemy_capture_point": "Nepřátelé obsadili bod", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Dokončit denní úkoly:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Dokončit týdenní úkoly:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Dokončit denní úkoly:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Dokončit týdenní úkoly:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Dokončit denní úkoly:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Dokončit týdenní úkoly:", "arenaui/presetview/lockedpreset": "Nedostupné", "arm broke": "Zlomil jste si ruku!", "assaultKills": "Zabití útočnou puškou", @@ -19643,6 +19860,29 @@ "camora_003": "Komora 4", "camora_004": "Komora 5", "camora_005": "Komora 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Hráč {0} zrušil žádost o přátelství", "cancelfriendrequest": "Zrušit žádost o přátelství", "captcha/too frequent attempts": "Příliš mnoho pokusů o nákup. Přístup k blešímu trhu a obchodníkům je dočasně nedostupný. Zkuste to později.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Kanalizační potrubí", "lab_Vent": "Větrací šachta", "labir_exit": "Cesta vzhůru", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "Ariadnina stezka", "lastSession": "Poslední hra", "leader": "Velitel", @@ -20358,6 +20599,7 @@ "un-sec": "Severní zátaras OSN", "undefined": "", "uninstall": "ODINSTALOVAT", + "unlock requires:": "požadavky k odemčení:", "unlockedSafes": "Odemčeno trezorů", "unpack": "rozbalit", "usecKills": "Zabito USECů", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Obchodní centrum Tarkova. Zde sídlila společnost TerraGroup. Tady to všechno začalo.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "Obchodní centrum Tarkova. Zde sídlila společnost TerraGroup. Tady to všechno začalo.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "Zařízení jednoho z kontraktorů TerraGroup, Knossos LLC. Podle veřejných zdrojů se zabývají výstavbou zábavních a tematických parků. Tento prostor však vypadá spíše jako silně opevněný bunkr než nový tematický park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Máš je? Dej je sem, podíváme se na ně. Proč jsou kurva tak těžké?! Dobře, podívám se na ně později. Tady, vezmi si to za pomoc.", "5ae9bb6986f77415a869b40b": "Najít v raidu balistickou vestu 6B13 (životnost 0 až 50%)", - "5ae9bc6e86f7746e0026222c": "Předat balistickou vestu", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Najít v raidu balistickou vestu 6B13 (životnost 50 až 100%)", - "5ae9bea886f77468ab400e64": "Předat balistickou vestu", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operace Vodnář - Část 2", + "664ca9f577af670dad0ad339 description": "Ráda vás opět vidím. Moji lidé zjistili, kdo byl zapojen do všech těch nelegálních operací s čistou vodou. Díky vašim informacím, samozřejmě. No, je to gang Scavů pracujících v oblasti Customs. Není mi opravdu příjemné žádat vás o takovou věc, ale v sázce jsou lidské životy a ty darebáci, se svým nekalým podnikáním, nechtějí přestat. Musíme je pořádně vyděsit. Nechte je umírat v bolestech, ať poznají co sami činí druhým a ať za to zaplatí. Uděláte to?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Můžete být na sebe hrdý - i když jste dnes pár životů vzal, nešlo o výběr toho nejlepšího z lidské rasy. Místo toho dostalo šanci na život mnoho slušných civilistů.", + "664ca9f577af670dad0ad33d": "Eliminovat Scavy na Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Ruch", "66588c0c98194a5d26010197 description": "Ahoj žoldáku! Slyšel jsi, co se stalo na Lighthouse? Podle mých zdrojů mají místní zločinecké kruhy velký spor s Rogues a hledají je po celém městě i na předměstí. Úkolem je těmto Rogues pomoci. Protože narušování klidu a pořádku je na mé stráži zakázáno. Rozumíš?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operace Vodnář - Část 2", + "6659a9716b1be75165030e4e description": "Ráda vás opět vidím. Moji lidé zjistili, kdo byl zapojen do všech těch nelegálních operací s čistou vodou. Díky vašim informacím, samozřejmě. No, je to gang Scavů pracujících v oblasti Customs. Není mi opravdu příjemné žádat vás o takovou věc, ale v sázce jsou lidské životy a ty darebáci, se svým nekalým podnikáním, nechtějí přestat. Musíme je pořádně vyděsit. Nechte je umírat v bolestech, ať poznají co sami činí druhým a ať za to zaplatí. Uděláte to?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Můžete být na sebe hrdý - i když jste dnes pár životů vzal, nešlo o výběr toho nejlepšího z lidské rasy. Místo toho dostalo šanci na život mnoho slušných civilistů.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Houndi", "665eeacf5d86b6c8aa03c79b description": "Musíme si promluvit. Sanitarovy gorily v noci slídí po pobřeží. Zřejmě něco hledají. Nemůžeme to nechat bez kontroly. Zastraš je, zatím se pokusím zjistit, co plánují.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Zeptat se na cestu", "674492b6909d2013670a347a description": "Takže Ragman hledá nové trasy, říkáš? Sám o tom teď přemýšlím, když mě Skier tak snadno nepustí. Ale je tu jedna možnost, kterou by Ragman mohl využít. Nebudu tam projíždět se svým BTR, ale když jsem byl ještě mrňavý chodec, často jsem se tam plížil.\n\nŽádné opravdu bezpečné cesty už nejsou, takže tahle je asi lepší než nic. Jen se mi nezapomeň vrátit, až to označíš, já to pro jistotu překontroluju se svými mapami.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Vánoční večeře", "675031be899713ccad00060c description": "Jak se daří, příteli! Není ti zima? No, jde o tohle... Uspořádáme se spolubojovníky na základně hostinu, jsou přece Vánoce!\n\nAle víš, jak to chodí v inventárních skladech. Podle záznamů je tam všechno, ale ve skutečnosti je tam jen Tushonka a hromada brambor. chtěli jsme udělat olivový salát, možná dvě mísy. A taky potřebujeme nějaký chlast.\n\nMůžeš ho sehnat? Jen ty brambory neber, máme jich dost.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "Nemyslel jsem si, že budu součástí nějakého rituálu... No, přijdu na to, až se tam dostanu.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "Je hotovo. Vašim přátelům se to bude líbit.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Opuštění prostor", "67d03be712fb5f8fd2096332 description": "Celá ta záležitost se zdravotním střediskem byla obrovská, že? Jak už jsem ti říkal, měl jsem tam s Refem kšeft, v těch sklepeních. Dřív jsem si myslel, že Ref odvezl všechno vybavení, ale teď se ukázalo, že tam dole jsou pořád tuny techniky. Tak jsem si řekl, že není na škodu si něco z toho vzít?\n\nNe, ty televize a kamery mi nosit nemusíš, neboj. Ty potřebují pečlivou kontrolu a dobré zabalení. Na to mám vlastní lidi. Ale nemůžu je tam poslat hned teď! S technikou to umí, ale se zbraněmi jsou na hovno. Kdyby se tam dostal opravdový profesionál, mrk mrk, a vyhnal odtamtud všechny ostatní kluky, tak bychom měli práci.\n\nTak zrovna když jsem si na to vzpomněl, vzpomněl jsem si na tebe, brácho! Jsi připraven pomoci dobré věci? Samozřejmě, když tu práci odvedeš pořádně, dám ti na oplátku nějaké dobroty!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Říkáš, že je vše čistý? Dobrá práce, vojáku.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Pěkné.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Všechny požadované věci jsou na seznamu. Najdi je a přines na místo shozu.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Jsou zde i jiné úkoly, ale to tě bude stát mou trpělivost.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Operátorův nejlepší přítel", "6512ea46f7a078264a4376e4 description": "Přežít a odejít z Interchange pomocí Scav Co-Op východu jako PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Smrtelný výsledek", "670febed5ee0fc738a0965a4 description": "Zničte virus společně se všemi nakaženými a dokončete úkolovou linii eventu Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Pohon všech kol", "675709bef4e2a2ce0f058f56 description": "Vyřešit problém s BTR řidičem tak či onak", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Mistr dungeonů", "67a0e57b972c11a3f50773b2 description": "Dokončit úkolovou linii Labyrint a všechny vedlejší úkoly", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/en.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/en.json index 250537ac..ef8c8367 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/en.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/en.json @@ -1675,7 +1675,7 @@ "5894a05586f774094708ef75 Description": "A standard 30-round capacity semitransparent 9x19mm MPX magazine, manufactured by SIG Sauer.", "5894a13e86f7742405482982 Name": "SIG Sauer Collapsing/Telescoping Stock", "5894a13e86f7742405482982 ShortName": "SIG CTS", - "5894a13e86f7742405482982 Description": "A telescopic retractable stock for early issues of MCX/MPX manufactured by SIG Sauer.", + "5894a13e86f7742405482982 Description": "A stock for early issues of MCX/MPX manufactured by SIG Sauer.", "5894a2c386f77427140b8342 Name": "MPX 9x19 8 inch barrel", "5894a2c386f77427140b8342 ShortName": "MPX 8\"", "5894a2c386f77427140b8342 Description": "An 8 inch (203mm) barrel for MPX-based weapons chambered for 9x19 ammunition.", @@ -4909,10 +4909,10 @@ "5c5db6b32e221600102611a0 Description": "The SCH (Super Charging Handle) charging handle with two latches for MPX-based weapons, manufactured by Geissele.", "5c5db6ee2e221600113fba54 Name": "MPX/MCX Maxim Defense CQB stock", "5c5db6ee2e221600113fba54 ShortName": "MD CQB", - "5c5db6ee2e221600113fba54 Description": "A retractable CQB stock for MPX/MCX weapons, manufactured by Maxim Defense.", - "5c5db6f82e2216003a0fe914 Name": "MPX/MCX PMM ULSS foldable stock", + "5c5db6ee2e221600113fba54 Description": "A stock for MPX/MCX weapons, manufactured by Maxim Defense.", + "5c5db6f82e2216003a0fe914 Name": "MPX/MCX PMM ULSS stock", "5c5db6f82e2216003a0fe914 ShortName": "ULSS", - "5c5db6f82e2216003a0fe914 Description": "ULSS (UltraLight Skeleton Stock) is a foldable stock for MPX/MCX manufactured by Parker Mountain Machine.", + "5c5db6f82e2216003a0fe914 Description": "ULSS (UltraLight Skeleton Stock) is a stock for MPX/MCX manufactured by Parker Mountain Machine.", "5c6161fb2e221600113fbde5 Name": "TOZ-106 20ga MTs 20-01 Sb.3 5-shot magazine", "5c6161fb2e221600113fbde5 ShortName": "Sb.3x5", "5c6161fb2e221600113fbde5 Description": "A 5-shot 20ga magazine for MTs 20-01 and TOZ-106 hunting shotguns.", @@ -5300,9 +5300,9 @@ "5cde739cd7f00c0010373bd3 Name": "M700 AB Arms MOD*X GEN 3 chassis", "5cde739cd7f00c0010373bd3 ShortName": "MOD*X Gen.3", "5cde739cd7f00c0010373bd3 Description": "The AB Arms MOD*X GEN III Modular Rifle System is a lightweight, ergonomic, drop-in chassis designed for the Remington Model 700 bolt-action sniper rifle.", - "5cde77a9d7f00c000f261009 Name": "M700 AB Arms MOD*X buffer tube side folder adapter", + "5cde77a9d7f00c000f261009 Name": "M700 AB Arms MOD*X buffer tube adapter", "5cde77a9d7f00c000f261009 ShortName": "AB adpt.", - "5cde77a9d7f00c000f261009 Description": "A foldable adapter for installation of telescopic stock buffer tubes on the Remington M700 MOD*X kit by AB Arms.", + "5cde77a9d7f00c000f261009 Description": "An adapter for installation of telescopic stock buffer tubes on the Remington M700 MOD*X kit by AB Arms.", "5cde7afdd7f00c000d36b89d Name": "M700 AB Arms MOD*X GEN 3 KeyMod handguard", "5cde7afdd7f00c000d36b89d ShortName": "MOD*X", "5cde7afdd7f00c000d36b89d Description": "The AB Arms MOD*X GEN 3 KeyMod handguard for M700 sniper rifles equipped with a KeyMod interface for installation of additional devices and accessories.", @@ -7312,7 +7312,7 @@ "5fbcc3e4d6fa9c00c571bb58 Description": "An upper receiver for the first generation MCX assault rifles manufactured by SIG Sauer. Features a mount for attaching additional equipment.", "5fbcc429900b1d5091531dd7 Name": "SIG Sauer Telescoping/Folding Stock", "5fbcc429900b1d5091531dd7 ShortName": "SIG TFS", - "5fbcc429900b1d5091531dd7 Description": "A telescopic stock for MPX/MCX manufactured by SIG Sauer.", + "5fbcc429900b1d5091531dd7 Description": "A stock for MPX/MCX manufactured by SIG Sauer.", "5fbcc437d724d907e2077d5c Name": "SIG Sauer Thin Side-Folding Stock", "5fbcc437d724d907e2077d5c ShortName": "SIG TSFS", "5fbcc437d724d907e2077d5c Description": "A lightweight stock for MPX/MCX, manufactured by SIG Sauer.", @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14395,7 +14407,7 @@ "6761492dc53ebe8c0f0a5efe Description": "An ambidextrous charging handle with two latches for the second generation of the MPX SMG. Manufactured by SIG Sauer.", "6761496fe2cf1419500357e9 Name": "SB Tactical MPX Pistol Stabilizing Brace", "6761496fe2cf1419500357e9 ShortName": "MPX PSB", - "6761496fe2cf1419500357e9 Description": "A telescopic retractable brace stock for MPX. Manufactured by SB Tactical.", + "6761496fe2cf1419500357e9 Description": "A brace stock for MPX. Manufactured by SB Tactical.", "67614994e889e1972605d6bb Name": "MPX 9x19 Ronin Arms 4.75 inch Ported SD Barrel", "67614994e889e1972605d6bb ShortName": "MPX-SD 4.75\"", "67614994e889e1972605d6bb Description": "A 4.75 inch ported barrel from the MPX-SD conversion kit designed for installation of the special suppressor. Manufactured by Ronin Arms.", @@ -14597,11 +14609,14 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", "678fa929819ddc4c350c0317 Name": "Valve handwheel", - "678fa929819ddc4c350c0317 ShortName": "handwheel", + "678fa929819ddc4c350c0317 ShortName": "Wheel", "678fa929819ddc4c350c0317 Description": "A massive handwheel removed from some kind of valve. It must have been used to regulate the water or gas supply in the Knossos underground facilities.", "679b944d597ba2ed120c3d3c Name": "Last Breath poster", "679b944d597ba2ed120c3d3c ShortName": "Last Breath", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VoIP is unavailable in the offline mode", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Are you sure you want to remove the modified equipment?", "APC/CustomizationTab": "Customization", "APC/EnterName": "Enter name", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Quick access", "APC/Locked": "Locked", "APC/PurchasedStatesAll": "All", "APC/ReadyToUlock": "Unlockable", "APC/Unlocked": "Unlocked", "APC/ViewPreset": "View", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Firepower{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Assault carbines", "APCFilter/AssaultRifles": "Assault rifles", "APCFilter/AssaultScope": "Assault scopes", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Auxiliary parts", "APCFilter/Barrel": "Barrels", "APCFilter/Bipod": "Bipods", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Charging handles", "APCFilter/Collimator": "Reflex sights", "APCFilter/CompactCollimator": "Compact reflex sights", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Melee weapons", "APCFilter/Mount": "Mounts", "APCFilter/Muzzle": "Muzzle devices", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Muzzle adapters", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Optics", "APCFilter/PistolGrip": "Pistol grips", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistols", "APCFilter/Receiver": "Dust covers, Receivers, Trigger groups", "APCFilter/SMGs": "Submachine guns", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LEVELING", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transfer to EFT is unavailable", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "ARMOR CLASS", "ARMOR POINTS": "ARMOR POINTS", "ARMOR TYPE": "ARMOR TYPE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item not found", "Arena/Armory/LevelReward/readyToUlockState": "Ready", "Arena/Armory/LevelReward/unlockedState": "Ready", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Not enough money", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Overtime", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} of {1}", "Arena/BlastGang/ResultScreenSwapSides": "Switching sides", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancel friend list invite", "Arena/CustomGame/Lobby/cancel invite to group": "Cancel group invite", "Arena/CustomGame/Lobby/invite to friends": "Invite to friend list", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Attempts left:", "Arena/CustomGames/Create/Maps": "Locations", "Arena/CustomGames/Create/Modes": "Modes", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submodes", "Arena/CustomGames/Create/TournamentMode": "Tournament mode", "Arena/CustomGames/Create/TournamentSettings": "Tournament settings", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Take", "Arena/CustomGames/No servers found": "No active servers found", "Arena/CustomGames/Observers": "Spectators", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entering the server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Operational task replacement / Ref", "Arena/CustomGames/Settings": "Settings", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Disabled", "Arena/CustomGames/Settings/enable": "Enabled", "Arena/CustomGames/create/enter name": "Enter name", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Region", "Arena/CustomGames/toggle/room name": "Room name", "Arena/CustomGames/toggle/tournament": "Tournament", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Match has ended while you were away", "Arena/EnterPresetName": "Enter preset name", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Weapon", "Arena/Rematching": "Returning to matching with high priority", "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azure", "Arena/TeamColor/azure_plural": "Azure", "Arena/TeamColor/blue": "Blue", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Blue", "Arena/TeamColor/fuchsia": "Pink", "Arena/TeamColor/fuchsia_plural": "Pink", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Green", "Arena/TeamColor/grey": "Grey", "Arena/TeamColor/red": "Red", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Red", "Arena/TeamColor/white": "White", "Arena/TeamColor/white_plural": "White", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", + "Arena/Widgets/ team {0} capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Planting the device", "Arena/Widgets/Event/can activate object": "Plant the device", "Arena/Widgets/Event/deactivate object": "Deactivate the device", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "READY", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Strong Poison", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Daily first win bonus: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} invites you to battle", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Any mode", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Game mode(s)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Locations", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiple game modes", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "LEAVE THE MATCH", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Upper back", "ArmorVest": "Body Armor\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rank", "ArmoryCondition/CompletedDailyQuests": "Complete daily tasks:", "ArmoryCondition/CompletedWeeklyQuests": "Complete weekly tasks:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Barter", "Battle category": "Battle category", "BattleCategory": "Combat", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK Systems", "BearAssaultoperations": "BEAR Assault Operations", "BearAuthority": "BEAR Authority", @@ -15675,7 +15789,7 @@ "Beyond Fuel Tank": "Passage Between Rocks", "Binaural audio settings will be applied after raid restart.": "Binaural audio settings will be applied after game restart.", "BitcoinFarm": "BITCOIN FARM", - "BlastGangDescription": "A team battle in a 5v5 format. A classic Search and Destroy game mode with one side attacking and the other defending.", + "BlastGangDescription": "A team battle in the 5v5 format. A classic Search and Destroy game mode with one side attacking and the other defending.", "BlindShootAbove": "Overhead blind fire", "BlindShootRight": "Right side blind fire", "Blood": "Blood", @@ -15812,13 +15926,34 @@ "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0.#%}]", "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "The following items will be moved to the task item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to task item stash", "Check your email": "Please check the email you used to register this account. You will receive the Device ID within 5 minues from now.", "CheckAmmo": "Check ammo", "CheckChamber": "Check chamber/Fix malfunction", "CheckFireMode": "Check fire mode", - "CheckPointDescription": "Fight for control over the game location along with your team by capturing and holding the objectives.", + "CheckPointDescription": "A team battle in the 5v5 format. Fight for control over the game location along with your team by capturing and holding the objectives.", "CheckTimeSpeed": "Check speed modifier", "Chest": "THORAX", "Choose Look": "Choose appearance", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Unavailable", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Available for purchase on the website", "ClothingPanel/InternalObtain": "Trader purchase conditions:", "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", @@ -15908,7 +16044,7 @@ "Colorfulness:": "Colorfulness:", "Combat": "Combat", "ComeWithMeGesture": "Follow me", - "Commission": "Commission", + "Commission": "Ref's fee", "Common stats": "Common stats", "CommonValue": "Total cost of all items in the stash", "Compass": "Compass", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Connecting to server...", "Connection to server lost": "Server connection lost", "Console": "Console", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total tasks completed", "Daily/Stat/VeryEasy": "Total very easy tasks completed", "Daily/Stat/VeryHard": "Total very hard tasks completed", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Win a match", "DailyQuestName/ArenaWinRound": "Win a round", "DailyQuestName/Completion": "Find and transfer", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Flame", "DamageType_GrenadeFragment": "Fragmentation", "DamageType_HeavyBleeding": "Heavy bleeding", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Impact damage", "DamageType_Landmine": "Landmine", "DamageType_LightBleeding": "Light bleeding", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Radioactive exposure", "DamageType_Sniper": "Sniper shot", "DamageType_Stimulator": "Stimulant side effect", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Previous damage", "Day": "Day", "DeactivateObject": "Deactivate the device", @@ -16321,7 +16463,7 @@ "EFT/UI/Trading/Arenaefttransfer/Storage": "Stash", "EFT/UI/Trading/Arenaefttransfer/Timelefttoresetlimit": "Time until limits reset", "EFT/UI/Trading/Arenaefttransfer/Timeletftoresetlimit": "Time until limits reset", - "EFT/UI/Trading/Arenaefttransfer/Transfertax": "Commission", + "EFT/UI/Trading/Arenaefttransfer/Transfertax": "Fee", "EFenceStandingSource/AggressorKill": "Scav assistance", "EFenceStandingSource/BossHelp": "Boss assistance", "EFenceStandingSource/BossKill": "Penalty for killing Bosses", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Cover fire", "ETraderServiceType/BtrItemsDelivery": "Move items to stash", "ETraderServiceType/PlayerTaxi": "Take a ride", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipment", "EWishlistGroup/Hideout": "Hideout", "EWishlistGroup/Other": "Other", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Cannot add {0} to {1}. The modified weapon will take more space than is available. Try repositioning weapon to other part of your stash.", "Escape": "Back", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Inspect current weapon", "Excellent standing": "excellent", "ExceptionItem": "This trader can't repair that item", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Found in raid", "Free cam": "Free camera", "FreeChangeQuest": "Free of charge", + "FreeWeekend": "Free Weekend", "Freetrading": "Free Trading", "Freetradingdescription": "Free trading", "Friend invite to {0} was sent succesfully": "A friend request was successfully sent to {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cultist Circle", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Cultists can't bestow their Gift while you're in the Hideout.", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17116,7 +17263,7 @@ "Labyrinth": "The Labyrinth", "Last game session": "Last game session", "LastHero": "LastHero", - "LastHeroDescription": "A fight with the opponents in endless gunfight. There will be only one winner.", + "LastHeroDescription": "A chaotic free-for-all gunfight. There will be only one winner.", "LastHeroDescriptionShort": "You are on your own", "Launcher": "Grenade Launchers", "LauncherDescription": "Grenade Launcher handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "Nape", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "REQUIRED SEARCH", "NetworkError/SessionLostErrorMessage": "Session lost. Re-login required", "NetworkError/TooManyFriendRequestsHeader": "Too many requests", @@ -17604,7 +17752,7 @@ "Outskirts Water": "Scav Bridge", "OverRun": "OverRun", "Overall Health": "Overall Health", - "Overall graphics quality:": "Overall Graphics Quality:", + "Overall graphics quality:": "Overall graphics quality:", "Overall lifetime": "Account lifetime", "Overall visibility:": "Overall visibility:", "Overkills": "Overkills", @@ -17620,6 +17768,7 @@ "PVE settings": "AI settings", "Pain": "Pain", "Painkiller": "On painkillers", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Chilling horror", "PaperGesture": "Paper", "Paramedic": "Paramedic", @@ -17627,7 +17776,7 @@ "Penalties": "Penalties for failure", "Pending requests": "Pending requests", "Perception": "Perception", - "PerceptionDescription": "Increases the hearing distance, improves aiming concentration and makes detection of nearby loot easier.", + "PerceptionDescription": "Improves aiming concentration and makes detection of nearby loot easier.", "PerceptionFov": "Increases aiming concentration by [{0:0.#%}]", "PerceptionHearing": "Increases hearing distance by [{0:0.#%}]", "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Replacement cost:", "Quest/Change/TimeLeft": "Time remaining to complete the task:", "Quest/Change/Tooltip": "Operational task replacement cost:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17800,7 +17951,11 @@ "QuestCondition/ArenaRoundResult/State/PointCapture": " in the extra time", "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", - "QuestCondition/Category": "Find items from the category in one raid: {0}", + "QuestCondition/Category": "Find items from the {0} category in one raid", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminate{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " with a {0} shot", @@ -17837,9 +17992,13 @@ "QuestCondition/HandoverItem/DurabilityStrict": " ({0}% durability)", "QuestCondition/HandoverItem/OnlyFoundInRaid": " found in raid", "QuestCondition/HideoutArea": "{0} level {1}", - "QuestCondition/Inventory": "Extract with the items from the category: {0}", + "QuestCondition/Inventory": "Extract with the items from the {0} category", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17852,11 +18011,14 @@ "QuestCondition/Preset/Enemy/PresetType{0}": " who are playing as {0}", "QuestCondition/Preset/Player/PresetId{0}": " playing the {0} preset", "QuestCondition/Preset/Player/PresetType/Any": " playing as any preset", - "QuestCondition/Preset/Player/PresetType{0}": " playing as {0}", + "QuestCondition/Preset/Player/PresetType{0}": " while playing as {0}", "QuestCondition/SurviveOnLocation": "Survive on {location}{exitName}", "QuestCondition/SurviveOnLocation/Any": "any location", "QuestCondition/SurviveOnLocation/ExitName": " by extracting through the \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "the location", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "head", "QuestCount/Transfered": "transferred", "QuestCount/Transferred": "Eliminated:", @@ -18256,7 +18418,7 @@ "Settings/Graphics/DLSSLockThis": "This setting is unavailable while DLSS is on", "Settings/Graphics/DLSSModeTooltip": "NVIDIA DLSS uses AI Super Resolution to provide the highest possible frame rates at maximum graphics settings. DLSS requires an NVIDIA RTX graphics card.", "Settings/Graphics/DLSSNotSupported": "DLSS is not supported on your system", - "Settings/Graphics/DLSSPreset": "DLSS Preset", + "Settings/Graphics/DLSSPreset": "DLSS Preset:", "Settings/Graphics/DLSSPresetTooltip": "Specific DLSS presets.", "Settings/Graphics/DLSSWrongSampling": "Disable Resampling to enable DLSS", "Settings/Graphics/FSR2LockThis": "This setting is unavailable while FSR 2.2 is on", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Overall volume:", "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Unavailable", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base CP", "Shadow visibility:": "Shadow visibility:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "TYPES OF FIRE", "Tactical": "Toggle tactical devices", "Tactical clothing": "Tactical clothing", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "Tactical Rig", @@ -18582,8 +18746,9 @@ "Task": "Task", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Task Performance", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", - "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", + "TeamFightDescription": "A team battle in the 5v5 format. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Team deathmatch", "TeamTab": "Teams", "Teamkills": "Teamkills", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Interact", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Tremor", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventory slot lines in stash", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "off", "UI/Settings/NVidiaReflexMode/On": "on", "UI/Settings/NVidiaReflexMode/OnAndBoost": "on and boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Default", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Other actions", "UI/Settings/Rest": "Other", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "Charisma skill discount", "UI/Standing:": "Trader standing:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Unknown Error", "UnknownErrorMessage": "Unknown error occurred. Close the game and submit a bug report.", "UnknownToxin": "Unknown toxin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "UNLOAD AMMO", "Unloadmagazine": "Detach magazine", "Unlock": "Unlock", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Skill of basic weapon modding on the go increases the mod ergonomics and reduces silencer wear.", "WeaponMounting": "Mount weapon", "WeaponPunch": "Buttstroke", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0.#%}]", "WeaponReloadBuff": "Increases reload speed by [{0:0.#%}]", "WeaponStiffHands": "Increases weapon ergonomics by [{0:0.#%}]", @@ -19220,7 +19404,7 @@ "YOUR MAIN CHARACTER": "YOUR MAIN CHARACTER", "Yas been transfered": "Has been transfered", "Yes": "Yes", - "You are banned": "You are banned from using the flea market", + "You are banned": "You are banned from using the Flea Market", "You are no longer a leader of the group": "You are no longer the group leader", "You are no longer banned from ragfair": "You are no longer banned from Flea Market", "You are now the leader of the group": "You are now the group leader.", @@ -19238,7 +19422,7 @@ "You can't enable {0} and {1} at the same time. Turn {1} off?": "You can't enable {0} and {1} at the same time. Would you like to turn {1} off?", "You can't examine two items at the same time": "You can't examine two items at the same time", "You can't fold this item": "You can't fold this item", - "You can't open flea market": "You can't open flea market", + "You can't open flea market": "You can't open Flea Market", "You can't plant a beacon while moving": "You can't place a beacon while moving", "You can't plant quest item while moving": "You can't place an item while moving", "You can't send message to this user. He is in ignore list.": "You can't send message to this user. He is in your ignore list.", @@ -19246,9 +19430,10 @@ "You can't send message to this user. You are in ignore list.": "You have been blacklisted and can't send any messages to this user.", "You can't unload ammo from equipped weapon": "You can't unload ammo from an equipped weapon", "You can't unload from this item": "You can't unload this item", - "You can't use flea market right now": "You can't use flea market right now", + "You can't use flea market right now": "You can't use Flea Market right now", "You can't use ragfair now": "You can't use Flea Market now", "You can't use that symbol": "You can't use that character", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "You cannot modify texture quality in raid.", "You cannot take off a dogtag from a friend or group member": "You cannot take off a dogtag from a friend or group member", "You don't have some items to finish the deal": "You don't have some items required to finish the deal", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicate presets:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Attempts left:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP LEFT", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECT ARENA", "arena/matching/SelectGametype": "SELECT GAME TYPE", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Unavailable", "arena/matching/buyPreset": "SELECT PRESET", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "FAVORITES", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Weekly tasks:", "arenaui/presetview/lockedpreset": "Preset unavailable", "arm broke": "You broke your arm!", "assaultKills": "Assault rifle kills", @@ -19643,9 +19860,32 @@ "camora_003": "Chamber 4", "camora_004": "Chamber 5", "camora_005": "Chamber 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Player has cancelled the friend request", "cancelfriendrequest": "Cancel friend request", - "captcha/too frequent attempts": "The attempts are too frequent. Access to the flea market and traders is currently unavailable. Try again later.", + "captcha/too frequent attempts": "The attempts are too frequent. Access to the Flea Market and traders is currently unavailable. Try again later.", "carbineKills": "Assault carbine kills", "casesFound": "Cases found", "casesOpened": "Cases opened", @@ -19873,7 +20113,7 @@ "hideout_InsuranceReturnTime": "Insurance return time", "hideout_MaximumEnergyReserve": "Maximum energy reserve", "hideout_QuestMoneyReward": "Task money reward boost", - "hideout_RagfairCommission": "Flea market fee", + "hideout_RagfairCommission": "Flea Market fee", "hideout_ReceiveItemBonus": "Special delivery", "hideout_RepairArmorBonus": "Reduces armor repair cost using repair kits", "hideout_RepairWeaponBonus": "Reduces weapon repair cost using repair kits", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Sewage Conduit", "lab_Vent": "Ventilation Shaft", "labir_exit": "The Way Up", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Last session", "leader": "Leader", @@ -20224,8 +20465,8 @@ "ragfair/Unable to sell the item that contains {0}": "Unable to sell the item that contains \"{0}\"", "ragfair/Unlocked at character LVL {0}": "The ability to create offers as well as to see and buy other players' goods will be unlocked on level {0}.", "ragfair/W-LIST": "W-LIST", - "ragfair/You are temporarily banned from flea market": "You are temporarily banned from the flea market", - "ragfair/You cannot place non-empty container at ragfair": "You can't sell non-empty container at the flea market", + "ragfair/You are temporarily banned from flea market": "You are temporarily banned from the Flea Market", + "ragfair/You cannot place non-empty container at ragfair": "You can't sell non-empty container at the Flea Market", "ragfair/You've bought personal limit of this item, wait for restock": "You've reached a personal limit of purchasing this item, wait for a restock", "ragfair/Your offer ({0}) is expired!": "Your offer of ({0}) has expired!", "ragfair/You’ve purchased the offer ({0}). Check your stash!": "You’ve purchased the offer ({0}). Check your stash!", @@ -20358,6 +20599,7 @@ "un-sec": "Northern UN Roadblock", "undefined": "", "uninstall": "UNINSTALL", + "unlock requires:": "unlock requires:", "unlockedSafes": "Safes unlocked", "unpack": "unpack", "usecKills": "USECs killed", @@ -20560,7 +20802,7 @@ "5b5f736886f774094242f193": "Light & laser devices", "5b5f737886f774093e6cb4fb": "Tactical combo devices", "5b5f73ab86f774094242f195": "Flashlights", - "5b5f73c486f77447ec5d7704": "Laser target pointers", + "5b5f73c486f77447ec5d7704": "Laser aiming modules", "5b5f73ec86f774093e6cb4fd": "Sights", "5b5f740a86f77447ec5d7706": "Assault scopes", "5b5f742686f774093e6cb4ff": "Collimators", @@ -20589,14 +20831,14 @@ "5b5f791486f774093f2ed3be": "Marksman rifles", "5b5f792486f77447ed5636b3": "Pistols", "5b5f794b86f77409407a7f92": "Shotguns", - "5b5f796a86f774093f2ed3c0": "SMGs", + "5b5f796a86f774093f2ed3c0": "Submachine guns", "5b5f798886f77447ed5636b5": "Bolt-action rifles", "5b5f79a486f77409407a7f94": "Machine guns", "5b5f79d186f774093f2ed3c2": "Grenade launchers", "5b5f79eb86f77447ed5636b7": "Special weapons", "5b5f7a0886f77409407a7f96": "Melee weapons", "5b5f7a2386f774093f2ed3c4": "Throwables", - "5b619f1a86f77450a702a6f3": "Quest items", + "5b619f1a86f77450a702a6f3": "Task items", "5c518ec986f7743b68682ce2": "Mechanical keys", "5c518ed586f774119a772aee": "Electronic keys", "6564b96a189fe36f356d177c": "", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "Find a 6B13 assault armor in 0-50% durability in raid", - "5ae9bc6e86f7746e0026222c": "Hand over the found in raid 6B13 assault armor in 0-50% durability", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Find a 6B13 assault armor in 50-100% durability in raid", - "5ae9bea886f77468ab400e64": "Hand over the found in raid 6B13 assault armor in 50-100% durability", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operation Aquarius - Part 2", + "664ca9f577af670dad0ad339 description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "664ca9f577af670dad0ad33d": "Eliminate Scavs on Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Just farm", + "6659a9716b1be75165030e4e description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Good.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "All required items are on the list. Find them and bring them to the drop spot.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "There are other tasks available, at the cost of my patience.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC's Best Friend", "6512ea46f7a078264a4376e4 description": "Survive and extract from Interchange through the Scav Co-Op extraction while playing as a PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -28815,79 +29521,79 @@ "6512f16bde333c33d5127cbc description": "Eliminate one of the hooded men with their own knife at night time while playing as a PMC", "6512f16bde333c33d5127cbc successMessage": "", "6512f1e3be73cc7f07358ed5 name": "Art of Style", - "6512f1e3be73cc7f07358ed5 description": "Eliminate Killa for the first time while playing as a PMC", + "6512f1e3be73cc7f07358ed5 description": "Neutralize Killa for the first time while playing as a PMC", "6512f1e3be73cc7f07358ed5 successMessage": "", "6513eb6e0dc723592b0f9095 name": "Call Your Brother", "6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC", "6513eb6e0dc723592b0f9095 successMessage": "", "6513ed89cf2f1c285e606068 name": "Silence of the Sawmill", - "6513ed89cf2f1c285e606068 description": "Eliminate Shturman for the first time while playing as a PMC", + "6513ed89cf2f1c285e606068 description": "Neutralize Shturman for the first time while playing as a PMC", "6513ed89cf2f1c285e606068 successMessage": "", "6513ee11a3dd9b6aa7159b4a name": "Deal to Make", - "6513ee11a3dd9b6aa7159b4a description": "Eliminate Reshala for the first time while playing as a PMC", + "6513ee11a3dd9b6aa7159b4a description": "Neutralize Reshala for the first time while playing as a PMC", "6513ee11a3dd9b6aa7159b4a successMessage": "", "6513eec00dc723592b0f90cc name": "Grouse Hunting", - "6513eec00dc723592b0f90cc description": "Eliminate Glukhar for the first time while playing as a PMC", + "6513eec00dc723592b0f90cc description": "Neutralize Glukhar for the first time while playing as a PMC", "6513eec00dc723592b0f90cc successMessage": "", "6513efa1b49e3253755f47eb name": "Sanatorium Orderly", - "6513efa1b49e3253755f47eb description": "Eliminate Sanitar for the first time while playing as a PMC", + "6513efa1b49e3253755f47eb description": "Neutralize Sanitar for the first time while playing as a PMC", "6513efa1b49e3253755f47eb successMessage": "", "6513f0a10dc723592b0f90cf name": "Funny Graveyard Keeper", - "6513f0a10dc723592b0f90cf description": "Eliminate Kaban for the first time while playing as a PMC", + "6513f0a10dc723592b0f90cf description": "Neutralize Kaban for the first time while playing as a PMC", "6513f0a10dc723592b0f90cf successMessage": "", "6513f1feec10ff011f17c7ea name": "Now There Are Three of Them!", - "6513f1feec10ff011f17c7ea description": "Eliminate Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", + "6513f1feec10ff011f17c7ea description": "Neutralize Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", "6513f1feec10ff011f17c7ea successMessage": "", "6513f28cb49e3253755f47f3 name": "The Blind Watcher", - "6513f28cb49e3253755f47f3 description": "Eliminate Zryachiy for the first time while playing as a PMC", + "6513f28cb49e3253755f47f3 description": "Neutralize Zryachiy for the first time while playing as a PMC", "6513f28cb49e3253755f47f3 successMessage": "", "65140ab8ec10ff011f17cc10 name": "What Not To Wear", - "65140ab8ec10ff011f17cc10 description": "Eliminate Killa 15 times while playing as a PMC", + "65140ab8ec10ff011f17cc10 description": "Neutralize Killa 15 times while playing as a PMC", "65140ab8ec10ff011f17cc10 successMessage": "", "65140b55cf2f1c285e606414 name": "Hammer and Scythe", - "65140b55cf2f1c285e606414 description": "Eliminate Tagilla 15 times while playing as a PMC", + "65140b55cf2f1c285e606414 description": "Neutralize Tagilla 15 times while playing as a PMC", "65140b55cf2f1c285e606414 successMessage": "", "65140bbec31fcb0e163577b9 name": "King of the Sawmill", - "65140bbec31fcb0e163577b9 description": "Eliminate Shturman 15 times while playing as a PMC", + "65140bbec31fcb0e163577b9 description": "Neutralize Shturman 15 times while playing as a PMC", "65140bbec31fcb0e163577b9 successMessage": "", "65140c00b1c08b0feb216d50 name": "This Is a Tarkov Showdown", - "65140c00b1c08b0feb216d50 description": "Eliminate Reshala 15 times while playing as a PMC", + "65140c00b1c08b0feb216d50 description": "Neutralize Reshala 15 times while playing as a PMC", "65140c00b1c08b0feb216d50 successMessage": "", "65141032a3dd9b6aa7159ed3 name": "Another Cold Case", - "65141032a3dd9b6aa7159ed3 description": "Eliminate Glukhar 15 times while playing as a PMC", + "65141032a3dd9b6aa7159ed3 description": "Neutralize Glukhar 15 times while playing as a PMC", "65141032a3dd9b6aa7159ed3 successMessage": "", "651411f1cf2f1c285e606423 name": "Who Called the Doctor?", - "651411f1cf2f1c285e606423 description": "Eliminate Sanitar 15 times while playing as a PMC", + "651411f1cf2f1c285e606423 description": "Neutralize Sanitar 15 times while playing as a PMC", "651411f1cf2f1c285e606423 successMessage": "", "651412b8c31fcb0e163577c5 name": "Old Dog With Old tricks", - "651412b8c31fcb0e163577c5 description": "Eliminate Kaban 15 times while playing as a PMC", + "651412b8c31fcb0e163577c5 description": "Neutralize Kaban 15 times while playing as a PMC", "651412b8c31fcb0e163577c5 successMessage": "", "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", - "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", + "6514134eec10ff011f17cc26 description": "Neutralize Knight 15 times while playing as a PMC", "6514134eec10ff011f17cc26 successMessage": "", "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", - "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", + "651413e9c31fcb0e163577c9 description": "Neutralize Zryachiy 15 times while playing as a PMC", "651413e9c31fcb0e163577c9 successMessage": "", "6514143d59647d2cb3213c93 name": "Master of ULTRA", - "6514143d59647d2cb3213c93 description": "Eliminate Killa 100 times while playing as a PMC", + "6514143d59647d2cb3213c93 description": "Neutralize Killa 100 times while playing as a PMC", "6514143d59647d2cb3213c93 successMessage": "", "651415feb49e3253755f4b68 name": "Long Live the King!", - "651415feb49e3253755f4b68 description": "Eliminate every Boss once while playing as a PMC", + "651415feb49e3253755f4b68 description": "Neutralize every Boss once while playing as a PMC", "651415feb49e3253755f4b68 successMessage": "", - "651414b741f4ad07ba7d55f9": "Locate and eliminate Kaban", - "651414eb3ec86f33dd54d978": "Locate and eliminate Reshala", - "651415067c262d47d685c6d9": "Locate and eliminate Glukhar", - "6514151b2e8590fc2ac1d859": "Locate and eliminate Killa", - "6514151da13f174e3f52bc6e": "Locate and eliminate Knight", - "65141520143ef6349ad5f071": "Locate and eliminate Shturman", - "6514156e21e1d85a7d029f8a": "Locate and eliminate Sanitar", - "65141570b18e12f60ba2e450": "Locate and eliminate Tagilla", - "65141571dbcb26761524e977": "Locate and eliminate Zryachiy", - "651415cfe97ba875119ef01c": "Locate and eliminate Big Pipe", - "651415d13c02ff4aa9e9a426": "Locate and eliminate Birdeye", + "651414b741f4ad07ba7d55f9": "Locate and neutralize Kaban", + "651414eb3ec86f33dd54d978": "Locate and neutralize Reshala", + "651415067c262d47d685c6d9": "Locate and neutralize Glukhar", + "6514151b2e8590fc2ac1d859": "Locate and neutralize Killa", + "6514151da13f174e3f52bc6e": "Locate and neutralize Knight", + "65141520143ef6349ad5f071": "Locate and neutralize Shturman", + "6514156e21e1d85a7d029f8a": "Locate and neutralize Sanitar", + "65141570b18e12f60ba2e450": "Locate and neutralize Tagilla", + "65141571dbcb26761524e977": "Locate and neutralize Zryachiy", + "651415cfe97ba875119ef01c": "Locate and neutralize Big Pipe", + "651415d13c02ff4aa9e9a426": "Locate and neutralize Birdeye", "657b1f2e057c1607e83c2c26": " Locate and eliminate Kollontai", - "657b21a3564a9197c2778f5a": "Locate and eliminate Kollontai", - "66c34bbbd5d174a3c9cd1382": "Locate and eliminate Partisan", + "657b21a3564a9197c2778f5a": "Locate and neutralize Kollontay", + "66c34bbbd5d174a3c9cd1382": "Locate and neutralize Partisan", "6514174fb1c08b0feb216d73 name": "Chris's Heir", "6514174fb1c08b0feb216d73 description": "Eliminate a PMC operative with a headshot from over 500 meters away while playing as a PMC", "6514174fb1c08b0feb216d73 successMessage": "", @@ -28952,10 +29658,10 @@ "65145cbc303df252af1c73d5 description": "Start a raid without any weapon", "65145cbc303df252af1c73d5 successMessage": "", "6527d2e2c656a951ad1528c3 name": "Smoke the Peace Pipe", - "6527d2e2c656a951ad1528c3 description": "Eliminate Big Pipe 15 times while playing as a PMC", + "6527d2e2c656a951ad1528c3 description": "Neutralize Big Pipe 15 times while playing as a PMC", "6527d2e2c656a951ad1528c3 successMessage": "", "6527d3aac656a951ad1528ce name": "The Red Book", - "6527d3aac656a951ad1528ce description": "Eliminate Birdeye 15 times while playing as a PMC", + "6527d3aac656a951ad1528ce description": "Neutralize Birdeye 15 times while playing as a PMC", "6527d3aac656a951ad1528ce successMessage": "", "6527ee4a647c29201011defe name": "You Are Not My Brother", "6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav", @@ -28963,21 +29669,21 @@ "6529097eccf6aa5f8737b3d0 name": "Snowball", "6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC", "6529097eccf6aa5f8737b3d0 successMessage": "", - "652909ac342bdd14e0bcb1bb": "Locate and eliminate Kaban", - "652909cd3f9e480e9d1a3489": "Locate and eliminate Reshala", - "652909ef8cb2a699ccbc2cf0": "Locate and eliminate Glukhar", - "65290de6e76953256668112c": "Locate and eliminate Killa", - "65290e22f16e69470b5d6145": "Locate and eliminate Knight", - "65290e51fee42b19970ccbfd": "Locate and eliminate Shturman", - "65290e8d6193b1a4e12a7967": "Locate and eliminate Sanitar", - "65290ed47ef294bc6eb7ee85": "Locate and eliminate Tagilla", - "65290f1579363c7810e7233d": "Locate and eliminate Zryachiy", - "65290f3fd7c6005f6d78f453": "Locate and eliminate Big Pipe", - "65290f50897943fb9bf8955d": "Locate and eliminate Birdeye", - "657b1e91958145eb193f9a40": "Locate and eliminate Kollontai", - "66c34ab2c3eee7ac0c41d160": "Locate and eliminate Partisan", + "652909ac342bdd14e0bcb1bb": "Locate and neutralize Kaban", + "652909cd3f9e480e9d1a3489": "Locate and neutralize Reshala", + "652909ef8cb2a699ccbc2cf0": "Locate and neutralize Glukhar", + "65290de6e76953256668112c": "Locate and neutralize Killa", + "65290e22f16e69470b5d6145": "Locate and neutralize Knight", + "65290e51fee42b19970ccbfd": "Locate and neutralize Shturman", + "65290e8d6193b1a4e12a7967": "Locate and neutralize Sanitar", + "65290ed47ef294bc6eb7ee85": "Locate and neutralize Tagilla", + "65290f1579363c7810e7233d": "Locate and neutralize Zryachiy", + "65290f3fd7c6005f6d78f453": "Locate and neutralize Big Pipe", + "65290f50897943fb9bf8955d": "Locate and neutralize Birdeye", + "657b1e91958145eb193f9a40": "Locate and neutralize Kollontay", + "66c34ab2c3eee7ac0c41d160": "Locate and neutralize Partisan", "655b49bc91aa9e07687ae47c name": "Justice", - "655b49bc91aa9e07687ae47c description": "Eliminate Kollontay for the first time while playing as a PMC", + "655b49bc91aa9e07687ae47c description": "Neutralize Kollontay for the first time while playing as a PMC", "655b49bc91aa9e07687ae47c successMessage": "", "655b4a576689c676ce57acb6 name": "True Crime", "655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC", @@ -29028,10 +29734,10 @@ "66c328aca91e7d66fa1b0b7b successMessage": "", "66c328ce17df4e6ce92d1120": "Use the transit from any location", "66c328de9dc78468f4040f35 name": "Time To Clean My Karma", - "66c328de9dc78468f4040f35 description": "Eliminate Partisan for the first time while playing as a PMC", + "66c328de9dc78468f4040f35 description": "Neutralize Partisan for the first time while playing as a PMC", "66c328de9dc78468f4040f35 successMessage": "", "66c32996b4c0c017a3319cc3 name": "Samsara Wheel Spins Again", - "66c32996b4c0c017a3319cc3 description": "Eliminate Partisan 15 times while playing as a PMC", + "66c32996b4c0c017a3319cc3 description": "Neutralize Partisan 15 times while playing as a PMC", "66c32996b4c0c017a3319cc3 successMessage": "", "66e2a7e5919bad697104f4b3 name": "Highway to the Danger Zone", "66e2a7e5919bad697104f4b3 description": "Complete the Mortar Strike 2024 event task line", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29055,11 +30011,20 @@ "676094451fec2f7426093be6 description": "Earn the Prestige level 2", "676094451fec2f7426093be6 successMessage": "", "67a0e57117e34930e50075f3 name": "In Search of an Exit", - "67a0e57117e34930e50075f3 description": "Complete the Labyrinth event task line", + "67a0e57117e34930e50075f3 description": "Complete the Labyrinth 2025 event task line", "67a0e57117e34930e50075f3 successMessage": "", "67a0e57b972c11a3f50773b2 name": "Dungeon Master", - "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", + "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth 2025 event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es-mx.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es-mx.json index 8b023ddc..0e9b8110 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es-mx.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es-mx.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Maletín cerrado", "6740987b89d5e1ddc603f4f0 ShortName": "Maletín cerrado", "6740987b89d5e1ddc603f4f0 Description": "El contenido es desconocido, pero necesitarás una llave para abrirlo.", + "67446fdd752be02c220f27b3 Name": "Cohete de asalto para ShG-2", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "Munición de 72.5 mm - Un cohete termobárico de asalto para el lanzacohetes RShG-2.", "67449b6c89d5e1ddc603f504 Name": "Llave de maletín", "67449b6c89d5e1ddc603f504 ShortName": "Maletín", "67449b6c89d5e1ddc603f504 Description": "Una llave adecuada para abrir la mayoría de maletines estándar.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Caja de Twitch Winter 2025 (Épica)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Una caja con algunas mercancías épicas.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Máscara de soldar \"ZABEY\" de Tagilla", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "A juzgar por esta máscara, el Laberinto afectó gravemente el estado mental de Tagilla, volviéndolo aún más desquiciado y sanguinario. ¿Quién hubiera pensado que podría volverse aún más loco?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "K4 USEC (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Pantalones tácticos", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "Caja de LATAM Drops Event 2025 (Común)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "Caja de LATAM Drops Event 2025 (Épica)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Ex-V - Carretera a la Base Militar", " Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline.", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "¿Estás seguro de querer remover el equipamiento modificado?", "APC/CustomizationTab": "Personalización", "APC/EnterName": "Escribir nombre", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Acceso rápido", "APC/Locked": "Bloqueado", "APC/PurchasedStatesAll": "Todo", "APC/ReadyToUlock": "Desbloqueable", "APC/Unlocked": "Desbloqueado", "APC/ViewPreset": "Visualizar", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defensa{1}", "APCBar/Firepower": "{0}Potencia de fuego{1}", "APCBar/Metascore": "{0}Meta-Puntos{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Carabinas de asalto", "APCFilter/AssaultRifles": "Fusiles de asalto", "APCFilter/AssaultScope": "Miras de asalto", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Piezas auxiliares", "APCFilter/Barrel": "Cañones", "APCFilter/Bipod": "Bípodes", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Palancas de maniobra", "APCFilter/Collimator": "Miras réflex", "APCFilter/CompactCollimator": "Miras réflex compactas", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Armas cuerpo a cuerpo", "APCFilter/Mount": "Monturas", "APCFilter/Muzzle": "Bocachas", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adaptadores de bocacha", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Miras telescópicas", "APCFilter/PistolGrip": "Pistoletes", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolas", "APCFilter/Receiver": "Cubiertas, Recibidores, Disparadores", "APCFilter/SMGs": "Subfusiles", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "NIVELANDO", "ARENA/ARMORY/LINKS": "VINCULADOS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transferencia a EFT no disponible", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "NIVEL DE PROTECCIÓN", "ARMOR POINTS": "PUNTOS DE BLINDAJE", "ARMOR TYPE": "TIPO DE BLINDAJE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Objeto no encontrado", "Arena/Armory/LevelReward/readyToUlockState": "Listo", "Arena/Armory/LevelReward/unlockedState": "Listo", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Bloqueado", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Dinero insuficiente", "Arena/BigCustomPurchaseInfo/Purchase": "Comprar", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Tiempo extra", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} de {1}", "Arena/BlastGang/ResultScreenSwapSides": "Cambiando de lado", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancelar invitación a lista de amigos", "Arena/CustomGame/Lobby/cancel invite to group": "Cancelar invitación al grupo", "Arena/CustomGame/Lobby/invite to friends": "Invitar a lista de amigos", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Intentos restantes:", "Arena/CustomGames/Create/Maps": "Ubicaciones", "Arena/CustomGames/Create/Modes": "Modos", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submodos", "Arena/CustomGames/Create/TournamentMode": "Modo torneo", "Arena/CustomGames/Create/TournamentSettings": "Configuración de torneo", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Tomar", "Arena/CustomGames/No servers found": "No se encontraron servidores activos", "Arena/CustomGames/Observers": "Espectadores", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entrando al servidor", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Reemplazo de Tarea Operativa / Ref", "Arena/CustomGames/Settings": "Ajustes", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Deshabilitado", "Arena/CustomGames/Settings/enable": "Habilitado", "Arena/CustomGames/create/enter name": "Escribe el nombre", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Región", "Arena/CustomGames/toggle/room name": "Nombre de la sala", "Arena/CustomGames/toggle/tournament": "Torneo", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "La partida terminó mientras estabas fuera", "Arena/EnterPresetName": "Escribe nombre del Kit", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "JMV", "Arena/MVP/DamageStatLabel": "Daño infligido a enemigos", "Arena/MVP/DeactivatedBomb": "Desactivó el dispositivo", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Arma", "Arena/Rematching": "Volviendo al emparejamiento con prioridad alta", "Arena/Rematching/NoServer": "Por motivos técnicos no se ha encontrado el servidor. Volviendo a buscar partida.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Celeste", "Arena/TeamColor/azure_plural": "Celestes", "Arena/TeamColor/blue": "Azul", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Azules", "Arena/TeamColor/fuchsia": "Rosa", "Arena/TeamColor/fuchsia_plural": "Rosas", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verdes", "Arena/TeamColor/grey": "Gris", "Arena/TeamColor/red": "Rojo", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Rojos", "Arena/TeamColor/white": "Blanco", "Arena/TeamColor/white_plural": "Blancos", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Kits desbloqueados", "Arena/Tooltip/MapSelectedCounter": "Número de ubicaciones seleccionadas", "Arena/Tooltip/MinMapCount {0}": "Selecciona múltiples ubicaciones. Debes seleccionar al menos {0} ubicaciones", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "No se cumplen las condiciones", "Arena/UI/APCItemBuyCaption": "Desbloqueo de objetos", "Arena/UI/APCItemBuyDescription": "¿Comprar el objeto?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Kit tomado", "Arena/UI/Waiting": "Esperando...", "Arena/Ui/ServerFounding": "Buscando servidor...", + "Arena/Widgets/ team {0} capturing point": "El equipo {0} está capturando el objetivo", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Plantando dispositivo", "Arena/Widgets/Event/can activate object": "Planta el dispositivo", "Arena/Widgets/Event/deactivate object": "Desactiva el dispositivo", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "LISTO", "ArenaArmoryItemReward/Description": "Desbloquea el objeto en la Armería", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Veneno Fuerte", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bono diario por primera victoria: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Reputación y dinero insuficientes para reemplazar esta Tarea", "ArenaQuestReroll/NotHaveStanding": "Reputación insuficiente para reemplazar esta Tarea", "ArenaRaidInviteDescription": "{0} te invita a la batalla", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Cualquier modo", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Modo(s) de juego", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Ubicaciones", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Múltiples modos de juego", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "¿Estás seguro de querer abandonar la partida prematuramente?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Abandonarás la partida sin penalización", "ArenaUI/BattleMenu/MatchLeave": "ABANDONAR LA PARTIDA", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bahía 5", "Arena_Bowl": "Estadio", + "Arena_Prison": "Prison", "Arena_Yard": "Bloque", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Espalda alta", "ArmorVest": "Chaleco Balístico\n", "ArmoryCondition/ArenaArmoryProgression": "Alcanza el nivel {0} con el arma:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rango", "ArmoryCondition/CompletedDailyQuests": "Completa tareas diarias:", "ArmoryCondition/CompletedWeeklyQuests": "Completa tareas semanales:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Trueque", "Battle category": "Categoría de batalla", "BattleCategory": "Combate", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Sistemas AK BEAR", "BearAssaultoperations": "Operaciones de Asalto BEAR", "BearAuthority": "Autoridad BEAR", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0.#%}].", "CharismaLevelingUpDescription": "La habilidad de Carisma se mejora indirectamente al nivelar las habilidades de Atención, Percepción e Intelecto.", "CharismaScavCaseDiscount": "Añade un descuento a los precios del Buzón Scav.", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Los siguientes objetos se moverán al Alijo para objetos de misión:", "ChatScreen/QuestItemsMoved": "Objetos movidos con éxito al Alijo para objetos de misión", "Check your email": "Por favor, revisa el email que utilizaste para registrar esta cuenta. Recibirás la ID del Dispositivo dentro de 5 minutos a partir de ahora.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "No disponible", "ClothingPanel/Available_both_games": "Disponible tanto en EFT como en Arena", "ClothingPanel/Available_only_arena": "Disponible solo en Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Disponible para comprar en el sitio web", "ClothingPanel/InternalObtain": "Condiciones de compra del comerciante:", "ClothingPanel/LoyaltyLevel": "Comerciante\nNivel de Lealtad:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Nivel del personaje", "Conditional/ConditionQuest/Type": "Misiones:", "Conditional/ConditionSkill/Type": "Habilidades:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Conectando al servidor...", "Connection to server lost": "Conexión perdida con el servidor", "Console": "Consola", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Sótano de la Sala de Calderas (Coop.)", "CustomizationDirectReward/Description": "Desbloquearás este estilo como recompensa", "CustomizationNotExists": "Ropa no disponible en uno o más Kits", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Desbloquea oferta de ropa táctica", "CustomizationReward/Description": "Desbloquea ropa táctica", "Customizations/ObtainHeader": "Obtenido:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total de Tareas completadas", "Daily/Stat/VeryEasy": "Total de Tareas muy fáciles completadas", "Daily/Stat/VeryHard": "Total de Tareas muy difíciles completadas", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Gana una partida", "DailyQuestName/ArenaWinRound": "Gana una ronda", "DailyQuestName/Completion": "Encuentra y transfiere", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Quemadura", "DamageType_GrenadeFragment": "Fragmentación", "DamageType_HeavyBleeding": "Hemorragia grave", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Daño por impacto", "DamageType_Landmine": "Mina antipersona", "DamageType_LightBleeding": "Hemorragia leve", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Envenenamiento por radiación", "DamageType_Sniper": "Disparo de francotirador", "DamageType_Stimulator": "Efecto secundario de estimulador", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Daño anterior", "Day": "Día", "DeactivateObject": "Desactiva el dispositivo", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Fuego de cobertura", "ETraderServiceType/BtrItemsDelivery": "Mover objetos al alijo", "ETraderServiceType/PlayerTaxi": "Dar una vuelta", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipamiento", "EWishlistGroup/Hideout": "Refugio", "EWishlistGroup/Other": "Otro", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "No se puede acoplar {0} a {1}. El arma modificada ocupará más espacio del que hay disponible. Intenta colocar el arma en otro lugar de tu Alijo.", "Escape": "Atrás", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Examinar el arma actual", "Excellent standing": "excelente", "ExceptionItem": "Este comerciante no puede reparar ese objeto", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Encontrado en incursión", "Free cam": "Cámara libre", "FreeChangeQuest": "Libre de cargos", + "FreeWeekend": "Free Weekend", "Freetrading": "Libre Comercio", "Freetradingdescription": "Libre Comercio", "Friend invite to {0} was sent succesfully": "¡La solicitud de amistad ha sido enviada con éxito a {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Círculo Sectario", "Hideout/CircleOfCultists/MaxItemsCount": "Máximo de objetos: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Los Sectarios no pueden entregar su Regalo mientras estés en el Refugio", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Este objeto se utilizará como una herramienta auxiliar. Regresará a tu Alijo cuando se complete la producción.", "Hideout/Customization/Ceiling/TabName": "Techo", "Hideout/Customization/Ceiling/WindowHeader": "Selecciona el techo a instalar", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Generador Final", "Nakatani_stairs_free_exit": "Escaleras del Sótano Nakatani", "Nape": "Nuca", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "BUSCAR DEMANDA", "NetworkError/SessionLostErrorMessage": "Sesión perdida. Requiere volver a iniciar sesión.", "NetworkError/TooManyFriendRequestsHeader": "Demasiadas solicitudes.", @@ -17620,6 +17768,7 @@ "PVE settings": "Configuración de IA", "Pain": "Dolor", "Painkiller": "Con analgesia", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Horror escalofriante", "PaperGesture": "Papel", "Paramedic": "Paramédico", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Costo de reemplazo:", "Quest/Change/TimeLeft": "Tiempo restante para completar la tarea:", "Quest/Change/Tooltip": "Costo de reemplazo de la Tarea Operativa:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " muriendo {0} veces", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " muriendo menos de {0} veces", "QuestCondition/ArenaDeathCount/More{0}": " muriendo más de {0} veces", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Encuentra en incursión un objeto de la categoría: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Elimina{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " de impacto {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extrae con objetos de la categoría: {0}", "QuestCondition/Many{0}{1}": "{0} {1} veces", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Supresor", "QuestCondition/Preset/632f8229f6541cacd808452c": "Asalto", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "cualquier ubicación", "QuestCondition/SurviveOnLocation/ExitName": " extrayendo a través de: \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "la ubicación", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "cabeza", "QuestCount/Transfered": "transferido", "QuestCount/Transferred": "Eliminados:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volumen general:", "Settings/Sound/ReadyToMatchSoundVolume": "Volumen de la pantalla para aceptar partida:", "Settings/UnavailablePressType": "No disponible", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Dolor muscular severo", "Shack": "Punto de Control de la Base Militar", "Shadow visibility:": "Distancia de Sombreado:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "MODOS DE DISPARO", "Tactical": "Activar/Desactivar dispositivos tácticos", "Tactical clothing": "Ropa táctica", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Mantener", "TacticalInteractionMode/Press": "Presionar", "TacticalVest": "Chaleco Táctico", @@ -18582,6 +18746,7 @@ "Task": "Misión", "Taskbar/Unavailable": "No disponible", "Taskperformance": "Desempeño de Misión", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Combate por equipos de 5 contra 5. El objetivo es eliminar al equipo contrario antes de que te maten.", "TeamFightDescriptionShort": "Duelo a muerte por equipos", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Viejo Aserradero", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "¿Quieres que te deje en el Depósito de Trenes? Para que sepas, no puedes salir de allí sin mí. Si el precio te parece bien, vigila el tiempo que pasas allí, ¿entendido?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depósito de Trenes", + "Trading/Dialog/PlayerTaxi/p1/Description": "Muy bien, destino: el Cine Rodina. ¿El precio te parece bien?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cine Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Directo al Tranvía. ¿Traes el dinero, verdad?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tranvía", + "Trading/Dialog/PlayerTaxi/p3/Description": "Muy bien, rumbo al Centro de la Ciudad. ¿Tienes dinero suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro de la Ciudad", + "Trading/Dialog/PlayerTaxi/p4/Description": "Iremos a la Grúa Colapsada. ¿El precio te parece bien?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grúa Colapsada", + "Trading/Dialog/PlayerTaxi/p5/Description": "Te llevaré al Viejo Punto de Control Scav. ¿El precio te parece bien, verdad?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Viejo Punto de Control Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Despedirse y salir", "Trading/Dialog/ServicePayoff{0}": "Muy bien, esto debería ser suficiente. (entregar \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Ocultar historial", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Acceso denegado", "Transit/InactivePoint": "Tránsito no disponible", "Transit/Interaction": "Interactuar", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transición en ", "Transition in {0:F1}": "Transición en {0:F1}", "Tremor": "Temblores", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Líneas de ranura de inventario en el alijo", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Tu alijo se ampliará con la adición de nuevas líneas de ranura de inventario.\nEstos cambios se aplicarán más adelante (revisa nuestro sitio web para más detalles).", "UI/Quest/Reward/AssortmentUnlockCaption": "Desbloquea el surtido con {0} al Nivel de Lealtad {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Ropa táctica", "UI/Quest/Reward/ItemCaption": "Objeto", "UI/Quest/Reward/ProductionSchemeCaption": "Receta de elaboración en {0} al nivel {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "desactivado", "UI/Settings/NVidiaReflexMode/On": "activado", "UI/Settings/NVidiaReflexMode/OnAndBoost": "activado y aumentado", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Por defecto", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Otras aciones", "UI/Settings/Rest": "Otros", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Notificaciones de objetos Deseados", "UI/Skills/Charisma/CharismaDiscount": "Descuento por la habilidad Carisma", "UI/Standing:": "Reputación con el comerciante:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Error Desconocido", "UnknownErrorMessage": "Ha ocurrido un error desconocido. Por favor, cierra el juego y envía un reporte del bug.", "UnknownToxin": "Toxina desconocida", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "DESCARGAR MUNICIÓN", "Unloadmagazine": "Expulsar cargador", "Unlock": "Desbloquear", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Habilidad básica para la modificación de armas, incrementa la ergonomía de los accesorios y reduce el desgaste de los supresores.", "WeaponMounting": "Emplazar arma", "WeaponPunch": "Culatazo", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0.#%}].", "WeaponReloadBuff": "Incrementa la velocidad de recarga en un [{0:0.#%}].", "WeaponStiffHands": "Incrementa la ergonomía del arma en un [{0:0.#%}].", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "No puedes usar el Tianguis en este momento.", "You can't use ragfair now": "No puedes usar el Tianguis en estos momentos", "You can't use that symbol": "No puedes usar ese símbolo", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "No puedes modificar la calidad de las texturas durante la incursión.", "You cannot take off a dogtag from a friend or group member": "No puedes quitarle la Placa de Identificación a un amigo o miembro del grupo.", "You don't have some items to finish the deal": "No tienes los objetos requeridos para el trato", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Puntuación", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Captura y mantén los objetivos", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "M", "arena/Exp": "Exp", "arena/KillShort": "E", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Eliminar", "arena/contextInteractions/card/edit": "Editar", "arena/contextInteractions/card/inspect default preset": "Inspeccionar", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "MODO DE JUEGO (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Modo de juego (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Tiempo extra", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Kits duplicados:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Duración de partida:", "arena/customGames/create/setOvertime": "Establecer tiempo extra", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Permitir Kits duplicados", "arena/customGames/create/setScoresToWinCount": "Puntos para ganar:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "INVITACIÓN A PARTIDA PERSONALIZADA DE {0}", "arena/customGames/notify/GameRemoved": "La sala ha sido disuelta", "arena/customgames/errors/notification/gamealreadystarted": "La partida ya ha comenzado", "arena/customgames/popup/refreshdailyquest": "¿Reemplazar Tarea Operativa?", "arena/customgames/popups/attemptscountleft:": "Intentos restantes:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP RESTANTE", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECCIONA UNA ARENA", "arena/matching/SelectGametype": "SELECCIONA EL TIPO DE JUEGO", "arena/matching/SelectRankedGamemode": "SELECCIONAR MODO DE JUEGO CLASIFICATORIO", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TIPO", "arena/matching/UnavailableReason": "No disponible", "arena/matching/buyPreset": "SELECCIONAR KIT", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "ranuras desbloqueadas:", "arena/questLogTemplate/gameModes": "Modo(s) de juego", "arena/questLogTemplate/maps": "Ubicación(es)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bono de JMV de la partida", "arena/resultContent/matchMVPMoneyTitle": "Bono de JMV de la partida", "arena/resultContent/roundMVPExpTitle": "Bono de JMV de la ronda", "arena/resultContent/roundMVPMoneyTitle": "Bono de JMV de la ronda", "arena/selection/gameMode": "modo de juego", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASALTO", "arena/tab/COLLECTION": "COLECCIÓN", "arena/tab/FAVORITES": "FAVORITOS", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "CLASIFICACIÓN", "arena/tab/SCOUT": "EXPLORADOR", "arena/tab/SQB": "SUPRESOR", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "Moneda GP. Utilizada para desbloquear equipamiento para los Kits y comprar equipo en EFT. Conseguida por completar Tareas Operativas en Arena.", "arena/tooltip/OverallMatches": "Número total de partidas jugadas en Clasificatorias y Casuales.", "arena/tooltip/Presets": "Kits", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Tu tasa general de victorias, calculada a partir de todas las victorias y derrotas en partidas Clasificatorias y Casuales.", "arena/widget/ally_capture_point": "Aliado tomó el punto", "arena/widget/enemy_capture_point": "Enemigo tomó el punto", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Completa tareas diarias:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Completa tareas semanales:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Completa tareas diarias:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Completa tareas semanales:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Completa tareas diarias:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Completa tareas semanales:", "arenaui/presetview/lockedpreset": "Kit no disponible", "arm broke": "¡Te has roto el brazo!", "assaultKills": "Eliminaciones con fusil de asalto", @@ -19643,6 +19860,29 @@ "camora_003": "Recámara4", "camora_004": "Recámara5", "camora_005": "Recámara6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "El jugador {0} ha cancelado su solicitud de amistad.", "cancelfriendrequest": "Cancelar solicitud de amistad", "captcha/too frequent attempts": "Los intentos han sido demasiado frecuentes. El acceso al Tianguis y a los comerciantes no está disponible actualmente. Inténtalo más tarde.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Conducto de Aguas Residuales", "lab_Vent": "Ducto de Ventilación", "labir_exit": "El Camino Arriba", + "laboratory": "Laboratorio", "labyrinth_secret_tagilla_key": "El Camino de Ariadna", "lastSession": "Última sesión", "leader": "Líder", @@ -20358,6 +20599,7 @@ "un-sec": "Bloqueo Norte de la ONU", "undefined": "", "uninstall": "DESINSTALAR", + "unlock requires:": "desbloquearlo requiere:", "unlockedSafes": "Cajas fuertes abiertas", "unpack": "desempacar", "usecKills": "USEC eliminados", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "El centro de negocios de Tarkov. Aquí es donde TerraGroup tenía su sede. Aquí fue donde todo comenzó.", "65b8d6f5cdde2479cb2a3125 Name": "Zona Cero", "65b8d6f5cdde2479cb2a3125 Description": "El centro de negocios de Tarkov. Aquí es donde TerraGroup tenía su sede. Aquí fue donde todo comenzó. La zona ha vuelto a convertirse en un área de enfrentamientos desde los primeros días del conflicto.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "El Laberinto", "6733700029c367a3d40b02af Description": "Una instalación de Knossos LLC, uno de los contratistas de TerraGroup. De acuerdo con fuentes públicas, construyen parques de atracciones y temáticos. Sin embargo, este lugar parece más un búnker fortificado que un nuevo parque temático.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Ah, ¿Los tienes? Dámelos, vamos a ver. Guau, ¡¿Por qué chingados son tan pesados?! Bueno, los revisaré más tarde. Toma, esto por tu ayuda.", "5ae9bb6986f77415a869b40b": "Encuentra en incursión un Chaleco balístico 6B13 de asalto con una durabilidad del 0-50%", - "5ae9bc6e86f7746e0026222c": "Entrega el Chaleco balístico 6B13 de asalto con una durabilidad del 0-50% encontrado en incursión", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Encuentra en incursión un Chaleco balístico 6B13 de asalto con una durabilidad del 50-100%", - "5ae9bea886f77468ab400e64": "Entrega el Chaleco balístico 6B13 de asalto con una durabilidad del 50-100% encontrado en incursión", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operación Acuario - Parte 2", + "664ca9f577af670dad0ad339 description": "Me alegro de verte una vez más. Mi gente descubrió quiénes estuvieron involucrados en todas estas operaciones ilegales con el agua. Por supuesto, todo fue gracias a tu información. En resumen, fue una pandilla de Scavs que opera en el área de Aduanas. Realmente no me siento cómoda con este tipo de solicitudes, pero hay vidas en juego, y estos sinvergüenzas continúan con su sucio negocio. Tenemos que dejarlos bien asustados por lo que han hecho, así que hazlos sufrir y que mueran sintiendo las dolorosas consecuencias de sus actos. ¿Podrías hacerlo?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Puedes estar orgulloso de ti mismo - incluso aunque hoy hayas quitado vidas, no eran vidas valiosas para la raza humana. A cambio, le has dado una oportunidad a muchos civiles.", + "664ca9f577af670dad0ad33d": "Elimina Scavs en Aduanas", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Ajetreo", "66588c0c98194a5d26010197 description": "¡Hola mercenario! ¿Escuchaste lo que pasó en Faro? Mis fuentes me dicen que los señores del crimen locales tuvieron una gran disputa con los Rogues, y los están buscando por toda la ciudad y las afueras. La misión es ayudar a estos Rogues. Porque está prohibido perturbar la paz y el orden durante mi guardia. ¿Entendido?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operación Acuario - Parte 2", + "6659a9716b1be75165030e4e description": "Me alegro de verte una vez más. Mi gente descubrió quiénes estuvieron involucrados en todas estas operaciones ilegales con el agua. Por supuesto, todo fue gracias a tu información. En resumen, fue una pandilla de Scavs que opera en el área de Aduanas. Realmente no me siento cómoda con este tipo de solicitudes, pero hay vidas en juego, y estos sinvergüenzas continúan con su sucio negocio. Tenemos que dejarlos bien asustados por lo que han hecho, así que hazlos sufrir y que mueran sintiendo las dolorosas consecuencias de sus actos. ¿Podrías hacerlo?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Puedes estar orgulloso de ti mismo - incluso aunque hoy hayas quitado vidas, no eran vidas valiosas para la raza humana. A cambio, le has dado una oportunidad a muchos civiles.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Sediento - Sabuesos", "665eeacf5d86b6c8aa03c79b description": "Tenemos que hablar. Los guardaespaldas de Sanitar han estado merodeando la zona costera por las noches. Obviamente están buscando algo. No puedo dejar que esto pase por alto. Asústalos mientras trato de descubrir qué es lo que están tramando.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Preguntar por Direcciones", "674492b6909d2013670a347a description": "¿Dices que Ragman está buscando nuevas rutas? Justo estaba pensando en eso ahora mismo, ahora que Skier no dejará que me vaya tan fácilmente. Pero hay una opción que Ragman podría usar. Digo, yo no pasaría con mi BTR por ahí, pero cuando yo era un indefenso peatón, solía pasar desapercibido por allí bastantes veces.\n\n¿Conoces la aldea junto a los acantilados cerca de donde están los chalés? Puedes subir desde uno de los patios traseros y luego seguir la grieta. Luego, cuando llegues a esas casas de gente adinerada, tendrás que levantar la guardia.\n\nNo quedan caminos seguros realmente, pero supongo que este es mejor que nada. Solo asegúrate de regresar conmigo cuando lo hayas marcado, lo comprobaré un par de veces con mis mapas solo para estar seguro.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Cena de Navidad", "675031be899713ccad00060c description": "¡Amigo mío, cómo estás! ¿No tienes frío, verdad? Bueno, así está la cosa... Vamos a organizar un banquete con nuestros hermanos de armas en la base, ¡Es Navidad al fin y al cabo!\n\nPero ya sabes cómo son las cosas en el inventario de los almacenes. Según los registros, está todo ahí, pero en realidad solo hay tushonkas y un putero de papas. Queríamos hacer ensalada Olivier, tal vez dos tazones. Y también necesitamos algo de alcohol.\n\n¿Puedes conseguirlos? No traigas papas, ya tenemos suficientes.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "¿Dices que está despejado? Bien hecho soldado.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bien.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Todos los objetos necesarios están en la lista. Encuéntralos y llévalos al punto de entrega.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Hay otras tareas disponibles, a costa de mi paciencia.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "El Mejor Amigo del PMC", "6512ea46f7a078264a4376e4 description": "Sobrevive y extrae de Intercambio a través de la extracción Scav Cooperativa mientras juegas como PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Resultado Fatal", "670febed5ee0fc738a0965a4 description": "Destruye el virus junto con todos los infectados y completa la serie de misiones del evento: Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Tracción Total", "675709bef4e2a2ce0f058f56 description": "Resuelve el problema con el Conductor del BTR de una manera u otra", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Amo del Calabozo", "67a0e57b972c11a3f50773b2 description": "Completa toda la serie de misiones principales y secundarias del evento: Laberinto", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es.json index aeeb15c9..c27097af 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/es.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Maletín cerrado", "6740987b89d5e1ddc603f4f0 ShortName": "Maletín cerrado", "6740987b89d5e1ddc603f4f0 Description": "El contenido es desconocido, pero necesitarás una llave para abrirlo.", + "67446fdd752be02c220f27b3 Name": "Cohete de asalto para ShG-2", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "Munición de 72,5 mm - Un cohete termobárico de asalto para el lanzacohetes RShG-2.", "67449b6c89d5e1ddc603f504 Name": "Llave de maletín", "67449b6c89d5e1ddc603f504 ShortName": "Maletín", "67449b6c89d5e1ddc603f504 Description": "Una llave adecuada para abrir la mayoría de maletines comunes.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Caja de Twitch Winter 2025 (Épica)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Una caja con algunas mercancías épicas.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "K4 USEC (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Pantalones tácticos", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "Caja de LATAM Drops Event 2025 (Común)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "Caja de LATAM Drops Event 2025 (Épica)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "V-Ex Carretera a la Base Militar", " Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "¿Estás seguro de que quieres remover el equipamiento modificado?", "APC/CustomizationTab": "Personalización", "APC/EnterName": "Escribir nombre", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Acceso rápido", "APC/Locked": "Bloqueado", "APC/PurchasedStatesAll": "Todo", "APC/ReadyToUlock": "Desbloqueable", "APC/Unlocked": "Desbloqueado", "APC/ViewPreset": "Visualizar", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defensa{1}", "APCBar/Firepower": "{0}Potencia de fuego{1}", "APCBar/Metascore": "{0}Meta-Puntos{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Carabinas de asalto", "APCFilter/AssaultRifles": "Fusiles de asalto", "APCFilter/AssaultScope": "Ópticas de asalto", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Piezas auxiliares", "APCFilter/Barrel": "Cañones", "APCFilter/Bipod": "Bípodes", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Palancas de montar", "APCFilter/Collimator": "Miras réflex", "APCFilter/CompactCollimator": "Miras réflex compactas", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Armas cuerpo a cuerpo", "APCFilter/Mount": "Monturas", "APCFilter/Muzzle": "Bocachas", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adaptadores de bocacha", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Ópticas", "APCFilter/PistolGrip": "Pistoletes", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolas", "APCFilter/Receiver": "Guardapolvos, Cuerpos, Disparadores", "APCFilter/SMGs": "Subfusiles", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "NIVELANDO", "ARENA/ARMORY/LINKS": "VINCULADOS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transferencia a EFT no disponible", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "NIVEL DE PROTECCIÓN", "ARMOR POINTS": "DURABILIDAD DE LA ARMADURA", "ARMOR TYPE": "TIPO DE BLINDAJE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Objeto no encontrado", "Arena/Armory/LevelReward/readyToUlockState": "Listo", "Arena/Armory/LevelReward/unlockedState": "Listo", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Bloqueado", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Dinero insuficiente", "Arena/BigCustomPurchaseInfo/Purchase": "Comprar", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Tiempo extra", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} de {1}", "Arena/BlastGang/ResultScreenSwapSides": "Cambiando de lado", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancelar invitación a lista de amigos", "Arena/CustomGame/Lobby/cancel invite to group": "Cancelar invitación al grupo", "Arena/CustomGame/Lobby/invite to friends": "Invitar a lista de amigos", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Intentos restantes:", "Arena/CustomGames/Create/Maps": "Ubicaciones", "Arena/CustomGames/Create/Modes": "Modos", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submodos", "Arena/CustomGames/Create/TournamentMode": "Modo torneo", "Arena/CustomGames/Create/TournamentSettings": "Ajustes de torneo", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Coger", "Arena/CustomGames/No servers found": "No se han encontrado servidores activos", "Arena/CustomGames/Observers": "Espectadores", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entrando al servidor", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Sustitución de tarea operacional / Ref", "Arena/CustomGames/Settings": "Ajustes", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Deshabilitado", "Arena/CustomGames/Settings/enable": "Habilitado", "Arena/CustomGames/create/enter name": "Escribe el nombre", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Región", "Arena/CustomGames/toggle/room name": "Nombre de la sala", "Arena/CustomGames/toggle/tournament": "Torneo", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "La partida ha acabado mientras estabas fuera", "Arena/EnterPresetName": "Escribe nombre del Kit", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "JMV", "Arena/MVP/DamageStatLabel": "Daño infligido a enemigos", "Arena/MVP/DeactivatedBomb": "Desactivó el dispositivo", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Arma", "Arena/Rematching": "Volviendo al emparejamiento con prioridad alta", "Arena/Rematching/NoServer": "Por motivos técnicos no se ha encontrado el servidor. Volviendo a buscar partida.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Celeste", "Arena/TeamColor/azure_plural": "Celestes", "Arena/TeamColor/blue": "Azul", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Azules", "Arena/TeamColor/fuchsia": "Rosa", "Arena/TeamColor/fuchsia_plural": "Rosas", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verdes", "Arena/TeamColor/grey": "Gris", "Arena/TeamColor/red": "Rojo", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Rojos", "Arena/TeamColor/white": "Blanco", "Arena/TeamColor/white_plural": "Blancos", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Kits desbloqueados", "Arena/Tooltip/MapSelectedCounter": "Número de ubicaciones seleccionadas", "Arena/Tooltip/MinMapCount {0}": "Selecciona múltiples ubicaciones. Debes seleccionar al menos {0} ubicaciones", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "No se cumplen las condiciones", "Arena/UI/APCItemBuyCaption": "Desbloqueo de objetos", "Arena/UI/APCItemBuyDescription": "¿Comprar el objeto?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Kit cogido", "Arena/UI/Waiting": "Esperando...", "Arena/Ui/ServerFounding": "Buscando servidor...", + "Arena/Widgets/ team {0} capturing point": "El equipo {0} está capturando el objetivo", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Plantando el dispositivo", "Arena/Widgets/Event/can activate object": "Planta el dispositivo", "Arena/Widgets/Event/deactivate object": "Desactiva el dispositivo", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "LISTO", "ArenaArmoryItemReward/Description": "Desbloquea el objeto en la Armería", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Veneno Fuerte", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bono diario por primera victoria: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "No tienes suficiente reputación y dinero para reemplazar esta Tarea", "ArenaQuestReroll/NotHaveStanding": "No tienes suficiente reputación para reemplazar esta Tarea", "ArenaRaidInviteDescription": "{0} te invita a la batalla", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Cualquier modo", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Modo(s) de juego", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Ubicaciones", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Múltiples modos de juego", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "¿Estás seguro de que quieres abandonar la partida prematuramente?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Abandonarás la partida sin penalización", "ArenaUI/BattleMenu/MatchLeave": "ABANDONAR LA PARTIDA", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Espalda alta", "ArmorVest": "Chaleco Balístico\n", "ArmoryCondition/ArenaArmoryProgression": "Alcanza el nivel {0} con el arma:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rango", "ArmoryCondition/CompletedDailyQuests": "Completa tareas diarias:", "ArmoryCondition/CompletedWeeklyQuests": "Completa tareas semanales:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Intercambio", "Battle category": "Categoría de batalla", "BattleCategory": "Combate", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Sistemas AK BEAR", "BearAssaultoperations": "Operaciones de Asalto BEAR", "BearAuthority": "Autoridad BEAR", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0.#%}].", "CharismaLevelingUpDescription": "La habilidad de Carisma se mejora indirectamente al nivelar las habilidades de Atención, Percepción e Intelecto.", "CharismaScavCaseDiscount": "Añade un descuento a los precios del Buzón Scav", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Los siguientes objetos serán movidos al Alijo para objetos de misión:", "ChatScreen/QuestItemsMoved": "Objetos movidos con éxito al Alijo para objetos de misión", "Check your email": "Por favor, revisa el e-mail que utilizaste para registrar esta cuenta. Recibirás el identificador del dispositivo (ID) en unos 5 minutos a partir de ahora.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "No disponible", "ClothingPanel/Available_both_games": "Disponible tanto en EFT como en Arena", "ClothingPanel/Available_only_arena": "Disponible solo en Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Disponible para comprar en el sitio web", "ClothingPanel/InternalObtain": "Condiciones de compra del vendedor:", "ClothingPanel/LoyaltyLevel": "Vendedor\nNivel de Lealtad:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Nivel del personaje", "Conditional/ConditionQuest/Type": "Misiones:", "Conditional/ConditionSkill/Type": "Habilidades:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Conectando al Servidor...", "Connection to server lost": "Conexión perdida con el servidor.", "Console": "Consola", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Sótano de la Sala de Calderas (Coop.)", "CustomizationDirectReward/Description": "Desbloquearás este estilo como recompensa", "CustomizationNotExists": "Ropa no disponible en uno o más Kits", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Desbloquea oferta de ropa táctica", "CustomizationReward/Description": "Desbloquea ropa táctica", "Customizations/ObtainHeader": "Obtenido:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total de Tareas completadas", "Daily/Stat/VeryEasy": "Total de Tareas muy fáciles completadas", "Daily/Stat/VeryHard": "Total de Tareas muy difíciles completadas", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Gana una partida", "DailyQuestName/ArenaWinRound": "Gana una ronda", "DailyQuestName/Completion": "Encuentra y entrega", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Quemadura", "DamageType_GrenadeFragment": "Fragmentación", "DamageType_HeavyBleeding": "Hemorragia grave", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Daño por impacto", "DamageType_Landmine": "Mina antipersona", "DamageType_LightBleeding": "Hemorragia leve", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Envenenamiento por radiación", "DamageType_Sniper": "Disparo de francotirador", "DamageType_Stimulator": "Efecto secundario de estimulador", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Daño anterior", "Day": "Día", "DeactivateObject": "Desactiva el dispositivo", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Fuego de cobertura", "ETraderServiceType/BtrItemsDelivery": "Mover objetos al alijo", "ETraderServiceType/PlayerTaxi": "Dar una vuelta", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipamiento", "EWishlistGroup/Hideout": "Refugio", "EWishlistGroup/Other": "Otro", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "No se puede añadir {0} a {1}. El arma modificada ocupará más espacio que el disponible. Intenta colocar el arma en otra parte de tu alijo.", "Escape": "Atrás", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Inspeccionar el arma actual", "Excellent standing": "excelente", "ExceptionItem": "El vendedor no puede reparar ese objeto.", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Encontrado en la Incursión", "Free cam": "Cámara libre", "FreeChangeQuest": "Libre de cargo", + "FreeWeekend": "Free Weekend", "Freetrading": "Tratos Gratuitos", "Freetradingdescription": "Comercio Libre", "Friend invite to {0} was sent succesfully": "¡Has enviado con éxito la solicitud de amistad a {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Círculo Sectario", "Hideout/CircleOfCultists/MaxItemsCount": "Máximo de objetos: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Los Sectarios no pueden entregar su Regalo mientras estés en el Refugio", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Este objeto se utilizará como herramienta auxiliar. Regresará a tu Alijo cuando la producción se haya completado.", "Hideout/Customization/Ceiling/TabName": "Techo", "Hideout/Customization/Ceiling/WindowHeader": "Selecciona el techo a instalar", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Generador Final", "Nakatani_stairs_free_exit": "Escaleras del Sótano Nakatani", "Nape": "Nuca", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "BUSCAR REQUERIDOS", "NetworkError/SessionLostErrorMessage": "Sesión perdida. Se requiere volver a iniciar sesión.", "NetworkError/TooManyFriendRequestsHeader": "Demasiadas peticiones.", @@ -17620,6 +17768,7 @@ "PVE settings": "Configuración de IA", "Pain": "Dolor", "Painkiller": "Drogado", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Horror escalofriante", "PaperGesture": "Papel", "Paramedic": "Médico de combate", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Costo de sustitución:", "Quest/Change/TimeLeft": "Tiempo restante para completar la tarea:", "Quest/Change/Tooltip": "Costo de sustitución de la tarea operacional:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " morir {0} veces", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " morir menos de {0} veces", "QuestCondition/ArenaDeathCount/More{0}": " morir más de {0} veces", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Encuentra en una sola incursión objetos de la categoría: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Elimina{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " con un disparo a {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extrae con objetos de la categoría: {0}", "QuestCondition/Many{0}{1}": "{0} {1} veces", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Supresor", "QuestCondition/Preset/632f8229f6541cacd808452c": "Asalto", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "cualquier ubicación", "QuestCondition/SurviveOnLocation/ExitName": " extrayendo a través de: \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "la ubicación", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "cabeza", "QuestCount/Transfered": "se ha transferido", "QuestCount/Transferred": "Eliminados:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volumen general:", "Settings/Sound/ReadyToMatchSoundVolume": "Volumen de la pantalla para aceptar partida:", "Settings/UnavailablePressType": "No disponible", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Dolor muscular severo", "Shack": "Checkpoint de la Base Militar", "Shadow visibility:": "Distancia visualizado sombras:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "MODOS DE DISPARO", "Tactical": "Activar o desactivar dispositivo táctico", "Tactical clothing": "Ropa táctica", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Mantener", "TacticalInteractionMode/Press": "Presionar", "TacticalVest": "Chaleco táctico", @@ -18582,6 +18746,7 @@ "Task": "Misión", "Taskbar/Unavailable": "No disponible", "Taskperformance": "Efectividad", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Combate por equipos de 5 contra 5. El objetivo es eliminar al equipo contrario antes de que te maten.", "TeamFightDescriptionShort": "Duelo a muerte por equipos", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Viejo Aserradero", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "¿Quieres que te deje en el Depósito de Trenes? Para que lo sepas, no puedes salir de allí sin mí. Si el precio te parece bien, vigila el tiempo que pasas allí, ¿entendido?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depósito de Trenes", + "Trading/Dialog/PlayerTaxi/p1/Description": "Muy bien, destino: el Cine Rodina. ¿Te parece bien el precio?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cine Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Derecho al tranvía. ¿Tienes el dinero, verdad?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tranvía", + "Trading/Dialog/PlayerTaxi/p3/Description": "Bien, vamos al centro de la ciudad. ¿Tienes dinero suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro de la Ciudad", + "Trading/Dialog/PlayerTaxi/p4/Description": "Conduciré hasta la grúa. ¿Estás de acuerdo con el precio?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grúa Colapsada", + "Trading/Dialog/PlayerTaxi/p5/Description": "Te llevaré hasta el viejo punto de control Scav. El precio está bien, ¿verdad?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Viejo punto de control Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Marcharse", "Trading/Dialog/ServicePayoff{0}": "Muy bien, esto debería bastar. (entregar \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Ocultar historial", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Acceso denegado", "Transit/InactivePoint": "Tránsito no disponible", "Transit/Interaction": "Interactuar", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transición en ", "Transition in {0:F1}": "Transición en {0:F1}", "Tremor": "Temblores", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Líneas de ranura de inventario en el alijo", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Tu alijo será ampliado con la adición de nuevas líneas de ranura de inventario.\nEstos cambios serán aplicados más adelante (revisa nuestro sitio web para más detalles).", "UI/Quest/Reward/AssortmentUnlockCaption": "Desbloquea el surtido con {0} al Nivel de Lealtad {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Ropa táctica", "UI/Quest/Reward/ItemCaption": "Objeto", "UI/Quest/Reward/ProductionSchemeCaption": "Receta de elaboración en {0} al nivel {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "desactivado", "UI/Settings/NVidiaReflexMode/On": "activado", "UI/Settings/NVidiaReflexMode/OnAndBoost": "activar y aumentar", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Por defecto", "UI/Settings/NotificationType/WebSocket": "Web Socket", "UI/Settings/OtherActions": "Otras aciones", "UI/Settings/Rest": "Otros", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Notificaciones de objetos Deseados", "UI/Skills/Charisma/CharismaDiscount": "Descuento por la habilidad Carisma", "UI/Standing:": "Reputación con el vendedor:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Error Desconocido", "UnknownErrorMessage": "Ha ocurrido un error desconocido. Por favor, cierra el juego y envía un reporte de bug.", "UnknownToxin": "Toxina desconocida", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "DESCARGAR MUNICIÓN", "Unloadmagazine": "Expulsar cargador", "Unlock": "Desbloquear", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Habilidad básica para modificar armas. Aumenta la ergonomía de los accesorios y reduce el desgaste del silenciador.", "WeaponMounting": "Emplazar arma", "WeaponPunch": "Culatazo", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0.#%}].", "WeaponReloadBuff": "Aumenta la velocidad de recarga en un [{0:0.#%}].", "WeaponStiffHands": "Incrementa la ergonomía de las armas en un [{0:0.#%}].", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "No puedes usar el Mercadillo en este momento.", "You can't use ragfair now": "No puedes usar el Mercadillo ahora.", "You can't use that symbol": "No puedes usar ése símbolo", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "No puedes modificar la calidad de las texturas durante la incursión.", "You cannot take off a dogtag from a friend or group member": "No puedes coger la chapa de identificación de un amigo o miembro de tu grupo.", "You don't have some items to finish the deal": "No tienes los objetos requeridos para el trato", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Puntuación", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Captura y mantén los objetivos", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "M", "arena/Exp": "Exp", "arena/KillShort": "E", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Eliminar", "arena/contextInteractions/card/edit": "Editar", "arena/contextInteractions/card/inspect default preset": "Inspeccionar", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "MODO DE JUEGO (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Modo de juego (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Tiempo extra", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Kits duplicados:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Duración de partida:", "arena/customGames/create/setOvertime": "Establecer tiempo extra", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Permitir Kits duplicados", "arena/customGames/create/setScoresToWinCount": "Puntos para ganar:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "INVITACIÓN A PARTIDA PERSONALIZADA DE {0}", "arena/customGames/notify/GameRemoved": "La sala ha sido disuelta", "arena/customgames/errors/notification/gamealreadystarted": "La partida ya ha comenzado", "arena/customgames/popup/refreshdailyquest": "¿Sustituir tarea operacional?", "arena/customgames/popups/attemptscountleft:": "Intentos restantes:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP RESTANTE", "arena/info/GP": "GP", "arena/info/KD Ratio": "E/M", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECCIONA UNA ARENA", "arena/matching/SelectGametype": "SELECCIONA EL TIPO DE JUEGO", "arena/matching/SelectRankedGamemode": "SELECCIONAR MODO DE JUEGO CLASIFICATORIO", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TIPO", "arena/matching/UnavailableReason": "No disponible", "arena/matching/buyPreset": "SELECCIONAR KIT", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "espacios desbloqueados:", "arena/questLogTemplate/gameModes": "Modo(s) de juego", "arena/questLogTemplate/maps": "Localización(es)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bono de JMV de la partida", "arena/resultContent/matchMVPMoneyTitle": "Bono de JMV de la partida", "arena/resultContent/roundMVPExpTitle": "Bono de JMV de la ronda", "arena/resultContent/roundMVPMoneyTitle": "Bono de JMV de la ronda", "arena/selection/gameMode": "modo de juego", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASALTO", "arena/tab/COLLECTION": "COLECCIÓN", "arena/tab/FAVORITES": "FAVORITOS", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "CLASIFICACIÓN", "arena/tab/SCOUT": "EXPLORADOR", "arena/tab/SQB": "SUPRESOR", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "Moneda GP. Usada para desbloquear equipamiento para los esquemas y comprar equipo en EFT. Conseguido por completar tareas operativas en Arena.", "arena/tooltip/OverallMatches": "Número total de partidas jugadas en Clasificatorias y Casuales.", "arena/tooltip/Presets": "Kits", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Tu ratio general de victorias, calculada a partir de todas las victorias y derrotas en partidas Clasificatorias y Casuales.", "arena/widget/ally_capture_point": "Aliados tomaron el punto", "arena/widget/enemy_capture_point": "Enemigo tomó el punto", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Completa tareas diarias:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Completa tareas semanales:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Completa tareas diarias:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Completa tareas semanales:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Completa tareas diarias:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Completa tareas semanales:", "arenaui/presetview/lockedpreset": "Kit no disponible", "arm broke": "¡Te has roto el brazo!", "assaultKills": "Eliminaciones con fusiles de asalto", @@ -19643,6 +19860,29 @@ "camora_003": "Recámara 4", "camora_004": "Recámara 5", "camora_005": "Recámara 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "El jugador {0} ha cancelado su petición de amistad.", "cancelfriendrequest": "Cancelar solicitud de amistad", "captcha/too frequent attempts": "Los intentos han sido demasiado frecuentes. El acceso al Mercadillo y los vendedores no está disponible actualmente. Prueba de nuevo más tarde.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Conducto de Aguas Residuales", "lab_Vent": "Conducto de Ventilación", "labir_exit": "El Camino Arriba", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "El Camino de Ariadna", "lastSession": "Última sesión de juego", "leader": "Líder", @@ -20358,6 +20599,7 @@ "un-sec": "Bloqueo Norte de la ONU", "undefined": "", "uninstall": "DESINSTALAR", + "unlock requires:": "desbloquearlo requiere:", "unlockedSafes": "Cajas fuertes desbloqueadas", "unpack": "Desempacar", "usecKills": "USEC eliminados", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "El centro de negocios de Tarkov. Aquí es donde tenía su sede TerraGroup. Aquí fue donde comenzó todo.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "El centro de negocios de Tarkov. Aquí es donde tenía su sede TerraGroup. Aquí fue donde comenzó todo. La zona se ha convertido de nuevo en un área de enfrentamientos desde los primeros días del conflicto.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "Una instalación de Knossos LLC, uno de los contratistas de TerraGroup. Según fuentes públicas, construyen parques de atracciones y temáticos. Sin embargo, este sitio parece más un búnker fortificado que un nuevo parque temático.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Ah, ¿los tienes? Dámelos, vamos a ver. Hala, ¡¿por qué cojones son tan pesados?! Bueno, les echaré un ojo más tarde. Toma, esto por tu ayuda.", "5ae9bb6986f77415a869b40b": "Encuentra en incursión un Chaleco balístico 6B13 de asalto con una durabilidad del 0-50%", - "5ae9bc6e86f7746e0026222c": "Entrega el Chaleco balístico 6B13 de asalto con una durabilidad del 0-50% encontrado en incursión", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Encuentra en incursión un Chaleco balístico 6B13 de asalto con una durabilidad del 50-100%", - "5ae9bea886f77468ab400e64": "Entrega el Chaleco balístico 6B13 de asalto con una durabilidad del 50-100% encontrado en incursión", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operación Acuario - Parte 2", + "664ca9f577af670dad0ad339 description": "Me alegra verte de nuevo. Mi gente ha conseguido averiguar quién está involucrado en las operaciones ilegales relacionadas con el agua limpia. Gracias a tu información, por supuesto. Bueno, se trata de una banda de Scavs que opera en la zona de Customs. No me siento muy cómoda con este tipo de peticiones, pero hay vidas en juego y esos canallas siguen con sus trapicheos. Necesitamos que se asusten bien, así que hazlos sufrir, así podrán sentir en su propia piel lo que han hecho como castigo. ¿Lo vas a hacer?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Puedes estar orgulloso de ti, aunque hoy hayas quitado algunas vidas, no eran valiosas para la raza humana. Sin embargo, sí que les has dado una oportunidad a muchos civiles.", + "664ca9f577af670dad0ad33d": "Elimina Scavs en Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Ajetreo", "66588c0c98194a5d26010197 description": "¡Hola mercenario! ¿Has escuchado lo que pasó en Lighthouse? Mis fuentes me dicen que los señores del crimen locales han tenido una gran disputa con los Rogues, y los están buscando por toda la ciudad y las afueras. La tarea es ayudar a estos Rogues. Porque está prohibido perturbar la paz y el orden durante mi guardia. ¿Entendido?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operación Acuario - Parte 2", + "6659a9716b1be75165030e4e description": "Me alegra verte de nuevo. Mi gente ha conseguido averiguar quién está involucrado en las operaciones ilegales relacionadas con el agua limpia. Gracias a tu información, por supuesto. Bueno, se trata de una banda de Scavs que opera en la zona de Customs. No me siento muy cómoda con este tipo de peticiones, pero hay vidas en juego y esos canallas siguen con sus trapicheos. Necesitamos que se asusten bien, así que hazlos sufrir, así podrán sentir en su propia piel lo que han hecho como castigo. ¿Lo vas a hacer?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Puedes estar orgulloso de ti, aunque hoy hayas quitado algunas vidas, no eran valiosas para la raza humana. Sin embargo, sí que les has dado una oportunidad a muchos civiles.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Sediento - Sabuesos", "665eeacf5d86b6c8aa03c79b description": "Tenemos que hablar. Los guardaespaldas de Sanitar han estado merodeando por la zona costera durante la noche. Es obvio que buscan algo. No puedo dejar que esto pase por alto. Asústalos mientras trato de averiguar qué es lo que están tramando.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Preguntar por Direcciones", "674492b6909d2013670a347a description": "¿Dices que Ragman está buscando nuevas rutas? Justo estaba pensando en eso ahora mismo, ahora que Skier no me dejará ir tan fácilmente. Pero hay una opción que Ragman podría usar. Digo, yo no pasaría con mi BTR por ahí, pero cuando yo era un peatón indefenso, solía pasar desapercibido por allí muchas veces.\n\n¿Conoces el pueblo junto a los acantilados cerca de donde están las casas de campo? Puedes subir desde uno de los patios traseros y luego seguir la grieta. Luego, cuando llegues a esas casas de gente pija, tendrás que levantar la guardia.\n\nRealmente no quedan caminos seguros, pero supongo que este es mejor que nada. Solo asegúrate de regresar conmigo cuando lo hayas marcado, lo comprobaré un par de veces con mis mapas solo para estar seguro.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Cena de Navidad", "675031be899713ccad00060c description": "¡Amigo mío, cómo estás! ¿Hace fresco, verdad? Vale, esta es la cuestión... Organizaremos un banquete con nuestros hermanos de armas en la base, ¡al fin y al cabo es Navidad!\n\nPero ya sabes cómo son las cosas en el inventario de los almacenes. Según los registros, está todo ahí, pero en realidad solo hay tushonkas y un mogollón de patatas. Queríamos hacer ensalada Olivier, tal vez dos tazones. Y también necesitamos algo de alcohol.\n\n¿Puedes conseguirlos? No vayas a traer patatas, ya tenemos suficientes.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "¿Dices que está todo despejado? Buen trabajo soldado.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bien.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Todos los artículos solicitados están en la lista. Encuéntralos y llévalos al punto de entrega.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Hay otras tareas disponibles, a costa de mi paciencia.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "El Mejor Amigo del PMC", "6512ea46f7a078264a4376e4 description": "Sobrevive y extrae de Interchange a través de la extracción Scav Cooperativa mientras juegas como PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Resultado Fatal", "670febed5ee0fc738a0965a4 description": "Destruye el virus junto con todos los infectados y completa la serie de misiones del evento: Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Tracción Total", "675709bef4e2a2ce0f058f56 description": "Resuelve el problema con el Conductor del BTR de una manera u otra", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Amo del Calabozo", "67a0e57b972c11a3f50773b2 description": "Completa toda la serie de misiones principales y secundarias del evento: Laberinto", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/fr.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/fr.json index fd612553..113a4d2f 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/fr.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/fr.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Clé de mallette", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Véhicule vers la base militaire", " Voip/DisabledForOffline": "Le VOIP est indisponible en mode hors-ligne", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Are you sure you want to remove the modified equipment?", "APC/CustomizationTab": "Customization", "APC/EnterName": "Enter name", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Accès rapide", "APC/Locked": "Verrouillé", "APC/PurchasedStatesAll": "All", "APC/ReadyToUlock": "Déblocable", "APC/Unlocked": "Débloquée", "APC/ViewPreset": "Voir", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Puissance{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Carabines d'assaut", "APCFilter/AssaultRifles": "Fusils d'assaut", "APCFilter/AssaultScope": "Lunettes d'assaut", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Pièces auxiliaires", "APCFilter/Barrel": "Canons", "APCFilter/Bipod": "Bipieds", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Leviers d'armement", "APCFilter/Collimator": "Viseurs reflex", "APCFilter/CompactCollimator": "Viseurs reflex compacts", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Armes de mêlée", "APCFilter/Mount": "Montages", "APCFilter/Muzzle": "Accessoires bouche de canon", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adaptateurs de filetage", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Optiques", "APCFilter/PistolGrip": "Poignées pistolets", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolets", "APCFilter/Receiver": "Capots, boitiers et bloc de détente", "APCFilter/SMGs": "Pistolets-mitrailleurs", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LEVELING", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transfert vers EFT indisponible", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "CLASSE DE PROTECTION", "ARMOR POINTS": "DURABILITÉ", "ARMOR TYPE": "TYPE D'ARMURE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Objet non trouvé", "Arena/Armory/LevelReward/readyToUlockState": "Prêt", "Arena/Armory/LevelReward/unlockedState": "Prêt", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Pas assez d'argent", "Arena/BigCustomPurchaseInfo/Purchase": "Acheter", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Temps additionnel", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} sur {1}", "Arena/BlastGang/ResultScreenSwapSides": "Switching sides", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Annuler la demande d'ami", "Arena/CustomGame/Lobby/cancel invite to group": "Annuler l'invitation à rejoindre le groupe", "Arena/CustomGame/Lobby/invite to friends": "Ajouter à la liste d'amis", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Tentatives restantes : ", "Arena/CustomGames/Create/Maps": "Zones", "Arena/CustomGames/Create/Modes": "Modes", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Sous-modes", "Arena/CustomGames/Create/TournamentMode": "Mode tournois", "Arena/CustomGames/Create/TournamentSettings": "Paramètres du tournois", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Prendre", "Arena/CustomGames/No servers found": "Aucun serveur actif trouvé", "Arena/CustomGames/Observers": "Spectateurs", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entrée dans le serveur", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Operational task replacement / Ref", "Arena/CustomGames/Settings": "Paramètres", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Désactivé", "Arena/CustomGames/Settings/enable": "Activé", "Arena/CustomGames/create/enter name": "Entrer le nom", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Région", "Arena/CustomGames/toggle/room name": "Nom de la salle", "Arena/CustomGames/toggle/tournament": "Tournois", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Le match s'est terminé pendant que vous étiez absent", "Arena/EnterPresetName": "Entrer nom de configuration", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Dégâts distribués aux ennemis", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Arme", "Arena/Rematching": "Retour au match avec une priorité élevée", "Arena/Rematching/NoServer": "À cause de soucis techniques, le serveur n'a pas été trouvé. Retour à la recherche de partie.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azure", "Arena/TeamColor/azure_plural": "Azure", "Arena/TeamColor/blue": "Bleue", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Bleue", "Arena/TeamColor/fuchsia": "Rose", "Arena/TeamColor/fuchsia_plural": "Rose", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verte", "Arena/TeamColor/grey": "Grise", "Arena/TeamColor/red": "Rouge", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Rouge", "Arena/TeamColor/white": "Blanche", "Arena/TeamColor/white_plural": "Blanche", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Configuration débloquée", "Arena/Tooltip/MapSelectedCounter": "Nombre de zones sélectionnées", "Arena/Tooltip/MinMapCount {0}": "Sélectionnez plusieurs zones. Vous devez sélectionner au moins {0} zone(s)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Configuration prise", "Arena/UI/Waiting": "En attente...", "Arena/Ui/ServerFounding": "En recherche de serveur...", + "Arena/Widgets/ team {0} capturing point": "L'équipe {0} capture l'objectif", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Pose du dispositif", "Arena/Widgets/Event/can activate object": "Poser le dispositif", "Arena/Widgets/Event/deactivate object": "Désactiver le dispositif", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "PRÊT", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutoriel", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Poison puissant", "ArenaMemberCategory/UniqueID": "Édition Ryzhy", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bonus de première victoire quotidien : {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Pas assez de réputation et d'argent pour remplacer cette tâche", "ArenaQuestReroll/NotHaveStanding": "Pas assez de réputation pour remplacer cette tâche", "ArenaRaidInviteDescription": "{0} vous invite à combattre", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Tous modes de jeu", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Mode(s) de jeu", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Zones", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiples modes de jeu", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Êtes-vous sûr de vouloir quitter la partie prématurément ?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Vous quitterez le match sans pénalité", "ArenaUI/BattleMenu/MatchLeave": "QUITTER LE MATCH", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Casse", "Arena_Bay5": "Quai 5", "Arena_Bowl": "Stade", + "Arena_Prison": "Prison", "Arena_Yard": "Quartier", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finale", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Haut du dos", "ArmorVest": "Pare-balles\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rang", "ArmoryCondition/CompletedDailyQuests": "Complétez des tâches quotidiennes :", "ArmoryCondition/CompletedWeeklyQuests": "Complétez des tâches hebdomadaires :", @@ -15665,6 +15778,7 @@ "Barterdescription": "Échange", "Battle category": "Catégorie de combat", "BattleCategory": "Combat", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR - Systèmes AK", "BearAssaultoperations": "BEAR - Opérations d'assaut", "BearAuthority": "BEAR - Autorité", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Réduit le prix des assurances de [{0:0.#%}]", "CharismaLevelingUpDescription": "Le charisme est amélioré indirectement en améliorant l'attention, la perception et l'intelligence.", "CharismaScavCaseDiscount": "Ajoute une remise sur les prix de la boîte des scavs", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Les objets suivants seront déplacés dans la réserve d'objets de quête : ", "ChatScreen/QuestItemsMoved": "Objets déplacés dans la réserve d'objets de quête avec succès", "Check your email": "Veuillez vérifier l’email que vous avez utilisé pour la création de ce compte. Vous allez recevoir l’ID de l'appareil dans les 5 minutes qui suivent.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Indisponible", "ClothingPanel/Available_both_games": "Disponible dans EFT et Arena", "ClothingPanel/Available_only_arena": "Uniquement disponible dans Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Disponible à l'achat sur le site internet", "ClothingPanel/InternalObtain": "Conditions d'achat : ", "ClothingPanel/LoyaltyLevel": "Marchand\nNiveau de loyauté : ", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Niveau du joueur", "Conditional/ConditionQuest/Type": "Quêtes : ", "Conditional/ConditionSkill/Type": "Compétence : ", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Connexion au serveur...", "Connection to server lost": "Connexion au serveur perdue", "Console": "Console", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Sous-sol de la chaufferie (Co-Op)", "CustomizationDirectReward/Description": "Vous débloquerez ce style en récompense", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtenu :", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Quêtes complétées", "Daily/Stat/VeryEasy": "Quêtes très faciles complétées", "Daily/Stat/VeryHard": "Quêtes très difficiles complétées", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Gagner un match", "DailyQuestName/ArenaWinRound": "Gagner une manche", "DailyQuestName/Completion": "Trouver et transférer", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Flamme", "DamageType_GrenadeFragment": "Fragmentation", "DamageType_HeavyBleeding": "Hémorragie importante", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Dégâts d'impact", "DamageType_Landmine": "Mine terrestre", "DamageType_LightBleeding": "Hémorragie légère", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Exposition aux radiations", "DamageType_Sniper": "Tir de sniper", "DamageType_Stimulator": "Effets secondaires des stimulants", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Dégâts précédents", "Day": "Jour", "DeactivateObject": "Désactiver le dispositif", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Tir de soutien", "ETraderServiceType/BtrItemsDelivery": "Dépôt d'objets dans la réserve", "ETraderServiceType/PlayerTaxi": "Faire un tour", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Équipement", "EWishlistGroup/Hideout": "Planque", "EWishlistGroup/Other": "Autre", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Impossible d'ajouter {0} à {1}. L'arme modifiée prendrait plus de place que disponible. Essayez de placer l'arme dans une autre partie de votre réserve.", "Escape": "Retour", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Inspecter l’arme en main", "Excellent standing": "excellente", "ExceptionItem": "Le marchand ne peut pas réparer cet objet", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Trouvé en raid", "Free cam": "Caméra libre", "FreeChangeQuest": "Gratuit", + "FreeWeekend": "Free Weekend", "Freetrading": "Libre échange", "Freetradingdescription": "Libre échange", "Friend invite to {0} was sent succesfully": "Un demande d'ami a bien été envoyée à {0} !", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cercle des cultistes", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Les cultistes ne peuvent pas octroyer leur offrande tant que vous êtes dans la planque", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Cet objet sera utilisé comme un outils auxiliaire. Il reviendra dans votre réserve à la fin de la production.", "Hideout/Customization/Ceiling/TabName": "Plafond", "Hideout/Customization/Ceiling/WindowHeader": "Sélectionnez le plafond à installer", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Générateur final", "Nakatani_stairs_free_exit": "Escaliers du souterrain Nakatani", "Nape": "Nuque", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "RECHERCHE ÉCHANGES", "NetworkError/SessionLostErrorMessage": "Session perdue. Reconnexion requise", "NetworkError/TooManyFriendRequestsHeader": "Trop de requêtes", @@ -17620,6 +17768,7 @@ "PVE settings": "Paramètres de l'IA", "Pain": "Douleur", "Painkiller": "Sous antidouleurs", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Terreur", "PaperGesture": "Papier", "Paramedic": "Médecin", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Coût de remplacement : ", "Quest/Change/TimeLeft": "Termps restant pour compléter la tâche : ", "Quest/Change/Tooltip": "Coût de remplacement de la tâche opérationnelle : ", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " mourir {0} fois", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " mourir moins de {0} fois", "QuestCondition/ArenaDeathCount/More{0}": " en mourrant plus de {0} fois", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Trouvez au cours du même raid un objet de la catégorie : {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Éliminez{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " avec un tir dans {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Rapportez les objets de la catégorie : {0}", "QuestCondition/Many{0}{1}": "{0} {1} fois", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Homme de main", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assaut", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "n'importe quelle zone", "QuestCondition/SurviveOnLocation/ExitName": " en utilisant l'extraction \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "la zone", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "tête", "QuestCount/Transfered": "transféré", "QuestCount/Transferred": "Éliminé : ", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volume général", "Settings/Sound/ReadyToMatchSoundVolume": "Volume de l'écran d'acceptation de match : ", "Settings/UnavailablePressType": "Indisponible", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Douleurs musculaires intenses", "Shack": "PC base militaire", "Shadow visibility:": "Visibilité des ombres\u00A0: ", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "MODES DE TIR", "Tactical": "Activer/Désactiver l'équipement tactique", "Tactical clothing": "Habillement tactique", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Maintenir", "TacticalInteractionMode/Press": "Appui", "TacticalVest": "Gilet Tact.", @@ -18582,6 +18746,7 @@ "Task": "Quête", "Taskbar/Unavailable": "Indisponible", "Taskperformance": "Performance d’intervention", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Match en équipe 5 contre 5. L'objectif est d'éliminer l'équipe adverse plus rapidement qu'elle ne peut vous éliminer.", "TeamFightDescriptionShort": "Match à mort en équipe", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Ancienne scierie", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Tu veux que je te dépose au dépôt. Histoire que tu saches, tu ne pourras pas sortir de là sans moi. Pense à bien regarder l'heure une fois là-bas, ok ?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Dépôt ferroviaire", + "Trading/Dialog/PlayerTaxi/p1/Description": "Bien, destination le cinéma Rodina. Le prix te convient ?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinéma Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "En avant pour le tram. Tu as l'argent, n'est-ce pas ?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Bien, c'est parti pour le centre-ville. Tu as assez d'argent ?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centre-ville", + "Trading/Dialog/PlayerTaxi/p4/Description": "Je vais te conduire jusqu'à la grue effondrée. Le prix te va ?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grue effondrée", + "Trading/Dialog/PlayerTaxi/p5/Description": "On fait route vers l'ancien poste de contrôle scav. C'est bon pour le prix, hein ?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Ancien poste de contrôle scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Je te dépose à l'hôtel Pinewood. Niveau prix ça dit quoi ? C'est bon pour toi ?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hôtel Pinewood", "Trading/Dialog/Quit": "Partir", "Trading/Dialog/ServicePayoff{0}": "Bien, ça devrait le faire. (Donner \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Cacher l'historique", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Accès refusé", "Transit/InactivePoint": "Transit indisponible", "Transit/Interaction": "Interagir", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition dans ", "Transition in {0:F1}": "Transition dans {0:F1}", "Tremor": "Tremblements", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Lignes d'inventaire dans la réserve", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Votre réserve sera agrandie par l'addition de lignes supplémentaires.\nCes changements seront appliqués plus tard (voir le site internet pour plus de détails).", "UI/Quest/Reward/AssortmentUnlockCaption": "Débloque l'objet chez {0} au niveau de loyauté {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Habillement tactique", "UI/Quest/Reward/ItemCaption": "Objet", "UI/Quest/Reward/ProductionSchemeCaption": "Recette pour le module {0} niveau {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "Désactivé", "UI/Settings/NVidiaReflexMode/On": "Activé", "UI/Settings/NVidiaReflexMode/OnAndBoost": "Activé et boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Par défaut", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Autres actions", "UI/Settings/Rest": "Autre", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Notification d'objet souhaité", "UI/Skills/Charisma/CharismaDiscount": "Remise de la compétence charisme", "UI/Standing:": "Réputation marchand : ", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Erreur inconnue", "UnknownErrorMessage": "Une erreur inconnue est survenue. Veuillez fermer le jeu et signaler le problème.", "UnknownToxin": "Toxine inconnue", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "VIDER LES MUNITIONS", "Unloadmagazine": "Retirer le chargeur", "Unlock": "Déverrouiller", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "L'aptitude à modifier une arme en étant sur le terrain. Elle augmente l'ergonomie et réduit la vitesse d'usure des réducteurs de son.", "WeaponMounting": "Prendre appui avec l'arme", "WeaponPunch": "Coup de crosse", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Réduit le recul des armes de [{0:0.#%}]", "WeaponReloadBuff": "Augmente la vitesse de rechargement de [{0:0.#%}]", "WeaponStiffHands": "Améliore l'ergonomie de l'arme de [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Vous ne pouvez pas utiliser le marché aux puces pour l'instant", "You can't use ragfair now": "Vous ne pouvez pas utiliser le marché aux puces pour l'instant", "You can't use that symbol": "Vous ne pouvez pas utiliser ce caractère", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Vous ne pouvez pas modifier la qualité des textures en raid.", "You cannot take off a dogtag from a friend or group member": "Vous ne pouvez pas prendre la plaque d'identification d'un ami ou membre du groupe", "You don't have some items to finish the deal": "Il vous manque des objets pour conclure le marché", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capturez et tenez les objectifs", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "M", "arena/Exp": "EXP", "arena/KillShort": "É", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "MODE DE JEU (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Mode de jeu (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Copier la configuration : ", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Autoriser les configurations en double", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "INVITATION À UNE PARTIE PERSONNALISÉE DE {0}", "arena/customGames/notify/GameRemoved": "La salle a été dissoute", "arena/customgames/errors/notification/gamealreadystarted": "La partie a déjà commencé", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Tentatives restantes : ", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP restant", "arena/info/GP": "GP", "arena/info/KD Ratio": "É/M", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECTIONNER L'ARÈNE", "arena/matching/SelectGametype": "SÉLECTIONNEZ LE TYPE DE PARTIE", "arena/matching/SelectRankedGamemode": "SÉLECTIONNEZ LE MODE DE JEU CLASSÉ", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Indisponible", "arena/matching/buyPreset": "SELECTIONNER L'ÉQUIPEMENT", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Mode(s) de jeu", "arena/questLogTemplate/maps": "Zone(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bonus de MVP du match", "arena/resultContent/matchMVPMoneyTitle": "Bonus de MVP du match", "arena/resultContent/roundMVPExpTitle": "Bonus de MVP de la manche", "arena/resultContent/roundMVPMoneyTitle": "Bonus de MVP de la manche", "arena/selection/gameMode": "mode de jeu", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAUT", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "FAVORIS", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "CLASSÉES", "arena/tab/SCOUT": "ÉCLAIREUR", "arena/tab/SQB": "HOMME DE MAIN", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Votre nombre total de matchs classés et non classés joués.", "arena/tooltip/Presets": "Configurations", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Votre ratio général, calculé à partir de vos victoires et défaites en match classées et non-classées.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complétez des tâches quotidiennes :", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complétez des tâches hebdomadaires :", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complétez des tâches quotidiennes :", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complétez des tâches hebdomadaires :", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complétez des tâches quotidiennes :", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complétez des tâches hebdomadaires :", "arenaui/presetview/lockedpreset": "Configuration indisponible", "arm broke": "Vous vous êtes cassé le bras !", "assaultKills": "Éliminations au fusil d'assaut", @@ -19643,6 +19860,29 @@ "camora_003": "Chambre 4", "camora_004": "Chambre 5", "camora_005": "Chambre 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Le joueur {0} a annulé sa demande d'ami", "cancelfriendrequest": "Annuler la demande d'ami", "captcha/too frequent attempts": "Les requêtes sont trop fréquentes. L'accès au marché et aux marchands est actuellement indisponible. Réessayez plus tard.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Conduit d'eaux usées", "lab_Vent": "Conduit de ventilation", "labir_exit": "The Way Up", + "laboratory": "Laboratoire", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Dernière session", "leader": "Chef", @@ -20358,6 +20599,7 @@ "un-sec": "Barrage ONU nord", "undefined": "", "uninstall": "Désinstaller ", + "unlock requires:": "le déverrouillage nécessite : ", "unlockedSafes": "Coffres-forts déverrouillés", "unpack": "Déballer", "usecKills": "USECs tués", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Le centre-ville de Tarkov. C'est ici que TerraGroup avait son quartier général. C'est ici que tout a commencé.", "65b8d6f5cdde2479cb2a3125 Name": "Point Zéro", "65b8d6f5cdde2479cb2a3125 Description": "Le centre-ville de Tarkov. C'est ici que TerraGroup avait son quartier général. C'est ici que tout a commencé.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, tu les as ? Donne-les-moi, regardons ça. Whoa, bordel pourquoi ils sont si lourds ?! Ok, je vais y jeter un coup d'œil plus tard. Tiens, voilà pour ton aide.", "5ae9bb6986f77415a869b40b": "Trouvez en raid un gilet d'assaut pare-balles 6B13 ayant 0 à 50 % de durabilité", - "5ae9bc6e86f7746e0026222c": "Livrez le gilet d'assaut pare-balles 6B13 trouvé en raid ayant 0 à 50 % de durabilité", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Trouvez en raid un gilet d'assaut pare-balles 6B13 ayant 50 à100 % de durabilité", - "5ae9bea886f77468ab400e64": "Livrez le gilet d'assaut pare-balles 6B13 trouvé en raid ayant 50 à 100 % de durabilité", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Opération Aquarius - Partie 2", + "664ca9f577af670dad0ad339 description": "Contente de te revoir. Mes gars ont trouvé qui était impliqué dans ces opérations illégales avec l'eau potable. Grâce à tes informations, bien sûr. Pour résumer, c'est un gang de scavs qui opère dans les douanes. Ce n'est pas vraiment mon genre de te demander cela, mais il y a des vies en jeu, et ces scélérats continuent leur sale business. Il nous faut les effrayer, donc laisse les agoniser pour qu'ils vivent ce qu'ils ont fait vivre aux autres et qu'ils sachent pourquoi ils sont punis. Tu le feras ?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Tu peux être fier de toi, même si tu as pris des vies aujourd'hui, elles ne faisaient pas partie du meilleur de la race humaine. Tu as donné une chance de survie à de nombreux civils.", + "664ca9f577af670dad0ad33d": "Éliminez des scavs dans les douanes", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Opération Aquarius - Partie 2", + "6659a9716b1be75165030e4e description": "Contente de te revoir. Mes gars ont trouvé qui était impliqué dans ces opérations illégales avec l'eau potable. Grâce à tes informations, bien sûr. Pour résumer, c'est un gang de scavs qui opère dans les douanes. Ce n'est pas vraiment mon genre de te demander cela, mais il y a des vies en jeu, et ces scélérats continuent leur sale business. Il nous faut les effrayer, donc laisse les agoniser pour qu'ils vivent ce qu'ils ont fait vivre aux autres et qu'ils sachent pourquoi ils sont punis. Tu le feras ?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Tu peux être fier de toi, même si tu as pris des vies aujourd'hui, elles ne faisaient pas partie du meilleur de la race humaine. Tu as donné une chance de survie à de nombreux civils.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Assoiffé - Chiens de chasse", "665eeacf5d86b6c8aa03c79b description": "Il faut qu’on parle. Les hommes de main de Sanitar rôdent sur le littoral la nuit. De toute évidence, à la recherche de quelque chose. Je ne peux rester sans rien faire. Effraies-les pendant que j'essaie de découvrir ce qu'ils mijotent.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Dîner de Noël", "675031be899713ccad00060c description": "Comment ça va, mon ami ? Pas trop froid, hein ? Bon, voilà le truc... On va organiser un festin avec les camarades à la base, c’est Noël après tout !\n\nMais tu sais comment c’est dans les entrepôts d’intendance. Sur le papier, tout est là, mais en vrai, y’a que des tushonkas et une putain de montagne de patates. On voulait faire une salade Olivier, peut-être deux bols. Et il faut aussi un peu de gnôle.\n\nTu peux t’en charger ? Laisse tomber les patates, on en a déjà bien assez.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Tout est clair, tu dis ? Bon travail, soldat.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bien.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Tous les objets dont j'ai besoin sont sur la liste. Trouve-les et apporte-les-moi à l'endroit de livraison.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Il y a d'autres tâches disponibles, au prix de ma patience.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Le meilleur ami de l'opérateur", "6512ea46f7a078264a4376e4 description": "Survivez et quittez l'échangeur en utilisant l'extraction en coopération en tant qu'opérateur d'une SMP", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Issue fatale", "670febed5ee0fc738a0965a4 description": "Détruisez le virus ainsi que tous les infectés et complétez la série de quêtes des évènements d'Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Traction intégrale", "675709bef4e2a2ce0f058f56 description": "Résoudre les problèmes avec le chauffeur du BTR d'une façon ou d'une autre", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ge.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ge.json index bc92686f..19ef0853 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ge.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ge.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Taktische Hosen", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Auto zur Straße der Militärbasis", " Voip/DisabledForOffline": "VoIP ist im Offline-Modus nicht verfügbar.", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Bist du dir sicher, dass du die modifizierte Ausrüstung zerstören willst?", "APC/CustomizationTab": "Anpassung", "APC/EnterName": "Namen eingeben", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Schnellzugriff", "APC/Locked": "Gesperrt", "APC/PurchasedStatesAll": "Alle", "APC/ReadyToUlock": "Freischaltbar", "APC/Unlocked": "Freigeschaltet", "APC/ViewPreset": "Ansehen", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Verteidigung{1}", "APCBar/Firepower": "{0}Feuerkraft{1}", "APCBar/Metascore": "{0}Meta-Wert{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Sturmkarabiner", "APCFilter/AssaultRifles": "Sturmgewehre", "APCFilter/AssaultScope": "Zielfernrohre", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Zusätzliche Komponenten", "APCFilter/Barrel": "Läufe", "APCFilter/Bipod": "Zweibeine", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Spannhebel", "APCFilter/Collimator": "Reflexvisiere", "APCFilter/CompactCollimator": "Kompakte Reflexvisiere", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Nahkampfwaffen", "APCFilter/Mount": "Halterungen", "APCFilter/Muzzle": "Mündungsgeräte", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Mündungsadapter", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Zielfernrohre", "APCFilter/PistolGrip": "Pistolengriffe", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolen", "APCFilter/Receiver": "Staubs.cover, Empf.einh., Abzugsgruppen", "APCFilter/SMGs": "Maschinenpistolen", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "STUFENAUFSTIEG", "ARENA/ARMORY/LINKS": "VERBINDUNGEN", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Übertragung zu EFT ist nicht verfügbar.", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "SCHUTZKLASSE", "ARMOR POINTS": "RÜSTUNGSPUNKTE", "ARMOR TYPE": "RÜSTUNGSTYP", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Gegenstand nicht gefunden", "Arena/Armory/LevelReward/readyToUlockState": "Bereit", "Arena/Armory/LevelReward/unlockedState": "Bereit", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Not enough money", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Verlängerung", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} von {1}", "Arena/BlastGang/ResultScreenSwapSides": "Seitenwechsel", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Freundanfrage abbrechen", "Arena/CustomGame/Lobby/cancel invite to group": "Gruppeneinladung abbrechen", "Arena/CustomGame/Lobby/invite to friends": "Freundanfrage schicken", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Versuche übrig:", "Arena/CustomGames/Create/Maps": "Standorte", "Arena/CustomGames/Create/Modes": "Modi", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Untermodi", "Arena/CustomGames/Create/TournamentMode": "Turniermodus", "Arena/CustomGames/Create/TournamentSettings": "Turniereinstellungen", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Nehmen", "Arena/CustomGames/No servers found": "Keine offenen Lobbys gefunden", "Arena/CustomGames/Observers": "Zuschauer", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Trete dem Spiel bei", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Wechsel der operativen Aufgabe / Ref", "Arena/CustomGames/Settings": "Einstellungen", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Deaktiviert", "Arena/CustomGames/Settings/enable": "Aktiviert", "Arena/CustomGames/create/enter name": "Namen eingeben", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Region", "Arena/CustomGames/toggle/room name": "Lobbyname", "Arena/CustomGames/toggle/tournament": "Turnier", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Das Spiel wurde in deiner Abwesenheit beendet.", "Arena/EnterPresetName": "Name des Presets eingeben", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Waffen", "Arena/Rematching": "Kehre zum Matchmaking mit hoher Priorität zurück...", "Arena/Rematching/NoServer": "Aus technischen Gründen wurde kein Server gefunden. Zur Lobbysuche zurückkehren...", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azurblau", "Arena/TeamColor/azure_plural": "Azurblau", "Arena/TeamColor/blue": "Blau", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Blau", "Arena/TeamColor/fuchsia": "Pink", "Arena/TeamColor/fuchsia_plural": "Pink", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Grün", "Arena/TeamColor/grey": "Grau", "Arena/TeamColor/red": "Rot", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Rot", "Arena/TeamColor/white": "Weiß", "Arena/TeamColor/white_plural": "Weiß", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Presets freigeschaltet", "Arena/Tooltip/MapSelectedCounter": "Anzahl ausgewählter Orte", "Arena/Tooltip/MinMapCount {0}": "Wähle mehrere Orte aus. Du musst mindestens {0} Ort(e) ausgewählt haben.", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Gegenstand freischalten", "Arena/UI/APCItemBuyDescription": "Gegenstand kaufen?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset vergeben", "Arena/UI/Waiting": "Warten...", "Arena/Ui/ServerFounding": "Nach Server suchen...", + "Arena/Widgets/ team {0} capturing point": "Team {0} nimmt den Punkt ein", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Gerät wird platziert", "Arena/Widgets/Event/can activate object": "Platziere das Gerät", "Arena/Widgets/Event/deactivate object": "Deaktiviere das Gerät", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "BEREIT", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Starkes Gift", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bonus für den ersten Tagessieg: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} lädt dich ein", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Beliebiger Spielmodus", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Spielmodi", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Standorte", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Mehrere Spielmodi", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Bist du dir sicher, dass du das Spiel vorzeitig verlassen möchtest?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Du wirst das Spiel ohne jegliche Strafen verlassen", "ArenaUI/BattleMenu/MatchLeave": "SPIEL VERLASSEN", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finale", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Oberer Rücken", "ArmorVest": "Schutzweste", "ArmoryCondition/ArenaArmoryProgression": "Erreiche Waffenstufe {0} mit:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rang", "ArmoryCondition/CompletedDailyQuests": "Absolviere operative Tagesaufgaben:", "ArmoryCondition/CompletedWeeklyQuests": "Absolviere operative Wochenaufgaben:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Tauschgegenstände", "Battle category": "Kampfklasse", "BattleCategory": "Kampf", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK-Systeme", "BearAssaultoperations": "BEAR-Angriffsoperationen", "BearAuthority": "BEAR-Authorität", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Verringert Versicherungskosten um [{0:0.#%}]", "CharismaLevelingUpDescription": "Die Fähigkeit „Charisma“ wird indirekt durch das Verbessern der Fähigkeiten „Sorgfältigkeit“, „Wahrnehmung“ und „Intellekt“ verbessert.", "CharismaScavCaseDiscount": "Rabatt auf den Preisen der Scav-Kiste", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Die folgenden Gegenstände werden zum Speziallager für wichtige Gegenstände (Items) im Versteck geschoben:", "ChatScreen/QuestItemsMoved": "Die Gegenstände wurden erfolgreich verschoben.", "Check your email": "Bitte überprüfe deine E-Mail, die du zur Registrierung deines Accounts genutzt hast. Du solltest deine Geräte-ID innerhalb der nächsten 5 Minuten erhalten.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Gesperrt", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Zum Kauf auf der Website verfügbar", "ClothingPanel/InternalObtain": "Verkaufsbedingungen:", "ClothingPanel/LoyaltyLevel": "Händler\nAnsehensstufe:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Verbinde zum Server...", "Connection to server lost": "Serververbindung verloren", "Console": "Konsole", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Anzahl abgeschlossener Aufgaben", "Daily/Stat/VeryEasy": "Anzahl abgeschlossener sehr einfacher Aufgaben", "Daily/Stat/VeryHard": "Anzahl abgeschlossener sehr schwerer Aufgaben", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Gewinne ein Spiel", "DailyQuestName/ArenaWinRound": "Gewinne eine Spielrunde", "DailyQuestName/Completion": "Finde und Übergebe", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Feuer", "DamageType_GrenadeFragment": "Fragmentierung", "DamageType_HeavyBleeding": "Starke Blutung", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Aufschlagschaden", "DamageType_Landmine": "Landmine", "DamageType_LightBleeding": "Leichte Blutung", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Radioaktive Belastung", "DamageType_Sniper": "Scharfschützenschuss", "DamageType_Stimulator": "Nebenwirkung von Stimulator", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Vorheriger Schaden", "Day": "Tag", "DeactivateObject": "Deaktiviere das Gerät", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Deckungsfeuer", "ETraderServiceType/BtrItemsDelivery": "Gegenstände zum Versteck bringen", "ETraderServiceType/PlayerTaxi": "Mitfahren", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Ausrüstung", "EWishlistGroup/Hideout": "Versteck", "EWishlistGroup/Other": "Andere", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Kann {0} nicht zu {1} hinzufügen. Die modifizierte Waffe benötigt mehr Platz als vorhanden ist. Versuche die Waffe im Lager neu zu platzieren.", "Escape": "Zurück", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Aktuelle Waffe inspizieren", "Excellent standing": "ausgezeichnet", "ExceptionItem": "Dieser Händler kann diesen Gegenstand nicht reparieren.", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Im Raid gefunden", "Free cam": "Freie Kamera", "FreeChangeQuest": "Kostenfrei", + "FreeWeekend": "Free Weekend", "Freetrading": "Freier Handel", "Freetradingdescription": "Freier Handel", "Friend invite to {0} was sent succesfully": "Eine Freundschaftsanfrage wurde an {0} gesendet!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Kultisten-Ritualkreis", "Hideout/CircleOfCultists/MaxItemsCount": "Max. Gegenstände: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Die Kultisten können die Gabe nicht gewähren, solange du im Versteck bist.", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Dieser Gegenstand wird als Hilfswerkzeug verwendet. Er wird nach der Produktion in dein Versteck zurückgelegt.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Kellertreppe in Nakatani", "Nape": "Nacken", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "TAUSCHE GEGEN...", "NetworkError/SessionLostErrorMessage": "Sitzung verloren. Erneute Anmeldung erforderlich", "NetworkError/TooManyFriendRequestsHeader": "Zu viele Anfragen", @@ -17620,6 +17768,7 @@ "PVE settings": "KI-Einstellungen", "Pain": "Schmerzen", "Painkiller": "Auf Schmerzmittel", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Schauriger Horror", "PaperGesture": "Paper", "Paramedic": "Sanitäter", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Ersatzkosten:", "Quest/Change/TimeLeft": "Verbleibende Zeit für Abschluss der Aufgabe:", "Quest/Change/Tooltip": "Ersatzkosten für operative Aufgabe:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " und sterbe {0} mal", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " ohne mehr als {0} mal zu sterben", "QuestCondition/ArenaDeathCount/More{0}": " und sterbe mehr als {0} mal", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Finde Gegenstände der Kategorie „{0}“ in demselben Raid", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminiere{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " mit einem {0}-Schuss", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Entkomme mit den benötigten Gegenständen der „{0}“-Kategorie", "QuestCondition/Many{0}{1}": "{0} {1} mal", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "einem beliebigen Ort", "QuestCondition/SurviveOnLocation/ExitName": " durch Exfiltration via „{0}“", "QuestCondition/SurviveOnLocation/Location": "dem angegebenen Ort", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "Kopf", "QuestCount/Transfered": "übergeben", "QuestCount/Transferred": "Eliminiert:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Gesamtlautstärke:", "Settings/Sound/ReadyToMatchSoundVolume": "Annahmebildschirm-Lautstärke:", "Settings/UnavailablePressType": "Nicht verfügbar", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Schwere Muskelschmerzen", "Shack": "Kontrollpunkt zur Militärbasis", "Shadow visibility:": "Schatten-Sichtbarkeit:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "FEUERMODI", "Tactical": "Taktisches Gerät ein-/ausschalten", "Tactical clothing": "Taktische Bekleidung", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Halten", "TacticalInteractionMode/Press": "Drücken", "TacticalVest": "Tragesystem", @@ -18582,6 +18746,7 @@ "Task": "Aufgabe", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Aufgabenleistung", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "2 Teams mit je 5 Spielern kämpfen um den Sieg. Das Ziel ist es, das gegnerische Team zu eliminieren, bevor sie dich umbringen.", "TeamFightDescriptionShort": "Team-Deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Altes Sägewerk", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Sicher, dass du zum Zugdepot willst? Nur damit du Bescheid weißt, du kommst da ohne mich nicht wieder raus. Wenn der Preis für dich so passt und du die Zeit im Auge behältst klappt das, okay?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Zugdepot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alles klar, Endstation - Rodina-Kino. Hast du das Geld dafür?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina-Kino", + "Trading/Dialog/PlayerTaxi/p2/Description": "Wir fahren zur Stadtbahn. Das Geld dafür hast du, oder?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Stadtbahn", + "Trading/Dialog/PlayerTaxi/p3/Description": "Super, fahren wir direkt zum Stadtzentrum. Kannst dir sicher leisten.", + "Trading/Dialog/PlayerTaxi/p3/Name": "Stadtzentrum", + "Trading/Dialog/PlayerTaxi/p4/Description": "Unser Ziel ist der kollabierte Kran. Passt dir der Preis?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Kollabierter Kran", + "Trading/Dialog/PlayerTaxi/p5/Description": "Ah, der alte Scav-Kontrollpunkt. Machen wir. Gegen ein kleines Entgelt, versteht sich.", + "Trading/Dialog/PlayerTaxi/p5/Name": "Alter Scav-Kontrollpunkt", + "Trading/Dialog/PlayerTaxi/p6/Description": "Pinewood-Hotel also... sollte möglich sein. Ist der Preis zufriedenstellend?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood-Hotel", "Trading/Dialog/Quit": "Gehen", "Trading/Dialog/ServicePayoff{0}": "Alles klar, das sollte so passen. (übergebe „{0}“)", "Trading/Dialog/ToggleHistoryOff": "Verstecke Historie", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Zugang verwehrt", "Transit/InactivePoint": "Transit nicht verfügbar", "Transit/Interaction": "Benutzen", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Zittern", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventar-Zeilen im Lager", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Dein Lager im Versteck wird um die neuen Zeilen erweitert.\nDiese Änderung wird später angewandt (besuche unsere Webseite für weitere Details).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "Aus", "UI/Settings/NVidiaReflexMode/On": "An", "UI/Settings/NVidiaReflexMode/OnAndBoost": "An + Boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Standard", "UI/Settings/NotificationType/WebSocket": "WebSocket", "UI/Settings/OtherActions": "Andere Aktionen", "UI/Settings/Rest": "Sonstiges", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "W-Listen-Benachrichtigungen", "UI/Skills/Charisma/CharismaDiscount": "Rabatt via Charisma-Fähigkeit", "UI/Standing:": "Händleransehen:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Unbekannter Fehler", "UnknownErrorMessage": "Ein unbekannter Fehler ist aufgetreten. Schließe das Spiel und sende einen Fehlerbericht.", "UnknownToxin": "Unbekanntes Toxin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "MUNITION ENTLADEN", "Unloadmagazine": "Magazin entnehmen", "Unlock": "Entsperren", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Die Fähigkeit „Waffenmodifikation im Einsatz“ erhöht die Modifikations-Ergonomie und reduziert die Schalldämpferabnutzung.", "WeaponMounting": "Waffe anlehnen", "WeaponPunch": "Schlag mit der Schulterstütze", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Verringert Waffenrückstoß um [{0:0.#%}]", "WeaponReloadBuff": "Erhöht Nachladegeschwindigkeit um [{0:0.#%}]", "WeaponStiffHands": "Erhöht die Waffen-Ergonomie um [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Du kannst den Flohmarkt aktuell nicht nutzen.", "You can't use ragfair now": "Du kannst den Flohmarkt aktuell nicht nutzen.", "You can't use that symbol": "Du kannst dieses Zeichen nicht verwenden", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Die Texturqualität kann während des Raids nicht geändert werden.", "You cannot take off a dogtag from a friend or group member": "Du kannst Dogtags von Freunden oder Gruppenmitgliedern nicht an dich nehmen", "You don't have some items to finish the deal": "Dir fehlen für das Geschäft benötigte Gegenstände.", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "EXP", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Löschen", "arena/contextInteractions/card/edit": "Bearbeiten", "arena/contextInteractions/card/inspect default preset": "Untersuchen", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "SPIELMODUS (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Verlängerung", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Doppelte Presets:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Verlängerung konfigurieren", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Doppelte Presets erlauben", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "EINLADUNG ZUR INDIVIDUELLEN LOBBY VON {0}", "arena/customGames/notify/GameRemoved": "Lobby wurde aufgelöst", "arena/customgames/errors/notification/gamealreadystarted": "Spiel hat bereits begonnen", "arena/customgames/popup/refreshdailyquest": "Operative Aufgabe ersetzen?", "arena/customgames/popups/attemptscountleft:": "Versuche übrig:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP ÜBRIG", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "WÄHLE DEN STANDORT AUS", "arena/matching/SelectGametype": "WÄHLE DEN MODUS AUS", "arena/matching/SelectRankedGamemode": "RANGLISTEN-MODUS AUSWÄHLEN", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYP", "arena/matching/UnavailableReason": "Nicht verfügbar", "arena/matching/buyPreset": "KAUFE PRESET", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "Slots freigeschaltet:", "arena/questLogTemplate/gameModes": "Spielmodi", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "Spielmodus", "arena/selection/tiers": "Klasse", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "KOLLEKTION", "arena/tab/FAVORITES": "FAVORITEN", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RANGLISTE", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP-Münze. Wird verwendet, um Ausrüstung für Presets freizuschalten und um Ausrüstung in EFT zu kaufen. GP-Münzen können in Arena für das Erledigen von operativen Aufgaben verdient werden.", "arena/tooltip/OverallMatches": "Anzahl aller gespielten Ranglisten- und unbewerteten Spiele.", "arena/tooltip/Presets": "Presets", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Deine insgesamte Siegesrate, berechnet aus den Siegen und Niederlagen in Ranglisten- und unbewerteten Spielen.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Absolviere operative Tagesaufgaben:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Absolviere operative Wochenaufgaben:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Absolviere operative Tagesaufgaben:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Absolviere operative Wochenaufgaben:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Absolviere operative Tagesaufgaben:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Absolviere operative Wochenaufgaben:", "arenaui/presetview/lockedpreset": "Preset nicht verfügbar", "arm broke": "Du hast dir den Arm gebrochen!", "assaultKills": "Abschüsse mit Sturmgewehre", @@ -19643,6 +19860,29 @@ "camora_003": "Kammer 4", "camora_004": "Kammer 5", "camora_005": "Kammer 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Spieler {0] hat die Freundschaftsanfrage zurückgezogen.", "cancelfriendrequest": "Freundschaftsanfrage zurückziehen", "captcha/too frequent attempts": "Die Versuche sind zu häufig. Zugriff auf den Flohmarkt und die Händler ist aktuell nicht möglich. Versuche es später erneut.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Abwasserleitung", "lab_Vent": "Lüftungsschacht", "labir_exit": "The Way Up", + "laboratory": "Labs", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Letzte Spielsitzung", "leader": "Anführer", @@ -20358,6 +20599,7 @@ "un-sec": "Nördliche UN-Straßensperre", "undefined": "", "uninstall": "DEINSTALLIEREN", + "unlock requires:": "Freischaltung benötigt:", "unlockedSafes": "Aufgeschlossene Tresore", "unpack": "entpacken", "usecKills": "Anzahl eliminierter USECs", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Das Zentrum für Geschäfte innerhalb von Tarkov, Sitz des TerraGroup Konglomerats. Dies ist der Ort, an dem alles seinen Ursprung hatte.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "Das Zentrum für Geschäfte innerhalb von Tarkov, Sitz des TerraGroup Konglomerats. Dies ist der Ort, an dem alles seinen Ursprung hatte.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "Finde eine 6B13 Schutzweste mit 0-50% Haltbarkeit im Raid", - "5ae9bc6e86f7746e0026222c": "Übergebe die Schutzweste mit 0-50% Haltbarkeit", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Finde eine 6B13 Schutzweste mit 50-100% Haltbarkeit im Raid", - "5ae9bea886f77468ab400e64": "Übergebe die Schutzweste mit 50-100% Haltbarkeit", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operation Aquarius – Teil 2", + "664ca9f577af670dad0ad339 description": "Schön dich wieder zu sehen. Meine Leute haben herausgefunden, wer in die illegalen Operationen mit dem sauberen Wasser involviert war. Dank deiner Informationen natürlich. Kurz gesagt, es ist die Scav-Gang, die vom Zollgelände aus operiert. Ich fühle mich nicht wohl mit dieser Art von Bitte, aber es stehen Leben auf dem Spiel und diese Gauner machen einfach weiter mit ihrem dreckigen Geschäft. Wir müssen ihnen Angst einjagen. Ich fürchte du musst sie schmerzhaft sterben lassen, damit sie merken was sie getan haben und wofür sie bestraft werden. Machst du das?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Du kannst stolz auf dich sein – auch wenn du heute Menschen das Leben genommen hast, man wird sie wohl nicht vermissen. Du hast heute vielen Zivilisten eine Chance zu überleben gegeben.", + "664ca9f577af670dad0ad33d": "Eliminiere Scavs in Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operation Aquarius – Teil 2", + "6659a9716b1be75165030e4e description": "Schön dich wieder zu sehen. Meine Leute haben herausgefunden, wer in die illegalen Operationen mit dem sauberen Wasser involviert war. Dank deiner Informationen natürlich. Kurz gesagt, es ist die Scav-Gang, die vom Zollgelände aus operiert. Ich fühle mich nicht wohl mit dieser Art von Bitte, aber es stehen Leben auf dem Spiel und diese Gauner machen einfach weiter mit ihrem dreckigen Geschäft. Wir müssen ihnen Angst einjagen. Ich fürchte du musst sie schmerzhaft sterben lassen, damit sie merken was sie getan haben und wofür sie bestraft werden. Machst du das?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Du kannst stolz auf dich sein – auch wenn du heute Menschen das Leben genommen hast, man wird sie wohl nicht vermissen. Du hast heute vielen Zivilisten eine Chance zu überleben gegeben.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Alles sicher sagst du? Dann gute Arbeit, Soldat.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Gut.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Alle benötigten Gegenstände sind auf der Liste. Finde sie und bring’ sie an den Ablageort.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Es gibt andere Aufgaben, auf Kosten meiner Geduld.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Der beste Freund des PMC", "6512ea46f7a078264a4376e4 description": "Überlebe und entkomme als PMC von Interchange über den Scav Co-Op-Exfil", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/hu.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/hu.json index 49246b78..06a861db 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/hu.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/hu.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,11 +14609,14 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", "678fa929819ddc4c350c0317 Name": "Valve handwheel", - "678fa929819ddc4c350c0317 ShortName": "handwheel", + "678fa929819ddc4c350c0317 ShortName": "Wheel", "678fa929819ddc4c350c0317 Description": "A massive handwheel removed from some kind of valve. It must have been used to regulate the water or gas supply in the Knossos underground facilities.", "679b944d597ba2ed120c3d3c Name": "Last Breath poster", "679b944d597ba2ed120c3d3c ShortName": "Last Breath", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VOIP is unavailable in the offline mode", " kg": "Kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Are you sure you want to remove the modified equipment?", "APC/CustomizationTab": "Customization", "APC/EnterName": "Enter name", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Quick access", "APC/Locked": "Locked", "APC/PurchasedStatesAll": "All", "APC/ReadyToUlock": "Unlockable", "APC/Unlocked": "Unlocked", "APC/ViewPreset": "View", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Firepower{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Assault carbines", "APCFilter/AssaultRifles": "Assault rifles", "APCFilter/AssaultScope": "Assault scopes", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Auxiliary parts", "APCFilter/Barrel": "Barrels", "APCFilter/Bipod": "Bipods", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Charging handles", "APCFilter/Collimator": "Reflex sights", "APCFilter/CompactCollimator": "Compact reflex sights", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Melee weapons", "APCFilter/Mount": "Mounts", "APCFilter/Muzzle": "Muzzle devices", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Muzzle adapters", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Optics", "APCFilter/PistolGrip": "Pistol grips", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistols", "APCFilter/Receiver": "Dust covers, Receivers, Trigger groups", "APCFilter/SMGs": "Submachine guns", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LEVELING", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transfer to EFT is unavailable", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "PÁNCÉL OSZTÁLYA", "ARMOR POINTS": "PÁNCÉL PONTOK", "ARMOR TYPE": "ARMOR TYPE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item not found", "Arena/Armory/LevelReward/readyToUlockState": "Ready", "Arena/Armory/LevelReward/unlockedState": "Ready", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Not enough money", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Overtime", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} of {1}", "Arena/BlastGang/ResultScreenSwapSides": "Switching sides", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancel friend list invite", "Arena/CustomGame/Lobby/cancel invite to group": "Cancel group invite", "Arena/CustomGame/Lobby/invite to friends": "Invite to friend list", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Attempts left:", "Arena/CustomGames/Create/Maps": "Locations", "Arena/CustomGames/Create/Modes": "Modes", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submodes", "Arena/CustomGames/Create/TournamentMode": "Tournament mode", "Arena/CustomGames/Create/TournamentSettings": "Tournament settings", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Take", "Arena/CustomGames/No servers found": "No active servers found", "Arena/CustomGames/Observers": "Spectators", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entering the server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Operational task replacement / Ref", "Arena/CustomGames/Settings": "Settings", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Disabled", "Arena/CustomGames/Settings/enable": "Enabled", "Arena/CustomGames/create/enter name": "Enter name", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Region", "Arena/CustomGames/toggle/room name": "Room name", "Arena/CustomGames/toggle/tournament": "Tournament", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Match has ended while you were away", "Arena/EnterPresetName": "Enter preset name", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Weapon", "Arena/Rematching": "Returning to matching with high priority", "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azure", "Arena/TeamColor/azure_plural": "Azure", "Arena/TeamColor/blue": "Blue", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Blue", "Arena/TeamColor/fuchsia": "Pink", "Arena/TeamColor/fuchsia_plural": "Pink", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Green", "Arena/TeamColor/grey": "Grey", "Arena/TeamColor/red": "Red", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Red", "Arena/TeamColor/white": "White", "Arena/TeamColor/white_plural": "White", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", + "Arena/Widgets/ team {0} capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Planting the device", "Arena/Widgets/Event/can activate object": "Plant the device", "Arena/Widgets/Event/deactivate object": "Deactivate the device", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "READY", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Strong Poison", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Daily first win bonus: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} invites you to battle", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Any mode", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Game mode(s)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Locations", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiple game modes", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "LEAVE THE MATCH", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Upper back", "ArmorVest": "Testpáncél\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rank", "ArmoryCondition/CompletedDailyQuests": "Complete daily tasks:", "ArmoryCondition/CompletedWeeklyQuests": "Complete weekly tasks:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Üzletelés", "Battle category": "Harc kategória", "BattleCategory": "Harc", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK Systems", "BearAssaultoperations": "BEAR Assault Operations", "BearAuthority": "BEAR Authority", @@ -15675,7 +15789,7 @@ "Beyond Fuel Tank": "Sziklák közötti átjáró", "Binaural audio settings will be applied after raid restart.": "A binaurális hang beállításai a játék újraindítása után lépnek életbe.", "BitcoinFarm": "BITCOIN FARM", - "BlastGangDescription": "A team battle in a 5v5 format. A classic Search and Destroy game mode with one side attacking and the other defending.", + "BlastGangDescription": "A team battle in the 5v5 format. A classic Search and Destroy game mode with one side attacking and the other defending.", "BlindShootAbove": "Fej fölötti vaktüzelés", "BlindShootRight": "Jobb oldali vaktüzelés", "Blood": "Vér", @@ -15812,13 +15926,34 @@ "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0%}]", "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "The following items will be moved to the task item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to task item stash", "Check your email": "Please check the email you used to register this account. You will receive the Device ID within 5 minues from now.", "CheckAmmo": "Lőszer ellenőrzése", "CheckChamber": "Töltényűr ellenőrzése\\Hiba elhárítása", "CheckFireMode": "Tüzelési mód ellenőrzése", - "CheckPointDescription": "Fight for control over the game location along with your team by capturing and holding the objectives.", + "CheckPointDescription": "A team battle in the 5v5 format. Fight for control over the game location along with your team by capturing and holding the objectives.", "CheckTimeSpeed": "Sebesség módosító ellenőrzése", "Chest": "MELLKAS", "Choose Look": "Choose appearance", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Unavailable", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Available for purchase on the website", "ClothingPanel/InternalObtain": "Trader purchase conditions:", "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", @@ -15908,7 +16044,7 @@ "Colorfulness:": "Színesség:", "Combat": "Harc", "ComeWithMeGesture": "Follow me", - "Commission": "Commission", + "Commission": "Ref's fee", "Common stats": "Közös statisztika", "CommonValue": "A tárolóban lévő tárgyak összértéke", "Compass": "Iránytű", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Kapcsolódás a szerverhez...", "Connection to server lost": "A kiszolgálóval megszakadt a kapcsolat", "Console": "Konzol", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total tasks completed", "Daily/Stat/VeryEasy": "Total very easy tasks completed", "Daily/Stat/VeryHard": "Total very hard tasks completed", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Win a match", "DailyQuestName/ArenaWinRound": "Win a round", "DailyQuestName/Completion": "Find and transfer", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Tűz", "DamageType_GrenadeFragment": "Repesz", "DamageType_HeavyBleeding": "Súlyos vérzés", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Ütésből szerzett sérülés", "DamageType_Landmine": "Taposóakna", "DamageType_LightBleeding": "Könnyű vérzés", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Radioaktív behatás", "DamageType_Sniper": "Mesterlövész okozta sérülés", "DamageType_Stimulator": "Stimuláns mellékhatás", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Előző sérülés", "Day": "Nap", "DeactivateObject": "Deactivate the device", @@ -16321,7 +16463,7 @@ "EFT/UI/Trading/Arenaefttransfer/Storage": "Stash", "EFT/UI/Trading/Arenaefttransfer/Timelefttoresetlimit": "Time until limits reset", "EFT/UI/Trading/Arenaefttransfer/Timeletftoresetlimit": "Time until limits reset", - "EFT/UI/Trading/Arenaefttransfer/Transfertax": "Commission", + "EFT/UI/Trading/Arenaefttransfer/Transfertax": "Fee", "EFenceStandingSource/AggressorKill": "Favors to Scavs", "EFenceStandingSource/BossHelp": "Boss assistance", "EFenceStandingSource/BossKill": "Penalty for killing Bosses", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Cover fire", "ETraderServiceType/BtrItemsDelivery": "Move items to stash", "ETraderServiceType/PlayerTaxi": "Take a ride", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipment", "EWishlistGroup/Hideout": "Hideout", "EWishlistGroup/Other": "Other", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Cannot add {0} to {1}. The modified weapon will take more space than is available. Try repositioning weapon to other part of your stash.", "Escape": "Vissza", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Inspect current weapon", "Excellent standing": "kiváló", "ExceptionItem": "This trader can't repair that item", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Raidben talált", "Free cam": "Free camera", "FreeChangeQuest": "Free of charge", + "FreeWeekend": "Free Weekend", "Freetrading": "Szabad üzletelés", "Freetradingdescription": "Szabad üzletelés", "Friend invite to {0} was sent succesfully": "Sikeresen elküldted a barátnak jelölést {0} nak/nek!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cultist Circle", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Cultists can't bestow their Gift while you're in the Hideout.", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17116,7 +17263,7 @@ "Labyrinth": "The Labyrinth", "Last game session": "Utolsó játék", "LastHero": "LastHero", - "LastHeroDescription": "A fight with the opponents in endless gunfight. There will be only one winner.", + "LastHeroDescription": "A chaotic free-for-all gunfight. There will be only one winner.", "LastHeroDescriptionShort": "You are on your own", "Launcher": "Rocket Launchers", "LauncherDescription": "Gránátvető kezelési képességek", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "Tarkó", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "REQUIRED SEARCH", "NetworkError/SessionLostErrorMessage": "Session lost. Re-login required", "NetworkError/TooManyFriendRequestsHeader": "Túl sok kérés", @@ -17620,6 +17768,7 @@ "PVE settings": "PVE settings", "Pain": "Fájdalom", "Painkiller": "Fájdalomcsillapítókon", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Chilling horror", "PaperGesture": "Paper", "Paramedic": "Mentős", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Replacement cost:", "Quest/Change/TimeLeft": "Time remaining to complete the task:", "Quest/Change/Tooltip": "Operational task replacement cost:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Find items from the category in one raid: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminate{kill}{zone}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " with a {0} shot", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extract with the required items from the category: {0}", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17852,11 +18011,14 @@ "QuestCondition/Preset/Enemy/PresetType{0}": " who are playing as {0}", "QuestCondition/Preset/Player/PresetId{0}": " playing the {0} preset", "QuestCondition/Preset/Player/PresetType/Any": " playing as any preset", - "QuestCondition/Preset/Player/PresetType{0}": " playing as {0}", + "QuestCondition/Preset/Player/PresetType{0}": " while playing as {0}", "QuestCondition/SurviveOnLocation": "Survive on {location}{exitName}", "QuestCondition/SurviveOnLocation/Any": "any location", "QuestCondition/SurviveOnLocation/ExitName": " by extracting through the \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "the location", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "head", "QuestCount/Transfered": "transferred", "QuestCount/Transferred": "Eliminated:", @@ -18256,7 +18418,7 @@ "Settings/Graphics/DLSSLockThis": "DLSS is on", "Settings/Graphics/DLSSModeTooltip": "NVIDIA DLSS uses AI Super Resolution to provide the highest possible frame rates at maximum graphics settings. DLSS requires an NVIDIA RTX graphics card.", "Settings/Graphics/DLSSNotSupported": "DLSS is not supported on your system", - "Settings/Graphics/DLSSPreset": "DLSS Preset", + "Settings/Graphics/DLSSPreset": "DLSS Preset:", "Settings/Graphics/DLSSPresetTooltip": "Specific DLSS presets.", "Settings/Graphics/DLSSWrongSampling": "Disable Resampling to enable DLSS", "Settings/Graphics/FSR2LockThis": "This setting is unavailable while FSR 2.2 is on", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Overall volume:", "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Nem elérhető", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base ellenőrző pont", "Shadow visibility:": "Árnyék láthatóság:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "TÜZELÉSI MÓDOK", "Tactical": "Toggle tactical devices", "Tactical clothing": "Taktikai ruházat", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "Málhamellény", @@ -18582,8 +18746,9 @@ "Task": "Feladat", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Feladat teljesítmény", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", - "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", + "TeamFightDescription": "A team battle in the 5v5 format. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Team deathmatch", "TeamTab": "Teams", "Teamkills": "Teamkills", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Interact", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Remegés", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventory slot lines in stash", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "ki", "UI/Settings/NVidiaReflexMode/On": "be", "UI/Settings/NVidiaReflexMode/OnAndBoost": "be és rásegítés", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Alapértelmezett", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Other actions", "UI/Settings/Rest": "Other", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "Charisma skill discount", "UI/Standing:": "Trader standing:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Ismeretlen hiba", "UnknownErrorMessage": "Unknown error occurred. Close the game and submit a bug report.", "UnknownToxin": "Ismeretlen toxin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "LŐSZER KIÜRÍTÉSE", "Unloadmagazine": "Tár kivétele", "Unlock": "Nyitás", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Az alap fegyver átalakítási képesség, javítja a módosítás ergonómiai értékét és csökkenti a hangtompító elhasználódást, mozgás közben.", "WeaponMounting": "Mount weapon", "WeaponPunch": "Közelharc tussal", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0%}]", "WeaponReloadBuff": "Increases reload speed by [{0:0%}]", "WeaponStiffHands": "Increases weapon ergonomics by [{0:0%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Jelenleg nem használhatod a bolhapiacot", "You can't use ragfair now": "You can't use Flea Market now", "You can't use that symbol": "Ez a karakter nem használható", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Nem módosíthatod a textúrákat raid közben.", "You cannot take off a dogtag from a friend or group member": "Nem veheted el a dögcédulát egy baráttól vagy egy csoport tagtól", "You don't have some items to finish the deal": "Nincs meg a megfelelő tárgy az üzlet befejezéséhez", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicate presets:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Attempts left:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP LEFT", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECT ARENA", "arena/matching/SelectGametype": "SELECT GAME TYPE", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Unavailable", "arena/matching/buyPreset": "SELECT PRESET", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "FAVORITES", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Weekly tasks:", "arenaui/presetview/lockedpreset": "Preset unavailable", "arm broke": "You broke your arm", "assaultKills": "Gépkarabélyos ölések", @@ -19643,6 +19860,29 @@ "camora_003": "Chamber 4", "camora_004": "Chamber 5", "camora_005": "Chamber 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Player has cancelled the friend request", "cancelfriendrequest": "Barátjelölés elutasítása", "captcha/too frequent attempts": "The attempts are too frequent. Access to the flea market and traders is currently unavailable. Try again later.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Szennyvíz cső", "lab_Vent": "Szellőző járat", "labir_exit": "The Way Up", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Utolsó játék", "leader": "Vezető", @@ -20358,6 +20599,7 @@ "un-sec": "Northern UN roadblock", "undefined": "", "uninstall": "ELTÁVOLÍT", + "unlock requires:": "a feloldáshoz szükséges:", "unlockedSafes": "Kinyitott széfek", "unpack": "unpack", "usecKills": "Megölt USEC-ek", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "Obtain 6B43 6A Zabralo-Sh body armor in 0-50% durability", - "5ae9bc6e86f7746e0026222c": "Hand over the armor", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Obtain 6B43 6A Zabralo-Sh body armor in 50-100% durability", - "5ae9bea886f77468ab400e64": "Hand over the armor", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operation Aquarius - Part 2", + "664ca9f577af670dad0ad339 description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "664ca9f577af670dad0ad33d": "Eliminate Scavs on Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operation Aquarius - Part 2", + "6659a9716b1be75165030e4e description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Good.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "All required items are on the list. Find them and bring them to the drop spot.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "There are other tasks available, at the cost of my patience.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC's Best Friend", "6512ea46f7a078264a4376e4 description": "Survive and extract from Interchange through the Scav Co-Op extraction while playing as a PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -28815,79 +29521,79 @@ "6512f16bde333c33d5127cbc description": "Eliminate one of the hooded men with their own knife at night time while playing as a PMC", "6512f16bde333c33d5127cbc successMessage": "", "6512f1e3be73cc7f07358ed5 name": "Art of Style", - "6512f1e3be73cc7f07358ed5 description": "Eliminate Killa for the first time while playing as a PMC", + "6512f1e3be73cc7f07358ed5 description": "Neutralize Killa for the first time while playing as a PMC", "6512f1e3be73cc7f07358ed5 successMessage": "", "6513eb6e0dc723592b0f9095 name": "Call Your Brother", "6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC", "6513eb6e0dc723592b0f9095 successMessage": "", "6513ed89cf2f1c285e606068 name": "Silence of the Sawmill", - "6513ed89cf2f1c285e606068 description": "Eliminate Shturman for the first time while playing as a PMC", + "6513ed89cf2f1c285e606068 description": "Neutralize Shturman for the first time while playing as a PMC", "6513ed89cf2f1c285e606068 successMessage": "", "6513ee11a3dd9b6aa7159b4a name": "Deal to Make", - "6513ee11a3dd9b6aa7159b4a description": "Eliminate Reshala for the first time while playing as a PMC", + "6513ee11a3dd9b6aa7159b4a description": "Neutralize Reshala for the first time while playing as a PMC", "6513ee11a3dd9b6aa7159b4a successMessage": "", "6513eec00dc723592b0f90cc name": "Grouse Hunting", - "6513eec00dc723592b0f90cc description": "Eliminate Glukhar for the first time while playing as a PMC", + "6513eec00dc723592b0f90cc description": "Neutralize Glukhar for the first time while playing as a PMC", "6513eec00dc723592b0f90cc successMessage": "", "6513efa1b49e3253755f47eb name": "Sanatorium Orderly", - "6513efa1b49e3253755f47eb description": "Eliminate Sanitar for the first time while playing as a PMC", + "6513efa1b49e3253755f47eb description": "Neutralize Sanitar for the first time while playing as a PMC", "6513efa1b49e3253755f47eb successMessage": "", "6513f0a10dc723592b0f90cf name": "Funny Graveyard Keeper", - "6513f0a10dc723592b0f90cf description": "Eliminate Kaban for the first time while playing as a PMC", + "6513f0a10dc723592b0f90cf description": "Neutralize Kaban for the first time while playing as a PMC", "6513f0a10dc723592b0f90cf successMessage": "", "6513f1feec10ff011f17c7ea name": "Now There Are Three of Them!", - "6513f1feec10ff011f17c7ea description": "Eliminate Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", + "6513f1feec10ff011f17c7ea description": "Neutralize Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", "6513f1feec10ff011f17c7ea successMessage": "", "6513f28cb49e3253755f47f3 name": "The Blind Watcher", - "6513f28cb49e3253755f47f3 description": "Eliminate Zryachiy for the first time while playing as a PMC", + "6513f28cb49e3253755f47f3 description": "Neutralize Zryachiy for the first time while playing as a PMC", "6513f28cb49e3253755f47f3 successMessage": "", "65140ab8ec10ff011f17cc10 name": "What Not To Wear", - "65140ab8ec10ff011f17cc10 description": "Eliminate Killa 15 times while playing as a PMC", + "65140ab8ec10ff011f17cc10 description": "Neutralize Killa 15 times while playing as a PMC", "65140ab8ec10ff011f17cc10 successMessage": "", "65140b55cf2f1c285e606414 name": "Hammer and Scythe", - "65140b55cf2f1c285e606414 description": "Eliminate Tagilla 15 times while playing as a PMC", + "65140b55cf2f1c285e606414 description": "Neutralize Tagilla 15 times while playing as a PMC", "65140b55cf2f1c285e606414 successMessage": "", "65140bbec31fcb0e163577b9 name": "King of the Sawmill", - "65140bbec31fcb0e163577b9 description": "Eliminate Shturman 15 times while playing as a PMC", + "65140bbec31fcb0e163577b9 description": "Neutralize Shturman 15 times while playing as a PMC", "65140bbec31fcb0e163577b9 successMessage": "", "65140c00b1c08b0feb216d50 name": "This Is a Tarkov Showdown", - "65140c00b1c08b0feb216d50 description": "Eliminate Reshala 15 times while playing as a PMC", + "65140c00b1c08b0feb216d50 description": "Neutralize Reshala 15 times while playing as a PMC", "65140c00b1c08b0feb216d50 successMessage": "", "65141032a3dd9b6aa7159ed3 name": "Another Cold Case", - "65141032a3dd9b6aa7159ed3 description": "Eliminate Glukhar 15 times while playing as a PMC", + "65141032a3dd9b6aa7159ed3 description": "Neutralize Glukhar 15 times while playing as a PMC", "65141032a3dd9b6aa7159ed3 successMessage": "", "651411f1cf2f1c285e606423 name": "Who Called the Doctor?", - "651411f1cf2f1c285e606423 description": "Eliminate Sanitar 15 times while playing as a PMC", + "651411f1cf2f1c285e606423 description": "Neutralize Sanitar 15 times while playing as a PMC", "651411f1cf2f1c285e606423 successMessage": "", "651412b8c31fcb0e163577c5 name": "Old Dog With Old tricks", - "651412b8c31fcb0e163577c5 description": "Eliminate Kaban 15 times while playing as a PMC", + "651412b8c31fcb0e163577c5 description": "Neutralize Kaban 15 times while playing as a PMC", "651412b8c31fcb0e163577c5 successMessage": "", "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", - "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", + "6514134eec10ff011f17cc26 description": "Neutralize Knight 15 times while playing as a PMC", "6514134eec10ff011f17cc26 successMessage": "", "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", - "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", + "651413e9c31fcb0e163577c9 description": "Neutralize Zryachiy 15 times while playing as a PMC", "651413e9c31fcb0e163577c9 successMessage": "", "6514143d59647d2cb3213c93 name": "Master of ULTRA", - "6514143d59647d2cb3213c93 description": "Eliminate Killa 100 times while playing as a PMC", + "6514143d59647d2cb3213c93 description": "Neutralize Killa 100 times while playing as a PMC", "6514143d59647d2cb3213c93 successMessage": "", "651415feb49e3253755f4b68 name": "Long Live the King!", - "651415feb49e3253755f4b68 description": "Eliminate every Boss once while playing as a PMC", + "651415feb49e3253755f4b68 description": "Neutralize every Boss once while playing as a PMC", "651415feb49e3253755f4b68 successMessage": "", - "651414b741f4ad07ba7d55f9": "Locate and eliminate Kaban", - "651414eb3ec86f33dd54d978": "Locate and eliminate Reshala", - "651415067c262d47d685c6d9": "Locate and eliminate Glukhar", - "6514151b2e8590fc2ac1d859": "Locate and eliminate Killa", - "6514151da13f174e3f52bc6e": "Locate and eliminate Knight", - "65141520143ef6349ad5f071": "Locate and eliminate Shturman", - "6514156e21e1d85a7d029f8a": "Locate and eliminate Sanitar", - "65141570b18e12f60ba2e450": "Locate and eliminate Tagilla", - "65141571dbcb26761524e977": "Locate and eliminate Zryachiy", - "651415cfe97ba875119ef01c": "Locate and eliminate Big Pipe", - "651415d13c02ff4aa9e9a426": "Locate and eliminate Birdeye", + "651414b741f4ad07ba7d55f9": "Locate and neutralize Kaban", + "651414eb3ec86f33dd54d978": "Locate and neutralize Reshala", + "651415067c262d47d685c6d9": "Locate and neutralize Glukhar", + "6514151b2e8590fc2ac1d859": "Locate and neutralize Killa", + "6514151da13f174e3f52bc6e": "Locate and neutralize Knight", + "65141520143ef6349ad5f071": "Locate and neutralize Shturman", + "6514156e21e1d85a7d029f8a": "Locate and neutralize Sanitar", + "65141570b18e12f60ba2e450": "Locate and neutralize Tagilla", + "65141571dbcb26761524e977": "Locate and neutralize Zryachiy", + "651415cfe97ba875119ef01c": "Locate and neutralize Big Pipe", + "651415d13c02ff4aa9e9a426": "Locate and neutralize Birdeye", "657b1f2e057c1607e83c2c26": " Locate and eliminate Kollontai", - "657b21a3564a9197c2778f5a": "Locate and eliminate Kollontai", - "66c34bbbd5d174a3c9cd1382": "Locate and eliminate Partisan", + "657b21a3564a9197c2778f5a": "Locate and neutralize Kollontay", + "66c34bbbd5d174a3c9cd1382": "Locate and neutralize Partisan", "6514174fb1c08b0feb216d73 name": "Chris's Heir", "6514174fb1c08b0feb216d73 description": "Eliminate a PMC operative with a headshot from over 500 meters away while playing as a PMC", "6514174fb1c08b0feb216d73 successMessage": "", @@ -28952,10 +29658,10 @@ "65145cbc303df252af1c73d5 description": "Start a raid without any weapon", "65145cbc303df252af1c73d5 successMessage": "", "6527d2e2c656a951ad1528c3 name": "Smoke the Peace Pipe", - "6527d2e2c656a951ad1528c3 description": "Eliminate Big Pipe 15 times while playing as a PMC", + "6527d2e2c656a951ad1528c3 description": "Neutralize Big Pipe 15 times while playing as a PMC", "6527d2e2c656a951ad1528c3 successMessage": "", "6527d3aac656a951ad1528ce name": "The Red Book", - "6527d3aac656a951ad1528ce description": "Eliminate Birdeye 15 times while playing as a PMC", + "6527d3aac656a951ad1528ce description": "Neutralize Birdeye 15 times while playing as a PMC", "6527d3aac656a951ad1528ce successMessage": "", "6527ee4a647c29201011defe name": "You Are Not My Brother", "6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav", @@ -28963,21 +29669,21 @@ "6529097eccf6aa5f8737b3d0 name": "Snowball", "6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC", "6529097eccf6aa5f8737b3d0 successMessage": "", - "652909ac342bdd14e0bcb1bb": "Locate and eliminate Kaban", - "652909cd3f9e480e9d1a3489": "Locate and eliminate Reshala", - "652909ef8cb2a699ccbc2cf0": "Locate and eliminate Glukhar", - "65290de6e76953256668112c": "Locate and eliminate Killa", - "65290e22f16e69470b5d6145": "Locate and eliminate Knight", - "65290e51fee42b19970ccbfd": "Locate and eliminate Shturman", - "65290e8d6193b1a4e12a7967": "Locate and eliminate Sanitar", - "65290ed47ef294bc6eb7ee85": "Locate and eliminate Tagilla", - "65290f1579363c7810e7233d": "Locate and eliminate Zryachiy", - "65290f3fd7c6005f6d78f453": "Locate and eliminate Big Pipe", - "65290f50897943fb9bf8955d": "Locate and eliminate Birdeye", - "657b1e91958145eb193f9a40": "Locate and eliminate Kollontai", - "66c34ab2c3eee7ac0c41d160": "Locate and eliminate Partisan", + "652909ac342bdd14e0bcb1bb": "Locate and neutralize Kaban", + "652909cd3f9e480e9d1a3489": "Locate and neutralize Reshala", + "652909ef8cb2a699ccbc2cf0": "Locate and neutralize Glukhar", + "65290de6e76953256668112c": "Locate and neutralize Killa", + "65290e22f16e69470b5d6145": "Locate and neutralize Knight", + "65290e51fee42b19970ccbfd": "Locate and neutralize Shturman", + "65290e8d6193b1a4e12a7967": "Locate and neutralize Sanitar", + "65290ed47ef294bc6eb7ee85": "Locate and neutralize Tagilla", + "65290f1579363c7810e7233d": "Locate and neutralize Zryachiy", + "65290f3fd7c6005f6d78f453": "Locate and neutralize Big Pipe", + "65290f50897943fb9bf8955d": "Locate and neutralize Birdeye", + "657b1e91958145eb193f9a40": "Locate and neutralize Kollontay", + "66c34ab2c3eee7ac0c41d160": "Locate and neutralize Partisan", "655b49bc91aa9e07687ae47c name": "Justice", - "655b49bc91aa9e07687ae47c description": "Eliminate Kollontay for the first time while playing as a PMC", + "655b49bc91aa9e07687ae47c description": "Neutralize Kollontay for the first time while playing as a PMC", "655b49bc91aa9e07687ae47c successMessage": "", "655b4a576689c676ce57acb6 name": "True Crime", "655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC", @@ -29028,10 +29734,10 @@ "66c328aca91e7d66fa1b0b7b successMessage": "", "66c328ce17df4e6ce92d1120": "Use the transit from any location", "66c328de9dc78468f4040f35 name": "Time To Clean My Karma", - "66c328de9dc78468f4040f35 description": "Eliminate Partisan for the first time while playing as a PMC", + "66c328de9dc78468f4040f35 description": "Neutralize Partisan for the first time while playing as a PMC", "66c328de9dc78468f4040f35 successMessage": "", "66c32996b4c0c017a3319cc3 name": "Samsara Wheel Spins Again", - "66c32996b4c0c017a3319cc3 description": "Eliminate Partisan 15 times while playing as a PMC", + "66c32996b4c0c017a3319cc3 description": "Neutralize Partisan 15 times while playing as a PMC", "66c32996b4c0c017a3319cc3 successMessage": "", "66e2a7e5919bad697104f4b3 name": "Highway to the Danger Zone", "66e2a7e5919bad697104f4b3 description": "Complete the Mortar Strike 2024 event task line", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29055,11 +30011,20 @@ "676094451fec2f7426093be6 description": "Earn the Prestige level 2", "676094451fec2f7426093be6 successMessage": "", "67a0e57117e34930e50075f3 name": "In Search of an Exit", - "67a0e57117e34930e50075f3 description": "Complete the Labyrinth event task line", + "67a0e57117e34930e50075f3 description": "Complete the Labyrinth 2025 event task line", "67a0e57117e34930e50075f3 successMessage": "", "67a0e57b972c11a3f50773b2 name": "Dungeon Master", - "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", + "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth 2025 event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/it.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/it.json index cf1a2c86..6e689ec4 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/it.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/it.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Valigetta chiusa a chiave", "6740987b89d5e1ddc603f4f0 ShortName": "Valigetta chiusa a chiave", "6740987b89d5e1ddc603f4f0 Description": "Il contenuto è sconosciuto, ma per aprirlo è necessaria una chiave.", + "67446fdd752be02c220f27b3 Name": "Razzo d'assalto ShG-2", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "Un razzo d'assalto termobarico da 72.5mm per il lanciarazzi RShG-2.", "67449b6c89d5e1ddc603f504 Name": "Chiave della valigetta", "67449b6c89d5e1ddc603f504 ShortName": "Chiave della valigetta", "67449b6c89d5e1ddc603f504 Description": "Una chiave adatta all'apertura della maggior parte delle valigiette standard.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Valigetta Twitch Inverno 2025 (Epica)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Una valigetta con alcuni oggetti epici.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Pantaloni tattici", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "Valigetta Evento LATAM Drops 2025 (Comune)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "Valigetta Evento LATAM Drops 2025 (Epica)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Custodia per chiavi", "67d3ed3271c17ff82e0a5b0b ShortName": "Chiavi", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Strada per la Base Militare V-Ex", " Voip/DisabledForOffline": "VoIP non è disponibile in modalità offline", " kg": " Kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Sei sicuro di voler distruggere l'equipaggiamento modificato?", "APC/CustomizationTab": "Personalizzazione", "APC/EnterName": "Inserisci il nome", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Accesso rapido", "APC/Locked": "Bloccato", "APC/PurchasedStatesAll": "Tutto", "APC/ReadyToUlock": "Sbloccabile", "APC/Unlocked": "Sbloccato", "APC/ViewPreset": "Mostra", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Difesa{1}", "APCBar/Firepower": "{0}Potenza di fuoco{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Carabine d'assalto", "APCFilter/AssaultRifles": "Fucili d'assalto", "APCFilter/AssaultScope": "Mirini d'assalto", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Parti ausiliarie", "APCFilter/Barrel": "Canne", "APCFilter/Bipod": "Bipodi", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Leve d'armamento", "APCFilter/Collimator": "Mirini reflex", "APCFilter/CompactCollimator": "Mirini reflex compatti", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Armi bianche", "APCFilter/Mount": "Supporti", "APCFilter/Muzzle": "Dispositivi da volata", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adattatore per volata", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Ottiche", "APCFilter/PistolGrip": "Impugnature a pistola", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistole", "APCFilter/Receiver": "Coperture antipolvere, Culatta, Grilletti", "APCFilter/SMGs": "Mitragliatrici", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LIVELLAMENTO", "ARENA/ARMORY/LINKS": "COLLEGAMENTI", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Il trasferimento a EFT non è disponibile.", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "CLASSE ARMATURA", "ARMOR POINTS": "PUNTI ARMATURA", "ARMOR TYPE": "TIPO DI ARMATURA", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Oggetto non trovato", "Arena/Armory/LevelReward/readyToUlockState": "Pronto", "Arena/Armory/LevelReward/unlockedState": "Pronto", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Bloccato", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Soldi insufficienti", "Arena/BigCustomPurchaseInfo/Purchase": "Acquista", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Tempo supplementare", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} di {1}", "Arena/BlastGang/ResultScreenSwapSides": "Cambiando schieramento", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancella invito alla lista amici", "Arena/CustomGame/Lobby/cancel invite to group": "Cancella invito al gruppo", "Arena/CustomGame/Lobby/invite to friends": "Invita alla lista amici", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Tentativi rimanenti:", "Arena/CustomGames/Create/Maps": "Luoghi", "Arena/CustomGames/Create/Modes": "Modalità", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Modalità secondarie", "Arena/CustomGames/Create/TournamentMode": "Modalità torneo", "Arena/CustomGames/Create/TournamentSettings": "Opzioni torneo", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Prendi", "Arena/CustomGames/No servers found": "Nessun server trovato", "Arena/CustomGames/Observers": "Spettatori", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Accesso al server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Cambia missione operativa / Ref", "Arena/CustomGames/Settings": "Opzioni", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Disabilitato", "Arena/CustomGames/Settings/enable": "Abilitato", "Arena/CustomGames/create/enter name": "Inserisci il nickname", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Regione", "Arena/CustomGames/toggle/room name": "Nome della lobby", "Arena/CustomGames/toggle/tournament": "Torneo", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "La partita è terminata mentre non eri via", "Arena/EnterPresetName": "Inserisci il nome del preset", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "GMV", "Arena/MVP/DamageStatLabel": "Danno inflitto ai nemici", "Arena/MVP/DeactivatedBomb": "Disattivato il dispositivo", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Arma", "Arena/Rematching": "Ritorno all'abbinamento con alta priorità", "Arena/Rematching/NoServer": "Per motivi tecnici, il server non è stato trovato. Ritorno alla lobby.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azzurro", "Arena/TeamColor/azure_plural": "Azzurro", "Arena/TeamColor/blue": "Blu", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Blu", "Arena/TeamColor/fuchsia": "Rosa", "Arena/TeamColor/fuchsia_plural": "Rosa", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verde", "Arena/TeamColor/grey": "Grigio", "Arena/TeamColor/red": "Rosso", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Rosso", "Arena/TeamColor/white": "Bianco", "Arena/TeamColor/white_plural": "Bianco", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Preset sbloccati", "Arena/Tooltip/MapSelectedCounter": "Numero di luoghi selezionati", "Arena/Tooltip/MinMapCount {0}": "Seleziona più luoghi. Devi selezionare almeno {0} luogo/i", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Condizioni non soddisfatte", "Arena/UI/APCItemBuyCaption": "Sblocco oggetto", "Arena/UI/APCItemBuyDescription": "Acquistare l'oggetto?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset preso", "Arena/UI/Waiting": "In attesa...", "Arena/Ui/ServerFounding": "Alla ricerca del server...", + "Arena/Widgets/ team {0} capturing point": "La squadra {0} sta conquistando l'obiettivo", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Posizionando il dispositivo", "Arena/Widgets/Event/can activate object": "Posiziona dispositivo", "Arena/Widgets/Event/deactivate object": "Disattiva il dispositivo", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "PRONTO", "ArenaArmoryItemReward/Description": "Sblocca oggetto nell'Armeria", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Veleno potente", "ArenaMemberCategory/UniqueID": "Edizione Ryzhy", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bonus giornaliero per la prima vittoria: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Reputazione e soldi insufficienti per sostituire la missione", "ArenaQuestReroll/NotHaveStanding": "Reputazione insufficiente per sostituire la missione", "ArenaRaidInviteDescription": "{0} ti ha invitato", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Qualsiasi modalità", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Modalità di gioco", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Luoghi", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Modalità di gioco multiple", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Sei sicuro di voler già abbandonare la partita?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Puoi lasciare la partita senza penalità", "ArenaUI/BattleMenu/MatchLeave": "ABBANDONA LA PARTITA", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equatore", "Arena_result_final": "Finale", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Parte superiore della schiena", "ArmorVest": "Armatura", "ArmoryCondition/ArenaArmoryProgression": "Raggiungi il livello dell'arma {0} con:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Grado", "ArmoryCondition/CompletedDailyQuests": "Completa le missioni quotidiane:", "ArmoryCondition/CompletedWeeklyQuests": "Completa le missioni settimanali:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Baratto", "Battle category": "Categoria di battaglia", "BattleCategory": "Combattimento", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Sistemi AK BEAR", "BearAssaultoperations": "Operazioni d'Assalto BEAR", "BearAuthority": "Autorità BEAR", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Riduce i prezzi dei servizi assicurativi del [{0:0.#%}]", "CharismaLevelingUpDescription": "L'abilità Carisma aumenterà passivamente tutte le volte che verrà aumentato il livello in Attento, Percezione, e Intelletto.", "CharismaScavCaseDiscount": "Aggiunge uno sconto ai prezzi della cassa degli Scav", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "I seguenti oggetti verranno spostati nella scorta degli oggetti missione:", "ChatScreen/QuestItemsMoved": "Gli oggetti sono stati spostati con successo nella scorta degli oggetti della missione", "Check your email": "Si prega di controllare la email usata per registrare questo account. Riceverai l'ID del dispositivo entro i prossimi 5 minuti.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Non disponibile", "ClothingPanel/Available_both_games": "Disponibile sia in EFT che in Arena", "ClothingPanel/Available_only_arena": "Disponibile solo in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Disponibile l'acquisto sul sito web", "ClothingPanel/InternalObtain": "Condizioni di vendita del mercante:", "ClothingPanel/LoyaltyLevel": "Livello Fedeltà\ndel Mercante:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Livello personaggio", "Conditional/ConditionQuest/Type": "Missioni:", "Conditional/ConditionSkill/Type": "Abilità:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Connessione al server...", "Connection to server lost": "Connessione al server persa", "Console": "Console", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Centrale termica nel seminterrato (Co-op)", "CustomizationDirectReward/Description": "Sbloccherai questo stile come premio", "CustomizationNotExists": "Vestiario non disponibile in uno o più predefiniti", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Sblocca l'offerta di abbigliamento tattico", "CustomizationReward/Description": "Sblocca l'abbigliamento tattico", "Customizations/ObtainHeader": "Ottenuto:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Totale missioni completate", "Daily/Stat/VeryEasy": "Totale missioni molto facili completate", "Daily/Stat/VeryHard": "Totale missioni molto difficili completate", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Vinci una partita", "DailyQuestName/ArenaWinRound": "Vinci un round", "DailyQuestName/Completion": "Trova e trasferisci", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Fiamma", "DamageType_GrenadeFragment": "Frammentazione", "DamageType_HeavyBleeding": "Forte sanguinamento", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Danni da impatto", "DamageType_Landmine": "Mina", "DamageType_LightBleeding": "Sanguinamento leggero", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Esposizione alle radiazioni", "DamageType_Sniper": "Colpo da cecchino", "DamageType_Stimulator": "Stimolatore di effetti collaterali", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Danni precedenti", "Day": "Giorno", "DeactivateObject": "Disattiva il dispositivo", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Fuoco di copertura", "ETraderServiceType/BtrItemsDelivery": "Sposta oggetti nella scorta", "ETraderServiceType/PlayerTaxi": "Prendi il passaggio", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipaggiamento", "EWishlistGroup/Hideout": "Rifugio", "EWishlistGroup/Other": "Altro", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Impossibile aggiungere {0} a {1}. L'arma modificata richiede più spazio di quello disponibile. Prova a riposizionare l'arma in un'altra parte della tua scorta.", "Escape": "Indietro", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Ispeziona l'arma corrente", "Excellent standing": "eccellente", "ExceptionItem": "Questo mercante non può riparare l'oggetto", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Trovato in raid", "Free cam": "Camera libera", "FreeChangeQuest": "Gratuito", + "FreeWeekend": "Free Weekend", "Freetrading": "Libero scambio", "Freetradingdescription": "Libero scambio", "Friend invite to {0} was sent succesfully": "La richiesta di amicizia è stata inviata con successo a {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Circolo del cultista", "Hideout/CircleOfCultists/MaxItemsCount": "Oggetti massimi: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "I cultisti non possono conferire il loro Regalo mentre sei nel Rifugio", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Questo oggetto verrà usato come strumento ausiliario. Tornerà nella tua scorta una volta che la produzione è stata completata.", "Hideout/Customization/Ceiling/TabName": "Soffitto", "Hideout/Customization/Ceiling/WindowHeader": "Selezionare il soffitto per l'installazione", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Generatore finale", "Nakatani_stairs_free_exit": "Scale del seminterrato Nakatani", "Nape": "Nuca", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "RICERCA RICHIESTA", "NetworkError/SessionLostErrorMessage": "Sessione persa. È richiesto un nuovo accesso", "NetworkError/TooManyFriendRequestsHeader": "Troppe richieste", @@ -17620,6 +17768,7 @@ "PVE settings": "Impostazioni AI", "Pain": "Dolore", "Painkiller": "Sotto antidolorifici", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Orrore agghiacciante", "PaperGesture": "Carta", "Paramedic": "Paramedico", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Costo di sostituzione:", "Quest/Change/TimeLeft": "Tempo rimanente per completare l'operazione:", "Quest/Change/Tooltip": "Costo della sostituzione del compito operativo:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " morendo {0} volta(e)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " morendo meno di {0} volta(e)", "QuestCondition/ArenaDeathCount/More{0}": " morendo più di {0} volta(e)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Trova un oggetto dalla categoria: {0} in un raid", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Elimina{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " con un colpo ({0})", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Estrai con gli oggetti della categoria: {0}", "QuestCondition/Many{0}{1}": "{0} {1} volta(e)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assalto", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "qualsiasi zona", "QuestCondition/SurviveOnLocation/ExitName": " estraendo da \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "nella zona", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "testa", "QuestCount/Transfered": "trasferito", "QuestCount/Transferred": "Eliminati:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volume generale:", "Settings/Sound/ReadyToMatchSoundVolume": "Volume audio della schermata conferma partita:", "Settings/UnavailablePressType": "Non disponibile", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Forte dolore muscolare", "Shack": "CP Base Militare", "Shadow visibility:": "Visibilità ombre:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "MODALITÀ DI FUOCO", "Tactical": "Rimuovi dispositivo tattico", "Tactical clothing": "Abbigliamento tattico", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Trattenere", "TacticalInteractionMode/Press": "Premere", "TacticalVest": "Gilet Tattico", @@ -18582,6 +18746,7 @@ "Task": "Missione", "Taskbar/Unavailable": "Non disponibile", "Taskperformance": "Prestazioni missione", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Le squadre combattono 5 contro 5. L'obiettivo è eliminare la squadra avversaria prima che vi uccidano.", "TeamFightDescriptionShort": "Team deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Vecchia Segheria", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Vuoi che ti scorti fino al deposito? Solo per avvisarti che non ne caverai le gambe senza di me. Se il prezzo ti va bene, tieni d'occhio l'orario ok?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Deposito dei Treni", + "Trading/Dialog/PlayerTaxi/p1/Description": "Va bene, destinazione: Cinema Rodina. Il prezzo va bene?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinema Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Sto guidando per il tram. Hai i soldi, vero?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Perfetto, ci stiamo dirigendo verso il centro città. Hai abbastanza contanti?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro città", + "Trading/Dialog/PlayerTaxi/p4/Description": "Andiamo alla gru crollata. Ti va bene il prezzo?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Gru crollata", + "Trading/Dialog/PlayerTaxi/p5/Description": "Ti porterò al vecchio vecchio punto di controllo Scav. Il prezzo va bene, vero?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Vecchio punto di controllo Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Ti posso accompagnare al Pinewood hotel. Ti sta bene il prezzo?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Congedati", "Trading/Dialog/ServicePayoff{0}": "Va bene, questo dovrebbe essere sufficiente. (consegna \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Nascondi cronologia", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Accesso negato", "Transit/InactivePoint": "Transito non disponibile", "Transit/Interaction": "Interagisci", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transizione in ", "Transition in {0:F1}": "Transizione in {0:F1}", "Tremor": "Tremore", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Linee di slot dell'inventario nella scorta", "UI/Quest/Reward/AdditionalStashRowsTooltip": "La tua scorta verrà ampliata con l'aggiunta di nuove linee di slot di inventario.\nQueste modifiche verranno applicate in seguito (controlla il nostro sito Web per i dettagli).", "UI/Quest/Reward/AssortmentUnlockCaption": "Sblocca l'assortimento a {0} Livello di Fedeltà {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Abbigliamento tattico", "UI/Quest/Reward/ItemCaption": "Oggetto", "UI/Quest/Reward/ProductionSchemeCaption": "Creazione di ricette a {0} al livello {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "spento", "UI/Settings/NVidiaReflexMode/On": "attivo", "UI/Settings/NVidiaReflexMode/OnAndBoost": "attiva e potenzia", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Predefinito", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Altre azioni", "UI/Settings/Rest": "Altro", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Notifiche degli oggetti della lista dei desideri", "UI/Skills/Charisma/CharismaDiscount": "Sconto sull'abilita carisma", "UI/Standing:": "Reputazione mercante:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Errore Sconosciuto", "UnknownErrorMessage": "Errore sconosciuto. Chiudere il gioco e creare una segnalazione di bug.", "UnknownToxin": "Tossina sconosciuta", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "SCARICA MUNIZIONI", "Unloadmagazine": "Estrarre il caricatore", "Unlock": "Sblocca", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Abilità base di modifica delle armi mentre si è in movimento, ne aumenta l'ergonomia e riduce l'usura del silenziatore.", "WeaponMounting": "Montare l'arma", "WeaponPunch": "Calcio con l'arma", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Riduce il rinculo dell'arma del [{0:0.#%}]", "WeaponReloadBuff": "Aumenta la velocità di ricarica del [{0:0.#%}]", "WeaponStiffHands": "Aumenta l'ergonomia dell'arma del [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Non è possibile utilizzare il mercato delle pulci adesso", "You can't use ragfair now": "Non è possibile utilizzare il mercato delle pulci adesso", "You can't use that symbol": "Non puoi usare quel personaggio", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Non è possibile modificare la qualità delle texture in raid.", "You cannot take off a dogtag from a friend or group member": "Non puoi prendere una piastrina da un amico o un membro del tuo gruppo", "You don't have some items to finish the deal": "Non disponi di alcuni oggetti necessari a concludere l'accordo", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "S", "arena/CapturePointScores": "Punteggio", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Cattura e difendi gli obiettivi", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "M", "arena/Exp": "Esp", "arena/KillShort": "U", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Cancella", "arena/contextInteractions/card/edit": "Modifica", "arena/contextInteractions/card/inspect default preset": "Ispeziona", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "MODALITA DI GIOCO (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Modalità di gioco (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Tempo supplementare", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicazione preset:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Durata partita:", "arena/customGames/create/setOvertime": "Imposta tempo supplementare", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Consenti preset duplicati", "arena/customGames/create/setScoresToWinCount": "Punti per vincere:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "INVITO PARTITA PERSONALIZZATA DA {0}", "arena/customGames/notify/GameRemoved": "La stanza è stata abbandonata", "arena/customgames/errors/notification/gamealreadystarted": "La partita è già iniziata", "arena/customgames/popup/refreshdailyquest": "Sostituire la missione operativa?", "arena/customgames/popups/attemptscountleft:": "Tentativi rimasti:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP RIMASTI", "arena/info/GP": "GP", "arena/info/KD Ratio": "U/M", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELEZIONA ARENA", "arena/matching/SelectGametype": "SELEZIONA IL TIPO DI GIOCO", "arena/matching/SelectRankedGamemode": "SELEZIONA LA MODALITÀ DI GIOCO CLASSIFICATA", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TIPO", "arena/matching/UnavailableReason": "Non disponibile", "arena/matching/buyPreset": "SELEZIONA PRESET", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "spazi sbloccati:", "arena/questLogTemplate/gameModes": "Modalità di gioco", "arena/questLogTemplate/maps": "Zona(e)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bonus MVP della partita", "arena/resultContent/matchMVPMoneyTitle": "Bonus MVP della partita", "arena/resultContent/roundMVPExpTitle": "Bonus MVP del turno", "arena/resultContent/roundMVPMoneyTitle": "Bonus MVP del turno", "arena/selection/gameMode": "modalità di gioco", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSALTO", "arena/tab/COLLECTION": "COLLEZIONE", "arena/tab/FAVORITES": "PREFERITI", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "PUNTEGGI", "arena/tab/SCOUT": "ESPLORATORE", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Utilizzato per sbloccare le attrezzature per i preset e per l'acquisto di equipaggiamento in EFT. Guadagnato completando le missioni operative in Arena.", "arena/tooltip/OverallMatches": "Numero totale di partite classificate e non classificate giocate.", "arena/tooltip/Presets": "Preset", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Il tuo rapporto vittoria complessivo, calcolato da tutte le vittorie e le sconfitte nelle partite classificate e non classificate.", "arena/widget/ally_capture_point": "Punto catturato: Alleati", "arena/widget/enemy_capture_point": "Punto catturato: Nemici", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Completa le missioni quotidiane:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Completa le missioni settimanali:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Completa le missioni quotidiane:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Completa le missioni settimanali:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Completa le missioni quotidiane:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Completa le missioni settimanali:", "arenaui/presetview/lockedpreset": "Preset non disponibile", "arm broke": "Ti sei rotto il braccio", "assaultKills": "Uccisioni con fucile d'assalto", @@ -19643,6 +19860,29 @@ "camora_003": "Camera di scoppio 4", "camora_004": "Camera di scoppio 5", "camora_005": "Camera di scoppio 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Il giocatore {0} ha annullato la richiesta di amicizia", "cancelfriendrequest": "Cancella richiesta di amicizia", "captcha/too frequent attempts": "Troppi tentativi effettuati. L'accesso al mercato delle pulci e ai mercanti non è attualmente disponibile. Prova più tardi.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Fognatura", "lab_Vent": "Pozzo di ventilazione", "labir_exit": "La Strada in Salita", + "laboratory": "Laboratorio", "labyrinth_secret_tagilla_key": "Il Sentiero di Ariadne", "lastSession": "Ultima sessione", "leader": "Leader", @@ -20358,6 +20599,7 @@ "un-sec": "Blocco Stradale ONU Nord", "undefined": "", "uninstall": "DISINSTALLARE", + "unlock requires:": "sbloccare richiede:", "unlockedSafes": "Cassaforti sbloccate", "unpack": "spacchetta", "usecKills": "USEC uccisi", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Il centro commerciale di Tarkov. Qui aveva sede la TerraGroup. Qui è dove tutto ha avuto inizio.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "Il centro commerciale di Tarkov. Qui aveva sede la TerraGroup. Qui è dove tutto ha avuto inizio.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "Sicurezza Unita", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, li hai fatti? Da qua, diamogli un occhiata. Cavolo, ma perché cazzo sono così pesanti? D'accordo, li ricontrollerò più tardi. Ecco prendi, per avermi aiutato.", "5ae9bb6986f77415a869b40b": "Trova in raid un'armatura d'assalto 6B43 con una durabilità del 0-50%", - "5ae9bc6e86f7746e0026222c": "Consegna l'armatura d'assalto 6B13 cercandola in raid con durabilità di 0-50%", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Trova durante un raid, l'armatura 6B43 con una durabilità di almeno 50-100%", - "5ae9bea886f77468ab400e64": "Consegna l'armatura d'assalto 6B13 cercandola in raid con durabilità di 50-100%", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operazione acquarius - Parte 2", + "664ca9f577af670dad0ad339 description": "Felice di rivederti ancora. La mia gente ha scoperto chi alla fine è stato coinvolto in tutte queste operazioni illegali con l'acqua pulita. Grazie anche ovviamente alle informazioni che mi hai passato. In breve, è una gang di Scav che sta operando nell'area di Customs. Di solito non faccio questo tipo di richieste, ma ci sono delle vite in gioco, e questi farabutti continuano con i loro sporchi affari. Abbiamo bisogno di infastidirli un po'. Non penso di doverti spiegare in che modo. Pensi di poterlo fare?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Dovresti essere fiero di te stesso, anche se oggi hai sacrificato delle vite, devi tenere a mente che non erano la parte migliore della specie umana, pensa invece che sei riuscito a dare una possibilità di sopravvivere a molti civili innocenti.", + "664ca9f577af670dad0ad33d": "Elimina Scav a Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Fretta", "66588c0c98194a5d26010197 description": "Ciao mercenario! Hai sentito cosa è successo a Lighthouse? Le mie fonti mi dicono che i signori del crimine locali hanno avuto una grossa disputa con i Rogue e li stanno cercando in tutta la città e la periferia. Il compito è quello di aiutare questi Rogue. Perché è vietato disturbare la pace e l'ordine durante il mio turno di guardia. Capito?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operazione acquarius - Parte 2", + "6659a9716b1be75165030e4e description": "Felice di rivederti ancora. La mia gente ha scoperto chi alla fine è stato coinvolto in tutte queste operazioni illegali con l'acqua pulita. Grazie anche ovviamente alle informazioni che mi hai passato. In breve, è una gang di Scav che sta operando nell'area di Customs. Di solito non faccio questo tipo di richieste, ma ci sono delle vite in gioco, e questi farabutti continuano con i loro sporchi affari. Abbiamo bisogno di infastidirli un po'. Non penso di doverti spiegare in che modo. Pensi di poterlo fare?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Dovresti essere fiero di te stesso, anche se oggi hai sacrificato delle vite, devi tenere a mente che non erano la parte migliore della specie umana, pensa invece che sei riuscito a dare una possibilità di sopravvivere a molti civili innocenti.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Sete - Segugi", "665eeacf5d86b6c8aa03c79b description": "Dobbiamo parlare. Gli scagnozzi di Sanitar si aggirano di notte nella zona della riva. Ovviamente stanno cercando qualcosa. Non possiamo lasciare che la cosa passi inosservata. Spaventateli mentre cerco di scoprire cosa hanno in mente.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Chiedere Informazioni", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Cena di Natale", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Tutto pulito quindi? Ben fatto, soldato.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bene.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Tutto gli oggetti richiesti sono sulla lista. Trovali e portali nel punto di raccolta.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Ci sarebbero altri incarichi disponibili, al costo della pazienza che mi rimane.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Il Miglior Amico dei PMC", "6512ea46f7a078264a4376e4 description": "Sopravvivi ed estrai da Interchange dall'estrazione degli Scav Co-Op mentre giochi come PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Esito fatale", "670febed5ee0fc738a0965a4 description": "Distruggi il virus insieme a tutti gli infetti e completa la linea di attività dell'evento Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Trazione Integrale", "675709bef4e2a2ce0f058f56 description": "Risolvi il problema con l'autista del BTR in un modo o nell'altro", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Completare la linea di attività dell'evento Labirinto e tutti gli obiettivi secondari", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/jp.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/jp.json index 837227f0..3f7b1777 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/jp.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/jp.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 アサルトロケット", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "RShG-2 ロケットランチャー用の 72.5mm サーモバリックアサルトロケット。", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagillaの溶接面 \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "このマスクから判断するに、Labyrinth は Tagilla の精神状態に深刻な影響を与え、彼をより狂わせ、血に飢えさせた。彼がこれ以上狂うだなんて誰が思っただろう?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "キーケース", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "このケースは、さまざまな鍵をスタッシュに溜め込むという問題に対する究極の解決策であり、鍵を一箇所に保管するのに役立つ。", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "オフラインモードではVOIPは無効です", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "装備の変更を破棄しますか?", "APC/CustomizationTab": "カスタム", "APC/EnterName": "名前を入力", + "APC/EnterName ": "Enter name", "APC/FastAccess": "クイックアクセス", "APC/Locked": "ロック", "APC/PurchasedStatesAll": "All", "APC/ReadyToUlock": "アンロック可能", "APC/Unlocked": "アンロック済み", "APC/ViewPreset": "見る", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}防御力{1}", "APCBar/Firepower": "{0}火力{1}", "APCBar/Metascore": "{0}メタスコア{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "アサルトカービン", "APCFilter/AssaultRifles": "アサルトライフル", "APCFilter/AssaultScope": "アサルトスコープ", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "補助部品", "APCFilter/Barrel": "バレル", "APCFilter/Bipod": "バイポッド", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "チャージングハンドル", "APCFilter/Collimator": "リフレックスサイト", "APCFilter/CompactCollimator": "コンパクトリフレックスサイト", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "近接武器", "APCFilter/Mount": "マウント", "APCFilter/Muzzle": "マズルデバイス", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "マズルアダプター", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "照準器", "APCFilter/PistolGrip": "ピストルグリップ", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "ピストル", "APCFilter/Receiver": "ダストカバー、レシーバー、トリガーグループ", "APCFilter/SMGs": "サブマシンガン", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "レベル", "ARENA/ARMORY/LINKS": "リンク", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "EFTへの転送は利用できません", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "アーマークラス", "ARMOR POINTS": "アーマーポイント", "ARMOR TYPE": "アーマーの種類", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "アイテムが見つかりません", "Arena/Armory/LevelReward/readyToUlockState": "Ready", "Arena/Armory/LevelReward/unlockedState": "Ready", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "ブロック", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "お金が足りません", "Arena/BigCustomPurchaseInfo/Purchase": "購入", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Overtime", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} of {1}", "Arena/BlastGang/ResultScreenSwapSides": "攻守交替", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "フレンドリストへの招待をキャンセル", "Arena/CustomGame/Lobby/cancel invite to group": "グループへの招待をキャンセル", "Arena/CustomGame/Lobby/invite to friends": "フレンドリストに招待", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "残り試行回数:", "Arena/CustomGames/Create/Maps": "ロケーション", "Arena/CustomGames/Create/Modes": "モード", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "サブモード", "Arena/CustomGames/Create/TournamentMode": "トーナメントモード", "Arena/CustomGames/Create/TournamentSettings": "トーナメント設定", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "参加", "Arena/CustomGames/No servers found": "アクティブなサーバーが見つかりませんでした", "Arena/CustomGames/Observers": "観戦者", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "サーバーへ参加中", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "タスクの変更 / Ref", "Arena/CustomGames/Settings": "設定", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "無効", "Arena/CustomGames/Settings/enable": "有効", "Arena/CustomGames/create/enter name": "名前を入力", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "リージョン", "Arena/CustomGames/toggle/room name": "ルーム名", "Arena/CustomGames/toggle/tournament": "トーナメント", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "離席中に試合が終了しました", "Arena/EnterPresetName": "プリセット名を入力", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "敵に与えたダメージ", "Arena/MVP/DeactivatedBomb": "デバイスの解除", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "武器", "Arena/Rematching": "優先的にマッチに戻る", "Arena/Rematching/NoServer": "技術的な理由により、サーバーが見つかりませんでした。マッチング画面に戻ります。", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "アズール", "Arena/TeamColor/azure_plural": "アズール", "Arena/TeamColor/blue": "ブルー", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "ブルー", "Arena/TeamColor/fuchsia": "ピンク", "Arena/TeamColor/fuchsia_plural": "ピンク", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "グリーン", "Arena/TeamColor/grey": "グレー", "Arena/TeamColor/red": "レッド", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "レッド", "Arena/TeamColor/white": "ホワイト", "Arena/TeamColor/white_plural": "ホワイト", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "プリセットがアンロックされました", "Arena/Tooltip/MapSelectedCounter": "選択されたロケーションの数", "Arena/Tooltip/MinMapCount {0}": "複数の場所を選択してください。少なくとも {0} 箇所を選択する必要があります。", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "条件を満たしていない", "Arena/UI/APCItemBuyCaption": "アイテムをアンロック", "Arena/UI/APCItemBuyDescription": "アイテムを購入しますか?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "プリセット予約済み", "Arena/UI/Waiting": "待機中…", "Arena/Ui/ServerFounding": "サーバを検索中…", + "Arena/Widgets/ team {0} capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "デバイスを設置中", "Arena/Widgets/Event/can activate object": "デバイスを設置", "Arena/Widgets/Event/deactivate object": "デバイスを解除", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "READY", "ArenaArmoryItemReward/Description": "武器庫のアイテムをアンロック", "ArenaArmoryScreen/TutorialButton": "チュートリアル", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "猛毒", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "デイリー初勝利ボーナス: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "タスクを置き換えるのに必要なお金と評価が不足しています", "ArenaQuestReroll/NotHaveStanding": "タスクを置き換えるのに必要な評価が不足しています", "ArenaRaidInviteDescription": "{0} があなたをバトルに招待しています", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "任意のゲームモード", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "ゲームモード", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "ロケーション", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "複数のゲームモード", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "本当にゲームを途中で離れますか?", "ArenaUI/BattleMenu/FreeQuitWarning": "- このマッチからはペナルティ無く退出可能です", "ArenaUI/BattleMenu/MatchLeave": "試合を退出する", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "背中", "ArmorVest": "ボディアーマー\n", "ArmoryCondition/ArenaArmoryProgression": "武器レベル {0} に到達:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "ランク", "ArmoryCondition/CompletedDailyQuests": "デイリータスクを完了:", "ArmoryCondition/CompletedWeeklyQuests": "ウィークリータスクを完了:", @@ -15665,6 +15778,7 @@ "Barterdescription": "バーター", "Battle category": "戦闘カテゴリ", "BattleCategory": "コンバット", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK システム", "BearAssaultoperations": "BEAR アサルトオペレーション", "BearAuthority": "Bear Authority", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "保険のサービスにかかる費用を [{0:0%}] 削減", "CharismaLevelingUpDescription": "カリスマは、注意力、知覚、知性の各スキルのレベルアップによって間接的に上がる。", "CharismaScavCaseDiscount": "Scavケースの費用に割引を適用", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "以下のアイテムをクエストアイテム用の保管場所に移動します:", "ChatScreen/QuestItemsMoved": "アイテムがクエストアイテム用の保管場所に移動しました", "Check your email": "このアカウントの作成に使用したメールアドレスを確認してください。5分以内にデバイスIDが届きます。", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "利用不可", "ClothingPanel/Available_both_games": "Escape from Tarkovとアリーナの両方で利用可能", "ClothingPanel/Available_only_arena": "アリーナでのみ利用可能", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "ウェブサイトで購入可能", "ClothingPanel/InternalObtain": "トレーダー購入条件:", "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "キャラクターレベル", "Conditional/ConditionQuest/Type": "タスク:", "Conditional/ConditionSkill/Type": "スキル:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "サーバーに接続中…", "Connection to server lost": "サーバー接続が失われました", "Console": "コンソール", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler room basement (Co-op)", "CustomizationDirectReward/Description": "報酬としてこのスタイルがアンロックされる", "CustomizationNotExists": "1つ以上のプリセットで衣服が利用できません", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "戦闘服の取引をアンロック", "CustomizationReward/Description": "戦闘服をアンロック", "Customizations/ObtainHeader": "所有済み:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "完了したタスクの総数", "Daily/Stat/VeryEasy": "完了したベリーイージータスクの総数", "Daily/Stat/VeryHard": "完了したベリーハードタスクの総数", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "マッチの勝利", "DailyQuestName/ArenaWinRound": "ラウンドの勝利", "DailyQuestName/Completion": "発見と納品", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "炎", "DamageType_GrenadeFragment": "破片", "DamageType_HeavyBleeding": "重度出血", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "衝撃", "DamageType_Landmine": "地雷", "DamageType_LightBleeding": "軽度出血", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "被爆", "DamageType_Sniper": "狙撃", "DamageType_Stimulator": "興奮剤の副作用", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "過去のダメージ", "Day": "日中", "DeactivateObject": "デバイスを解除", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "援護射撃", "ETraderServiceType/BtrItemsDelivery": "アイテムをスタッシュに送る", "ETraderServiceType/PlayerTaxi": "BTRで送ってもらう", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "装備", "EWishlistGroup/Hideout": "ハイドアウト", "EWishlistGroup/Other": "その他", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "{1} に {0} を装着できません。改造後の武器にはより多くのスペースが必要です。他の場所に武器を配置してください。", "Escape": "戻る", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "武器を見る", "Excellent standing": "最高", "ExceptionItem": "トレーダーはこのアイテムを修理できない", @@ -16627,6 +16771,7 @@ "FoundInRaid": "レイド中に発見", "Free cam": "フリーカメラ", "FreeChangeQuest": "無料", + "FreeWeekend": "Free Weekend", "Freetrading": "自由取引", "Freetradingdescription": "フリートレーディング", "Friend invite to {0} was sent succesfully": "フレンドリクエストを {0} に送信しました!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "カルティストサークル", "Hideout/CircleOfCultists/MaxItemsCount": "アイテムの最大数: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "ハイドアウトの中にいる間、カルティストはギフトを届けることが出来ない", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "このアイテムは補助道具として使用されます。生産が完了するとあなたのスタッシュに戻ります。", "Hideout/Customization/Ceiling/TabName": "天井", "Hideout/Customization/Ceiling/WindowHeader": "設置する天井を選択", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "最後の発電機", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "後頭部", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "必要な物の検索", "NetworkError/SessionLostErrorMessage": "セッションロスト、再接続してください", "NetworkError/TooManyFriendRequestsHeader": "リクエストが多すぎます", @@ -17620,6 +17768,7 @@ "PVE settings": "PvE 設定", "Pain": "痛み", "Painkiller": "鎮痛効果", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Chilling horror", "PaperGesture": "パー", "Paramedic": "パラメディック", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "変更にかかる費用:", "Quest/Change/TimeLeft": "タスク終了までの時間:", "Quest/Change/Tooltip": "タスクの変更にかかる費用:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " {0} 回死亡した", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " 死亡回数を {0} 以下にして", "QuestCondition/ArenaDeathCount/More{0}": " {0} 回以上死亡して", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{roundResult}{playerPreset}{deathCount}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{matchPlace}", "QuestCondition/ArenaWinRound": "{roundResult}{playerPreset}{deathCount}{resetOnSessionEnd}{resetOnConditionFailed{0}}{playerAction}{roundPlace}", "QuestCondition/Category": "1回のレイド中に \" {0} \" カテゴリのアイテムを見つける", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "{resetOnSessionEnd}{playerPreset}{zone}{enemyPreset}{kill}を排除", "QuestCondition/Elimination/Kill": " {onesession}{weapontype}{weapon}{distance}{bodypart}{botrole}{target}", "QuestCondition/Elimination/Kill/BodyPart": "{0}を撃って ", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "要求された {0} カテゴリのアイテムを持ったまま生還する", "QuestCondition/Many{0}{1}": "{0} {1} 回", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "任意のマップ", "QuestCondition/SurviveOnLocation/ExitName": " \"{0}\" ", "QuestCondition/SurviveOnLocation/Location": "上記マップ", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "頭部", "QuestCount/Transfered": "納品済み", "QuestCount/Transferred": "排除済み:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "全体の音量:", "Settings/Sound/ReadyToMatchSoundVolume": "マッチ承認画面音量:", "Settings/UnavailablePressType": "利用不可", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "重度の筋肉痛", "Shack": "Military Base CP", "Shadow visibility:": "影の描画距離:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "射撃タイプ", "Tactical": "タクティカルデバイス切替", "Tactical clothing": "戦闘服", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "押す", "TacticalVest": "リグ", @@ -18582,6 +18746,7 @@ "Task": "タスク", "Taskbar/Unavailable": "利用不可", "Taskperformance": "タスクパフォーマンス", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "5対5のチーム戦。相手チームがあなたを殺すよりも早く、相手チームを排除せよ。", "TeamFightDescriptionShort": "チームデスマッチ", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Train Depot まで送ってほしいのか?知っていると思うが、俺無しであそこからは出られない。値段に問題がなければ、そこにいる時間には気をつけるんだな。いいな?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "立ち去る", "Trading/Dialog/ServicePayoff{0}": "よし、これで足りるだろう。 (\"{0}\" を手渡す)", "Trading/Dialog/ToggleHistoryOff": "履歴を非表示にする", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "アクセスが拒否されました", "Transit/InactivePoint": "Transit 利用不可", "Transit/Interaction": "インタラクト", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "移動まで ", "Transition in {0:F1}": "移動まで {0:F1}", "Tremor": "震え", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "スタッシュの拡張 (行方向)", "UI/Quest/Reward/AdditionalStashRowsTooltip": "行方向へのスロットの拡張によってスタッシュの容量が増加します\nこの変更は後日適用されます (詳細はウェブサイトをご確認ください)", "UI/Quest/Reward/AssortmentUnlockCaption": "{0} LL {1} で販売アンロック", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "戦闘服", "UI/Quest/Reward/ItemCaption": "アイテム", "UI/Quest/Reward/ProductionSchemeCaption": "{0} レベル {1} でのクラフトレシピ", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "オフ", "UI/Settings/NVidiaReflexMode/On": "オン", "UI/Settings/NVidiaReflexMode/OnAndBoost": "オン・ブースト", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "デフォルト", "UI/Settings/NotificationType/WebSocket": "ウェブソケット", "UI/Settings/OtherActions": "Other actions", "UI/Settings/Rest": "その他", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "ウィッシュリストアイテム通知", "UI/Skills/Charisma/CharismaDiscount": "“カリスマ” スキルによる割引", "UI/Standing:": "トレーダーの評価", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "不明なエラーが発生しました", "UnknownErrorMessage": "不明なエラーが発生しました。ゲームを終了しバグ報告を行ってください。", "UnknownToxin": "不明な毒", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "弾薬を取り出す", "Unloadmagazine": "マガジンを外す", "Unlock": "アンロック", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "武器改造スキルは改造時のエルゴノミクスを向上させサイレンサーの消耗を抑える。", "WeaponMounting": "武器をマウント", "WeaponPunch": "銃で殴る", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "武器の反動を [{0:0.#%}] 軽減", "WeaponReloadBuff": "武器のリロード速度が [{0:0.#%}] 上昇", "WeaponStiffHands": "武器のエルゴノミクスが [{0:0.#%}] 向上", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "今はフリーマーケットを使用できない", "You can't use ragfair now": "今はフリーマーケットを使用できない", "You can't use that symbol": "その文字を使用することはできません", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "テクスチャ品質はレイド中に変更できません", "You cannot take off a dogtag from a friend or group member": "フレンドやグループのメンバーからドッグタグを取ることはできない", "You don't have some items to finish the deal": "取引に必要なアイテムが足りない", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "目標を占領して保持せよ", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "削除", "arena/contextInteractions/card/edit": "編集", "arena/contextInteractions/card/inspect default preset": "詳細", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "ゲームモード (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "オーバータイム", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "プリセット複製:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "試合時間:", "arena/customGames/create/setOvertime": "オーバータイム設定", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "プリセット複製許可", "arena/customGames/create/setScoresToWinCount": "勝利ポイント数:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "{0} からのカスタムゲーム招待", "arena/customGames/notify/GameRemoved": "ルームは解散されました", "arena/customgames/errors/notification/gamealreadystarted": "ゲームは既に開始しています", "arena/customgames/popup/refreshdailyquest": "着手する仕事の内容を変更しますか?", "arena/customgames/popups/attemptscountleft:": "残り回数:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "残り ARP", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "アリーナ選択", "arena/matching/SelectGametype": "ゲームタイプ選択", "arena/matching/SelectRankedGamemode": "ランクモード選択", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "タイプ", "arena/matching/UnavailableReason": "利用不可", "arena/matching/buyPreset": "プリセット選択", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "スロット解除:", "arena/questLogTemplate/gameModes": "ゲームモード", "arena/questLogTemplate/maps": "ロケーション", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "試合 MVP ボーナス", "arena/resultContent/matchMVPMoneyTitle": "試合 MVP ボーナス", "arena/resultContent/roundMVPExpTitle": "ラウンド MVP ボーナス", "arena/resultContent/roundMVPMoneyTitle": "ラウンド MVP ボーナス", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "ティア", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "コレクション", "arena/tab/FAVORITES": "お気に入り", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "レーティング", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP コイン。プリセットの解除に使用したり、EFT で装備を買うことが出来る。アリーナでタスクを完了することによって手に入る。", "arena/tooltip/OverallMatches": "ランクとアンランクの試合合計数。", "arena/tooltip/Presets": "プリセット", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "ランク戦とアンランク戦のすべての勝敗から算出される総合勝率", "arena/widget/ally_capture_point": "味方が地点を占領", "arena/widget/enemy_capture_point": "敵が地点を占領", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "デイリータスクを完了:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "ウィークリータスクを完了:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "デイリータスクを完了:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "ウィークリータスクを完了:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "デイリータスクを完了:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "ウィークリータスクを完了:", "arenaui/presetview/lockedpreset": "プリセット利用不可", "arm broke": "腕を骨折しました!", "assaultKills": "アサルトライフルキル", @@ -19643,6 +19860,29 @@ "camora_003": "薬室 4", "camora_004": "薬室 5", "camora_005": "薬室 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "プレイヤー {0} がフレンド申請をキャンセルしました", "cancelfriendrequest": "フレンドリクエストを取消", "captcha/too frequent attempts": "試行回数が多すぎます。フリーマーケットとトレーダーは現在使用できません。時間をおいてお試しください。", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Sewage Conduit", "lab_Vent": "Ventilation Shaft", "labir_exit": "The Way Up", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "前回のセッション", "leader": "リーダー", @@ -20358,6 +20599,7 @@ "un-sec": "Northern UN Roadblock", "undefined": "", "uninstall": "脱着", + "unlock requires:": "アンロック条件:", "unlockedSafes": "開けた金庫", "unpack": "開封", "usecKills": "USEC殺害数", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "TerraGruop の請負業者のひとつ、Knossos LLC の施設。公的な情報によれば、彼らは遊園地やテーマパークを建設している。しかし、ここは新しいテーマパークというより厳重に要塞化されたバンカーのようだ。", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "Find a 6B13 assault armor in 0-50% durability in raid", - "5ae9bc6e86f7746e0026222c": "Hand over the found in raid 6B13 assault armor in 0-50% durability", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Find a 6B13 assault armor in 50-100% durability in raid", - "5ae9bea886f77468ab400e64": "Hand over the found in raid 6B13 assault armor in 50-100% durability", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operation Aquarius - Part 2", + "664ca9f577af670dad0ad339 description": "また会えて嬉しいわ。私の仲間が水をめぐってあくどい商売をしていた人物が誰なのか突き止めてくれたの。もちろん、あなたが持ってきてくれた情報のおかげよ。簡単にいうと、税関の周辺を根城にしている Scav たちの仕業だったようね。こんな依頼をするのは気が引けるけど、人の命が掛かっているのもお構いなしに彼らは今も汚い仕事を続けているわ。だから、苦しみながら息を引き取ることで、彼らには非道な行いをしてきた報いを受けてもらう必要があると思うの。お願いできるかしら?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "あなたは自分を誇りに思っていいのよ。たしかに人の命を奪ったことに変わりはないけれど、彼らが人類の中で最も優れた人種だったとは言えないでしょうし、一方では多くの民間人に生き残るチャンスを与えたのだから。", + "664ca9f577af670dad0ad33d": "Customs で Scav を殺す", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operation Aquarius - Part 2", + "6659a9716b1be75165030e4e description": "また会えて嬉しいわ。私の仲間が水をめぐってあくどい商売をしていた人物が誰なのか突き止めてくれたの。もちろん、あなたが持ってきてくれた情報のおかげよ。簡単にいうと、税関の周辺を根城にしている Scav たちの仕業だったようね。こんな依頼をするのは気が引けるけど、人の命が掛かっているのもお構いなしに彼らは今も汚い仕事を続けているわ。だから、苦しみながら息を引き取ることで、彼らには非道な行いをしてきた報いを受けてもらう必要があると思うの。お願いできるかしら?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "あなたは自分を誇りに思っていいのよ。たしかに人の命を奪ったことに変わりはないけれど、彼らが人類の中で最も優れた人種だったとは言えないでしょうし、一方では多くの民間人に生き残るチャンスを与えたのだから。", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Good.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "All required items are on the list. Find them and bring them to the drop spot.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "There are other tasks available, at the cost of my patience.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC's Best Friend", "6512ea46f7a078264a4376e4 description": "PMC として Interchange の Scav Co-Op から生還する", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "ウイルスと感染者全てを殲滅し、\"Halloween 2024\" のイベントタスクを完了する", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "BTR ドライバーの問題を何らかの方法で解決する", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Labyrinth のイベントタスクと全てのサイドタスクを完了する", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/kr.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/kr.json index 28305505..5239f3e2 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/kr.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/kr.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "열쇠 보관함", "67d3ed3271c17ff82e0a5b0b ShortName": "열쇠", "67d3ed3271c17ff82e0a5b0b Description": "이 보관함은 창고에서 한 곳에 수많은 열쇠를 보관할 수 있게 도와주어 넘쳐흐르는 열쇠들을 정리할 수 있는 궁극의 해결책입니다.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "오프라인 모드에서는 VOIP 사용이 불가능합니다", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "정말 개조된 장비를 제거하시겠습니까?", "APC/CustomizationTab": "커스터마이징", "APC/EnterName": "이름 입력", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Quick access", "APC/Locked": "잠김", "APC/PurchasedStatesAll": "전체", "APC/ReadyToUlock": "잠금 해제 가능", "APC/Unlocked": "잠금 해제됨", "APC/ViewPreset": "View", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Firepower{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "돌격카빈", "APCFilter/AssaultRifles": "돌격소총", "APCFilter/AssaultScope": "돌격 조준경", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "예비 부품", "APCFilter/Barrel": "총열", "APCFilter/Bipod": "양각대", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "장전 손잡이", "APCFilter/Collimator": "반사 조준기", "APCFilter/CompactCollimator": "소형 반사 조준기", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "근접 무기", "APCFilter/Mount": "마운트", "APCFilter/Muzzle": "총구 장치", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "총구 어댑터", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "광학 조준경", "APCFilter/PistolGrip": "권총 손잡이", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "권총", "APCFilter/Receiver": "먼지덮개, 총몸, 방아쇠 뭉치", "APCFilter/SMGs": "기관단총", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "레벨", "ARENA/ARMORY/LINKS": "연관된 부품", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "EFT로 전송이 불가능합니다", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "방탄 등급", "ARMOR POINTS": "장갑 내구도", "ARMOR TYPE": "장갑 종류", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item not found", "Arena/Armory/LevelReward/readyToUlockState": "준비", "Arena/Armory/LevelReward/unlockedState": "준비", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "돈이 부족합니다", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Overtime", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} of {1}", "Arena/BlastGang/ResultScreenSwapSides": "공수 전환", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "친구 추가 취소", "Arena/CustomGame/Lobby/cancel invite to group": "파티 초대 취소", "Arena/CustomGame/Lobby/invite to friends": "친구 추가", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "남은 시도 횟수:", "Arena/CustomGames/Create/Maps": "맵", "Arena/CustomGames/Create/Modes": "모드", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "서브 모드", "Arena/CustomGames/Create/TournamentMode": "토너먼트 모드", "Arena/CustomGames/Create/TournamentSettings": "토너먼트 설정", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Take", "Arena/CustomGames/No servers found": "방을 찾지 못했습니다", "Arena/CustomGames/Observers": "관전", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "서버 들어가기", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Operational task replacement / Ref", "Arena/CustomGames/Settings": "설정", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "비활성화", "Arena/CustomGames/Settings/enable": "활성화", "Arena/CustomGames/create/enter name": "이름 입력", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "지역", "Arena/CustomGames/toggle/room name": "방 이름", "Arena/CustomGames/toggle/tournament": "토너먼트", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "당신이 없는 동안 매치가 종료되었습니다", "Arena/EnterPresetName": "프리셋 이름을 입력하세요", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "적에게 준 피해량", "Arena/MVP/DeactivatedBomb": "폭탄 해제", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "무기", "Arena/Rematching": "Returning to matching with high priority", "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "아주르", "Arena/TeamColor/azure_plural": "아주르", "Arena/TeamColor/blue": "블루", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "블루", "Arena/TeamColor/fuchsia": "핑크", "Arena/TeamColor/fuchsia_plural": "핑크", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "그린", "Arena/TeamColor/grey": "그레이", "Arena/TeamColor/red": "레드", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "레드", "Arena/TeamColor/white": "화이트", "Arena/TeamColor/white_plural": "화이트", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "프리셋 잠금 해제됨", "Arena/Tooltip/MapSelectedCounter": "선택한 맵 수", "Arena/Tooltip/MinMapCount {0}": "여러개의 맵을 선택하세요. 최소 {0} 개의 맵을 선택해야 합니다", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "구매 하시겠습니까?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "대기 중...", "Arena/Ui/ServerFounding": "서버 찾는 중...", + "Arena/Widgets/ team {0} capturing point": "{0} 팀이 목표를 확보하는 중", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "장치 설치중", "Arena/Widgets/Event/can activate object": "장치 설치", "Arena/Widgets/Event/deactivate object": "장치 해체", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "준비", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "튜토리얼", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "맹독", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "일일 첫 승리 보너스: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "임무 교체를 위한 우호도와 돈이 부족합니다", "ArenaQuestReroll/NotHaveStanding": "임무 교체를 위한 우호도가 부족합니다", "ArenaRaidInviteDescription": "{0} 님이 당신을 전투에 초대했습니다", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Any mode", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "게임 모드", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Locations", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiple game modes", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "정말로 게임에서 일찍 나가시겠습니까?", "ArenaUI/BattleMenu/FreeQuitWarning": "- 패널티 없이 매치에서 나갑니다", "ArenaUI/BattleMenu/MatchLeave": "매치 나가기", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "카센터", "Arena_Bay5": "5번 항만", "Arena_Bowl": "경기장", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "이퀘이터", "Arena_result_final": "최종", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "등 위쪽", "ArmorVest": "방탄복\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "랭크", "ArmoryCondition/CompletedDailyQuests": "완료한 일일 임무:", "ArmoryCondition/CompletedWeeklyQuests": "완료한 주간 임무:", @@ -15665,6 +15778,7 @@ "Barterdescription": "[Barter]\n물물교환", "Battle category": "전투 카테고리", "BattleCategory": "전투", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK 시스템", "BearAssaultoperations": "BEAR 강습 작전", "BearAuthority": "BEAR 지휘권", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "보험료 [{0:0.#%}] 감소", "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "은신처의 스캐브 케이스 비용 할인", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "The following items will be moved to the task item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to task item stash", "Check your email": "계정 등록에 사용하였던 이메일을 확인해 주세요. 5분 이내로 인증코드가 발송됩니다.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "구매 불가능", "ClothingPanel/Available_both_games": "EFT와 아레나 겸용", "ClothingPanel/Available_only_arena": "아레나 전용", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "웹사이트에서 구매 가능", "ClothingPanel/InternalObtain": "Trader purchase conditions:", "ClothingPanel/LoyaltyLevel": "상인\n우호도 레벨:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "서버에 연결하는 중...", "Connection to server lost": "서버와의 연결이 끊어졌습니다.", "Console": "콘솔", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "임무 완료한 횟수", "Daily/Stat/VeryEasy": "\"매우 쉬운\" 임무 완료 횟수", "Daily/Stat/VeryHard": "\"매우 어려운\" 임무 완료 횟수", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "매치 승리", "DailyQuestName/ArenaWinRound": "라운드 승리", "DailyQuestName/Completion": "물건 전달 임무", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "화상", "DamageType_GrenadeFragment": "수류탄 파편", "DamageType_HeavyBleeding": "과다 출혈", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "충격(Impact) 피해", "DamageType_Landmine": "지뢰", "DamageType_LightBleeding": "가벼운 출혈", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "방사능 피폭", "DamageType_Sniper": "저격", "DamageType_Stimulator": "자극제 부작용", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "이전 피해", "Day": "일", "DeactivateObject": "Deactivate the device", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "엄호 사격", "ETraderServiceType/BtrItemsDelivery": "창고로 아이템 옮기기", "ETraderServiceType/PlayerTaxi": "택시", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "장비", "EWishlistGroup/Hideout": "은신처", "EWishlistGroup/Other": "기타", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "무기 주변에 공간이 부족하여 {0} 을 {1} 에 장착할 수 없습니다. 부품 장착을 위해 공간을 확보해 주세요.", "Escape": "뒤로가기", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "현재 들고 있는 무기 점검", "Excellent standing": "훌륭함", "ExceptionItem": "이 상인은 그 아이템을 수리할 수 없습니다", @@ -16627,6 +16771,7 @@ "FoundInRaid": "레이드에서 발견", "Free cam": "자유 시점", "FreeChangeQuest": "Free of charge", + "FreeWeekend": "Free Weekend", "Freetrading": "자유 거래", "Freetradingdescription": "[Free Trading]\n자유 거래", "Friend invite to {0} was sent succesfully": "{0} 님에게 친구 요청이 성공적으로 전송되었습니다!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "광신도 제단", "Hideout/CircleOfCultists/MaxItemsCount": "아이템 최대 개수: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "당신이 은신처에 있는 동안에는 광신도들이 선물을 줄 수 없습니다", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "이 아이템은 보조 도구로 사용됩니다. 제작이 완료될 때 마다 창고로 반환됩니다.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "뒷머리", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "[필요 검색]", "NetworkError/SessionLostErrorMessage": "세션 만료. 다시 로그인하셔야 합니다.", "NetworkError/TooManyFriendRequestsHeader": "요청이 너무 많습니다", @@ -17620,6 +17768,7 @@ "PVE settings": "\bAI 설정", "Pain": "고통", "Painkiller": "진통제 복용 상태", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Chilling horror", "PaperGesture": "Paper", "Paramedic": "위생병", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "갱신 비용:", "Quest/Change/TimeLeft": "임무 완수까지 남은 시간:", "Quest/Change/Tooltip": "주간/일일 임무 갱신 비용:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "특정 카테고리의 아이템을 레이드 한 번 만에 찾기: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd} 사살하기", "QuestCondition/Elimination/Kill": " {onesession}{weapon}{weapontype}{distance}{bodypart}{botrole}{target}", "QuestCondition/Elimination/Kill/BodyPart": " {0}를 맞춰서", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "특정 카테고리의 아이템을 레이드에서 가져오기: {0}", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "인포서", "QuestCondition/Preset/632f8229f6541cacd808452c": "어썰트", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "아무 지역", "QuestCondition/SurviveOnLocation/ExitName": " \"{0}\" 탈출구를 통해", "QuestCondition/SurviveOnLocation/Location": "지역", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "머리", "QuestCount/Transfered": "옮겨짐", "QuestCount/Transferred": "Eliminated:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "전체 음량:", "Settings/Sound/ReadyToMatchSoundVolume": "매치 수락 화면 소리:", "Settings/UnavailablePressType": "비활성화됨", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "극심한 근육통", "Shack": "Military Base CP", "Shadow visibility:": "그림자 가시거리:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "발사 방식", "Tactical": "전술장치 토글", "Tactical clothing": "전술 의류", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "전술 조끼", @@ -18582,6 +18746,7 @@ "Task": "임무", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "임무 수행능력", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Team deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "(Train Depot) 기차역으로 태워달라고? 참고로 내가 없으면 거기서 빠져나올 수 없을거야. 가격만 괜찮으면 태워줄게, 대신 거기서 시간 확인 하는 거 잊지 말라고, 알겠지?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "떠나기", "Trading/Dialog/ServicePayoff{0}": "좋아, 이 정도면 괜찮지. (건네주기 \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "대화내역 숨기기", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Interact", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "떨림", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "창고 가로줄 수", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "전술 의류", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "끄기", "UI/Settings/NVidiaReflexMode/On": "켜기", "UI/Settings/NVidiaReflexMode/OnAndBoost": "켜기 & 부스트", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "기본", "UI/Settings/NotificationType/WebSocket": "웹 소켓", "UI/Settings/OtherActions": "기타 동작", "UI/Settings/Rest": "기타", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "카리스마 스킬 할인", "UI/Standing:": "상인 우호도:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "알 수 없는 오류", "UnknownErrorMessage": "알 수 없는 오류가 발생했습니다. 게임 종료 후 버그 리포트를 제출하세요.", "UnknownToxin": "정체불명의 독소", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "탄약 꺼내기", "Unloadmagazine": "탄창 제거", "Unlock": "잠금 해제", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "[Weapon Modding]\n무기 개조 스킬은 부품의 인체공학 수치를 올려주고 소음기의 손상을 줄여줍니다.", "WeaponMounting": "무기 거치", "WeaponPunch": "개머리판으로 공격", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "총기 반동 [{0:0.#%}] 감소", "WeaponReloadBuff": "재장전속도 [{0:0.#%}] 상승", "WeaponStiffHands": "무기 인체공학 [{0:0.#%}] 상승", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "지금은 플리마켓을 이용하실 수 없습니다.", "You can't use ragfair now": "지금은 플리마켓을 이용하실 수 없습니다.", "You can't use that symbol": "해당 단어는 사용할 수 없습니다", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "레이드 도중에는 텍스처 품질을 변경할 수 없습니다.", "You cannot take off a dogtag from a friend or group member": "친구 혹은 파티 멤버의 인식표는 획득할 수 없습니다.", "You don't have some items to finish the deal": "거래에 필요한 아이템이 부족합니다", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "목표 점령 후 유지", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "경험치", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "프리셋 복제:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Attempts left:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP LEFT", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECT ARENA", "arena/matching/SelectGametype": "SELECT GAME TYPE", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Unavailable", "arena/matching/buyPreset": "SELECT PRESET", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "어썰트", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "즐겨찾기", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "랭킹", "arena/tab/SCOUT": "스카웃", "arena/tab/SQB": "인포서", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "프리셋", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complete daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complete weekly tasks:", "arenaui/presetview/lockedpreset": "사용할 수 없는 프리셋", "arm broke": "당신의 팔이 부러졌습니다", "assaultKills": "사살한 횟수 : 돌격소총", @@ -19643,6 +19860,29 @@ "camora_003": "약실 4", "camora_004": "약실 5", "camora_005": "약실 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "{0} 플레이어가 친구 요청을 취소했습니다", "cancelfriendrequest": "친구 요청 취소", "captcha/too frequent attempts": "너무 많은 시도로 인해, 지금은 상인들과 플리마켓 사용이 불가능합니다. 나중에 시도해 주세요.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Sewage conduit", "lab_Vent": "Ventilation shaft", "labir_exit": "The Way Up", + "laboratory": "연구소", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "마지막으로 플레이한 날짜", "leader": "리더", @@ -20358,6 +20599,7 @@ "un-sec": "Northern UN roadblock", "undefined": "", "uninstall": "장착 해제", + "unlock requires:": "잠금 해제 조건:", "unlockedSafes": "열어본 금고", "unpack": "포장 뜯기", "usecKills": "USEC 사살 횟수", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "[Ground Zero]\n타르코프의 상업 중심지입니다. 테라그룹의 본사가 있었던 장소로, 모든 것이 여기서 시작되었습니다.", "65b8d6f5cdde2479cb2a3125 Name": "그라운드 제로", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "[솜씨 좋은 바느질 - 파트 3 (Sew it Good - Part 3), 성공]\n전부 가져왔어? 한번 확인해 보게 이리 줘봐. 이런 씨벌! 뭐가 이렇게 미친 듯이 무거운 거지?! 나중에 따로 확인해야겠네. 여기, 도와준 대가로 사례를 준비했어.", "5ae9bb6986f77415a869b40b": "레이드에서 내구도가 0% ~ 50% 상태인 [6B13 방탄복] 획득하기", - "5ae9bc6e86f7746e0026222c": "레이드에서 획득한 내구도 0% ~ 50% 상태인 [6B13 방탄복] 건네주기", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "레이드에서 내구도가 50% ~ 100% 상태인 [6B13 방탄복] 획득하기", - "5ae9bea886f77468ab400e64": "레이드에서 획득한 내구도 50% ~ 100% 상태인 [6B13 방탄복] 건네주기", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "물병자리 작전 - 파트 2", + "664ca9f577af670dad0ad339 description": "[물병자리 작전 - 파트 2(Operation Aquarius - Part 2)]\n다시 만나서 반가워요. 제 밑의 사람들이 깨끗한 물을 가지고 불법적인 일을 저지른 사람들을 찾아냈어요. 물론, 정보를 찾아준 당신의 도움이 커요. 세관(Customs) 지역에서 활동 중인 스캐브 갱단이 그 일을 저질렀더군요. 이런 요구를 하는 건 정말 불편하지만, 그 비열한 악당들은 사람의 목숨을 가지고 더러운 사업을 계속하고 있어요. 그들이 했던 것처럼 똑같이 고통스럽게 죽음을 맞이하게 해서, 그들이 어떤 짓을 했는지, 왜 벌을 받는 건지 느낄 수 있게 해야 해요. 해 줄 수 있나요?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "[물병자리 작전 - 파트 2(Operation Aquarius - Part 2), 성공]\n스스로 자랑스러워해도 좋아요. 비록 당신이 오늘 여러 목숨을 앗아갔을지라도, 인간을 탈을 쓴 짐승들보다 훨씬 더 많은 무고한 시민들의 목숨을 구한 거니까요.", + "664ca9f577af670dad0ad33d": "세관(Customs)에서 스캐브 사살하기", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "물병자리 작전 - 파트 2", + "6659a9716b1be75165030e4e description": "[물병자리 작전 - 파트 2(Operation Aquarius - Part 2)]\n다시 만나서 반가워요. 제 밑의 사람들이 깨끗한 물을 가지고 불법적인 일을 저지른 사람들을 찾아냈어요. 물론, 정보를 찾아준 당신의 도움이 커요. 세관(Customs) 지역에서 활동 중인 스캐브 갱단이 그 일을 저질렀더군요. 이런 요구를 하는 건 정말 불편하지만, 그 비열한 악당들은 사람의 목숨을 가지고 더러운 사업을 계속하고 있어요. 그들이 했던 것처럼 똑같이 고통스럽게 죽음을 맞이하게 해서, 그들이 어떤 짓을 했는지, 왜 벌을 받는 건지 느낄 수 있게 해야 해요. 해 줄 수 있나요?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "[물병자리 작전 - 파트 2(Operation Aquarius - Part 2), 성공]\n스스로 자랑스러워해도 좋아요. 비록 당신이 오늘 여러 목숨을 앗아갔을지라도, 인간을 탈을 쓴 짐승들보다 훨씬 더 많은 무고한 시민들의 목숨을 구한 거니까요.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "좋아.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "모든 물건은 목록에 적어놨어. 물건을 획득한 후 투입 지점으로 가져와.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "내 인내심이 그만큼 줄어들겠지만, 다른 임무로 바꿔줄 수도 있어.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC의 가장 친한 친구", "6512ea46f7a078264a4376e4 description": "PMC로 플레이 하며 인터체인지(Interchange)에서 Scav 협동 탈출구로 살아서 탈출하기", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "던전 마스터", "67a0e57b972c11a3f50773b2 description": "미궁(Labyrinth) 이벤트 임무들과 모든 사이드 임무들을 완료", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/pl.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/pl.json index cae205dd..dc46f66e 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/pl.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/pl.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Zamknięta walizka", "6740987b89d5e1ddc603f4f0 ShortName": "Zamknięta walizka", "6740987b89d5e1ddc603f4f0 Description": "Zawartość nie jest znana, ale do otwarcia potrzebny będzie klucz.", + "67446fdd752be02c220f27b3 Name": "Rakieta SzG-2", + "67446fdd752be02c220f27b3 ShortName": "SzG-2", + "67446fdd752be02c220f27b3 Description": "Termobaryczna rakieta szturmowa 72,5 mm do wyrzutni rakiet RSzG-2.", "67449b6c89d5e1ddc603f504 Name": "Klucz do walizki", "67449b6c89d5e1ddc603f504 ShortName": "Klucz do walizki", "67449b6c89d5e1ddc603f504 Description": "Klucz odpowiedni do otwierania większości standardowych walizek.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Zimowa skrzynia Twitch 2025 (epicka)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Skrzynia z epickim łupem.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Spodnie taktyczne", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "Skrzynia LATAM Drops Event 2025 (powszechna)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "Skrzynia LATAM Drops Event 2025 (epicka)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "Ta skrzynka to ostateczne rozwiązanie problemu nagromadzenia różnych kluczy w schowku, pomoże trzymać je w jednym miejscu.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Droga do bazy wojskowej: wyjazd", " Voip/DisabledForOffline": "VOIP jest niedostępny w trybie offline", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Na pewno chcesz usunąć zmodyfikowane wyposażenie?", "APC/CustomizationTab": "Personalizacja", "APC/EnterName": "Wprowadź nazwę", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Szybki dostęp", "APC/Locked": "Zablokowane", "APC/PurchasedStatesAll": "Wszystkie", "APC/ReadyToUlock": "Do odblokowania", "APC/Unlocked": "Odblokowane", "APC/ViewPreset": "Pokaż", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Obrona{1}", "APCBar/Firepower": "{0}Siła ognia{1}", "APCBar/Metascore": "{0}Punkty meta{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Karabin. samopowtarzalne", "APCFilter/AssaultRifles": "Karabin. automatyczne", "APCFilter/AssaultScope": "Lunety szturmowe", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Części pomocnicze", "APCFilter/Barrel": "Lufy", "APCFilter/Bipod": "Dwójnogi", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Rączki przeładowania", "APCFilter/Collimator": "Celowniki kolimatorowe", "APCFilter/CompactCollimator": "Kompaktowe celowniki kolimatorowe", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Broń biała", "APCFilter/Mount": "Montaże", "APCFilter/Muzzle": "Urządzenia wylotowe", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adaptery na lufę", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Lunety", "APCFilter/PistolGrip": "Chwyty pistoletowe", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolety", "APCFilter/Receiver": "Pokrywy komory zamkowej, komory zamkowe, zespoły spustowe", "APCFilter/SMGs": "Pistolety maszynowe", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "POZIOMY", "ARENA/ARMORY/LINKS": "POWIĄZANIA", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transfer do EFT jest niedostępny", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "KLASA OPANCERZENIA", "ARMOR POINTS": "PUNKTY PANCERZA", "ARMOR TYPE": "TYP PANCERZA", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Nie znaleziono przedmiotu", "Arena/Armory/LevelReward/readyToUlockState": "Gotowe", "Arena/Armory/LevelReward/unlockedState": "Gotowe", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Zablokowane", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Za mało pieniędzy", "Arena/BigCustomPurchaseInfo/Purchase": "Kup", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Dogrywka", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} z {1}", "Arena/BlastGang/ResultScreenSwapSides": "Zmiana stron", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Anuluj zaproszenia do listy znajomych", "Arena/CustomGame/Lobby/cancel invite to group": "Anuluj zaproszenie do grupy", "Arena/CustomGame/Lobby/invite to friends": "Zaproś do listy znajomych", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Pozostało prób:", "Arena/CustomGames/Create/Maps": "Lokalizacje", "Arena/CustomGames/Create/Modes": "Tryby", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Podtryby", "Arena/CustomGames/Create/TournamentMode": "Tryb turnieju", "Arena/CustomGames/Create/TournamentSettings": "Ustawienia turnieju", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Weź", "Arena/CustomGames/No servers found": "Nie znaleziono aktywnych serwerów", "Arena/CustomGames/Observers": "Widzowie", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Wchodzenie na serwer", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Zastąpienie zadania operacyjnego / Ref", "Arena/CustomGames/Settings": "Ustawienia", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Wyłączone", "Arena/CustomGames/Settings/enable": "Włączone", "Arena/CustomGames/create/enter name": "Wprowadź nazwę", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Region", "Arena/CustomGames/toggle/room name": "Nazwa pokoju", "Arena/CustomGames/toggle/tournament": "Turniej", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Mecz zakończył się podczas twojej nieobecności", "Arena/EnterPresetName": "Wpisz nazwę konfiguracji", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Obrażeń zadanych przeciwnikom", "Arena/MVP/DeactivatedBomb": "Dezaktywował urządzenie", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Broń", "Arena/Rematching": "Powrót do dopasowania z wysokim priorytetem", "Arena/Rematching/NoServer": "Z przyczyn technicznych serwer nie został znaleziony. Powrót do wyszukiwania gry.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Lazurowy", "Arena/TeamColor/azure_plural": "Lazurowi", "Arena/TeamColor/blue": "Niebieski", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Niebiescy", "Arena/TeamColor/fuchsia": "Różowy", "Arena/TeamColor/fuchsia_plural": "Różowi", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Zieloni", "Arena/TeamColor/grey": "Szary", "Arena/TeamColor/red": "Czerwony", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Czerwoni", "Arena/TeamColor/white": "Biały", "Arena/TeamColor/white_plural": "Biali", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Konfiguracji odblokowano", "Arena/Tooltip/MapSelectedCounter": "Liczba wybranych lokalizacji", "Arena/Tooltip/MinMapCount {0}": "Wybierz wiele lokalizacji. Musisz wybrać\u00A0przynajmniej {0} lokalizacji", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Warunki nie są spełnione", "Arena/UI/APCItemBuyCaption": "Odblokowanie przedmiotu", "Arena/UI/APCItemBuyDescription": "Kup przedmiot?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Zabrane konfiguracje", "Arena/UI/Waiting": "Oczekiwanie…", "Arena/Ui/ServerFounding": "Szukanie serwera…", + "Arena/Widgets/ team {0} capturing point": "Drużyna {0} zdobywa cel", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Umieszczanie urządzenia", "Arena/Widgets/Event/can activate object": "Umieść urządzenie", "Arena/Widgets/Event/deactivate object": "Deaktywuj urządzenie", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "GOTOWE", "ArenaArmoryItemReward/Description": "Odblokowuje przedmiot w zbrojowni", "ArenaArmoryScreen/TutorialButton": "Samouczek", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Silna trucizna", "ArenaMemberCategory/UniqueID": "Edycja Ryżego", "ArenaPostMatchScreen/DailyExpBonus {0}": "Dzienny bonus za pierwszą wygraną: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Za mało reputacji i pieniędzy na zamianę tego zadania", "ArenaQuestReroll/NotHaveStanding": "Za mało reputacji na zamianę tego zadania", "ArenaRaidInviteDescription": "{0} zaprasza cię\u00A0do bitwy", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Dowolny tryb", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Tryb(y) gry", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Lokalizacje", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Wiele trybów gry", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Na pewno chcesz opuścić grę wcześnie?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Opuścisz mecz bez kary", "ArenaUI/BattleMenu/MatchLeave": "OPUŚĆ MECZ", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Dziupla", "Arena_Bay5": "Dok 5", "Arena_Bowl": "Stadion", + "Arena_Prison": "Prison", "Arena_Yard": "Blok", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Ostatnia", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Górne plecy", "ArmorVest": "Pancerz\n", "ArmoryCondition/ArenaArmoryProgression": "Osiągnij poziom broni {0} z:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Ranga", "ArmoryCondition/CompletedDailyQuests": "Ukończ dzienne zadania:", "ArmoryCondition/CompletedWeeklyQuests": "Ukończ tygodniowe zadania:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Barter", "Battle category": "Kategoria bojowa", "BattleCategory": "Walka", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Systemy AK BEAR", "BearAssaultoperations": "Operacje szturmowe BEAR", "BearAuthority": "Autorytet BEAR", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Zmniejsza ceny usług ubezpieczenia o [{0:0.#%}]", "CharismaLevelingUpDescription": "Umiejętność charyzma jest ulepszana pośrednio poprzez zdobywanie poziomów umiejętności uwaga, postrzeganie i intelekt.", "CharismaScavCaseDiscount": "Dodaje zniżkę na ceny skrytki Scava", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Następujące przedmioty zostaną przeniesione do schowka na przedmioty fabularne:", "ChatScreen/QuestItemsMoved": "Przedmioty pomyślnie przeniesiono do schowka na przedmioty fabularne", "Check your email": "Sprawdź e-mail użyty podczas rejestracji konta. W przeciągu 5 minut otrzymasz identyfikator urządzenia.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Niedostępne", "ClothingPanel/Available_both_games": "Dostępne zarówno w EFT i Arenie", "ClothingPanel/Available_only_arena": "Dostępne tylko w Arenie", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Dostępne do kupienia na stronie", "ClothingPanel/InternalObtain": "Warunki zakupu u handlarza:", "ClothingPanel/LoyaltyLevel": "Poziom lojalności\nhandlarza:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Poziom postaci", "Conditional/ConditionQuest/Type": "Zadania:", "Conditional/ConditionSkill/Type": "Umiejętności:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Łączenie z serwerem…", "Connection to server lost": "Utracono połączenie z serwerem", "Console": "Konsola", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Kotłownia w piwnicy (współpraca)", "CustomizationDirectReward/Description": "Odblokujesz ten styl jako nagrodę", "CustomizationNotExists": "Niedostępna odzież w jednej lub kilku konfiguracjach", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Odblokowuje ofertę na odzież taktyczną", "CustomizationReward/Description": "Odblokowuje odzież taktyczną", "Customizations/ObtainHeader": "Otrzymano:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Łącznie wykonanych zadań", "Daily/Stat/VeryEasy": "Łącznie wykonanych bardzo prostych zadań", "Daily/Stat/VeryHard": "Łącznie wykonanych bardzo trudnych zadań", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Wygraj mecz", "DailyQuestName/ArenaWinRound": "Wygraj rundę", "DailyQuestName/Completion": "Znajdź i przekaż", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Płomień", "DamageType_GrenadeFragment": "Odłamki", "DamageType_HeavyBleeding": "Ciężkie krwawienie", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Obrażenia od uderzenia", "DamageType_Landmine": "Mina", "DamageType_LightBleeding": "Lekkie krwawienie", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Działanie radioaktywne", "DamageType_Sniper": "Strzał snajpera", "DamageType_Stimulator": "Efekt uboczny stymulanta", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Poprzednie obrażenie", "Day": "Dzień", "DeactivateObject": "Deaktywuj urządzenie", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Ogień osłonowy", "ETraderServiceType/BtrItemsDelivery": "Przenieś przedmioty do schowka", "ETraderServiceType/PlayerTaxi": "Przejedź się", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Wyposażenie", "EWishlistGroup/Hideout": "Kryjówka", "EWishlistGroup/Other": "Inne", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Nie można dodać {0} do {1}. Zmodyfikowana broń będzie zajmować więcej miejsca, niż jest dostępne. Spróbuj przenieść broń w inne miejsce schowka.", "Escape": "Wstecz", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Obejrzenie aktualnej broni", "Excellent standing": "znakomita", "ExceptionItem": "Handlarz nie może naprawić\u00A0tego przedmiotu", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Znalezione w rajdzie", "Free cam": "Wolna kamera", "FreeChangeQuest": "Za darmo", + "FreeWeekend": "Free Weekend", "Freetrading": "Wolny handel", "Freetradingdescription": "Wolny handel", "Friend invite to {0} was sent succesfully": "Zaproszenie do znajomych zostało pomyślnie wysłane do {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Krąg kultystów", "Hideout/CircleOfCultists/MaxItemsCount": "Maksimum przedmiotów: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Kultyści nie mogą przyznać swoich Darów, gdy jesteś w kryjówce", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Ten przedmiot zostanie użyty jako zewnętrzne narzędzie. Wróci do twojego schowka jak produkcja się\u00A0skończy.", "Hideout/Customization/Ceiling/TabName": "Sufit", "Hideout/Customization/Ceiling/WindowHeader": "Wybierz sufit do instalacji", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Ostatni generator", "Nakatani_stairs_free_exit": "Schody piwnicy w Nakatani", "Nape": "Kark", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "SZUKAJ WYMAGANYCH", "NetworkError/SessionLostErrorMessage": "Utracono sesję. Wymagane przelogowanie się", "NetworkError/TooManyFriendRequestsHeader": "Zbyt wiele zaproszeń", @@ -17620,6 +17768,7 @@ "PVE settings": "Ustawienia SI", "Pain": "Ból", "Painkiller": "Na lekach przeciwbólowych", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Mrożąca krew w żyłach groza", "PaperGesture": "Papier", "Paramedic": "Ratownik medyczny", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Koszt zastąpienia:", "Quest/Change/TimeLeft": "Pozostały czas na ukończenie zadania:", "Quest/Change/Tooltip": "Koszt zastąpienia zadania operacyjnego:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " umierając {0} raz(y)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " umierając mniej niż {0} raz(y)", "QuestCondition/ArenaDeathCount/More{0}": " umierając więcej niż {0} raz(y)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Znajdź przedmiot z kategorii w jednym rajdzie: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Zlikwiduj{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " strzałem w {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Ewakuuj się\u00A0z przedmiotami z kategorii: {0}", "QuestCondition/Many{0}{1}": "{0} {1} raz(y)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Egzekutor", "QuestCondition/Preset/632f8229f6541cacd808452c": "Szturm", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "dowolnej lokalizacji", "QuestCondition/SurviveOnLocation/ExitName": " ewakuując się przez „{0}”", "QuestCondition/SurviveOnLocation/Location": "lokalizacji", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "głowa", "QuestCount/Transfered": "przekazano", "QuestCount/Transferred": "Zlikwidowano:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Głośność ogólna:", "Settings/Sound/ReadyToMatchSoundVolume": "Głośność ekranu akceptowania meczu:", "Settings/UnavailablePressType": "Niedostępny", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Silny ból mięśni", "Shack": "Punkt kontrolny bazy wojskowej", "Shadow visibility:": "Widoczność cieni:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "TRYBY OGNIA", "Tactical": "Przełączenie urządzeń taktycznych", "Tactical clothing": "Odzież taktyczna", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Trzymaj", "TacticalInteractionMode/Press": "Wciśnij", "TacticalVest": "Kamizelka", @@ -18582,6 +18746,7 @@ "Task": "Zadanie", "Taskbar/Unavailable": "Niedostępne", "Taskperformance": "Skuteczność działania", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Walka drużynowa 5 na 5. Celem jest wyeliminowanie drużyny przeciwnej szybciej niż oni zabiją ciebie.", "TeamFightDescriptionShort": "Drużynowy deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Stary tartak", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Podrzucić cię do zajezdni? Ale żebyś wiedział, beze mnie się stamtąd nie wydostaniesz. Jeśli cena jest w porządku, pilnuj tam czasu, ok?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Zajezdnia kolejowa", + "Trading/Dialog/PlayerTaxi/p1/Description": "W porządku, miejsce docelowe – kino Rodina. Cena dla ciebie w porządku?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Kino Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Jedziemy do tramwaju. Masz gotówkę, tak?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tramwaj", + "Trading/Dialog/PlayerTaxi/p3/Description": "Świetnie, jesteśmy na drodze do centrum miasta. Masz wystarczająco gotówki?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centrum miasta", + "Trading/Dialog/PlayerTaxi/p4/Description": "Pojadę do zawalonego dźwigu. Cena ci odpowiada?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Zawalony żuraw", + "Trading/Dialog/PlayerTaxi/p5/Description": "Zabiorę cię do starego punktu kontrolnego Scavów. Cena jest w porządku, tak?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Stary punkt kontrolny Scavów", + "Trading/Dialog/PlayerTaxi/p6/Description": "Zawiozę cię do hotelu Pinewood. Jak cena, wszystko odpowiada?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Odejdź", "Trading/Dialog/ServicePayoff{0}": "W porządku, to powinno wystarczyć. (przekaż „{0}”)", "Trading/Dialog/ToggleHistoryOff": "Ukryj historię", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Brak dostępu", "Transit/InactivePoint": "Przejście niedostępne", "Transit/Interaction": "Interakcja", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Przejście za ", "Transition in {0:F1}": "Przejście za {0:F1}", "Tremor": "Drżenie", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Linijek miejsc ekwipunku w schowku", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Twój schowek zostanie rozszerzony poprzez dodanie nowych linii miejsc ekwipunku.\nTe zmiany zostaną wprowadzone w późniejszym terminie (sprawdź szczegóły na naszej stronie internetowej).", "UI/Quest/Reward/AssortmentUnlockCaption": "Odblokowuje towar na poziomie lojalności {1} u handlarza {0}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Odzież taktyczna", "UI/Quest/Reward/ItemCaption": "Przedmiot", "UI/Quest/Reward/ProductionSchemeCaption": "Wytwarzanie przepisu w {0} na poziomie {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "wyłączone", "UI/Settings/NVidiaReflexMode/On": "włączone", "UI/Settings/NVidiaReflexMode/OnAndBoost": "włączone i boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Domyślny", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Inne działania", "UI/Settings/Rest": "Inne", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Powiadomienia o przedmiotach z listy życzeń", "UI/Skills/Charisma/CharismaDiscount": "Zniżka za umiejętność charyzmy", "UI/Standing:": "Reputacja handlarza:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Nieznany błąd", "UnknownErrorMessage": "Wystąpił nieznany błąd. Zamknij grę i zgłoś błąd.", "UnknownToxin": "Nieznana toksyna", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "ROZŁADUJ AMUNICJĘ", "Unloadmagazine": "Odłączenie magazynka", "Unlock": "Odblokuj", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Umiejętność podstawowej modyfikacji broni zwiększa ergonomię modyfikacji i spowalnia zużywanie się tłumików dźwięku.", "WeaponMounting": "Postaw broń", "WeaponPunch": "Uderzenie kolbą", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Zmniejsza odrzut broni o [{0:0.#%}]", "WeaponReloadBuff": "Zwiększa szybkość przeładowania o [{0:0.#%}]", "WeaponStiffHands": "Zwiększa ergonomię broni o [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Nie możesz teraz użyć pchlego targu", "You can't use ragfair now": "Nie możesz teraz użyć pchlego targu", "You can't use that symbol": "Nie możesz użyć tego znaku", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Nie możesz modyfikować jakości tekstur podczas rajdu.", "You cannot take off a dogtag from a friend or group member": "Nie możesz zabrać nieśmiertelnika ze znajomego bądź członka grupy", "You don't have some items to finish the deal": "Nie masz wszystkich przedmiotów do wykonania transakcji", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Wynik", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Zdobądź i utrzymaj cele", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "Ś", "arena/Exp": "Dośw", "arena/KillShort": "Z", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Usuń", "arena/contextInteractions/card/edit": "Edytuj", "arena/contextInteractions/card/inspect default preset": "Sprawdź", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "TRYB GRY (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Tryb gry (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Dogrywka", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Powielone konfiguracje:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Czas meczu:", "arena/customGames/create/setOvertime": "Ustaw dogrywkę", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Pozwól na powielone konfiguracje", "arena/customGames/create/setScoresToWinCount": "Punktów do wygrania:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "ZAPROSZENIE DO NIESTANDARDOWEJ GRY OD {0}", "arena/customGames/notify/GameRemoved": "Pokój został zamknięty", "arena/customgames/errors/notification/gamealreadystarted": "Gra już się rozpoczęła", "arena/customgames/popup/refreshdailyquest": "Zastąp zadanie operacyjne?", "arena/customgames/popups/attemptscountleft:": "Pozostało prób:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ZOSTAŁO ARP", "arena/info/GP": "GP", "arena/info/KD Ratio": "Z/Ś", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "WYBIERZ ARENĘ", "arena/matching/SelectGametype": "WYBIERZ TYP GRY", "arena/matching/SelectRankedGamemode": "WYBIERZ RANKINGOWY TRYB GRY", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYP", "arena/matching/UnavailableReason": "Niedostępne", "arena/matching/buyPreset": "WYBIERZ ZESTAW", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "odblokowane miejsca:", "arena/questLogTemplate/gameModes": "Tryb(y) gry", "arena/questLogTemplate/maps": "Lokalizacja(-e)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bonus MVP meczu", "arena/resultContent/matchMVPMoneyTitle": "Bonus MVP meczu", "arena/resultContent/roundMVPExpTitle": "Bonus MVP rundy", "arena/resultContent/roundMVPMoneyTitle": "Bonus MVP rundy", "arena/selection/gameMode": "tryb gry", "arena/selection/tiers": "poziom", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "SZTURM", "arena/tab/COLLECTION": "KOLEKCJE", "arena/tab/FAVORITES": "ULUBIONE", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RANKING", "arena/tab/SCOUT": "ZWIADOWCA", "arena/tab/SQB": "EGZEKUTOR", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "Moneta GP. Używana do odblokowywania wyposażenia dla konfiguracji i zakupu sprzętu w EFT. Zdobywana za wykonywanie zadań operacyjnych na Arenie.", "arena/tooltip/OverallMatches": "Łączna liczba zagranych meczów rankingowych i nierankingowych.", "arena/tooltip/Presets": "Konfiguracje", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Twój ogólny współczynnik zwycięstw, obliczony na podstawie wszystkich zwycięstw i porażek w meczach rankingowych i nierankingowych.", "arena/widget/ally_capture_point": "Sojusznicy zdobyli cel", "arena/widget/enemy_capture_point": "Przeciwnicy zdobyli cel", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Ukończ dzienne zadania:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Ukończ tygodniowe zadania:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Ukończ tygodniowe zadania:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Ukończ dzienne zadania:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Ukończ tygodniowe zadania:", "arenaui/presetview/lockedpreset": "Konfiguracja niedostępna", "arm broke": "Złamałeś\u00A0rękę!", "assaultKills": "Zabójstwa karabin. automatycznymi", @@ -19643,6 +19860,29 @@ "camora_003": "Komora 4", "camora_004": "Komora 5", "camora_005": "Komora 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Gracz {0} anulował zaproszenie do znajomych", "cancelfriendrequest": "Anuluj zaproszenie do znajomych", "captcha/too frequent attempts": "Próby są\u00A0zbyt częste. Dostęp do pchlego targu i handlarzy jest obecnie niedostępny. Spróbuj ponownie później.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Rury kanalizacyjne", "lab_Vent": "Szyb wentylacyjny", "labir_exit": "Droga w górę", + "laboratory": "Laboratorium", "labyrinth_secret_tagilla_key": "Scieżka Ariadny", "lastSession": "Ostatnia sesja", "leader": "Dowódca", @@ -20358,6 +20599,7 @@ "un-sec": "Północna blokada ONZ", "undefined": "", "uninstall": "ODINSTALUJ", + "unlock requires:": "odblokowanie wymaga:", "unlockedSafes": "Otwarte sejfy", "unpack": "rozpakuj", "usecKills": "Zabici operatorzy USEC", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Centrum biznesowe Tarkowa. W tym miejscu TerraGroup miało swoją siedzibę. To tutaj wszystko się zaczęło.", "65b8d6f5cdde2479cb2a3125 Name": "Strefa zero", "65b8d6f5cdde2479cb2a3125 Description": "Centrum biznesowe Tarkowa. W tym miejscu TerraGroup miało swoją siedzibę. To tutaj wszystko się zaczęło.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "Labirynt", "6733700029c367a3d40b02af Description": "Obiekt należący do jednego z podmiotów TerraGroup, Knossos LLC. Według informacji dostępnych publicznie budują parki rozrywki i wesołe miasteczka. Jednak to miejsce bardziej przypomina ciężko uzbrojony bunkier niż wesołe miasteczko.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Masz je? Daj je tutaj, popatrzmy. O kurwa, dlaczego one są takie ciężkie?! W porządku, sprawdzę je później. Masz, weź to za pomoc.", "5ae9bb6986f77415a869b40b": "Znajdź\u00A0przedmiot: „Pancerz szturmowy 6B13” z 0-50% wytrzymałości w rajdzie", - "5ae9bc6e86f7746e0026222c": "Przekaż\u00A0przedmiot: „Pancerz szturmowy 6B13” z 0-50% wytrzymałości w rajdzie", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Znajdź\u00A0przedmiot: „Pancerz szturmowy 6B13” z 50-100% wytrzymałości w rajdzie", - "5ae9bea886f77468ab400e64": "Przekaż\u00A0przedmiot: „Pancerz szturmowy 6B13” z 50-100% wytrzymałości w rajdzie", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operacja wodnik – część 2", + "664ca9f577af670dad0ad339 description": "Miło cię widzieć ponownie. Moi ludzie dowiedzieli się, kto brał udział w tych wszystkich nielegalnych operacjach z wodą pitną. Dzięki twoim informacjom oczywiście. To banda Scavów, która działa w składzie celnym. Nie przepadam za takimi prośbami, ale stawką jest życie, a ci łajdacy wciąż kontynuują swoje brudne interesy. Musimy ich odpowiednio odstraszyć, więc pozwól im umierać w męczarniach, żeby poczuli, co zrobili i za co są karani. Zrobisz to?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Możesz być z siebie dumny – nawet jeśli odebrałeś dziś kilka żyć, ci ludzie nie byli najlepszymi osobnikami rasy ludzkiej. Dałeś szansę na przeżycie wielu cywilom.", + "664ca9f577af670dad0ad33d": "Zlikwiduj Scavy w składzie celnym", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Zawierucha", "66588c0c98194a5d26010197 description": "Witaj najemniku! Słyszałeś, co się stało w latarni? Moje źródła donoszą mi, że lokalni przestępcy mieli duży spór z Łotrami i szukają ich w całym mieście i na obrzeżach. Zadaniem jest pomóc tym Zbuntowanym. Ponieważ zakłócanie spokoju i porządku na mojej warcie jest zabronione. Zrozumiano?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operacja wodnik – część 2", + "6659a9716b1be75165030e4e description": "Miło cię widzieć ponownie. Moi ludzie dowiedzieli się, kto brał udział w tych wszystkich nielegalnych operacjach z wodą pitną. Dzięki twoim informacjom oczywiście. To banda Scavów, która działa w składzie celnym. Nie przepadam za takimi prośbami, ale stawką jest życie, a ci łajdacy wciąż kontynuują swoje brudne interesy. Musimy ich odpowiednio odstraszyć, więc pozwól im umierać w męczarniach, żeby poczuli, co zrobili i za co są karani. Zrobisz to?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Możesz być z siebie dumny – nawet jeśli odebrałeś dziś kilka żyć, ci ludzie nie byli najlepszymi osobnikami rasy ludzkiej. Dałeś szansę na przeżycie wielu cywilom.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Spragniony – ogary", "665eeacf5d86b6c8aa03c79b description": "Musimy porozmawiać. Zbiry Sanitara grasują nocami na wybrzeżu. Najwyraźniej czegoś szukają. Nie możemy pozwolić, by zostało to bez kontroli. Odstrasz ich, a ja spróbuję dowiedzieć się, co planują.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Zapytaj o drogę", "674492b6909d2013670a347a description": "Mówisz, że Ragman szuka nowych tras? Sam się nad tym teraz zastanawiam, bo Narciarz nie chce mnie tak łatwo puścić. Ale jest jedna opcja, z której Ragman mógłby skorzystać. Nie przejadę tamtędy moim BTR-em, ale kiedy byłem drobnym przechodniem, często się tam przemykałem.\n\nZnasz wioskę przy klifach, gdzie są domki? Możesz wejść na górę z jednego z podwórek, a następnie podążać za szczeliną. Gdy dotrzesz do tych bogatych domów, będziesz musiał mieć się na baczności.\n\nNie ma już naprawdę bezpiecznych dróg, więc myślę, że ta jest lepsza niż żadna. Upewnij się tylko, że wrócisz do mnie, gdy już ją zaznaczysz, dla pewności sprawdzę ją z moimi mapami.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Świąteczna kolacja", "675031be899713ccad00060c description": "Jak leci, przyjacielu! Nie jest ci zimno, co? Sprawa wygląda tak… Zorganizujemy ucztę z naszymi towarzyszami broni w bazie, w końcu są święta!\n\nAle wiesz, jak to jest w magazynach inwentaryzacyjnych. Według ewidencji wszystko jest, a w rzeczywistości jest tylko tuszonka i góra ziemniaków. Chcieliśmy zrobić sałatkę oliwkową, może dwie miski. Potrzebujemy też trochę gorzałki.\n\nDasz radę? Tylko nie przynoś ziemniaków, mamy ich wystarczająco dużo.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "Nie sądziłem, że będę częścią jakiegoś rytuału... No cóż, ogarnę to, jak tam dotrę.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "Zrobione. Twoim kolegom się to spodoba.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Opuszczanie lokalu", "67d03be712fb5f8fd2096332 description": "Ten cały cyrk z resortem to wielkie halo, co? Tylko widzisz, jak ci mówiłem, mam interesy z Refem w tych piwnicach. Myślałem, że Ref zabrał stamtąd cały sprzęt, ale okazuje się, że zostawił tak masę rzeczy. To sobie myślę, komu szkodzi, jak część z niego weźmiemy?\n\nNie, telewizorów i kamer nie potrzebuję, nie martw się. One potrzebują ostrożnej inspekcji i pakowania. Od tego mam swoich ludzi. Ale nie mogę ich tam ot tak teraz wysłać! Są dobrzy z techniką itede, ale chujowi z bronią. Jeśli prawdziwy profesjonalista, taki jak no na przykład ty, zszedłby tam najpierw i przegonił wszystkich innych typów, wtedy jesteśmy ustawieni.\n\nI jak tylko mi to przyszło do głowy, od razu o tobie pomyślałem! Gotów pomóc w słusznej sprawie? Oczywiście jesli dobrze wykonasz robotę, dostaniesz dobre rzeczy w zamian!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Czysto, powiadasz? Dobra robota, żołnierzu.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Dobrze.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Wszystkie wymagane przedmioty znajdują się na liście. Znajdź je i przynieś do punktu zrzutu.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Są dostępne inne zadania, ale kosztem mojej cierpliwości.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Najlepszy przyjaciel PMC", "6512ea46f7a078264a4376e4 description": "Przetrwaj i ewakuuj się z węzła transportowego przez wyjście współpracy ze Scavem grając jako PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Śmiertelny wynik", "670febed5ee0fc738a0965a4 description": "Zniszcz wirusa wraz ze wszystkimi zarażonymi i ukończ linię zadań wydarzenia Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Napęd na wszystkie koła", "675709bef4e2a2ce0f058f56 description": "Rozwiąż problem z kierowcą BTR-a w ten czy inny sposób", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Mistrz Lochu", "67a0e57b972c11a3f50773b2 description": "Ukończ linię zadań w wydarzeniu Labirynt wraz ze wszystkimi misjami pobocznymi", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/po.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/po.json index 76910e6b..bfcf41b6 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/po.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/po.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Calças táticas", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VOIP está desativado no modo offline", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Tem certeza de que deseja remover o equipamento modificado?", "APC/CustomizationTab": "Personalização", "APC/EnterName": "Inserir nome", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Acesso rápido", "APC/Locked": "Bloqueado", "APC/PurchasedStatesAll": "Todos", "APC/ReadyToUlock": "Desbloqueável", "APC/Unlocked": "Desbloqueado", "APC/ViewPreset": "Visualizar", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defesa{1}", "APCBar/Firepower": "{0}Poder de Fogo{1}", "APCBar/Metascore": "{0}Pontuação{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Carabinas de assalto", "APCFilter/AssaultRifles": "Rifles de assalto", "APCFilter/AssaultScope": "Lunetas de assalto", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Peças auxiliares", "APCFilter/Barrel": "Canos", "APCFilter/Bipod": "Bipés", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Alças de ferrolho", "APCFilter/Collimator": "Mira reflexiva", "APCFilter/CompactCollimator": "Mira reflexiva compacta", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Armas brancas", "APCFilter/Mount": "Suportes", "APCFilter/Muzzle": "Dispositivos de cano", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Adaptadores de cano", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Miras opticas", "APCFilter/PistolGrip": "Empunhaduras", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistolas", "APCFilter/Receiver": "Dust cover, Receiver, Conjuntos de gatilhos", "APCFilter/SMGs": "Sub-metralhadoras", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "SUBIR DE NÍVEL", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Tranferir ao EFT está indisponível", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "CLASSE DE ARMADURA", "ARMOR POINTS": "PONTOS DE ARMADURA", "ARMOR TYPE": "ARMOR TYPE", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item não encontrado", "Arena/Armory/LevelReward/readyToUlockState": "Pronto", "Arena/Armory/LevelReward/unlockedState": "Pronto", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Bloqueado", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Dinheiro insuficiente ", "Arena/BigCustomPurchaseInfo/Purchase": "Compra", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Prorrogação", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} de {1}", "Arena/BlastGang/ResultScreenSwapSides": "Trocando lados", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Cancelar convite de amigo", "Arena/CustomGame/Lobby/cancel invite to group": "Cancelar convite de grupo", "Arena/CustomGame/Lobby/invite to friends": "Convidar para lista de amigos", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Tentativas restantes:", "Arena/CustomGames/Create/Maps": "Localizações", "Arena/CustomGames/Create/Modes": "Modos", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submodos", "Arena/CustomGames/Create/TournamentMode": "Modo Torneio", "Arena/CustomGames/Create/TournamentSettings": "Configurações do torneio", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Pegar", "Arena/CustomGames/No servers found": "Não foi possível encontrar servidor ativos", "Arena/CustomGames/Observers": "Espectadores", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Entrando no servidor", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Substituir missão operacional / Trocar", "Arena/CustomGames/Settings": "Configurações", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Desabilitado", "Arena/CustomGames/Settings/enable": "Habilitado", "Arena/CustomGames/create/enter name": "Inserir nome", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Região", "Arena/CustomGames/toggle/room name": "Nome da sala", "Arena/CustomGames/toggle/tournament": "Torneio", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Partida terminou enquanto você estava ausente", "Arena/EnterPresetName": "Digite o nome do kit", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Dano causado a inimigos", "Arena/MVP/DeactivatedBomb": "Desativou o dispositivo", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Armas", "Arena/Rematching": "Retornando a busca de partida com alta prioridade", "Arena/Rematching/NoServer": "Devido a problemas técnicos, o servidor não pode ser encontrado. Retornando a busca de partida.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azure", "Arena/TeamColor/azure_plural": "Azure", "Arena/TeamColor/blue": "Azul", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Azul", "Arena/TeamColor/fuchsia": "Rosa", "Arena/TeamColor/fuchsia_plural": "Rosa", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verde", "Arena/TeamColor/grey": "Cinza", "Arena/TeamColor/red": "Vermelho", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Vermelhos", "Arena/TeamColor/white": "Branco", "Arena/TeamColor/white_plural": "Branco", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Kits desbloqueados", "Arena/Tooltip/MapSelectedCounter": "Número de locais selecionados", "Arena/Tooltip/MinMapCount {0}": "Selecione vários locais. Você precisa selecionar pelo menos {0} local(is)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Condições não atingidas", "Arena/UI/APCItemBuyCaption": "Item desbloqueado", "Arena/UI/APCItemBuyDescription": "Comprar o item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Kit ocupado", "Arena/UI/Waiting": "Aguardando...", "Arena/Ui/ServerFounding": "Procurando servidor...", + "Arena/Widgets/ team {0} capturing point": "O time {0} está capturando o objetivo", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Plantando dispositivo", "Arena/Widgets/Event/can activate object": "Ative o dispositivo", "Arena/Widgets/Event/deactivate object": "Desative o dispositivo", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "PRONTO", "ArenaArmoryItemReward/Description": "Desbloqueia item no Arsenal", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Veneno potente", "ArenaMemberCategory/UniqueID": "Edição Ryzhy", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bonus de primeira vitória diária: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Dinheiro e reputação insuficiente para substituir esta missão", "ArenaQuestReroll/NotHaveStanding": "Reputação insuficiente para substituir esta missão", "ArenaRaidInviteDescription": "{0} te convidou para batalha", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Qualquer modo de jogo", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Modo(s) de jogo", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Localizações", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Vários modos de jogo", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Tem certeza que deseja sair do jogo antes do fim?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Você deixará a partida sem penalidades", "ArenaUI/BattleMenu/MatchLeave": "DEIXAR A PARTIDA", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Costas superior", "ArmorVest": "Colete", "ArmoryCondition/ArenaArmoryProgression": "Alcance nível {0} com a arma:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rank", "ArmoryCondition/CompletedDailyQuests": "Completar missão diária:", "ArmoryCondition/CompletedWeeklyQuests": "Completar missão Semanal:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Troca", "Battle category": "Categoria de Batalha", "BattleCategory": "Combate", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "Sistemas de AK dos Bear", "BearAssaultoperations": "Operações de assalto dos Bear\n\n", "BearAuthority": "Autoridade Bear", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Reduz os preços dos serviços de seguro em [{0:0.#%}]", "CharismaLevelingUpDescription": "A habilidade de Carisma é melhorada indiretamente ao evoluir as habilidades de Atenção, Percepção e Intelecto.", "CharismaScavCaseDiscount": "Adiciona um desconto aos preços da Caixa Scav", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Os seguintes itens serão transferidos para o estoque de itens de missão:", "ChatScreen/QuestItemsMoved": "Itens transferidos com sucesso para o estoque de itens de missão", "Check your email": "Por favor cheque o e-mail que você usou para registrar essa conta. Você deverá receber o ID do dispositivo dentro de 5 minutos a partir de agora.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Indisponível", "ClothingPanel/Available_both_games": "Disponível tanto no EFT quanto no Arena", "ClothingPanel/Available_only_arena": "Disponível apenas no Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Disponível para compra no website", "ClothingPanel/InternalObtain": "Condições de compra do comerciante:", "ClothingPanel/LoyaltyLevel": "Comerciante\nNível de Reputação:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Nível do personagem", "Conditional/ConditionQuest/Type": "Missões:", "Conditional/ConditionSkill/Type": "Habilidades:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Conectando ao servidor...", "Connection to server lost": "Conexão com o servidor perdida", "Console": "Console", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler room basement (Co-op)", "CustomizationDirectReward/Description": "Você vai desbloquear este estilo como recompensa", "CustomizationNotExists": "Vestimentas indisponíveis em um ou mais kits", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Desbloqueia vestes táticas", "CustomizationReward/Description": "Desbloqueia vestes táticas", "Customizations/ObtainHeader": "Obtido:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total de missões concluídas", "Daily/Stat/VeryEasy": "Total de missões muito fáceis concluídas", "Daily/Stat/VeryHard": "Total de missões muito difíceis concluídas", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Vencer uma partida", "DailyQuestName/ArenaWinRound": "Vencer uma rodada", "DailyQuestName/Completion": "Encontre a transferência", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Queimadura", "DamageType_GrenadeFragment": "Estilhaço", "DamageType_HeavyBleeding": "Hemorragia grave", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Dano de impacto", "DamageType_Landmine": "Mina terrestre", "DamageType_LightBleeding": "Sangramento leve", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Exposição a radiação", "DamageType_Sniper": "Tiro de sniper", "DamageType_Stimulator": "Efeito colateral de estimulantes", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Dano prévio", "Day": "Dia", "DeactivateObject": "Desative o dispositivo", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Fogo de cobertura", "ETraderServiceType/BtrItemsDelivery": "Mover itens para o esconderijo", "ETraderServiceType/PlayerTaxi": "Entra ai", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipamento", "EWishlistGroup/Hideout": "Esconderijo", "EWishlistGroup/Other": "Outro", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Não é possível adicionar {0} ao {1}. A arma modificada irá consumir mais espaço do que há disponível. Tente reposicionar os itens em outro lugar do seu inventário.", "Escape": "Voltar", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Examinar arma", "Excellent standing": "excelente", "ExceptionItem": "O comerciante não pode reparar esse item", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Encontrado em incursão", "Free cam": "Câmera livre", "FreeChangeQuest": "Gratuito", + "FreeWeekend": "Free Weekend", "Freetrading": "Negociações Livres", "Freetradingdescription": "Negociação Livre", "Friend invite to {0} was sent succesfully": "Uma solicitação de amizade foi enviada com sucesso para {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Circulo Cultista", "Hideout/CircleOfCultists/MaxItemsCount": "Quantidade máxima: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Os cultistas não podem conceder sua recompensa enquanto você estiver no Esconderijo", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Este item será usado como uma ferramenta auxiliar. Ele retornará ao seu estoque assim que a produção for concluída.", "Hideout/Customization/Ceiling/TabName": "Forro", "Hideout/Customization/Ceiling/WindowHeader": "Selecione o forro para intalação", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Gerador Final", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "Nuca", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "Pesquisa necessária", "NetworkError/SessionLostErrorMessage": "Sessão perdida. Necessário reconectar", "NetworkError/TooManyFriendRequestsHeader": "Excesso de solicitações", @@ -17620,6 +17768,7 @@ "PVE settings": "Configurações PVE", "Pain": "Dor", "Painkiller": "Sob efeito de analgésicos", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Horror arrepiante", "PaperGesture": "Papel", "Paramedic": "Paramédico", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Custo de substituição:", "Quest/Change/TimeLeft": "Tempo restante para completar a missão:", "Quest/Change/Tooltip": "Custo de substituição da missão operacional:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " morreu {0} vez(es)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " morreu menos de {0} vez(es)", "QuestCondition/ArenaDeathCount/More{0}": " morreu mais de {0} vez(es)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Encontre um item da categoria em incursão única: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminar{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " com tiros na(o) {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Traga um item encontrado em incursão da categoria: {0}", "QuestCondition/Many{0}{1}": "{0} {1} vez(es)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Executor", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assalto", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "qualquer local", "QuestCondition/SurviveOnLocation/ExitName": " extraindo através de \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "localização", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "cabeça", "QuestCount/Transfered": "transferido", "QuestCount/Transferred": "Eliminados:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volume total:", "Settings/Sound/ReadyToMatchSoundVolume": "Volume da tela partida aceita:", "Settings/UnavailablePressType": "Não disponível", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Dor muscular severa", "Shack": "Military Base CP", "Shadow visibility:": "Visibilidade de sombra:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "MODOS DE TIRO", "Tactical": "Alternar dispositivo tático", "Tactical clothing": "Roupas táticas", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Pressionar", "TacticalVest": "Veste Tática", @@ -18582,6 +18746,7 @@ "Task": "Missão", "Taskbar/Unavailable": "Indisponível", "Taskperformance": "Desempenho da Missão", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Luta em equipe 5 contra 5. O objetivo é eliminar a equipe adversária antes que ela te mate.", "TeamFightDescriptionShort": "Mata-Mata em equipe", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Você quer que eu te deixe no depósito? Só para você saber, você não pode sair de lá sem mim. Se o preço estiver bom, você fica de olho no tempo lá, tá bom?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Certo, destino - Cinema Rodina. O preço está bom pra você?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinema Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Deslocando para o bonde. Você tem o dinheiro, né?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Bonde", + "Trading/Dialog/PlayerTaxi/p3/Description": "Ótimo, nós estamos a caminho do centro da cidade. Você tem dinheiro suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro da cidade", + "Trading/Dialog/PlayerTaxi/p4/Description": "Vamos nos deslocar para o guindaste caído. De acordo com o preço?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Guindaste caído", + "Trading/Dialog/PlayerTaxi/p5/Description": "Vou te levar para o antigo posto de verificação scav. O preço está bom né?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Antigo posto de verificação scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Vamos para o Hotel Pinewood. Como está o preço, tudo satisfatório?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Vá embora", "Trading/Dialog/ServicePayoff{0}": "Ta certo, isso deve ser suficiente. (entregue \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Esconder histórico", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Acesso negado", "Transit/InactivePoint": "Viagem indisponível", "Transit/Interaction": "Interagir", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Viajar em ", "Transition in {0:F1}": "Viajar em {0:F1}", "Tremor": "Tremedeira", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Linhas de slots de inventário no estoque", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Sua área de armazenamento será expandida com a adição de novas linhas de slots de inventário.\nEssas mudanças serão aplicadas mais tarde (verifique nosso site para mais detalhes).", "UI/Quest/Reward/AssortmentUnlockCaption": "Desbloqueia melhorias com {0} no Nível de Fidelidade {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Roupas táticas", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Receita de criação no {0} no nível {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "desligado", "UI/Settings/NVidiaReflexMode/On": "ligado", "UI/Settings/NVidiaReflexMode/OnAndBoost": "ligado e ampliado", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Padrão", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Outras ações", "UI/Settings/Rest": "Outros", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Notificações da Lista de Desejos", "UI/Skills/Charisma/CharismaDiscount": "Desconto por nivel de carisma", "UI/Standing:": "Reputação com vendedor:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Erro desconhecido", "UnknownErrorMessage": "Ocorreu um erro desconhecido. Feche o jogo e envie um relatório de bug", "UnknownToxin": "Toxina desconhecida", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "DESCARREGAR MUNIÇÃO", "Unloadmagazine": "Remover carregador", "Unlock": "Destrancar", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Habilidade Básica em modificação em campo aumenta a ergonomia e reduz a deterioração de silenciadores.", "WeaponMounting": "Montar arma", "WeaponPunch": "Coronha", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduz o recuo da arma em [{0:0.#%}]", "WeaponReloadBuff": "Aumenta a velocidade de recarga em [{0:0.#%}]", "WeaponStiffHands": "Melhora a ergonomia da arma em [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Você não pode usar o mercado agora", "You can't use ragfair now": "Você não pode usar o mercado agora", "You can't use that symbol": "Você não pode usar esse personagem", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Você não pode modificar a qualidade da textura em incursão.", "You cannot take off a dogtag from a friend or group member": "Você não pode tirar uma chapa de identificação de um amigo ou membro do grupo", "You don't have some items to finish the deal": "Você não tem os itens para concluir o negócio", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Pontuação", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture e mantenha os objetivos", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "M", "arena/Exp": "Exp", "arena/KillShort": "E", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Deletar", "arena/contextInteractions/card/edit": "Editar", "arena/contextInteractions/card/inspect default preset": "Inspecionar", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "MODO DE JOGO (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Modo de Jogo (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Prorrogação", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Kits duplicados:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Duração da partida:", "arena/customGames/create/setOvertime": "Inserir prorrogação", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Permitir kits duplicados", "arena/customGames/create/setScoresToWinCount": "Pontos para ganhar:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CONVITE PARA JOGO CUSTOMIZADO DE {0}", "arena/customGames/notify/GameRemoved": "A sala foi desfeita", "arena/customgames/errors/notification/gamealreadystarted": "O jogo já começou", "arena/customgames/popup/refreshdailyquest": "Substituir missão operacional?", "arena/customgames/popups/attemptscountleft:": "Tentativas restantes:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP RESTANTE", "arena/info/GP": "GP", "arena/info/KD Ratio": "E/M", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECIONE A ARENA", "arena/matching/SelectGametype": "SELECIONE O TIPO DE JOGO", "arena/matching/SelectRankedGamemode": "SELECIONE O MODO DE JOGO RANQUEADO", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TIPO", "arena/matching/UnavailableReason": "Indisponível", "arena/matching/buyPreset": "COMPRAR KIT", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots desbloqueados:", "arena/questLogTemplate/gameModes": "Modo(s) de jogo", "arena/questLogTemplate/maps": "Localizações", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Bonus por MVP da partida", "arena/resultContent/matchMVPMoneyTitle": "Bonus por MVP da partida", "arena/resultContent/roundMVPExpTitle": "Bonus por MVP da rodada", "arena/resultContent/roundMVPMoneyTitle": "Bonus por MVP da rodada", "arena/selection/gameMode": "modos de jogo", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSALTO", "arena/tab/COLLECTION": "COLEÇÃO", "arena/tab/FAVORITES": "FAVORITOS", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "AVALIAÇÃO", "arena/tab/SCOUT": "BATEDOR", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Usada para desbloquear equipamentos para kits e para comprar equipamentos no EFT. Ganha por completar tarefas operacionais no Arena.", "arena/tooltip/OverallMatches": "Total de partidas ranqueadas e não ranqueadas jogadas.", "arena/tooltip/Presets": "Kits", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Sua média de vitória, calculada de todas as vitórias e derrotas em partidas ranqueadas e não ranqueadas.", "arena/widget/ally_capture_point": "Aliados capturaram", "arena/widget/enemy_capture_point": "Inimigos capturaram", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complete daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complete weekly tasks:", "arenaui/presetview/lockedpreset": "Kit indisponível", "arm broke": "Você quebrou seu braço", "assaultKills": "Eliminações por Rifle de assalto", @@ -19643,6 +19860,29 @@ "camora_003": "Câmara 4", "camora_004": "Câmara 5", "camora_005": "Câmara 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Jogador cancelou o pedido de amigo", "cancelfriendrequest": "Cancelar solicitação de amizade", "captcha/too frequent attempts": "Muitas tentativas frequentes. O acesso ao mercado e mercadores está atualmente indisponível. Tente novamente mais tarde", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Sewage Conduit - B1", "lab_Vent": "Ventilation Shaft - GB", "labir_exit": "Para cima", + "laboratory": "Laboratório", "labyrinth_secret_tagilla_key": "Caminho da Ariadne", "lastSession": "Última sessão", "leader": "Líder", @@ -20358,6 +20599,7 @@ "un-sec": "Northern UN roadblock", "undefined": "", "uninstall": "DESINSTALAR", + "unlock requires:": "o desbloqueio necessita:", "unlockedSafes": "Cofres destrancados", "unpack": "desempacotar", "usecKills": "USECs eliminados", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "O centro de negócios de Tarkov. É aqui que o TerraGroup estava sediado. Este é o lugar onde tudo começou.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "O Labirinto", "6733700029c367a3d40b02af Description": "Uma instalação de um dos contratados da TerraGroup, a Knossos LLC. De acordo com fontes públicas, eles constroem parques de diversão e temáticos. No entanto, este lugar parece mais um bunker fortemente fortificado do que um novo parque temático.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Ah, você os pegou? Me da eles aqui, vamos dar uma olhada. Nossa, por que caralhos eles são tão pesados?! Tudo bem, vou verificá-los mais tarde. Aqui, leve isso como ajuda.", "5ae9bb6986f77415a869b40b": "Consiga em incursão o colete 6B13 em condição entre 0-50%", - "5ae9bc6e86f7746e0026222c": "Entregue a armadura de assalto 6B13 encontrada em incursão com 0-50% de durabilidade", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Consiga em incursão o colete 6B13 em condição entre 50-100%", - "5ae9bea886f77468ab400e64": "Entregue a armadura de assalto 6B13 encontrada em incursão com 50-100% de durabilidade", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operação Aquário - Parte 2", + "664ca9f577af670dad0ad339 description": "Fico feliz por vê-lo novamente. O meu pessoal descobriu quem está envolvido em todo esse ato ilegal com água limpa. É claro, tudo isto graças a sua informação. Acontece que é um grupo de Scavs que operam na zona da Customs. Não gosto de fazer este tipo de pedido, mas vidas estão em jogo, e esses bandidos não vão parar suas atividades a menos que você assuste eles, deixe eles morrerem em sofrimento para que sintam o que eles fizeram e sejam punidos por isso. Acho que não preciso explicar mais nada. Você faz isso pra mim?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Pode se orgulhar, mesmo que tenha tirado vidas hoje, eles não eram o melhor da raça humana, por outro lado você deu oportunidade para muitos civis.", + "664ca9f577af670dad0ad33d": "Elimine os Scavs na Customs", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Agitação", "66588c0c98194a5d26010197 description": "Olá, mercenário! Ficou sabendo do que aconteceu no Farol? Minhas fontes me disseram que os chefes do crime local tiveram uma grande disputa com os Rogues e estão procurando por eles em toda a cidade e nos arredores. A tarefa é ajudar esses Rogues. Porque é proibido perturbar a paz e a ordem em meu turno. Entendido?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operação Aquário - Parte 2", + "6659a9716b1be75165030e4e description": "Fico feliz por vê-lo novamente. O meu pessoal descobriu quem está envolvido em todo esse ato ilegal com água limpa. É claro, tudo isto graças a sua informação. Acontece que é um grupo de Scavs que operam na zona da Customs. Não gosto de fazer este tipo de pedido, mas vidas estão em jogo, e esses bandidos não vão parar suas atividades a menos que você assuste eles, deixe eles morrerem em sofrimento para que sintam o que eles fizeram e sejam punidos por isso. Acho que não preciso explicar mais nada. Você faz isso pra mim?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Pode se orgulhar, mesmo que tenha tirado vidas hoje, eles não eram o melhor da raça humana, por outro lado você deu oportunidade para muitos civis.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Com sede - Hounds", "665eeacf5d86b6c8aa03c79b description": "Precisamos conversar. Os capangas de Sanitar têm rondado a área da costa à noite. Obviamente, estão procurando algo. Não podemos deixar isso passar em branco. Espante-os enquanto eu tento descobrir o que eles estão tramando.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Peça Orientações", "674492b6909d2013670a347a description": "Então o Ragman está procurando novas rotas, você diz? Eu mesmo estou pensando nisso agora, já que o Skier não me deixará ir tão facilmente. Mas há uma opção que o Ragman poderia usar. Não passarei meu BTR por ali, mas quando eu era um pedestre insignificante, costumava me esgueirar por ali com frequência.\n\nVocê conhece o vilarejo perto dos penhascos onde ficam os chalés? Você pode subir por um dos quintais e depois seguir a fenda. Depois, quando chegar àquelas casas ricas, você terá de ficar de guarda ali.\n\nNão há mais estradas realmente seguras, então acho que essa é melhor do que nada. Não se esqueça de me avisar quando tiver marcado o caminho, pois vou verificar com meus mapas para ter certeza.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Jantar de Natal", "675031be899713ccad00060c description": "Como está indo, meu amigo? Não está com frio, está? Bem, é o seguinte... Vamos organizar um banquete com nossos companheiros de armas na base, afinal, é Natal!\n\nMas você sabe como é nos armazéns de estoque. De acordo com os registros, tudo está lá, mas na realidade só há tushonka e um monte de batatas. Queríamos fazer salada de olivier, talvez duas tigelas. E precisamos de bebida também. \n\nVocê pode trazer? Só não traga as batatas, já temos o suficiente.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Muito bem, mãos e pernas intactos.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Tudo claro, você diz? Bom trabalho então, soldado.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bom.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Todos os itens necessários estão na lista. Encontre-os e traga-os para o ponto de coleta.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Há outras tarefas disponíveis, à custa da minha paciência.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Melhor amigo do PMC", "6512ea46f7a078264a4376e4 description": "Sobreviva e extraia da Interchange pela extração Scav Co-Op enquanto joga como PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fim Fatal", "670febed5ee0fc738a0965a4 description": "Destrua o vírus junto com todos os infectados e conclua a linha de tarefas do evento Halloween 2024", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Tração Integral", "675709bef4e2a2ce0f058f56 description": "Resolva o problema com o motorista do BTR de um jeito ou de outro", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Mestre da Masmorra", "67a0e57b972c11a3f50773b2 description": "Complete a linha de tarefas do Labirinto e todas as quests secundárias", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ro.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ro.json index 05196cda..7744507b 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ro.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ro.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "40x46mm M381 (HE) grenadă", + "67446fdd752be02c220f27b3 ShortName": "M381", + "67446fdd752be02c220f27b3 Description": "40-mm M381 (HE) cartuș cu grenadă de fragmentare cu fitil instantaneu care se declanșează în momentul tragerii, la o distanță de aproximativ 4-5 metri de țeavă.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,11 +14609,14 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", "678fa929819ddc4c350c0317 Name": "Valve handwheel", - "678fa929819ddc4c350c0317 ShortName": "handwheel", + "678fa929819ddc4c350c0317 ShortName": "Wheel", "678fa929819ddc4c350c0317 Description": "A massive handwheel removed from some kind of valve. It must have been used to regulate the water or gas supply in the Knossos underground facilities.", "679b944d597ba2ed120c3d3c Name": "Last Breath poster", "679b944d597ba2ed120c3d3c ShortName": "Last Breath", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Pantaloni tactici", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Drum spre Baza Militară - Ex Auto", " Voip/DisabledForOffline": "VOIP este indisponibil în modul offline", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Are you sure you want to remove the modified equipment?", "APC/CustomizationTab": "Customization", "APC/EnterName": "Enter name", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Quick access", "APC/Locked": "Locked", "APC/PurchasedStatesAll": "All", "APC/ReadyToUlock": "Unlockable", "APC/Unlocked": "Unlocked", "APC/ViewPreset": "View", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Firepower{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Assault carbines", "APCFilter/AssaultRifles": "Assault rifles", "APCFilter/AssaultScope": "Assault scopes", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Auxiliary parts", "APCFilter/Barrel": "Barrels", "APCFilter/Bipod": "Bipods", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Charging handles", "APCFilter/Collimator": "Reflex sights", "APCFilter/CompactCollimator": "Compact reflex sights", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Melee weapons", "APCFilter/Mount": "Mounts", "APCFilter/Muzzle": "Muzzle devices", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Muzzle adapters", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Optics", "APCFilter/PistolGrip": "Pistol grips", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pistols", "APCFilter/Receiver": "Dust covers, Receivers, Trigger groups", "APCFilter/SMGs": "Submachine guns", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LEVELING", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transferul către EFT indisponibil", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "CLASĂ PROTECTIE", "ARMOR POINTS": "PUNCTE BLINDAJ", "ARMOR TYPE": "TIP BLINDAJ", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item not found", "Arena/Armory/LevelReward/readyToUlockState": "Ready", "Arena/Armory/LevelReward/unlockedState": "Ready", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Not enough money", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Prelungiri", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} din {1}", "Arena/BlastGang/ResultScreenSwapSides": "Schimbare parte", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Anulează cererea de prietenie", "Arena/CustomGame/Lobby/cancel invite to group": "Anulează invitația la grup", "Arena/CustomGame/Lobby/invite to friends": "Cerere de prietenie", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Încercări rămase:", "Arena/CustomGames/Create/Maps": "Locaţii", "Arena/CustomGames/Create/Modes": "Moduri", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Submoduri", "Arena/CustomGames/Create/TournamentMode": "Mod Turneu", "Arena/CustomGames/Create/TournamentSettings": "Setări Turneu", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Ia", "Arena/CustomGames/No servers found": "Nu găsesc servere active", "Arena/CustomGames/Observers": "Spectatori", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Conectare la server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Înlocuire sarcină operațională / Ref", "Arena/CustomGames/Settings": "Setări", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Dezactivat", "Arena/CustomGames/Settings/enable": "Activat", "Arena/CustomGames/create/enter name": "Introdu numele", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Regiune", "Arena/CustomGames/toggle/room name": "Nume Cameră", "Arena/CustomGames/toggle/tournament": "Turneu", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Meciul s-a încheiat cât erai plecat", "Arena/EnterPresetName": "Enter preset name", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Armă", "Arena/Rematching": "Întoarcere la căutare cu prioritate ridicată", "Arena/Rematching/NoServer": "Din cauza unor motive tehnice, serverul nu a fost găsit. Întoarcere la căutarea unui joc.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azur", "Arena/TeamColor/azure_plural": "Azuri", "Arena/TeamColor/blue": "Albastră", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Albaștri", "Arena/TeamColor/fuchsia": "Roz", "Arena/TeamColor/fuchsia_plural": "Roz", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Verzi", "Arena/TeamColor/grey": "Grey", "Arena/TeamColor/red": "Roșu", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Roșie", "Arena/TeamColor/white": "Alb", "Arena/TeamColor/white_plural": "Albi", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/Tooltip/MapSelectedCounter": "Număr locații alese", "Arena/Tooltip/MinMapCount {0}": "Alege mai multe locații. Trebuie să alegi minim {0} locații", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Șablon luat", "Arena/UI/Waiting": "Așteptare...", "Arena/Ui/ServerFounding": "Căutare server...", + "Arena/Widgets/ team {0} capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Planting the device", "Arena/Widgets/Event/can activate object": "Plant the device", "Arena/Widgets/Event/deactivate object": "Deactivate the device", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "READY", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Otravă Puternică", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Bonus prima victorie a zilei: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} te invită la luptă", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Oricare mod de joc", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Mod(uri) de joc", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Locaţii", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Moduri multiple de joc", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Ești sigur că vrei să părăsești timpuriu jocul?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Poți părăsi meciul fără penalizare", "ArenaUI/BattleMenu/MatchLeave": "PĂRĂSIRE MECI", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Ecuator", "Arena_result_final": "Finala", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Cervical", "ArmorVest": "Vestă antiglonț\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rank", "ArmoryCondition/CompletedDailyQuests": "Complete daily tasks:", "ArmoryCondition/CompletedWeeklyQuests": "Complete weekly tasks:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Schimb", "Battle category": "Categoria luptei", "BattleCategory": "Luptă", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR Sisteme AK", "BearAssaultoperations": "BEAR Tehnici de asalt", "BearAuthority": "BEAR Autoritate", @@ -15812,13 +15926,34 @@ "CharismaInsuranceDiscount": "Reduce prețul serviciilor de asigurare cu [{0:0%}]", "CharismaLevelingUpDescription": "Abilitatea Carisma crește indirect o dată cu abilitățile Atenție, Percepție, și Intelect.", "CharismaScavCaseDiscount": "Adaugă o reducere la prețurile pentru Cutia Localnicilor", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Următoarele articole for fi mutate în depozitul pentru misiuni:", "ChatScreen/QuestItemsMoved": "Articole mutate cu succes în depozitul pentru misiuni", "Check your email": "Vă rugăm verificați căsuța de email folosită pentru a înregistra acest cont. Veți primi numărul de dispozitiv în următoarele 5 minute.", "CheckAmmo": "Verifică muniția", "CheckChamber": "Verifică mecanismul/Repară defecțiunea", "CheckFireMode": "Verifică selectorul", - "CheckPointDescription": "Fight for control over the game location along with your team by capturing and holding the objectives.", + "CheckPointDescription": "A team battle in the 5v5 format. Fight for control over the game location along with your team by capturing and holding the objectives.", "CheckTimeSpeed": "Modificator viteză verificare", "Chest": "TORACE", "Choose Look": "Alege cum vei arăta", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Indisponibil", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Poate fi achiziționat de pe site", "ClothingPanel/InternalObtain": "Condiții pentru achiziție:", "ClothingPanel/LoyaltyLevel": "Comerciant\nNivel loialitate:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Conectare la server...", "Connection to server lost": "Conexiune la server pierdută", "Console": "Consolă", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Totalul sarcinilor finalizate", "Daily/Stat/VeryEasy": "Totalul sarcinilor foarte ușoare finalizate", "Daily/Stat/VeryHard": "Totalul sarcinilor foarte dificile finalizate", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Câștigă un meci", "DailyQuestName/ArenaWinRound": "Câștigă o rundă", "DailyQuestName/Completion": "Găsește și transferă", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Flacără", "DamageType_GrenadeFragment": "Fragmentare", "DamageType_HeavyBleeding": "Hemoragie", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Daune de impact", "DamageType_Landmine": "Mină", "DamageType_LightBleeding": "Sângerare", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Expunere la radiații", "DamageType_Sniper": "Foc de lunetist", "DamageType_Stimulator": "Efecte secundare stimulant", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Daune anterioare", "Day": "Zi", "DeactivateObject": "Deactivate the device", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Foc de acoperire", "ETraderServiceType/BtrItemsDelivery": "Mută articolele în depozit", "ETraderServiceType/PlayerTaxi": "Ia taxiul", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipment", "EWishlistGroup/Hideout": "Hideout", "EWishlistGroup/Other": "Other", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Nu se poate adăuga {0} la {1}. Arma modificată va ocupa mai mult spațiu decât este disponibil. Încearcă să-ți repoziționezi arma în altă parte a depozitului.", "Escape": "Înapoi", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Verifică arma curentă", "Excellent standing": "excelent", "ExceptionItem": "Acest comerciant nu poate repara acel obiect", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Găsit în raid", "Free cam": "Free camera", "FreeChangeQuest": "Fără comision", + "FreeWeekend": "Free Weekend", "Freetrading": "Free Trading", "Freetradingdescription": "Free Trading", "Friend invite to {0} was sent succesfully": "Cererea de prietenie a fost trimisa cu succes lui {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cultist Circle", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Cultists can't bestow their Gift while you're in the Hideout", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Acest obiect va fi folosit drept unealtă. Va fi returnat în depozit la finalizarea producției artizanale.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Scări Subsol Nakatani", "Nape": "Ceafă", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "CĂUTARE NECESAR", "NetworkError/SessionLostErrorMessage": "Sesiune pierdută. Este necesară re-logarea", "NetworkError/TooManyFriendRequestsHeader": "Prea multe cereri", @@ -17620,6 +17768,7 @@ "PVE settings": "Setări PvE", "Pain": "Durere", "Painkiller": "Pe analgezice", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Fiori teribile", "PaperGesture": "Paper", "Paramedic": "Paramedic", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Costul înlocuirii:", "Quest/Change/TimeLeft": "Timp rămas pentru terminarea sarcinii:", "Quest/Change/Tooltip": "Costul înlocuirii sarcinii operaționale:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Găsește obiecte din categorie într-un singur raid: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminate{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " cu lovitură la {0}", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extrage-te cu obiectele necesare din categoria: {0}", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "orice locație", "QuestCondition/SurviveOnLocation/ExitName": " prin evacuarea \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "locația", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "cap", "QuestCount/Transfered": "transferat", "QuestCount/Transferred": "Eliminated:", @@ -18256,7 +18418,7 @@ "Settings/Graphics/DLSSLockThis": "This setting is unavailable while DLSS is on", "Settings/Graphics/DLSSModeTooltip": "NVIDIA DLSS uses AI Super Resolution to provide the highest possible frame rates at maximum graphics settings. DLSS requires an NVIDIA RTX graphics card.", "Settings/Graphics/DLSSNotSupported": "DLSS is not supported on your system", - "Settings/Graphics/DLSSPreset": "DLSS Preset", + "Settings/Graphics/DLSSPreset": "DLSS Preset:", "Settings/Graphics/DLSSPresetTooltip": "Specific DLSS presets.", "Settings/Graphics/DLSSWrongSampling": "Disable Resampling to enable DLSS", "Settings/Graphics/FSR2LockThis": "This setting is unavailable while FSR 2.2 is on", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Volum general:", "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Indisponibil", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Durere musculară severă", "Shack": "Punct Control Bază Militară", "Shadow visibility:": "Shadow visibility:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "TIPURI DE FOC", "Tactical": "Comută dispozitivele tactice", "Tactical clothing": "Îmbrăcăminte Tactică", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "Ham Tactic", @@ -18582,6 +18746,7 @@ "Task": "Sarcină", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Performanță Sarcini", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Luptă de echipă 5 vs 5. Obiectivul este eliminarea echipei adverse înainte să te elimine pe tine.", "TeamFightDescriptionShort": "Team deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Vechiul Gater", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Vrei să te las la depou? Doar ca să știi, nu poți ieși de-acolo fără mine. Daca prețul e în regulă, ai mare grijă la ceas cât ești acolo, bine?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depou Feroviar", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Plec", "Trading/Dialog/ServicePayoff{0}": "Bun, asta ar trebui să fie de ajuns. (predă \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Ascunde istoric", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Interact", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Tremur", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Linii de celule de inventar în depozit", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Depozitul tău va fi extins prin adăugarea de noi linii de celule de inventar.\nAceste schimbări vor fi aplicate mai târziu(verifică site-ul nostru pentru detalii).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "off", "UI/Settings/NVidiaReflexMode/On": "on", "UI/Settings/NVidiaReflexMode/OnAndBoost": "on and boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Implicit", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Alte acțiuni", "UI/Settings/Rest": "Alte", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "Reduceri de la abilitatea Carismă", "UI/Standing:": "Nivel cu comerciantul:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Eroare necunoscuta", "UnknownErrorMessage": "A apărut o eroare necunoscută. Închideți jocul și trimiteți un raport de eroare.", "UnknownToxin": "Toxină necunoscută", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "DESCARCĂ MUNIȚIA", "Unloadmagazine": "Detașează încărcătorul", "Unlock": "Deblochează", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Abilitatea de Modificare a armelor mărește ergonomia armei și crește durabilitatea amortizoarelor.", "WeaponMounting": "Mount weapon", "WeaponPunch": "Lovitură cu patul", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduce reculul armei cu [{0:0.#%}]", "WeaponReloadBuff": "Crește viteza de reîncărcare cu [{0:0.#%}]", "WeaponStiffHands": "Crește ergonomia armei cu [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Nu puteți folosi piața de vechituri chiar acum", "You can't use ragfair now": "Nu puteți folosi piața de vechituri acum", "You can't use that symbol": "Nu poți folosi acel caracter", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Nu puteți modifica calitatea texturilor în timpul raidului.", "You cannot take off a dogtag from a friend or group member": "Nu poți lua plăcuța de identificare de la un prieten sau un membru al grupului", "You don't have some items to finish the deal": "Nu deții necesarul pentru a încheia tranzacția", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Șabloane dublate:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Permite dublarea șabloanelor", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Camera a fost desființată", "arena/customgames/errors/notification/gamealreadystarted": "Jocul a început deja", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Încercări rămase:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP RĂMAS", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "ALEGE ARENA", "arena/matching/SelectGametype": "ALEGE TIPUL DE JOC", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Indisponibil", "arena/matching/buyPreset": "CUMPĂRĂ ȘABLON", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Map(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "COLLECTION", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Șabloane", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complete daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complete weekly tasks:", "arenaui/presetview/lockedpreset": "Indisponibil", "arm broke": "Ți-ai rupt mâna!", "assaultKills": "Eliminări cu arme de asalt", @@ -19643,6 +19860,29 @@ "camora_003": "Camera 4", "camora_004": "Camera 5", "camora_005": "Camera 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "{0} ți-a retras cererea de prietenie", "cancelfriendrequest": "Retrage cererea de prietenie", "captcha/too frequent attempts": "Solicitările sunt mult prea frecvente. Accesul la piață și la comercianți este momentan indisponibil. Încearcă din nou mai târziu.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Conducta de Canalizare", "lab_Vent": "Gura de Ventilație", "labir_exit": "The Way Up", + "laboratory": "Laboratory", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Ultima sesiune", "leader": "Lider", @@ -20358,6 +20599,7 @@ "un-sec": "Blocadă ONU Nord", "undefined": "", "uninstall": "DEMONTEAZĂ", + "unlock requires:": "unlock requires:", "unlockedSafes": "Seifuri descuiate", "unpack": "desfă", "usecKills": "USEC eliminați", @@ -20560,7 +20802,7 @@ "5b5f736886f774094242f193": "Light & laser devices", "5b5f737886f774093e6cb4fb": "Tactical combo devices", "5b5f73ab86f774094242f195": "Flashlights", - "5b5f73c486f77447ec5d7704": "Laser target pointers", + "5b5f73c486f77447ec5d7704": "Laser aiming modules", "5b5f73ec86f774093e6cb4fd": "Sights", "5b5f740a86f77447ec5d7706": "Assault scopes", "5b5f742686f774093e6cb4ff": "Collimators", @@ -20589,14 +20831,14 @@ "5b5f791486f774093f2ed3be": "Marksman rifles", "5b5f792486f77447ed5636b3": "Pistols", "5b5f794b86f77409407a7f92": "Shotguns", - "5b5f796a86f774093f2ed3c0": "SMGs", + "5b5f796a86f774093f2ed3c0": "Submachine guns", "5b5f798886f77447ed5636b5": "Bolt-action rifles", "5b5f79a486f77409407a7f94": "Machine guns", "5b5f79d186f774093f2ed3c2": "Grenade launchers", "5b5f79eb86f77447ed5636b7": "Special weapons", "5b5f7a0886f77409407a7f96": "Melee weapons", "5b5f7a2386f774093f2ed3c4": "Throwables", - "5b619f1a86f77450a702a6f3": "Quest items", + "5b619f1a86f77450a702a6f3": "Task items", "5c518ec986f7743b68682ce2": "Mechanical keys", "5c518ed586f774119a772aee": "Electronic keys", "6564b96a189fe36f356d177c": "", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Ok, le ai? Dă-mi-le, hai să vedem. Pff, îs grele ca pula! Bun, le verific mai tarziu. Poftim, mulțumesc pentru ajutor.", "5ae9bb6986f77415a869b40b": "Obține în raid o armură 6B13 cu durabilitate între 0-50%", - "5ae9bc6e86f7746e0026222c": "Predă armura găsită în raid 6B12 cu durabilitate între 0-50%", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Obține în raid o armură 6B13 cu durabilitate între 50-100%", - "5ae9bea886f77468ab400e64": "Predă armura găsită în raid 6B12 cu durabilitate între 50-100%", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operațiunea Aquarius - Partea a 2-a", + "664ca9f577af670dad0ad339 description": "Mă bucur să te revăd. Oamenii mei au descoperit cine făcea învârteli cu apa curată. Mulțumesc pentru informații, desigur. Pe scurt, e o bandă de Scavi din zona Vamei. Nu-mi place deloc să-ți cer așa ceva, dar sunt multe vieți în joc, iar nemernicii ăștia continuă să facă învârteli. Trebuie să-i speriem de tot, să moară în suferință că să simtă pe pielea lor ce-au făcut și pentru ce sunt pedepsiți. Poți să faci asta?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Poți fi mândru de tine chiar daca ai luat niște vieți, acei indivizi au fost gunoaiele rasei umane. Ai dat o șansă la viață multor civili.", + "664ca9f577af670dad0ad33d": "Elimină Scavi în Vamă", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Hustle", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operațiunea Aquarius - Partea a 2-a", + "6659a9716b1be75165030e4e description": "Mă bucur să te revăd. Oamenii mei au descoperit cine făcea învârteli cu apa curată. Mulțumesc pentru informații, desigur. Pe scurt, e o bandă de Scavi din zona Vamei. Nu-mi place deloc să-ți cer așa ceva, dar sunt multe vieți în joc, iar nemernicii ăștia continuă să facă învârteli. Trebuie să-i speriem de tot, să moară în suferință că să simtă pe pielea lor ce-au făcut și pentru ce sunt pedepsiți. Poți să faci asta?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Poți fi mândru de tine chiar daca ai luat niște vieți, acei indivizi au fost gunoaiele rasei umane. Ai dat o șansă la viață multor civili.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Undă verde deci? Treaba bună, soldat.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bine.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Tot necesarul e trecut pe listă. Găsești bunurile și le aduci la locul de schimb.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Sunt și alte misiuni disponibile, prețul e răbdarea mea.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Cel Mai Bun Prieten", "6512ea46f7a078264a4376e4 description": "Supraviețuiește și extrage-te din locația Intersecție prin punctul de extracție Scav Cooperativ în timp ce joci ca și PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -28887,7 +29593,7 @@ "651415d13c02ff4aa9e9a426": "Găsește și elimină-l pe Birdeye", "657b1f2e057c1607e83c2c26": " Găsește și elimină-l pe Kollontay", "657b21a3564a9197c2778f5a": "Găsește și elimină-l pe Kollontay", - "66c34bbbd5d174a3c9cd1382": "Locate and eliminate Partisan", + "66c34bbbd5d174a3c9cd1382": "Locate and neutralize Partisan", "6514174fb1c08b0feb216d73 name": "Urmașul Lui Chris", "6514174fb1c08b0feb216d73 description": "Elimină un operator PMC cu lovitură la cap de la peste 500 de metri depărtare jucând ca și PMC", "6514174fb1c08b0feb216d73 successMessage": "", @@ -28975,7 +29681,7 @@ "65290f3fd7c6005f6d78f453": "Găsește și elimină-l pe Big Pipe", "65290f50897943fb9bf8955d": "Găsește și elimină-l pe Birdeye", "657b1e91958145eb193f9a40": "Găsește și elimină-l pe Kollontay", - "66c34ab2c3eee7ac0c41d160": "Locate and eliminate Partisan", + "66c34ab2c3eee7ac0c41d160": "Locate and neutralize Partisan", "655b49bc91aa9e07687ae47c name": "Justiție", "655b49bc91aa9e07687ae47c description": "Elimină-l pe Kollontay pentru prima oară jucând ca și PMC", "655b49bc91aa9e07687ae47c successMessage": "", @@ -29028,10 +29734,10 @@ "66c328aca91e7d66fa1b0b7b successMessage": "", "66c328ce17df4e6ce92d1120": "Use the transit from any location", "66c328de9dc78468f4040f35 name": "Time To Clean My Karma", - "66c328de9dc78468f4040f35 description": "Eliminate Partisan for the first time while playing as a PMC", + "66c328de9dc78468f4040f35 description": "Neutralize Partisan for the first time while playing as a PMC", "66c328de9dc78468f4040f35 successMessage": "", "66c32996b4c0c017a3319cc3 name": "Samsara Wheel Spins Again", - "66c32996b4c0c017a3319cc3 description": "Eliminate Partisan 15 times while playing as a PMC", + "66c32996b4c0c017a3319cc3 description": "Neutralize Partisan 15 times while playing as a PMC", "66c32996b4c0c017a3319cc3 successMessage": "", "66e2a7e5919bad697104f4b3 name": "Highway to the Danger Zone", "66e2a7e5919bad697104f4b3 description": "Complete the Mortar Strike 2024 event task line", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29055,11 +30011,20 @@ "676094451fec2f7426093be6 description": "Earn the Prestige level 2", "676094451fec2f7426093be6 successMessage": "", "67a0e57117e34930e50075f3 name": "In Search of an Exit", - "67a0e57117e34930e50075f3 description": "Complete the Labyrinth event task line", + "67a0e57117e34930e50075f3 description": "Complete the Labyrinth 2025 event task line", "67a0e57117e34930e50075f3 successMessage": "", "67a0e57b972c11a3f50773b2 name": "Dungeon Master", - "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", + "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth 2025 event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ru.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ru.json index c1290ec1..e148e311 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ru.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/ru.json @@ -1673,9 +1673,9 @@ "5894a05586f774094708ef75 Name": "Магазин на 30 патронов 9x19 для MPX", "5894a05586f774094708ef75 ShortName": "MPX", "5894a05586f774094708ef75 Description": "Стандартный полупрозрачный магазин 9x19мм для MPX на 30 патронов, производство SIG Sauer.", - "5894a13e86f7742405482982 Name": "Приклад раздвижной SIG Sauer \"Collapsing/Telescoping Stock\"", + "5894a13e86f7742405482982 Name": "Приклад SIG Sauer \"Collapsing/Telescoping Stock\"", "5894a13e86f7742405482982 ShortName": "SIG CTS", - "5894a13e86f7742405482982 Description": "Раздвижной приклад Collapsing/Telescoping Stock для MCX/MPX ранних годов выпуска производства SIG Sauer.", + "5894a13e86f7742405482982 Description": "Приклад Collapsing/Telescoping Stock для MCX/MPX ранних годов выпуска производства SIG Sauer.", "5894a2c386f77427140b8342 Name": "Ствол 203мм для MPX 9x19", "5894a2c386f77427140b8342 ShortName": "MPX 203мм", "5894a2c386f77427140b8342 Description": "Ствол длиной 203мм для оружия на базе MPX под патрон 9х19.", @@ -1700,7 +1700,7 @@ "58a5c12e86f7745d585a2b9e Name": "Направляющая 4 дюйма для цевья MPX \"GEN1\"", "58a5c12e86f7745d585a2b9e ShortName": "MPX 4\"", "58a5c12e86f7745d585a2b9e Description": "Направляющая длиной 4 дюйма производства SIG Sauer. Позволяет устанавливать дополнительное оборудование на цевье SIG MPX первого поколения.", - "58ac1bf086f77420ed183f9f Name": "Переходник складной SIG Sauer \"Folding Knuckle Stock Adapter\"", + "58ac1bf086f77420ed183f9f Name": "Переходник SIG Sauer \"Folding Knuckle Stock Adapter\"", "58ac1bf086f77420ed183f9f ShortName": "SIG FKSA", "58ac1bf086f77420ed183f9f Description": "Адаптер Folding Knuckle Stock Adapter для установки трубы под телескопические приклады на рельсу. Производство SIG Sauer.", "58ac60eb86f77401897560ff Name": "Балаклава_разр", @@ -4907,12 +4907,12 @@ "5c5db6b32e221600102611a0 Name": "Рукоятка заряжания Geissele \"SCH\" для MPX", "5c5db6b32e221600102611a0 ShortName": "MPX SCH", "5c5db6b32e221600102611a0 Description": "Рукоятка заряжания \"SCH\" (Super Charging Handle) для оружия на базе MPX производства Geissele.", - "5c5db6ee2e221600113fba54 Name": "Приклад раздвижной Maxim Defense \"CQB\" для MPX/MCX", + "5c5db6ee2e221600113fba54 Name": "Приклад Maxim Defense \"CQB\" для MPX/MCX", "5c5db6ee2e221600113fba54 ShortName": "MD CQB", - "5c5db6ee2e221600113fba54 Description": "Раздвижной приклад \"CQB\" для MCX/MPX. Производство Maxim Defense.", - "5c5db6f82e2216003a0fe914 Name": "Приклад складной PMM \"ULSS\" для MPX/MCX", + "5c5db6ee2e221600113fba54 Description": "Приклад CQB для MCX/MPX. Производство Maxim Defense.", + "5c5db6f82e2216003a0fe914 Name": "Приклад PMM \"ULSS\" для MPX/MCX", "5c5db6f82e2216003a0fe914 ShortName": "ULSS", - "5c5db6f82e2216003a0fe914 Description": "Складной приклад \"ULSS\" (Ultra Light Skeleton Stock) для MCX/MPX производства Parker Mountain Machine.", + "5c5db6f82e2216003a0fe914 Description": "Приклад ULSS (Ultra Light Skeleton Stock) для MCX/MPX производства Parker Mountain Machine.", "5c6161fb2e221600113fbde5 Name": "Магазин МЦ 20-01 Сб.3 на 5 патронов 20к для ТОЗ-106", "5c6161fb2e221600113fbde5 ShortName": "Сб.3x5", "5c6161fb2e221600113fbde5 Description": "Пятизарядный магазин для ружья МЦ 20-01 и ТОЗ-106 20-го калибра", @@ -5300,7 +5300,7 @@ "5cde739cd7f00c0010373bd3 Name": "Ложе AB Arms \"MOD*X GEN 3\" для M700", "5cde739cd7f00c0010373bd3 ShortName": "MOD*X Gen.3", "5cde739cd7f00c0010373bd3 Description": "Модульная винтовочная система AB Arms \"MOD*X GEN III\" - это легкое, эргономичное, вставное шасси, разработанное для снайперской винтовки Remington Model 700.", - "5cde77a9d7f00c000f261009 Name": "Переходник складной AB Arms \"MOD*X\" для M700", + "5cde77a9d7f00c000f261009 Name": "Переходник AB Arms \"MOD*X\" для M700", "5cde77a9d7f00c000f261009 ShortName": "AB пер.", "5cde77a9d7f00c000f261009 Description": "Складной адаптер для установки трубы под телескопические приклады на Remington M700, совместим с ложей AB Arms MOD*X.", "5cde7afdd7f00c000d36b89d Name": "Цевье AB Arms \"MOD*X GEN 3 KeyMod\" для M700", @@ -6385,7 +6385,7 @@ "5df8a77486f77412672a1e3f Description": "Новогодняя игрушка в виде фиолетового шара для украшения вашей Ёлки.", "5df8ce05b11454561e39243b Name": "Марксманская винтовка Knight's Armament Company SR-25 7.62x51", "5df8ce05b11454561e39243b ShortName": "SR-25", - "5df8ce05b11454561e39243b Description": "Knight's Armament SR-25 - самозарядная снайперская винтовка, разработанная Юджином Стоунером в 1990-е годы на основе конструкции винтовки AR-15. Новейшая модификация имеет двусторонние органы управления, что позволяет левшам так же эффективно оперировать данный винтовкой, а новая \"E2\" модификация затворной группы и газовой системы позволяет еще больше увеличить общую надежность системы, даже при использовании с глушителями.", + "5df8ce05b11454561e39243b Description": "Knight's Armament SR-25 - самозарядная снайперская винтовка, разработанная Юджином Стоунером в 1990-е годы на основе конструкции винтовки AR-15. Новейшая модификация имеет двусторонние органы управления, что позволяет левшам так же эффективно оперировать данной винтовкой, а новая E2 модификация затворной группы и газовой системы позволяет еще больше увеличить общую надежность системы, даже при использовании с глушителями.", "5df8e053bb49d91fb446d6a6 Name": "Рукоятка заряжания KAC для AR-10", "5df8e053bb49d91fb446d6a6 ShortName": "KAC", "5df8e053bb49d91fb446d6a6 Description": "Штатная рукоятка заряжания для винтовок SR-25 и совместимых систем AR-10, производство Knight's Armament Company.", @@ -7310,9 +7310,9 @@ "5fbcc3e4d6fa9c00c571bb58 Name": "Верхний ресивер GEN1 для MCX .300 BLK", "5fbcc3e4d6fa9c00c571bb58 ShortName": "MCX GEN1", "5fbcc3e4d6fa9c00c571bb58 Description": "Верхний ресивер для автоматов MCX первого поколения производства компании SIG Sauer. Имеет направляющую для крепления дополнительного оборудования.", - "5fbcc429900b1d5091531dd7 Name": "Приклад телескопический SIG Sauer \"Telescoping/Folding Stock\"", + "5fbcc429900b1d5091531dd7 Name": "Приклад SIG Sauer \"Telescoping/Folding Stock\"", "5fbcc429900b1d5091531dd7 ShortName": "SIG TFS", - "5fbcc429900b1d5091531dd7 Description": "Телескопический приклад Telescoping/Folding Stock для MPX/MCX. Производство SIG Sauer.", + "5fbcc429900b1d5091531dd7 Description": "Приклад Telescoping/Folding Stock для MPX/MCX. Производство SIG Sauer.", "5fbcc437d724d907e2077d5c Name": "Приклад облегченный SIG Sauer \"Thin Side-Folding Stock\"", "5fbcc437d724d907e2077d5c ShortName": "SIG TSFS", "5fbcc437d724d907e2077d5c Description": "Облегченный приклад \"Thin Side-Folding Stock\" для MCX/MPX. Производство SIG Sauer.", @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -9935,7 +9938,7 @@ "6450f21a3d52156624001fcf Name": "Пистолетная рукоятка для 9А-91", "6450f21a3d52156624001fcf ShortName": "9А-91", "6450f21a3d52156624001fcf Description": "Штатная пистолетная рукоятка для автомата 9А-91. Производство Тульского Конструкторского Бюро Приборостроения.", - "6451167ad4928d46d30be3fd Name": "Складной приклад для 9А-91", + "6451167ad4928d46d30be3fd Name": "Приклад складной для 9А-91", "6451167ad4928d46d30be3fd ShortName": "9А-91 скл.", "6451167ad4928d46d30be3fd Description": "Штатный складной приклад для автомата 9А-91. Производство Тульского Конструкторского Бюро Приборостроения.", "645122f6d4928d46d30be3ff Name": "Ствольный блок для 9А-91 9x39", @@ -10673,7 +10676,7 @@ "6529302b8c26af6326029fb7 Name": "6.8x51мм SIG FMJ", "6529302b8c26af6326029fb7 ShortName": "FMJ", "6529302b8c26af6326029fb7 Description": "Винтовочный патрон 6.8x51мм (.277 FURY) Elite Ball массой 135 гран в цельнометаллической оболочке (FMJ - Full Metal Jacket), выпускаемый компанией SIG Sauer.", - "6529348224cbe3c74a05e5c4 Name": "Переходник складной SIG Sauer \"Locking Stock Hinge Assembly\"", + "6529348224cbe3c74a05e5c4 Name": "Переходник SIG Sauer \"Locking Stock Hinge Assembly\"", "6529348224cbe3c74a05e5c4 ShortName": "SIG LSHA", "6529348224cbe3c74a05e5c4 Description": "Адаптер \"Locking Stock Hinge Assembly\" для установки трубы под телескопические приклады на рельсу. Производство SIG Sauer.", "6529366450dc782999054ba0 Name": "Труба приклада SIG Sauer \"Stock Adapter Low Profile Tube\" (Coyote Tan)", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Закрытый кейс", "6740987b89d5e1ddc603f4f0 ShortName": "Зак. кейс", "6740987b89d5e1ddc603f4f0 Description": "Неизвестно, что внутри. Но чтобы открыть его, в любом случае потребуется ключ.", + "67446fdd752be02c220f27b3 Name": "Штурмовая граната ШГ-2", + "67446fdd752be02c220f27b3 ShortName": "ШГ-2", + "67446fdd752be02c220f27b3 Description": "72.5 мм штурмовая граната термобарического типа, используемая в гранатомёте РШГ-2.", "67449b6c89d5e1ddc603f504 Name": "Ключ от кейса", "67449b6c89d5e1ddc603f504 ShortName": "Кейс", "67449b6c89d5e1ddc603f504 Description": "Ключ, подходящий для открытия большинства стандартных кейсов.", @@ -14393,9 +14405,9 @@ "6761492dc53ebe8c0f0a5efe Name": "Рукоятка заряжания двойная GEN 2 для MPX", "6761492dc53ebe8c0f0a5efe ShortName": "MPX GEN2", "6761492dc53ebe8c0f0a5efe Description": "Рукоятка заряжания 2-го поколения с двумя защелками для оружия на базе MPX. Производство SIG Sauer.", - "6761496fe2cf1419500357e9 Name": "Приклад раздвижной SB Tactical \"MPX Pistol Stabilizing Brace\"", + "6761496fe2cf1419500357e9 Name": "Приклад SB Tactical \"MPX Pistol Stabilizing Brace\"", "6761496fe2cf1419500357e9 ShortName": "MPX PSB", - "6761496fe2cf1419500357e9 Description": "Раздвижной приклад типа Pistol Stabilizing Brace, предназначенный для людей с ограниченными возможностями. Производство SB Tactical.", + "6761496fe2cf1419500357e9 Description": "Приклад типа Pistol Stabilizing Brace, предназначенный для людей с ограниченными возможностями. Производство SB Tactical.", "67614994e889e1972605d6bb Name": "Ствол 121мм Ronin Arms для MPX 9x19", "67614994e889e1972605d6bb ShortName": "MPX-SD 121мм", "67614994e889e1972605d6bb Description": "Специальный ствол длиной 4.75 дюймов (121мм) из комплекта MPX-SD, предназначенный для использования с интегрированным глушителем Ronin под патрон 9х19. Производство Ronin Arms.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Кейс Twitch Winter 2025 (Эпический)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "Кейс с предметами.", + "676bf44c5539167c3603e869 Name": "Гранатомет РШГ-2 72.5мм", + "676bf44c5539167c3603e869 ShortName": "РШГ-2", + "676bf44c5539167c3603e869 Description": "Одноразовая реактивная штурмовая граната 72.5мм предназначена для поражения живой силы противника на открытой местности, в укрытиях полевого типа, зданиях и сооружениях различного типа. Производство ГНПП Базальт.", "678f84bb9e85556ca60f0362 Name": "Сварочная маска Тагиллы \"ЗАБЕЙ\"", "678f84bb9e85556ca60f0362 ShortName": "\"ЗАБЕЙ\"", "678f84bb9e85556ca60f0362 Description": "Судя по этой маске, Лабиринт серьёзно повлиял на Тагиллу, сделав его ещё более безумным и кровожадным. Хотя казалось бы, куда ещё?", @@ -14719,10 +14734,10 @@ "67a5f9a193f7b62b6b0f6576 Description": "Бандана, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Принт явно выбран в попытке запугать противника.", "67a5f9c8fafb8efd440694b8 Name": "Нижняя полумаска \"Балаклавы\"", "67a5f9c8fafb8efd440694b8 ShortName": "Маска", - "67a5f9c8fafb8efd440694b8 Description": "Бандана, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Яркий принт подчеркнёт вашу индивидуальность. Или отвлечёт противника.", + "67a5f9c8fafb8efd440694b8 Description": "Бандана зеленого цвета, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Яркий принт подчеркнёт вашу индивидуальность. Или отвлечёт противника.", "67a5f9e7f7041a25760dda38 Name": "Нижняя полумаска \"Балаклавы\"", "67a5f9e7f7041a25760dda38 ShortName": "Маска", - "67a5f9e7f7041a25760dda38 Description": "Бандана, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Яркий принт подчеркнёт вашу индивидуальность. Или отвлечёт противника.", + "67a5f9e7f7041a25760dda38 Description": "Бандана красного цвета, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Яркий принт подчеркнёт вашу индивидуальность. Или отвлечёт противника.", "67a5fa01fafb8efd440694ba Name": "Нижняя полумаска \"Балаклавы\"", "67a5fa01fafb8efd440694ba ShortName": "Маска", "67a5fa01fafb8efd440694ba Description": "Бандана, намотанная на нижнюю часть лица. Чаще всего встречается у уличных бандитов. Яркий принт подчеркнёт вашу индивидуальность. Или отвлечёт противника.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Брюки тактические", + "67b49e7335dec48e3e05e057 Name": "Ручная граната Ф-1 с сокращенным замедлителем", + "67b49e7335dec48e3e05e057 ShortName": "Ф-1", + "67b49e7335dec48e3e05e057 Description": "Ф-1 — ручная противопехотная граната. Эта версия модифицирована лично Партизаном и имеет сокращенный замедлитель. Предназначается для использования в растяжках.", "67b70e43f753cf9f7a0a07a6 Name": "Кейс LATAM Drops Event 2025 (Обычный)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,10 +15005,10 @@ "67b72c64f753cf9f7a0a07aa Name": "Кейс LATAM Drops Event 2025 (Эпический)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Закрытый кейс со снаряжением (Боевой пропуск Сезон 0)", + "67cad1ec19b006e9e50f44d6 Name": "Закрытый кейс со снаряжением (Боевой Пропуск 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Снаряжение (БП 0)", "67cad1ec19b006e9e50f44d6 Description": "Награда за открытие уровней Боевого Пропуска Сезона 0 Арены. Содержит различное снаряжение, что поможет выживать и убивать в суровом мире Таркова. Но сначала этот ящик надо как-то открыть.", - "67cad3226bf74131800752b7 Name": "Вскрытый кейс со снаряжением (Боевой пропуск Сезон 0)", + "67cad3226bf74131800752b7 Name": "Вскрытый кейс со снаряжением (Боевой Пропуск 0)", "67cad3226bf74131800752b7 ShortName": "Снаряжение (БП 0)", "67cad3226bf74131800752b7 Description": "Награда за открытие уровней Боевого Пропуска Сезона 0 Арены. Содержит различное снаряжение, что поможет выживать и убивать в суровом мире Таркова. Замок грубо взломан, а значит, больше нет преград между вами и содержимым ящика.", "67d3ed3271c17ff82e0a5b0b Name": "Кейс для ключей", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Сварочная маска Тагиллы \"ЗАБЕЙ\" (реплика)", "67ea616a74f765cefd009fb7 ShortName": "\"ЗАБЕЙ\"", "67ea616a74f765cefd009fb7 Description": "Судя по этой маске, Лабиринт серьёзно повлиял на Тагиллу, сделав его ещё более безумным и кровожадным. Хотя казалось бы, куда ещё? Похоже, что это всего лишь реплика, которую невозможно надеть. Вероятно, маска была создана как сувенир, призванный напоминать выжившим о встрече с безжалостным убийцей.", + "67f3fd9bdb1fbd5add090f96 Name": "Записи вербовщика", + "67f3fd9bdb1fbd5add090f96 ShortName": "Вербовка", + "67f3fd9bdb1fbd5add090f96 Description": "В дневнике перечислены точки для сбора и маршруты перевозки людей на распределённые по городу базы Диких. Судя по указаниям для вербовщиков, в Таркове готовится масштабная кампания по набору наёмников.", + "67f90180f07898267b0a4ed7 Name": "Балаклава Arena Cup Series", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "Фирменная балаклава известного хип-хоп исполнителя Таркова с символами турнира Arena Cup Series. Исполнитель уже давно не выступает в Таркове, но его мерч обрел новую жизнь.", + "67f924a9154a04c33b0a3c57 Name": "Плакат с фанаткой Киллы", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "На плакате изображена фанатка Киллы. Несмотря на потёртости на бумаге и следы складывания видно, что предыдущий владелец очень дорожил этим плакатом.", + "67f924adb45d94a2600a8cc8 Name": "Плакат девушки с гранатой", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Обычно в ряды BEAR и USEC не допускают женщин. Но даже несмотря на повреждения плаката и местами слипшуюся бумагу, очевидно, что этот снимок подлинный.", + "67f924b1b07831a6ef0ce317 Name": "Плакат с необычной разгрузкой", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "Вряд ли в нынешнем Таркове можно найти подобные образцы экипировки. Судя по состоянию плаката, он явно был изготовлен ещё в мирное время.", " V-ex_light": "А-Выход дорога к военной базе", " Voip/DisabledForOffline": "VoIP недоступен в оффлайн режиме", " kg": " кг", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Вы уверены, что хотите выбросить модифицированное снаряжение?", "APC/CustomizationTab": "Настройка", "APC/EnterName": "Введите наименование", + "APC/EnterName ": "Введите наименование", "APC/FastAccess": "Быстрый доступ", "APC/Locked": "Недоступно", "APC/PurchasedStatesAll": "Все", "APC/ReadyToUlock": "Доступно", "APC/Unlocked": "Купленное", "APC/ViewPreset": "Просмотр", + "APC/ViewPreset ": "Просмотр", "APCBar/Defence": "{0}Защита{1}", "APCBar/Firepower": "{0}Огневая мощь{1}", "APCBar/Metascore": "{0}Метавес{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Штурмовые карабины", "APCFilter/AssaultRifles": "Штурмовые винтовки", "APCFilter/AssaultScope": "Штурмовые прицелы", + "APCFilter/AssaultScope ": "Штурмовые прицелы", "APCFilter/Auxiliary": "Вспомогательные части", "APCFilter/Barrel": "Стволы", "APCFilter/Bipod": "Сошки", + "APCFilter/Camouflagepaint": "Камуфляжи", "APCFilter/Charge": "Рукояти заряжания", "APCFilter/Collimator": "Коллиматоры", "APCFilter/CompactCollimator": "Компактные коллиматоры", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Холодное оружие", "APCFilter/Mount": "Крепления", "APCFilter/Muzzle": "Дульные устройства", + "APCFilter/Muzzle ": "Дульные устройства", "APCFilter/MuzzleCombo": "Дульные переходники", + "APCFilter/MuzzleCombo ": "Дульные переходники", "APCFilter/OpticScope": "Оптика", "APCFilter/PistolGrip": "Пистолетные рукоятки", + "APCFilter/PistolGrip ": "Пистолетные рукоятки", "APCFilter/Pistols": "Пистолеты", "APCFilter/Receiver": "Крышки, Ресиверы и Затворные коробки", "APCFilter/SMGs": "Пистолеты-пулеметы", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "ПРОКАЧКА", "ARENA/ARMORY/LINKS": "СВЯЗИ", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Невозможно передать в EFT", + "ARENA/RANK/TOOLTIP/Any": "Любой тип игры: \"Рейтинговая игра\" \"Обычная (безрейтинговая) игра\"", + "ARENA/RANK/TOOLTIP/Ranked": "Тип игры: \"Рейтинговая игра\"", + "ARENA/RANK/TOOLTIP/Unranked": "Тип игры: \"Обычная (безрейтинговая) игры\"", "ARMOR CLASS": "КЛАСС БРОНИ", "ARMOR POINTS": "ОЧКИ БРОНИ", "ARMOR TYPE": "ТИП БРОНИ", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Предмет не найден", "Arena/Armory/LevelReward/readyToUlockState": "Готово", "Arena/Armory/LevelReward/unlockedState": "Готово", + "Arena/AthletePreset/NonUnlockable": "Вещи из сборки: Атлет. Можно было получить в 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Награда за уровни Боевого Пропуска Сезона 0 Арены.", "Arena/BigCustomPurchaseInfo/Blocked": "Заблокировано", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Недостаточно средств", "Arena/BigCustomPurchaseInfo/Purchase": "Приобрести", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Овертайм", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} из {1}", "Arena/BlastGang/ResultScreenSwapSides": "Смена сторон", + "Arena/Chat/NoDialogsPlaceholder": "Отсутствует история чата. Отправьте сообщение первым.", + "Arena/Context/AcceptFriendInvite": "ПРИНЯТЬ ЗАЯВКУ В ДРУЗЬЯ", + "Arena/Context/AddToIgnore": "ЗАБЛОКИРОВАТЬ ИГРОКА", + "Arena/Context/CancelFriendInvite": "ОТМЕНИТЬ ЗАЯВКУ В ДРУЗЬЯ", + "Arena/Context/CancelInviteSquad": "ОТОЗВАТЬ ПРИГЛАШЕНИЕ В ОТРЯД", + "Arena/Context/DeclineFriendInvite": "ОТКЛОНИТЬ ЗАЯВКУ В ДРУЗЬЯ", + "Arena/Context/FriendInvite": "ДОБАВИТЬ В ДРУЗЬЯ", + "Arena/Context/FriendRemove": "УДАЛИТЬ ИЗ ДРУЗЕЙ", + "Arena/Context/InviteSquad": "ПРИГЛАСИТЬ В ОТРЯД", + "Arena/Context/KickFromSquad": "УДАЛИТЬ ИЗ ОТРЯДА", + "Arena/Context/OpenDialogue": "ОТКРЫТЬ ДИАЛОГ", + "Arena/Context/OpenSquadChat": "ОТКРЫТЬ ЧАТ ОТРЯДА", + "Arena/Context/Pin": "ЗАКРЕПИТЬ КОНТАКТ", + "Arena/Context/RemoveFromIgnore": "РАЗБЛОКИРОВАТЬ ИГРОКА", + "Arena/Context/Reply": "Ответить", + "Arena/Context/Report": "ПОЖАЛОВАТЬСЯ НА ИГРОКА", + "Arena/Context/ReportNickname": "ОСКОРБИТЕЛЬНЫЙ НИК", + "Arena/Context/SetSquadLeader": "ПЕРЕДАТЬ ЛИДЕРСТВО", + "Arena/Context/Unpin": "ОТКРЕПИТЬ КОНТАКТ", "Arena/CustomGame/Lobby/cancel invite to friends": "Отменить запрос в друзья", "Arena/CustomGame/Lobby/cancel invite to group": "Отменить приглашение в группу", "Arena/CustomGame/Lobby/invite to friends": "Пригласить в друзья", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Осталось попыток:", "Arena/CustomGames/Create/Maps": "Локации", "Arena/CustomGames/Create/Modes": "Режимы", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Куллинг игроков", "Arena/CustomGames/Create/SubModes": "Подрежимы", "Arena/CustomGames/Create/TournamentMode": "Турнирный режим", "Arena/CustomGames/Create/TournamentSettings": "Турнирные настройки", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Занять", "Arena/CustomGames/No servers found": "Активных серверов не найдено", "Arena/CustomGames/Observers": "Наблюдатели", + "Arena/CustomGames/Popup/ChangeTeamName": "ИЗМЕНЕНИЕ НАЗВАНИЯ КОМАНДЫ", "Arena/CustomGames/Popup/Enter to server": "Вход на сервер", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Замена задания / Реф", "Arena/CustomGames/Settings": "Настройки", + "Arena/CustomGames/Settings/default": "По умолчанию", "Arena/CustomGames/Settings/disable": "Отключено", "Arena/CustomGames/Settings/enable": "Включено", "Arena/CustomGames/create/enter name": "Введите название", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Регион", "Arena/CustomGames/toggle/room name": "Название сервера", "Arena/CustomGames/toggle/tournament": "Турнир", + "Arena/DeputyPreset/NonUnlockable": "Вещи из сборки: Депутат. Можно было получить в 2024.", "Arena/EndMatchNotification": "Матч был завершен, пока вы отсутствовали", "Arena/EnterPresetName": "Введите имя пресета", + "Arena/FreeWeekend2024/NonUnlockable": "Можно было получить во время бесплатных выходных зимой 2024 года.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Нанесено урона врагам", "Arena/MVP/DeactivatedBomb": "За обезвреживание устройства", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Оружие", "Arena/Rematching": "Возврат к поиску игры с высоким приоритетом", "Arena/Rematching/NoServer": "По техническим причинам сервер не был найден, возвращаемся в поиск игры", + "Arena/RyzhyEdition/NonUnlockable": "Можно было получить за покупку издания Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Переключение в полноэкранный режим может отразиться на производительности.", + "Arena/Settings/FullScreenWarningApply": "Принять", + "Arena/Settings/FullScreenWarningCancel": "Отмена", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "Уникальная награда за участие в особых событиях или турнирах.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "Уникальная награда за участие в особых событиях или турнирах.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "Уникальная награда за участие в особых событиях или турнирах.", "Arena/TeamColor/azure": "Голубая", "Arena/TeamColor/azure_plural": "Голубые", "Arena/TeamColor/blue": "Синяя", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Синие", "Arena/TeamColor/fuchsia": "Розовая", "Arena/TeamColor/fuchsia_plural": "Розовые", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Зеленые", "Arena/TeamColor/grey": "Серая", "Arena/TeamColor/red": "Красная", + "Arena/TeamColor/red_colorless": "А", "Arena/TeamColor/red_plural": "Красные", "Arena/TeamColor/white": "Белая", "Arena/TeamColor/white_plural": "Белые", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Разблокировано пресетов", "Arena/Tooltip/MapSelectedCounter": "Количество выбранных локаций", "Arena/Tooltip/MinMapCount {0}": "Выберите несколько локаций. Вам нужно выбрать минимум {0} карт(ы)", + "Arena/TwitchDrops/NonUnlockable": "Можно получить в рамках особых событий Twitch.", "Arena/UI/APCConditionsUncompleted": "Условия не выполнены", "Arena/UI/APCItemBuyCaption": "Разблокировка предмета", "Arena/UI/APCItemBuyDescription": "Купить предмет?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Пресет приобретен", "Arena/UI/Waiting": "Ожидание...", "Arena/Ui/ServerFounding": "Поиск сервера...", + "Arena/Widgets/ team {0} capturing point": "{0} захватывают точку", + "Arena/Widgets/ team {0} won": "{0} победили", + "Arena/Widgets/ {0} capturing point": "{0} захватывают точку", + "Arena/Widgets/ {0} won": "{0} победили", "Arena/Widgets/Event/activating object": "Установка устройства", "Arena/Widgets/Event/can activate object": "Разместите устройство", "Arena/Widgets/Event/deactivate object": "Отключите устройство", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "ГОТОВ К БОЮ", "ArenaArmoryItemReward/Description": "Вы разблокируете предмет в Арсенале", "ArenaArmoryScreen/TutorialButton": "Обучение", + "ArenaBattlePass/BattlePassItem/Bought": "Куплено", + "ArenaBattlePass/BuyButton/Buy": "Купить за", + "ArenaBattlePass/BuyButton/Take": "Забрать", + "ArenaBattlePass/ConfirmationPurchase/Description": "«{1}» доступен только для фракции {2}. Вы сможете использовать его после смены фракции. Приобрести?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Подтверждение покупки", + "ArenaBattlePass/CurrencyExchange": "Обмен валюты", + "ArenaBattlePass/CurrencyExchange/Buy": "Купить", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "ограничение на обмен валюты {0} BP в сутки", + "ArenaBattlePass/CurrencyExchange/Timer": "Предложение обновится через", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Будет доступно к покупке у Рефа в Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Уровень", + "ArenaBattlePass/Notification/BoughtItem": "Получен \"{0}\"", + "ArenaBattlePass/NumberBattlePassItem": "Получено наград", + "ArenaBattlePass/NumberDailyQuests": "Ежедневных заданий", + "ArenaBattlePass/NumberWeeklyQuests": "Еженедельных заданий", + "ArenaBattlePass/RewardCurrency": "Награда за следующий уровень:", + "ArenaBattlePass/Tutorial/Step1": "Это уровень Боевого Пропуска. За каждый полученный уровень вы получаете Battle Points – особую валюту Боевого Пропуска. Чтобы повысить уровень, нужно выполнять оперативные задания, а также участвовать в боях на Арене в любом режиме.", + "ArenaBattlePass/Tutorial/Step2": "Это особая валюта Боевого Пропуска – Battle Points. Вы можете потратить ее на разблокировку наград. Зарабатывать валюту можно повышая уровень Боевого Пропуска и выполняя оперативные задания.", + "ArenaBattlePass/Tutorial/Step3": "А также обменивать на Рубли или GP на Battle Points. Раз в 24 часа обновляется предложение для покупки.", + "ArenaBattlePass/Tutorial/Step4": "Для получения награды вам нужно иметь соответствующий уровень Боевого Пропуска и некоторое количество Battle Points. Награды могут иметь дополнительные условия получения. Например, открыть несколько наград с предыдущей страницы или выполнить несколько оперативных заданий.", + "ArenaBattlePass/Tutorial/Step5": "Все предметы, полученные в рамках Боевого Пропуска, кроме валюты и ящиков, останутся с вами после вайпов. Удачи и успехов на жёлтом песке Арены!", + "ArenaBattlePass/Tutorial/Title": "БОЕВОЙ ПРОПУСК АРЕНЫ", + "ArenaBattlePass/Tutorial/Welcome": "Здесь вы можете отслеживать прогресс Боевого Пропуска и получать новые награды.", + "ArenaBattlePass/Tutorial/Welcome/Next": "ПРИСТУПИТЬ", "ArenaIntoxication": "Сильный Яд", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Бонус за первую победу: {0}", @@ -15512,13 +15619,16 @@ "ArenaPresetViewScreen/unlocked": "Условия выполнены", "ArenaQuestReroll/IsChangeNotAllowed": "Нельзя заменить данное задание", "ArenaQuestReroll/NotHaveMoney": "Недостаточно денег для замены задания", - "ArenaQuestReroll/NotHaveMoneyAndStanding": "Недостаточно денег и репутации для замены задания", - "ArenaQuestReroll/NotHaveStanding": "Недостаточно репутации для замены задания", + "ArenaQuestReroll/NotHaveMoneyAndStanding": "Недостаточно денег и отношения для замены задания", + "ArenaQuestReroll/NotHaveStanding": "Недостаточно отношения для замены задания", "ArenaRaidInviteDescription": "Приглашение в бой от {0}", + "ArenaSpawnProtection": "Защита на спавне", "ArenaTraderScreen/QuestTab/AnyGameMode": "Любой", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Режим(ы)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Локация(-и)", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Несколько режимов", + "ArenaTutorial/ActionAnyKey": "Для продолжения нажмите любую клавишу", + "ArenaTutorial/ActionClick": "Для продолжения нажмите в выделенную область", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Вы уверены, что хотите досрочно выйти из игры?", "ArenaUI/BattleMenu/FreeQuitWarning": "- Вы покинете матч без штрафа", "ArenaUI/BattleMenu/MatchLeave": "ВЫХОД ИЗ МАТЧА", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Разборка", "Arena_Bay5": "Порт 5", "Arena_Bowl": "Стадион", + "Arena_Prison": "Турма", "Arena_Yard": "Район", "Arena_equator_TDM_02": "Экватор", "Arena_result_final": "Финал", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Спина", "ArmorVest": "Броня", "ArmoryCondition/ArenaArmoryProgression": "Достичь уровня {0} на оружии:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "Уровень Боевого Пропуска", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Куплено предметов со страницы {0}", "ArmoryCondition/ArenaRank": "Ранг", "ArmoryCondition/CompletedDailyQuests": "Выполнить ежедневных заданий:", "ArmoryCondition/CompletedWeeklyQuests": "Выполнить еженедельных заданий:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Бартер", "Battle category": "Боевая категория", "BattleCategory": "Бой", + "BattlePassSeason0Event": "Героизм на Арене", "BearAksystems": "BEAR АК-системы", "BearAssaultoperations": "BEAR штурмовые операции", "BearAuthority": "BEAR авторитет", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Уменьшает цену на услуги страховки на [{0:0.#%}]", "CharismaLevelingUpDescription": "Навык харизмы улучшается косвенно при улучшении навыков “Внимательность”, “Восприятие” и “Интеллект”.", "CharismaScavCaseDiscount": "Скидка на цены Ящика Диких", + "Chat/AcceptAllFriendsRequests": "ПРИНЯТЬ ВСЕ ЗАЯВКИ", + "Chat/Blocked": "Вы были заблокированы", + "Chat/BlockedByMe": "Игрок заблокирован", + "Chat/GlobalSearch": "ГЛОБАЛЬНЫЙ ПОИСК", + "Chat/GlobalSearchPlaceholder": "Поиск по всем игрокам", + "Chat/GlobalSearchTooltip": "Глобальный поиск", + "Chat/Incoming": "Входящие", + "Chat/LocalSearchPlaceholder": "Поиск по вашим контактам", + "Chat/LocalSearchTooltip": "Поиск по друзьям", + "Chat/NoMatches": "НЕТ СОВПАДЕНИЙ", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Исходящие", + "Chat/PMCDialoguesHeaderLabel": "Операторы", + "Chat/PMCFrequency": "Частота ЧВК", + "Chat/RemoveFriendConfirmWindowDescription": "Вы уверены, что хотите убрать человека из списка друзей? ", + "Chat/ReplyToNickname": "Ответить", + "Chat/SearchInAllPlayers": "ИСКАТЬ СРЕДИ ВСЕХ ИГРОКОВ", + "Chat/SearchOnFriendList": "ИСКАТЬ ПО СПИСКУ ДРУЗЕЙ", + "Chat/SpecialCommunications": "Спецсвязь", + "Chat/Squad": "Отряд", "ChatScreen/QuestItemsListHeader": "Следующие предметы будут перемещены в схрон для заданий:", "ChatScreen/QuestItemsMoved": "Предметы успешно перемещены в схрон для заданий", "Check your email": "Пожалуйста, проверьте почтовый ящик, на который зарегистрирована данная учетная запись. Код Device ID придет в течение ближайших 5 минут.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Закрыто", "ClothingPanel/Available_both_games": "Доступно в EFT и Arena", "ClothingPanel/Available_only_arena": "Доступно только в Arena", + "ClothingPanel/BattlePass": "Открывается в Боевом Пропуске", "ClothingPanel/ExternalObtain": "Доступно для покупки на сайте", "ClothingPanel/InternalObtain": "Для покупки у торговца требуется:", "ClothingPanel/LoyaltyLevel": "Уровень Лояльности\nТорговца:", @@ -15908,7 +16044,7 @@ "Colorfulness:": "Красочность:", "Combat": "Боевые", "ComeWithMeGesture": "Следуй за мной", - "Commission": "Комиссия организатора", + "Commission": "Комиссия Организатора", "Common stats": "Общая статистика", "CommonValue": "Стоимость всех предметов в схроне", "Compass": "Компас", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Уровень персонажа", "Conditional/ConditionQuest/Type": "Задания:", "Conditional/ConditionSkill/Type": "Умения:", + "Confirmation {0:F1}": "Подтверждение {0:F1}", "Connecting to server": "Соединение с сервером...", "Connection to server lost": "Потеряно соединение с сервером", "Console": "Открыть консоль", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Подвал котельной (Совм.)", "CustomizationDirectReward/Description": "Вы получите этот стиль в качестве награды", "CustomizationNotExists": "Одежда в одном или нескольких пресетах недоступна", + "CustomizationOffer/ArenaBattlePass": "Можно получить в Боевом Пропуске EFT: Arena Season {0}", "CustomizationOfferReward/Description": "Разблокирует тактическую одежду в предложениях торговца", "CustomizationReward/Description": "Вы разблокируете тактическую одежду", "Customizations/ObtainHeader": "Получено:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Всего заданий выполнено", "Daily/Stat/VeryEasy": "Выполнено оч. легких заданий", "Daily/Stat/VeryHard": "Выполнено оч. сложных заданий", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Заработать очки", + "DailyQuestName/ArenaAction/PointCaptured": "Захватить точку", "DailyQuestName/ArenaWinMatch": "Победить в матче", "DailyQuestName/ArenaWinRound": "Победить в раунде", "DailyQuestName/Completion": "Найти и передать", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Огонь", "DamageType_GrenadeFragment": "Осколки", "DamageType_HeavyBleeding": "Сильное кровотечение", + "DamageType_HotGases": "Раскалённые газы", "DamageType_Impact": "Удар", "DamageType_Landmine": "Противопехотная мина", "DamageType_LightBleeding": "Слабое кровотечение", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Радиация", "DamageType_Sniper": "Выстрел снайпера", "DamageType_Stimulator": "Побочный эффект", + "DamageType_ThermobaricExplosion": "Термобарический взрыв", "DamageType_Undefined": "Старый урон", "Day": "День", "DeactivateObject": "Отключить устройство", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Прикрыть огнём", "ETraderServiceType/BtrItemsDelivery": "Доставить вещи в схрон", "ETraderServiceType/PlayerTaxi": "Подвезти", + "EWeaponQuality/Low": "низкое", "EWishlistGroup/Equipment": "Снаряжение", "EWishlistGroup/Hideout": "Убежище", "EWishlistGroup/Other": "Прочее", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Нельзя добавить {0} в {1}. Изменяемое оружие займет больше ячеек, чем доступно. Попробуйте переместить оружие в более свободную часть схрона.", "Escape": "Назад", "Escape from Tarkov": "ПОБЕГ ИЗ ТАРКОВА", + "EweaponQuality/High": "высокое", "ExamineWeapon": "Осмотреть оружие", "Excellent standing": "великолепное", "ExceptionItem": "Выбранный торговец не может отремонтировать этот предмет", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Найдено в рейде", "Free cam": "Свободная камера", "FreeChangeQuest": "Бесплатно", + "FreeWeekend": "Free Weekend", "Freetrading": "Свободная торговля", "Freetradingdescription": "Свободная торговля", "Friend invite to {0} was sent succesfully": "Запрос дружбы к {0} был отправлен", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Круг сектантов ", "Hideout/CircleOfCultists/MaxItemsCount": "Макс. предметов: {0} ", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Сектанты не могут принести Дар, пока вы находитесь в Убежище.", + "Hideout/Craft/CantBuyFIRItems": "Нельзя купить предметы с меткой \"Найдено в рейде\"", + "Hideout/Craft/HaveAllCraftItems": "Все материалы в наличии", "Hideout/Craft/ToolMarkerTooltip": "Этот предмет будет использоваться как вспомогательный инструмент. Он вернется в схрон после завершения производства.", "Hideout/Customization/Ceiling/TabName": "Потолок", "Hideout/Customization/Ceiling/WindowHeader": "Выберите потолок для установки", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Финальный генератор", "Nakatani_stairs_free_exit": "Спуск в подвал в Nakatani", "Nape": "Затылок", + "NeedIdle": "Необходимо остановиться", "NeededSearch": "Фильтр по необх.", "NetworkError/SessionLostErrorMessage": "Сессия потеряна. Требуется переподключение", "NetworkError/TooManyFriendRequestsHeader": "Ошибка", @@ -17604,7 +17752,7 @@ "Outskirts Water": "Дикий мост", "OverRun": "OverRun", "Overall Health": "Общие показатели здоровья", - "Overall graphics quality:": "Общее качество графики", + "Overall graphics quality:": "Общее качество графики:", "Overall lifetime": "Возраст аккаунта", "Overall visibility:": "Общая видимость:", "Overkills": "Оверкилл", @@ -17620,6 +17768,7 @@ "PVE settings": "Настройки ИИ", "Pain": "Боль", "Painkiller": "На болеутоляющих", + "Painting violations type {0} for camouflage paints {1}": "Невозможно покрасить камуфляжем {1}: {0}.", "PanicEffect": "Леденящий душу ужас", "PaperGesture": "Бумага", "Paramedic": "Фельдшер", @@ -17627,7 +17776,7 @@ "Penalties": "Штрафы за провал", "Pending requests": "Запросы в друзья", "Perception": "Восприятие", - "PerceptionDescription": "Увеличивает дистанцию слышимости и концентрацию при прицеливании, а также облегчает поиск добычи.", + "PerceptionDescription": "Увеличивает концентрацию при прицеливании, а также облегчает поиск добычи.", "PerceptionFov": "Увеличивает приближение при прицеливании на [{0:0.#%}]", "PerceptionHearing": "Увеличивает радиус слышимости на [{0:0.#%}]", "PerceptionLevelingUpDescription": "Навык восприятия улучшается при нахождении и поднятии любых предметов.", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Стоимость замены составит:", "Quest/Change/TimeLeft": "На выполнение задания останется:", "Quest/Change/Tooltip": "Стоимость замены оперативного задания:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Заработать очки{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Захватить точку{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": ", умерев {0} раз(а)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": ", умерев не более {0} раз(а)", "QuestCondition/ArenaDeathCount/More{0}": ", умерев более {0} раз(а)", @@ -17801,7 +17952,11 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Найти за один рейд предметы категории: {0}", - "QuestCondition/Elimination": "Устранить{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " c {0} захваченными точками на конец матча", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " c {0} и более захваченными точками на конец матча", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": ", имея {0} захваченные точки", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": ", имея {0} и более захваченные точки", + "QuestCondition/Elimination": "Убить{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " выстрелом в {0}", "QuestCondition/Elimination/Kill/BodyPart/Chest": "грудь", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Выйти из рейда с предметами категории: {0}", "QuestCondition/Many{0}{1}": "{0} {1} раз(а)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": ", захватывающих точку", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": ", находящихся на точке", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": ", самому захватывая точку", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": ", самому находясь на точке", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "подавителя", "QuestCondition/Preset/632f8229f6541cacd808452c": "штурмовика", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "на любой локации", "QuestCondition/SurviveOnLocation/ExitName": ", выйдя через \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "на локации", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " до того, как останется {0} до конца матча", + "QuestCondition/Timer/Minute{0}": "{0} минут(ы)", + "QuestCondition/Timer/Second{0}": "{0} секунд", "QuestConditionVariable/EBodyPart/head": "голову", "QuestCount/Transfered": "передано", "QuestCount/Transferred": "Убито:", @@ -18256,7 +18418,7 @@ "Settings/Graphics/DLSSLockThis": "Настройка недоступна, пока включён DLSS", "Settings/Graphics/DLSSModeTooltip": "NVIDIA DLSS использует технологию ИИ Super Resolution для обеспечения максимально возможной частоты кадров при наилучших настройках графики. Для DLSS требуется видеокарта NVIDIA RTX.", "Settings/Graphics/DLSSNotSupported": "DLSS не поддерживается на вашей системе", - "Settings/Graphics/DLSSPreset": "Предустановка DLSS", + "Settings/Graphics/DLSSPreset": "Предустановка DLSS:", "Settings/Graphics/DLSSPresetTooltip": "Отдельные предустановки DLSS.", "Settings/Graphics/DLSSWrongSampling": "Выключите Resampling для возможности выбора DLSS", "Settings/Graphics/FSR2LockThis": "Настройка недоступна, пока включён FSR 2.2", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Общий уровень громкости:", "Settings/Sound/ReadyToMatchSoundVolume": "Громкость экрана готовности к матчу:", "Settings/UnavailablePressType": "Недоступно", + "Settings/graphics/weaponQuality": "Качество текстур оружия", "SevereMusclePain": "Сильная боль в мышцах", "Shack": "КПП военной базы", "Shadow visibility:": "Видимость теней:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "РЕЖИМ(Ы) ОГНЯ", "Tactical": "Вкл/выкл тактического устройства", "Tactical clothing": "Тактическая одежда", + "TacticalClothing": "Тактическая одежда", "TacticalInteractionMode/Hold": "Зажатие", "TacticalInteractionMode/Press": "Нажатие", "TacticalVest": "Разгрузка", @@ -18582,6 +18746,7 @@ "Task": "Задание", "Taskbar/Unavailable": "Недоступно", "Taskperformance": "Исполнительность", + "TeamDeathMatchDescription": "Классический тдм, задача команд - захватывать и удерживать точки на карте для накопления победных очков", "TeamFight": "TeamFight", "TeamFightDescription": "Командный бой в формате 5 на 5. Необходимо уничтожить команду противника раньше чем они уничтожат вас.", "TeamFightDescriptionShort": "Противостояние двух команд", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Старая лесопилка", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "В депо закинуть? Учти, без меня оттуда не выбраться. Если цена подходит, то следи за временем там, лады?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Депо", + "Trading/Dialog/PlayerTaxi/p1/Description": "Ага, цель — кинотеатр «Родина». Цена устраивает?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Кинотеатр «Родина»", + "Trading/Dialog/PlayerTaxi/p2/Description": "Выдвигаемся к трамваю. По цене потянешь?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Трамвай", + "Trading/Dialog/PlayerTaxi/p3/Description": "Отлично, курс на центр города. Денег хватит?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Центр города", + "Trading/Dialog/PlayerTaxi/p4/Description": "Поедем сейчас до упавшего крана. Цена устраивает?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Упавший кран", + "Trading/Dialog/PlayerTaxi/p5/Description": "Довезу тебя до бывшего БП Диких. Цена подходит?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Бывший БП Диких", + "Trading/Dialog/PlayerTaxi/p6/Description": "Перекину тебя к отелю «Пайнвуд». Что по цене, нормально?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Отель «Пайнвуд»", "Trading/Dialog/Quit": "Попрощаться и уйти", "Trading/Dialog/ServicePayoff{0}": "Хорошо, этого должно быть достаточно. (передать предмет \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Скрыть историю", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Доступ запрещен", "Transit/InactivePoint": "Переход недоступен", "Transit/Interaction": "Взаимодействовать", + "Transit/LONG_TAP_TO_INTERACT": "Вы находитесь в зоне перехода, зажмите \"взаимодействовать\" для активации перехода", "Transition in ": "Переход через ", "Transition in {0:F1}": "Переход через {0:F1}", "Tremor": "Тремор", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Линии ячеек в схроне", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Объем схрона будет увеличен добавлением новых линий ячеек.\nИзменения вступят в силу не сразу (подробности на нашем сайте).", "UI/Quest/Reward/AssortmentUnlockCaption": "Разблокировка ассортимента у {0} на {1} уровне лояльности", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "Опыт Боевого Пропуска", "UI/Quest/Reward/CustomizationOfferCaption": "Одежда", "UI/Quest/Reward/ItemCaption": "Предмет", "UI/Quest/Reward/ProductionSchemeCaption": "Рецепт в зоне {0} на уровне {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "выкл", "UI/Settings/NVidiaReflexMode/On": "вкл", "UI/Settings/NVidiaReflexMode/OnAndBoost": "вкл + boost", + "UI/Settings/NotAvailableInRaid": "Не доступно в рейде", "UI/Settings/NotificationType/Default": "Стандартный", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Прочие действия", "UI/Settings/Rest": "Остальное", + "UI/Settings/Voice/ArenaManagerVoice": "Язык комментатора:", "UI/Settings/WishlistNotify": "Нотификации предметов из Избранного", "UI/Skills/Charisma/CharismaDiscount": "Скидка от навыка \"Харизма\"", "UI/Standing:": "Отношение торговца:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Неизвестная ошибка", "UnknownErrorMessage": "Произошла неизвестная ошибка. Закройте игру и обратитесь в тех.поддержку", "UnknownToxin": "Неизвестный токсин", + "UnlimitedOvertime": "неограничено", "UnloadAmmo": "ВЫНУТЬ ПАТРОНЫ", "Unloadmagazine": "Отсоединить магазин", "Unlock": "Открыть ключом", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Навыки базовой модификации оружия в бою позволяют добиться более высокой эргономики и снижения износа ПБС.", "WeaponMounting": "Встать в упор", "WeaponPunch": "Удар прикладом", + "WeaponQuality/High": "Высокое", "WeaponRecoilBuff": "Уменьшает отдачу оружия на [{0:0.#%}]", "WeaponReloadBuff": "Увеличивает скорость перезарядки на [{0:0.#%}]", "WeaponStiffHands": "Increases WeaponErgonomicsBuff [(+{0:0%})]", @@ -19220,7 +19404,7 @@ "YOUR MAIN CHARACTER": "ВАШ ОСНОВНОЙ ПЕРСОНАЖ", "Yas been transfered": "Было передано", "Yes": "Да", - "You are banned": "Доступ к барахолке запрещен", + "You are banned": "Доступ к Барахолке запрещен", "You are no longer a leader of the group": "Вы больше не лидер группы", "You are no longer banned from ragfair": "Доступ к Барахолке открыт", "You are now the leader of the group": "Теперь вы лидер группы", @@ -19238,7 +19422,7 @@ "You can't enable {0} and {1} at the same time. Turn {1} off?": "Вы не можете включить компоненты '{0}' и '{1}' в одно и то же время. Выключить компонент '{1}'?", "You can't examine two items at the same time": "Вы не можете изучать два предмета одновременно", "You can't fold this item": "Вы не можете сложить этот предмет", - "You can't open flea market": "Вы не можете открыть барахолку", + "You can't open flea market": "Вы не можете открыть Барахолку", "You can't plant a beacon while moving": "Вы не можете установить маяк, пока двигаетесь", "You can't plant quest item while moving": "Вы не можете оставить предмет во время перемещения", "You can't send message to this user. He is in ignore list.": "Вы не можете отправлять сообщения этому пользователю. Он в игнор-списке.", @@ -19246,9 +19430,10 @@ "You can't send message to this user. You are in ignore list.": "Вы не можете отправлять сообщения этому пользователю. Он добавил вас в игнор-список.", "You can't unload ammo from equipped weapon": "Вы не можете разрядить экипированное оружие", "You can't unload from this item": "Вы не можете разрядить этот предмет", - "You can't use flea market right now": "Вы не можете пользоваться барахолкой в данный момент", + "You can't use flea market right now": "Вы не можете пользоваться Барахолкой в данный момент", "You can't use ragfair now": "Вы не можете пользоваться Барахолкой сейчас", "You can't use that symbol": "Вы не можете использовать этот символ", + "You cannot modify quality in raid.": "Вы не можете изменять качество графики в рейде", "You cannot modify texture quality in raid.": "Вы не можете изменять качество текстур в рейде", "You cannot take off a dogtag from a friend or group member": "Вы не можете снять жетон с друга или члена группы", "You don't have some items to finish the deal": "Не хватает предметов для совершения сделки", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "П", "arena/CapturePointScores": "Очки", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Захватите и удерживайте точки", + "arena/CapturePointsCount": "ТОЧЕК", "arena/DeathShort": "С", "arena/Exp": "Exp", "arena/KillShort": "У", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Удалить", "arena/contextInteractions/card/edit": "Редактировать", "arena/contextInteractions/card/inspect default preset": "Осмотреть", + "arena/contextInteractions/card/try": "ОПРОБОВАТЬ", + "arena/customGames/bestofvalueteam": "Победы в серии матчей:", + "arena/customGames/create/additionalSettings": "ДОПОЛНИТЕЛЬНЫЕ", + "arena/customGames/create/availablePresets": "Доступные пресеты:", + "arena/customGames/create/bestof": "Режим Best of ...", "arena/customGames/create/gameModeBlastGang": "РЕЖИМЫ (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Режимы (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "РЕЖИМЫ (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Овертайм", + "arena/customGames/create/presetsOptions": "ПРЕСЕТЫ", + "arena/customGames/create/roundWinCount": "Количество побед в матче:", "arena/customGames/create/samePresets": "Одинаковые пресеты:", + "arena/customGames/create/setAvailablePresets": "Доступные пресеты:", + "arena/customGames/create/setBestof": "Режим Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Длительность матча:", "arena/customGames/create/setOvertime": "Включить овертайм", + "arena/customGames/create/setRoundWinCount": "Настроить количество побед в матче:", "arena/customGames/create/setSamePresets": "Разрешить одинаковые пресеты", "arena/customGames/create/setScoresToWinCount": "Очков для победы:", + "arena/customGames/create/setSkillLvl": "Установить уровень умений игроков:", + "arena/customGames/create/skillLvl": "Уровень умений игроков:", "arena/customGames/invite/message{0}": "ПРИГЛАШЕНИЕ В ПОЛЬЗОВАТЕЛЬСКУЮ ИГРУ ОТ {0}", "arena/customGames/notify/GameRemoved": "Игра была распущена", "arena/customgames/errors/notification/gamealreadystarted": "Игра уже началась", "arena/customgames/popup/refreshdailyquest": "Заменить оперативное задание?", "arena/customgames/popups/attemptscountleft:": "Попыток осталось:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP ОСТАЛОСЬ", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "ВЫБЕРИТЕ АРЕНУ", "arena/matching/SelectGametype": "ВЫБЕРИТЕ ТИП ИГРЫ", "arena/matching/SelectRankedGamemode": "ВЫБЕРИТЕ РЕЙТИНГОВЫЙ РЕЖИМ ИГРЫ", + "arena/matching/SelectUnrankedGamemode": "ВЫБЕРИТЕ НЕРЕЙТИНГОВЫЙ РЕЖИМ ИГРЫ", "arena/matching/Type": "ТИП", "arena/matching/UnavailableReason": "Недоступно", "arena/matching/buyPreset": "ВЫБЕРИТЕ ПРЕСЕТ", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "разблокировано слотов:", "arena/questLogTemplate/gameModes": "Режим(ы)", "arena/questLogTemplate/maps": "Локация(-и)", + "arena/quests/notification/finished": "Задание выполнено!", "arena/resultContent/matchMVPExpTitle": "Бонус за MVP матча", "arena/resultContent/matchMVPMoneyTitle": "Бонус за MVP матча", "arena/resultContent/roundMVPExpTitle": "Бонус за MVP раунда", "arena/resultContent/roundMVPMoneyTitle": "Бонус за MVP раунда", "arena/selection/gameMode": "режимы", "arena/selection/tiers": "tier", + "arena/shootingrange": "СТРЕЛЬБИЩЕ", "arena/tab/ASSAULT": "ШТУРМОВИК", "arena/tab/COLLECTION": "КОЛЛЕКЦИЯ", "arena/tab/FAVORITES": "ИЗБРАННОЕ", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "РЕЙТИНГ", "arena/tab/SCOUT": "РАЗВЕДЧИК", "arena/tab/SQB": "ПОДАВИТЕЛЬ", + "arena/tooltip/BattlePoints": "Battle Points используются в Боевом Пропуске для покупки наград. Их можно получить за ежедневные и еженедельные оперативные задания, обменивая Рубли или Монеты GP, а также за каждый уровень Боевого Пропуска.", "arena/tooltip/GP": "Монета GP. Используется для разблокировки снаряжения пресетов и для покупки снаряжения в EFT. Зарабатываются за выполнение оперативных заданий в Арене.", "arena/tooltip/OverallMatches": "Общее количество сыгранных рейтинговых и безрейтинговых матчей.", "arena/tooltip/Presets": "Сборки", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Ваш общий процент побед, рассчитываемый из всех побед и поражений в рейтинговых и безрейтинговых матчах.", "arena/widget/ally_capture_point": "Союзники захватили точку", "arena/widget/enemy_capture_point": "Противники захватили точку", + "arena/widgets/activate object": "Установите устройство", + "arena/widgets/defend object": "Защищайте устройство", + "arena/widgets/event/activating object": "Установка устройства", + "arena/widgets/event/can activate object": "Разместите устройство", + "arena/widgets/event/defend object": "Защищайте устройство", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Выполнить ежедневных заданий:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Выполнить еженедельных заданий:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Выполнить ежедневных заданий:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Выполнить еженедельных заданий:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Ежедневных заданий:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Еженедельных заданий:", "arenaui/presetview/lockedpreset": "Пресет недоступен", "arm broke": "Вы сломали руку!", "assaultKills": "Убийств из штурмовых винтовок", @@ -19643,9 +19860,32 @@ "camora_003": "Камора 4", "camora_004": "Камора 5", "camora_005": "Камора 6", + "camouflage/buttons/to painting": "Покраска", + "camouflage/component/infinity": "Бесконечный", + "camouflage/different paint case exception": "Краска из уникального набора несовместима с обычной.", + "camouflage/info/base camouflage": "Базовый", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "Камуфляжная краска {0} не подходит для мода {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "Камуфляжная краска {0} не подходит для оружия {1}.", + "camouflage/notification/message/NoPaintInInventory": "краска не разблокирована в Арсенале", + "camouflage/notification/message/NotAvailablePaint": "краска недоступна для компонентов", + "camouflage/notification/message/NotEnoughPaint": "недостаточно краски", + "camouflage/notification/message/Unknown paint {0}": "неизвестная краска", + "camouflage/notification/not available slots for quick painting": "Нет свободных слотов для быстрой покраски", + "camouflage/paint case exception": "Краски из разных уникальных наборов несовместимы.", + "camouflage/quickPanel/not selected camouflage": "КАМУФЛЯЖ НЕ ВЫБРАН", + "camouflage/quickPanel/paint details": "Детали покраски", + "camouflage/quickPanel/painting all": "Покрасить всё", + "camouflage/quickPanel/remain": "Остаток:", + "camouflage/quickPanel/resource requirement": "Требуется ресурса:", + "camouflage/quickPanel/summary resource at build": "Всего ресурса в сборке", + "camouflage/tooltip/limit exceeded": "Достигнут лимит камуфляжей. Для смены окраски снимите один из камуфляжей со всех модов.", + "camouflage/tooltip/only painting available": "Доступна только покраска.", + "camouflage/tooltip/weapon painting available": "Возможность покраски оружия и модулей — как целиком,\nтак и по отдельности.\nОдновременно можно применить до 3-х\nразных камуфляжей на сборку.\nПри покраске оружия целиком магазин не учитывается.", + "camouflage/tooltip/weapon painting header": "Покраска оружия", + "camouflage/tooltip/weapon painting not available": "Данное оружие недоступно к покраске.", "canceled friend request": "Игрок отменил приглашение в друзья", "cancelfriendrequest": "Отменить запрос дружбы", - "captcha/too frequent attempts": "Достигнут лимит запросов. Доступ к торговцам и на барахолку временно ограничен. Попробуйте позже", + "captcha/too frequent attempts": "Достигнут лимит запросов. Доступ к торговцам и Барахолке временно ограничен. Попробуйте позже.", "carbineKills": "Убийств из штурмовых карабинов", "casesFound": "Контейнеров найдено", "casesOpened": "Контейнеров открыто", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Накопительный коллектор", "lab_Vent": "Вентиляционная шахта", "labir_exit": "Путь наверх", + "laboratory": "Лаборатория", "labyrinth_secret_tagilla_key": "Тропа Ариадны", "lastSession": "Дата последней игровой сессии", "leader": "лидер", @@ -20224,7 +20465,7 @@ "ragfair/Unable to sell the item that contains {0}": "Невозможно продать предмет, в котором находится \"{0}\"", "ragfair/Unlocked at character LVL {0}": "Возможность выставлять товар на продажу, видеть и покупать товары от других игроков будет открыта на {0}-ом уровне.", "ragfair/W-LIST": "ОТСЛЕЖ.", - "ragfair/You are temporarily banned from flea market": "Вам временно ограничен доступ к барахолке", + "ragfair/You are temporarily banned from flea market": "Вам временно ограничен доступ к Барахолке", "ragfair/You cannot place non-empty container at ragfair": "Вы не можете продать контейнер с содержимым", "ragfair/You've bought personal limit of this item, wait for restock": "В этом завозе вами выкуплен персональный лимит товара", "ragfair/Your offer ({0}) is expired!": "Истек срок вашего предложения ({0})!", @@ -20358,6 +20599,7 @@ "un-sec": "Северный пост ООН", "undefined": "", "uninstall": "СНЯТЬ", + "unlock requires:": "для покупки требуется:", "unlockedSafes": "Сейфов взломано", "unpack": "открыть", "usecKills": "Убито USEC", @@ -20596,7 +20838,7 @@ "5b5f79eb86f77447ed5636b7": "Специальное оружие", "5b5f7a0886f77409407a7f96": "Холодное оружие", "5b5f7a2386f774093f2ed3c4": "Метательное оружие", - "5b619f1a86f77450a702a6f3": "Квестовые предметы", + "5b619f1a86f77450a702a6f3": "Предметы заданий", "5c518ec986f7743b68682ce2": "Механические ключи", "5c518ed586f774119a772aee": "Электронные ключи", "6564b96a189fe36f356d177c": "Встроенные пластины (скрыто)", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Письмо с наградами за престиж", "6776e324810eb26b880fb4a5 0": "Говорят, что с инструментами сейчас совсем туго стало, даже OLI не спасает. Правильно я сделал, что оптом тогда эти рулетки заказал. Держи, сейчас я тебе помогу, а сочтёмся как-нибудь потом.", "678e601d80e518e4d4025a14 0": "Ну что, солдат, смотрю ты поддерживаешь бойцов, записывающих свои вылазки? Молоток! Вот тебе тут, насобирали в благодарность. Чё вылупился? Да, краски. Подвал свой хоть в порядок приведёшь. Давай, иди рисуй, Айвазовский.", - "67f91739ee3ea2aa290f365d 0": "Вы получили пробную версию игры Escape from Tarkov: Arena на 3 дня после успешного выполнения задания «Баланс, часть 1» до патча 16.5.5. \n\nИгра уже активирована на вашем аккаунте. \n\nВозможно, потребуется перезапуск Лаунчера BattleState Games.", + "67f91739ee3ea2aa290f365d 0": "Вы получили пробную версию игры Escape from Tarkov: Arena на 3 дня после успешного выполнения задания «Баланс. Часть 1» до патча 16.5.5. \n\nИгра уже активирована на вашем аккаунте. \n\nВозможно, потребуется перезапуск Лаунчера BattleState Games.", + "680a1df210f5a7a4720be7d5 0": "Весенняя распродажа началась! Специальное предложение на скидку 20% распространяется на все виды изданий и обновлений Escape from Tarkov. Не упустите шанс обновить свое издание прямо сейчас!", + "680a2f9487ba4059ed0532b6 0": "Весенняя распродажа началась! На нашем сайте действует ограниченное предложение на скидку 20%. Не упустите шанс приобрести The Unheard Edition прямо сейчас!", "Arena/UI/Match_leaving_warning_body 0": "Если вы покинете матч, то вы подставляете своих союзников в невыгодное положение./nВы потеряете награду и рейтинг, а также можете получить временный бан.", "Arena/UI/Match_leaving_warning_header 0": "Внимание! Вы покидаете матч.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "Деловой центр города Тарков. Именно здесь располагалась штаб-квартира TerraGroup. Именно здесь всё и началось.", "65b8d6f5cdde2479cb2a3125 Name": "Эпицентр", "65b8d6f5cdde2479cb2a3125 Description": "Деловой центр города Тарков. Именно здесь располагалась штаб-квартира TerraGroup. Именно здесь всё и началось. Район повышенной опасности.", + "662b728d328cb632bd0c6caf Name": "Вокзал", + "662b728d328cb632bd0c6caf Description": "ЖД вокзал, поезда которого соединяли Тарков с остальными городами Норвинской области. Был открыт после реконструкции накануне конфликта. Сейчас используется в качестве арены для боёв.", + "6690e7e7dc976e4c780336b1 Name": "Форт", + "6690e7e7dc976e4c780336b1 Description": "Морской форт 19 века, волею судьбы ставший сначала тюрьмой, а потом, полвека спустя, ареной для гладиаторских боев", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "Лабиринт", "6733700029c367a3d40b02af Description": "Объект одного из подрядчиков TerraGroup. Согласно публичным источникам, компания Knossos занимается строительством парков развлечений и тематических зон. Но Лабиринт больше похож на бомбоубежище с усиленной защитой, чем на новый аттракцион.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22649,9 +22908,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "О, принес? Давай сюда, посмотрим. Ой, ля, че они такие тяжелые-то?! Ладно, позже разберусь. Держи вот, это за помощь.", "5ae9bb6986f77415a869b40b": "Найти в рейде Бронежилет 6Б13 Штурмовой в 0-50% состоянии", - "5ae9bc6e86f7746e0026222c": "Передать найденный в рейде Бронежилет 6Б13 штурмовой в 0-50% состоянии", + "5ae9bc6e86f7746e0026222c": "Передать Бронежилет 6Б43 штурмовой в 0-75% состоянии", "5ae9be7f86f7746c6337153d": "Найти в рейде Бронежилет 6Б13 Штурмовой в 50-100% состоянии", - "5ae9bea886f77468ab400e64": "Передать найденный в рейде Бронежилет 6Б13 штурмовой в 50-100% состоянии", + "5ae9bea886f77468ab400e64": "Передать Бронежилет 6Б43 штурмовой в 75-100% состоянии", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -22933,7 +23192,7 @@ "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", "5bc4893c86f774626f5ebf3e name": "Тарковский стрелок. Часть 8", - "5bc4893c86f774626f5ebf3e description": "Тебе нравится классическая литература? Как думаешь, почему Достоевский так нравится тем, кто никогда не был России? Меня это долго удивляло, пока не случился этот скандал с TerraGroup. Его руководство, думаю, хорошо было знакомо с творчеством классиков и с тем, что они несут нам. Такую ситуацию можно было провернуть только в обществе, где человек может совмещать в себе ложь, предательство и иррациональное, необъяснимое самопожертвование, а таких в Таркове больше, чем в любом другом месте. Об этом писал Достоевский, такие люди могут жить с высочайшей самоотдачей, и одновременно эти люди лучше всех умеют.. убивать. Иногда про это забывают. Следующий запрос от Снайпера - это твой личный счет, не тот, что в банке, конечно же.", + "5bc4893c86f774626f5ebf3e description": "Тебе нравится классическая литература? Как думаешь, почему Достоевский так нравится тем, кто никогда не был в России? Меня это долго удивляло, пока не случился этот скандал с TerraGroup. Его руководство, думаю, хорошо было знакомо с творчеством классиков и с тем, что они несут нам. Такую ситуацию можно было провернуть только в обществе, где человек может совмещать в себе ложь, предательство и иррациональное, необъяснимое самопожертвование, а таких в Таркове больше, чем в любом другом месте. Об этом писал Достоевский, такие люди могут жить с высочайшей самоотдачей, и одновременно эти люди лучше всех умеют.. убивать. Иногда про это забывают. Следующий запрос от Снайпера - это твой личный счет, не тот, что в банке, конечно же.", "5bc4893c86f774626f5ebf3e failMessageText": "Это задание не из лёгких. Пробуй снова.", "5bc4893c86f774626f5ebf3e successMessageText": "Похоже, иногда, чтобы умно поступать - одного ума мало, нужна еще болтовка. Снайпер пока что молчит, так что повременим пока со следующими испытаниями. Я сообщу тебе, когда придут новые задания.", "5bc48aed86f77452c947ce67": "Убить бойцов ЧВК в голову за одну жизнь, используя болтовые винтовки", @@ -25492,7 +25751,7 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Одним подонком меньше. Праведный поступок, парень.", "64e7ba17220ee966bf425ecb": "Найти и нейтрализовать Кабана", "64e7ba4a6393886f74119f3d": "Убить свиту Кабана на территории автосервиса на локации Улицы Таркова", - "65bb698050fd7c32f5d666d1": "Убить Басчмача", + "65bb698050fd7c32f5d666d1": "Убить Басмача", "65bb6a61a845e4eb51390b4e": "Убить Гуся", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", @@ -26090,7 +26349,7 @@ "66058cc5bb83da7ba474aba9 description": "Ты делаешь успехи! Но останавливаться пока рано. Свети лицом почаще, впечатляй зрителей. Выделяйся. Стань тем, о ком говорят, на кого приходят посмотреть. Тогда и бабки потянутся, а там и прочие ништяки: тачки, девушки... Хотя вот с последними в Таркове туговато.\n\nВ любом случае, Арена сейчас — отличная карьерная возможность, ха!", "66058cc5bb83da7ba474aba9 failMessageText": "", "66058cc5bb83da7ba474aba9 successMessageText": "И ты ещё на шаг ближе к титулу чемпиона! Уважаю, брат.", - "662ba61d3ed61b6b78187b71": "Выиграть матч, заняв не ниже 3 места в режиме TeamFight, BlastGang или Checkpoint на Арене", + "662ba61d3ed61b6b78187b71": "Выиграть матч, заняв не ниже 3 места в режиме TeamFight, BlastGang или CheckPoint на Арене", "66058cc5bb83da7ba474aba9 acceptPlayerMessage": "", "66058cc5bb83da7ba474aba9 declinePlayerMessage": "", "66058cc5bb83da7ba474aba9 completePlayerMessage": "", @@ -26485,6 +26744,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Операция \"Водолей\" - Часть 2", + "664ca9f577af670dad0ad339 description": "И снова рада вас видеть. Мои люди выяснили, кто занимался всеми этими неправомерными операциями с чистой водой. Благодаря вашей информации, конечно же. В общем, это банда Диких, промышляющая на территории таможни. Мне очень не нравятся такого рода просьбы, но на кону жизни людей, а эти негодяи продолжают свое грязное дело. Надо хорошенько их припугнуть - плохим людям надо преподать отчасти жестокий урок. Но делать нечего, пусть умрут в мучениях и заодно поймут, что сделали не так и кто их наказывает. Возьметесь?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Можете гордиться собой – сегодня, если даже вы и отобрали жизни, то далеко не у самых лучших представителей людского племени, и вместо этого подарили шанс многим гражданским.", + "664ca9f577af670dad0ad33d": "Убить Диких на Таможне", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Разборки", "66588c0c98194a5d26010197 description": "Хэллоу, наемник. Слышал, что случилось на Маяке? Мои источники сообщают, что местные криминал боссы поссорились с Отступниками и ищут их по всему городу и окрестностям. Задача следующая - помоги этим Отступникам. Потому что нарушать мир и порядок в мою смену - запрещено. Андестенд?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26520,6 +26822,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Просто фарм", + "6659a9716b1be75165030e4e description": "И снова рада вас видеть. Мои люди выяснили, кто занимался всеми этими неправомерными операциями с чистой водой. Благодаря вашей информации, конечно же. В общем, это банда Диких, промышляющая на территории таможни. Мне очень не нравятся такого рода просьбы, но на кону жизни людей, а эти негодяи продолжают свое грязное дело. Надо хорошенько их припугнуть - плохим людям надо преподать отчасти жестокий урок. Но делать нечего, пусть умрут в мучениях и заодно поймут, что сделали не так и кто их наказывает. Возьметесь?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Можете гордиться собой – сегодня, если даже вы и отобрали жизни, то далеко не у самых лучших представителей людского племени, и вместо этого подарили шанс многим гражданским.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Водохлёб. Ищейки", "665eeacf5d86b6c8aa03c79b description": "Проходи, садись. Разговор есть. Повадились шестёрки Санитара на побережье по ночам шастать. Явно что-то выискивают. Негоже это оставлять без внимания. Пошугай их там, а я пока попробую разузнать, что они там забыли.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27731,6 +28040,20 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Праздник к нам приходит. Часть 1", + "674447ae2f29dd504b08ba48 description": "Новый год на носу, так что надо создавать атмосферу. Я своим сказал украсить некоторые арены. Это должно понравиться зрителям. Сгоняй посмотри сам.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Глянул? Понравилось? Иначе и быть не могло!", + "6744486948b346cd86161c99": "Сыграть матч в любом режиме на локации Порт 5", + "674448fb666c98291b23f600": "Сыграть 1 матч в любом режиме на карте Разборка", + "67444922388ea9f4b53dba83": "Сыграть 1 матч в любом режиме на карте Форт", + "674861b50a1aac78b9b51b22": "Сыграть 1 раз на локации Форт в любом режиме", + "674d88f049fc3122ec66b214": "Сыграть матч в любом режиме на локации Форт\n", + "674d89c50978c569977de137": "Сыграть матч в любом режиме на локации Район", + "67674c856a639c8ce4aeed8a": "Сыграть матч в любом режиме на локации Разборка", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Спросить дорогу", "674492b6909d2013670a347a description": "Говоришь, Барахольщик дороги новые ищет? Я сейчас и сам об этом думаю, Лыжник явно меня так просто отпускать не захочет. Но кстати, есть один вариант, который Барахольщику подойдёт. Я там не проеду, но когда ещё сам пешеходом был, часто там ныкался.\n\nДеревню же знаешь у скал, где коттеджи стоят? Вот там с заднего двора можно подняться повыше, а дальше уже по расщелине идёшь. Выйдешь к этим домам богатым, там снова на шухере надо быть.\n\nСовсем безопасных дорог не осталось, так что и эта уже лучше, чем ничего. Ты только ко мне вернись, как отметишь, чтобы точно не перепутать.", "674492b6909d2013670a347a failMessageText": "", @@ -27931,6 +28254,68 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Праздник к нам приходит. Часть 2", + "674ee1bf60367910080aaebd description": "Люди всегда ждут перед Новым годом чуда или хотя бы чего-то новенького. Я это и устроил! Зрителей привлёк новый тип боёв. Видел бы ты, как быстро все билеты улетели!\n\nТебе тоже пора размяться. Раскидай всех в новых боях, а я тебе за это подгон сделаю, новогодний! Шапки, маски... Всё, как ты любишь.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Отлично, хорошо себя показал. В рядах твоих фанатов наверняка пополнение.", + "674ee1bf60367910080aaebe": "Сыграть 1 матч в любом режиме на локации Порт 5", + "674ee1bf60367910080aaec0": "Сыграть 1 матч в любом режиме на локации Форт\n", + "674ee1bf60367910080aaec2": "Сыграть 1 матч в любом режиме на локации Дворы", + "674ee21ed41f6549146625f3": "Победить в режиме CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Праздник к нам приходит. Часть 3", + "674f1e43f5a9e4aac60a8ba9 description": "Я тут ещё кое-что придумал. Всем должно зайти! В общем, слушай.\n\nБерёшь шапку Деда Мороза, накладную белую бороду и идёшь стреляться на Арену. Шапку я дам. Бороду — не дам. Сам купишь, она копейки сейчас стоит в Арсенале.\nДавай, пора по-новогоднему развлекать толпу!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "Ну и отличная штука получилась! Зрители визжали от восторга.", + "674f220c7fecee47b2501f9d": "Убить противников, надев Шапку Деда Мороза и Накладную бороду в режиме TeamFight или BlastGang\n", + "674f22bf3dad64df4183fe2d": "Убить противников, надев Шапку Деда Мороза и Накладную бороду в режиме LastHero или CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Праздник к нам приходит. Часть 4", + "674f241c3f14221a8d037687 description": "Ну, сейчас задача совсем простая. С этим ты справишься. Надо всего-то победить несколько раз.\n\nДавай-давай, тебя уже ждут на Арене.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Отлично. Разогреваем толпу с тобой.", + "674f241c3f14221a8d03768a": "Устранить 15 игроков экипировав Шапку Деда Мороза и Накладную бороду в режиме TeamFight или BlastGang\n", + "674f241c3f14221a8d03768c": "Устранить 25 игроков экипировав Шапку Деда Мороза и Накладную бороду в режиме LastHero или CheckPoint", + "674f27bea3e4161c0f0d9278": "Победить в режиме TeamFight или BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Праздник к нам приходит. Часть 5", + "674f2cb7e19a49fa2f0df7f9 description": "Надо продолжать прогрев толпы. Поэтому повышаем ставки и добавляем зрелищности.\n\nПлан такой: снова переодеваешься в Деда Мороза и идёшь мочить противников со всего, что есть. Хотя нет, слишком жирно будет. Нужно убрать ножи, пулемёты и гранаты. Оставим на когда-нибудь потом.\n\nЗадачу понял? Тогда иди выполняй.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Я тоже наблюдал за тобой. Хорошо справился, уважаю.", + "674f2cb7e19a49fa2f0df7fc": "Победить в режиме TeamFight или BlastGang 3 раза", + "674f2d04715561a8e5f66daa": "Убить противника из штурмовой винтовки, надев Шапку Деда Мороза и Накладную бороду", + "674f30889dc534ec985fcbc1": "Убить противника из марксманской винтовки, надев Шапку Деда Мороза и Накладную бороду", + "674f317aec455ac4ada680be": "Убить противника из штурмового карабина, надев Шапку Деда Мороза и Накладную бороду", + "674f32272981d633aeb6f909": "Убить противника из болтовой винтовки, надев Шапку Деда Мороза и Накладную бороду", + "674f34074b0e210e93a15d7c": "Убить противника из пистолета-пулемета, надев Шапку Деда Мороза и Накладную бороду", + "674f349f542fafbc90af9165": "Убить противника из дробовика, надев Шапку Деда Мороза и Накладную бороду", + "674f35aecae1d426da8ea811": "Убить противника из пистолета, надев Шапку Деда Мороза и Накладную бороду", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Праздник к нам приходит. Часть 6", + "674f422de19a49fa2f0e3ea2 description": "Осталось немного совсем. Надо дожать толпу. А потом получишь от меня награду новогоднюю, за помощь.\nНадо тебе покрасоваться. Стань лучшим, а где именно — не так важно.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "Вообще всё по красоте сделал.", + "674f422de19a49fa2f0e3ea5": "Выиграть раунд в режиме BlastGang, обезвредив устройство 2 раза", + "674f422de19a49fa2f0e3ea7": "Стать MVP матча в любом режиме", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Праздник к нам приходит. Финал", + "674f4321e19a49fa2f0e3eac description": "Толпа ликует! Надо дорабатывать их. Последнее испытание, и получишь свою награду. Штучный экземпляр! Тебе точно понравится. \n\nА теперь к делу. Надо устранить четырёх противников, а потом выиграть раунд. Всё просто. Давай, зимняя шуба ждёт тебя.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Победить в раунде, убив 4 противников в режиме TeamFight или BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "Честно, я думал, что ты загнёшься. Но ты справился. А я слово держу.", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Новогодний стол", "675031be899713ccad00060c description": "Здорово, боец! Как сам, не мёрзнешь? Тут такое дело... Мы на базе собираемся с боевыми товарищами застолье организовать, Новый год всё-таки!\n\nНо сам знаешь, как оно на складах с учётом бывает. По записям всё есть, а по факту только тушёнка, да картошки до жопы. Мы оливье хотели бахнуть, пару тазиков. Ну и выпивки тоже надо бы. \n\nСможешь достать? Только картошку не тащи, за так сгниёт.", "675031be899713ccad00060c failMessageText": "", @@ -28418,6 +28803,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "Не думал, что стану частью какого-то ритуала... Ладно, разберёмся на месте.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "Готово. Твоим друзьям должно понравиться.", + "67af4c1405c58dc6f7056667 name": "Выгодное предприятие", + "67af4c1405c58dc6f7056667 description": "Ну здарова, как сам? Помнишь, как ты ко мне в первый раз припёрся, работу искал? Заматерел ты с тех пор, и мне не раз помогал. Сейчас у меня есть одна тема, потенциально очень выгодная. Но мне нужен надёжный партнёр, и ты можешь им стать.\n\nСо мной забазарился один командир, у него отряд свой есть, ветераны ваще. Но пацаны оказались за кордоном, когда вся херня началась. А работать хотят, говорят, что есть наводка на заброшенную базу юсеков в области. Проблема в том, что её уже заняли какие-то чмошники.\n\nЕсли всё чётко сделаем, то Лука с пацанами нам сможет регулярно подгонять снаряжение и прочие товары, которые здесь в дефиците. Такого отряда ни у кого в Таркове нет! Хотят ночью на разведку сходить, чтобы шухер не поднимать. Сам понимаешь, там мирные места и палева много. \n\nНо у пацанов нет теплаков, попросили отсюда достать. Если хочешь войти в бизнес, сейчас самое время!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Да ты зверь вообще! Недешёвая инвестиция, но моя чуйка на выгоду никогда не подводит. Когда разогреем отряд Луки, бабки попрут так, что ни в чём нуждаться не будешь!\n\nА трансфером теплаков за кордон я сам займусь, не твоя забота.\n\nПацаны дали контакт одного местного инструктора спецназа. Мужик на пенсии, но знает такие вещи, которых в вашей учебке не рассказывали! Он из тебя настоящего терминатора сделает. Считай это бонусом от нашего партнёрства.", + "67af6dd0f5685508d9050158": "Передать предмет: Тепловизионный прицел Trijicon \"REAP-IR\"", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Гарантия безопасности", + "67af4c169d95ad16e004fd86 description": "Дарова. От Луки новости пришли. Наводка была верная, юсеки когда с этой базы валили, оставили там до жопы разной снаряги. Но и отморозки, которые точку первыми нашли, засели там крепко. Чтобы базу отжать, нашим пацанам нужна нормальная защита, иначе рисковать не будут.\n\nНужно им помочь со снарягой, а то на большой земле такие покупки привлекут слишком много внимания. Ты вроде и сам заинтересован в развитии нашего предприятия, так что точно сможешь раздобыть всё нужное. Броники Жук, шлемы Вулкан, вроде несложно. \n\nПравда, Лука ещё кое о чём попросил... Говорит, шлем нужен, как у Киллы нашего. Чтобы не спалиться перед военными, надо базу по-быстрому захватить. Дополнительное устрашение врага лишним не будет, в преступном мире о Килле уже давно по всей области знают. Если убедить их, что Килла со своими парнями теперь в области промышляет, сразу дёру дадут.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Красавчик. Такую посылку за кордон вывезти уже не так просто, но я что-нибудь придумаю. Всё равно нам понадобится нормальный канал связи, когда с той стороны дивиденды пойдут... А ты пока иди к своему инструктору.\n\nВроде ты и раньше машиной был, а теперь так вообще Брюс Ли! Откуда знаю? Слухи быстро расходятся, а инструктор походу реально прошаренный нам попался.", + "67af6e1ee67a772b14e08061": "Передать предмет: Бронежилет БНТИ \"Жук\" (Флора Цифра)", + "67af6f1d268fd33c21524a02": "Передать предмет: Бронешлем ЛШЗ-5 \"Вулкан-5\"", + "67af6f7961ee5d07d0c210c9": "Передать предмет: Бронезабрало для шлема \"Маска-1Щ\" (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Учиться никогда не поздно", + "67af4c17f4f1fb58a907f8f6 description": "Ну чё, как твоя учёба идёт? Не думал, что тебе ещё есть, чему учиться в военном деле. Не пиздит та поговорка, да? \n\nЛуке с его отрядом не помешали бы уроки этого мужика. Говорят, спалили их на дальних подступах, пришлось отступить. Теперь бугры на базе в курсе, что у них есть конкуренты, и оборону уже укрепили. С наскока базу не взять. \n\nПоэтому Лука попросил закинуть им нормального вооружения, чтобы точно завалить козлов. Вот тут в списке всё, что нужно. Видать внатуре там схрон мощный, раз пацанчики военных не испугались. Может, и крыша у них есть на большой земле. \n\nНо до нас эта крыша никак не дотянется. С нашей стороны главное - отряд Луки снарядить и канал поставок от них в Тарков настроить. А с последствиями Лука пусть сам разбирается, не маленький.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Всё собрал, даже холодняк? Чётко. Я уже нашёл надёжного кента на кордоне, который займётся нашим делом. \n\nПока ничего не просит, но потом выставит от себя ценник. Сам понимаешь, такие поставки без палева на большую землю проводить, это тебе не хер собачий.", + "67af7037f7937389517f0569": "Передать предмет: Штурмовая винтовка HK 416A5 5.56x45", + "67af7055a7ffd02753b8c5bd": "Передать предмет: 5.56x45мм MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Передать предмет: Мачете УВСР Тайга-1", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Закрепиться на позиции", + "67af4c1991ee75c6d7060a16 description": "Как сам? По нашей теме есть заебатые новости. Лука говорит, что они взяли базу и даже допросили одного из этих козлов. Атаковали во время миномётного обстрела в Таркове, всё быстро прошло. Перед вояками вроде не спалились. \n\nНаши пацаны выяснили, что эта группа принадлежит какому-то молодому вору в законе, и, судя по всему, он попробует отбить базу обратно. Походу этот чёрт вообще военных не боится, точно со связями. Если не хотим наших пацанов потерять, надо им стимуляторов закинуть. \n\nЛука ничего конкретно не просил, но в наших же интересах качественно их затарить. Поэтому неси всё, что есть. После штурма у них были раненые, а инспекцию захваченной базы они сейчас провести не могут.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "Не знаю, видел ли я когда-то такую кучу армейского ширева... Этого нашим пацанам точно хватит. А чтобы ты поменьше зависел от этой херни, я намутил тебе кой-чё. \n\nНедавно мои люди чистили одну точку и нашли там схрон, санитаровский походу. И там куча книжек медицинских и пособий, только везде заметки и рисунки какие-то. Мои врачи глянули, сказали, что автор этих почеркушек реально профи. \n\nНа, изучай, пока ждём следующего сеанса связи с Лукой.", + "67af70d60ef31f2d26f1a4d5": "Передать предмет: Боевой стимулятор SJ6 TGLabs", + "67af70e894e1096f325b8050": "Передать предмет: Коктейль \"Обдолбос 2\"", + "67af70f3cfdf90b749b5eb36": "Передать предмет: Регенеративный препарат Пропитал", + "67af70fe8c503a010078afd0": "Передать предмет: Стимулятор M.U.L.E.", + "67af710c5662b533d9f5b9ca": "Передать предмет: Регенеративный стимулятор eTG-change", + "67af7117f8c948d02b632085": "Передать предмет: Боевой стимулятор SJ9 TGLabs", + "67af7121aeed86a73d8653be": "Передать предмет: Боевой стимулятор SJ12 TGLabs", + "67af712cf5f86ab56db8f198": "Передать предмет: Препарат Мельдонин", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Фиксация прибыли", + "67af4c1a6c3ebfd8e6034916 description": "Чё, уже заделался полевым хирургом, да? Ну красава, я книжки никогда не любил, а тем более чужие каракули читать, это ж хер разберёшь.\n\nА по нашему делу пора принимать дивиденды! Лука с парнями этих бандосов отбросил, говорит, заруба была жёсткая. И ты прикинь, военных всё ещё не видно, у бандосов точно там подвязки были. Видать, и за кордоном можно найти кого-то вроде нашего Прапора, да?\n\nПроблемы остались только приятные. С той стороны готовы отправить поставку, да только она ни под одну из старых схем не подходит. Там вагонами снарягу грузить можно! \n\nЧтобы это всё вывезти, мой кореш требует особую плату, всё авансом. Риски, бля, слишком высокие, поэтому нам придётся платить. Этот чел на кордоне походу ферму свою с битками задумал построить. ", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "Собрал? Ну всё, готовь свой схрон. А лучше бы тебе ещё одно бомбоубежище под себя оборудовать, под такой-то объём! Теперь у нас всё по красоте будет. \n\nЕсли ты сомневался, больше не сомневайся, хули! Барыш наш, считай, уже в пути. И когда ты его получишь, сам на другой уровень выйдешь.", + "67af7168fab0681948d9ed8b": "Передать предмет: Видеокарта", + "67af7178ea4fed9c667abb17": "Передать предмет: Монета Биткоина", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "Жизненный урок", + "67af4c1cc0e59d55e2010b97 description": "Чё... А, это ты... Ну ты заходи, чё стоять-то? В ногах этой, как её... нет её, короче. И дивидендов у нас с тобой тоже нету нихера... И не будет походу. Лука на связь не выходит, морозит меня... Гнида! Мы ж даже проверить ничё не можем, за кордоном у меня... ох, бля... глаз у меня там нет.\n\nМожет и базы этой юсековской не было? А может и отряда у Луки никакого нет? А мы тоже молодцы, нихера не заподозрили... И ты, орлиный глаз...ёптыть...\n\nКороче... Гандонов этих мы отсюда никак, бля, не достанем. Пока я не нажрусь в хлам и не протрезвею обратно, на новый план не... не рассчитывай. Чё, помочь хочешь? Алкашки тогда ещё при...притарань.", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "Сюда... Сюда тащи, говорю! Если тоже после всего бахнуть хочешь, то это...сюда падай. Расскажу тебе, какая у меня херня в жизни была... Может, хоть ты в говно пореже наступать будешь.", + "67af71c90036a462a17a72d3": "Передать предмет: Бутылка водки \"Тарковская\"", + "67af71d6a6e77337205f5bfe": "Передать предмет: Бутылка виски Dan Jackiel", + "67af71f19ce81d8ebb21530f": "Передать предмет: Бутылка самогона \"Лютый Топорист\"", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Утешительный приз", + "67af4c1d8c9482eca103e477 description": "О, здарова. Я все варианты пробил, козлов этих реально не достать. Но на всю эту тему мы оба нехерово потратились. Надо бы спасать наше положение, в этот раз без всяких мудозвонов. Только мы с тобой.\n\nЕсть наводка на лабу. Да ты послушай сначала! Мои пацаны рейдеров спалили во время переброски всякого барахла. Походу, один из своих схронов эвакуировали, и на лабе где-то запрятали, пока места получше не найдут. В одного ты точно тайничок не вычислишь, но у меня есть спецы по этому профилю. Главное, безопасность им обеспечить.\n\nЛабу надо зачистить, да так, чтоб с гарантией. Моим пацанам не один день понадобится, чтобы всё там обшарить и заначку найти. Для тебя там вряд ли чё полезное будет, но я подумаю, чем тебя в обратку подогреть.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "Готово? Заебца. Пока ты на лабу бегал, я тебе награду сообразил. Тебе ж зашла вся эта тема с...кхм... дополнительным образованием?\n\nУ меня есть один кент, он раньше на Рефа работал, оружейником там был или чё-то такое. Вот его контакт, скажи, что от меня. Побазарите, он тебе советов полезных даст по теме пушек. \n\nТакое не вернёт тебе потерянные бабки, но может ведь и жизнь спасти. А это подороже шмота и денег.", + "67af727750e1b6f21d9f5511": "Выжить и выйти с локации Лаборатория", + "67af730c69887224a61084ac": "Убить Рейдеров на локации Лаборатория", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "Искусство взрывотехники", + "67b45467814ab0ffa000c7e7 description": "Здарова, боец! Вижу, что с гранатами у тебя дело хорошо пошло. Недавно я смог договориться о поставках оружия такого же профиля, только куда опаснее. Кому попало такое отдавать нельзя, тут контроль нужен и самообладание. Да и товар-то штучный.\n\nТак что если хочешь покупать у меня настолько серьёзное вооружение, докажи мне, что в твоих руках взрывчатка бьёт точно в цель. По-другому никак. А то ещё сам с этой махиной подорвёшься или кого из своих задвухсотишь.\n\nМожешь использовать всё, что взрывает и взрывается: хоть подстволы, хоть самопальные гранаты. Дело твоё, результат главное выдай нужный.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Да, слышал я уже про твои боевые подвиги. В таких руках от РШГ только польза будет, без всякой херни. Я уже говорил, что товар уникальный, но для тебя смогу откладывать по штуке с завоза. \n\nКогда будешь работать, следи, чтоб места было побольше и сзади никто не стоял. Ну и инструкцию на стволе глянь, не будь оленем.", + "67b45467814ab0ffa000c7ea": "Убить любую цель, используя гранаты или гранатомёты", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Непуганый зверь", + "67b5be6c080431c729082b97 description": "Ну, заходи. Гнили в Таркове меньше не становится, несмотря на наши старания. Думаю, всё дело в общей усталости от всего, что творится вокруг. Обычным жителям приходится тяжко, а у бандитов и питание, и защита... Вот и переходят они на ту сторону, от безысходности.\n\nОбеспечить всех едой и медикаментами едва ли возможно, но есть другой путь. Надо показать им, куда приводит мародёрство и отказ от морали. Надежду они уже потеряли, но страх ещё точно остался.\n\nПартизан у меня на днях чай пил, занёс парочку экспериментальных гранат. Он убрал из них замедлитель, говорит, в Афгане только такие использовали. Задержки считай что нет. А если с такой сделать растяжку...\n\nВозьми их и продемонстрируй, что ждёт жителей, которые откажутся от человеческой морали. Мы можем спасти тех, кто ещё не переметнулся к бандитам.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "Ну что, как тебе эти гранаты? Я не рисковал, слишком уж задержка короткая. Так и руку потерять можно. В городе уже говорят о том, что ты сделал, значит, послание наше было услышано.\n\nНадеюсь, это охладит горячие головы и поможет одуматься тем, кто засомневался в человеческих ценностях. Они не скажут нам спасибо, зато смогут дожить до мирных времён.", + "67b5be6c080431c729082b9a": "Убить любую цель, используя Гранаты Ф-1 с сокращенным замедлителем", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Освободить помещение", "67d03be712fb5f8fd2096332 description": "Ну привет тебе, брат! Быстро вся эта карусель вокруг санатория завертелась, а? У меня ведь там бизнес с Рефом был, в этих подвалах. Раньше я думал, что Реф всё оборудование оттуда вывез, а сейчас оказалось, что там ещё много техники осталось. Я и подумал, не пропадать же добру?\n\nНе, тебе эти телевизоры с камерами таскать не придётся. Там каждый предмет осматривать нужно, и упаковать хорошо. Для этого у меня есть свои люди. Но отпускать их туда сейчас я никак не могу! По технике они спецы, а с оружием дела похуже. Вот если бы настоящий профессионал по периметру всё обошёл и лишних людей оттуда погонял, тогда бы дело пошло.\n\nЯ как об этом подумал, так про тебя и вспомнил, брат! Готов помочь в хорошем деле? Конечно, если работу сделаешь, с пустыми руками от меня не уйдёшь!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28426,6 +28898,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Вдохновение творца. Часть 1", + "67dd4a2293c5a2d9cf0576b8 description": "А вот и наш чемпион! Есть работа, которая тебе понравится. Слышал, что сейчас творится в городе? Один мой, кхм, партнёр, устраивает там настоящую резню! Я тебе так скажу: без стимуляторов точно не обошлось.\n\nЯ как раз думал, как бы взбодрить Арену. Иногда даже в боях ветеранов не хватает чего-то, будто ссутся они на полную выкладываться. Так что я тебе предлагаю простую сделку: мочи всех, кого видишь, но сперва используй стимуляторы. А там посмотрим, что из этого выйдет. \n\nНадо показать такое шоу, чтобы бойня Минотавра показалась зрителям скукотищей. Но я знаю, ты меня не разочаруешь. Вперёд!", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "Вот что значит настоящая ярость! Ты показал пример многим бойцам, и вернул интерес зрителей к Арене. Вижу, стимуляторы хорошо пошли!", + "67dd4a2293c5a2d9cf0576c1": "Устранить противников, находясь под действием стимулятора Адреналин", + "67dd4c3c6215612fe197e796": "Убить противников, находясь под действием стимулятора Тримадол", + "67dd4c9746f2ec1225e13e9f": "Устранить противников, находясь под действием стимулятора AHF1-M", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Вдохновение творца. Часть 1", + "67dd4dcb93c5a2d9cf0576cc description": "Приветствую, боец. Собрался подняться на самый верх? У меня есть работа, в которой ты сможешь себя проявить, если чего-то стоишь. Один мой знакомый поднял шума в Таркове, устроил настоящую бойню под санаторием! Наверняка опять стимуляторов себе каких-то нарыл... Может, ты ещё к такому не привык, но я тебе скажу так: без них ты не раскроешь весь свой потенциал. \n\nПоэтому, если хочешь показать себя, вот тебе задача. Используй стимуляторы и уничтожай всё, что видишь. Мне насрать, какие именно, главное — показать этому городу, что самые безумные схватки проходят на Арене. Усёк?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Теперь ты понял, о чём я говорил? Познал настоящую ярость? Так-то! Зрители уже заговорили о берсерке, который не знает страха... Так что свою награду ты отработал.", + "67dd4dcb93c5a2d9cf0576cf": "Убить противников, находясь под действием стимулятора Адреналин", + "67dd4dcb93c5a2d9cf0576d1": "Убить противников, находясь под действием стимулятора Тримадол", + "67dd4dcb93c5a2d9cf0576d3": "Убить противников, находясь под действием стимулятора AHF1-M", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Вдохновение творца. Часть 2", + "67dd51f7ea43a622d0016479 description": "Ты не перестаёшь меня удивлять... Готов к новым испытаниям? Тогда слушай сюда. Парочку твоих побед удалось заснять на видео, и я показал ролик своему знакомому из Таркова. Твоя ярость его зацепила, а это не хер собачий! Так что он закинул мне кое-что, что поможет попасть в мир безумия под санаторием. Считай это приглашением.\n\nНо ты же и сам понимаешь, что просто так я посылку тебе не отдам? Сделай так, чтобы Арена встретила тебя овациями — и ключ-карта твоя!", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "А ты умеешь поднять шума! Вот тебе передачка от Минотавра, смотри не потеряйся в его лабиринте! Возвращайся обратно, зрители Арены ценят тебя куда больше, чем бомжи в руинах Таркова.\nИ еще кое что, для тебя я открыл один из тайников с ключ-картами. Но ты должен понимать, что это уникальный товар, выполняй сложные оперативные задачи и он станет твоим. Только сначала обнови список задач.", + "67dd52ac33ed06e73e533fcb": "Победить в матче в режиме TeamFight", + "67dd54b877dbb3b57e197fe3": "Победить в раунде за команду атаки после установки устройства в режиме BlastGang", + "67dd57b3f772c6c20c0151fa": "Убить противника в режиме BlastGang", + "67dd57fa41e41a9afe2ce5bb": "Заработать 3000 очков в режиме CheckPoint", + "67ea940ff40b5ffa60ed01d4": "Устранить противников в режиме BlastGang", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Вдохновение творца. Часть 2", + "67dd5d2231fb19ec9408894a description": "Восстановился после стимуляторов? Тогда готовься к новой работе. Пару раз тебе удалось превзойти себя. Я поделился записью со своим знакомым из Таркова, который и поднял шумиху в районе санатория. Он оценил твой потенциал и хочет передать кое-что в качестве... приглашения.\n\nНо ты должен понимать, что на Арене, как и в Таркове, ничто не даётся даром! Я хочу, чтобы ты доказал, что готов встретиться с Минотавром. Покажи свою ярость на полях Арены, и тогда ключ-карта твоя. Не разочаровывай меня!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "А в тебе и правда что-то есть... Если переживёшь встречу с моим знакомым, возвращайся на Арену. В Таркове ты никогда не получишь и малой доли того, что есть здесь. До встречи, гладиатор.", + "67dd5d2231fb19ec9408894d": "Захватить точку в режиме TeamFight", + "67dd5d2231fb19ec9408894f": "Установить устройство и победить в раунде за команду атаки в режиме BlastGang", + "67dd5d2231fb19ec94088951": "Убить игрока с устройством в режиме BlastGang", + "67dd5d2231fb19ec94088953": "Заработать 5000 очков захвата в режиме CheckPoint", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Неожиданный подарок", "67e993b1ac26bf29380a320b description": "Я слышал, ты ввязался в эту историю со Скупщиком и Рефом. И конечно же ты решил прийти ко мне. Хочешь заложить Рефа? Хм, мне это только на руку. Приноси мне компромат на него, я найду как его использовать. ", "67e993b1ac26bf29380a320b failMessageText": "И зачем ты отрывал меня от дел, раз решил отдать компромат кому-то из этой парочки? ", @@ -28446,6 +28961,65 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Дать отпор", + "67f3ea581cd4c15d3d040305 description": "Проходи. Ты и сам мог заметить, что бандитов в городе меньше не становится. Причём навыков выживания у них как не было, так и нет. Только зря на рожон лезут.\n\nОдного не пойму, как главарям ещё удаётся нанимать новых бойцов? Видимо, местным совсем тяжело стало жить, а идти больше некуда. Но эта дорога никого до добра не доведёт.\n\nНашу задачу такой расклад никак не меняет. Гниль надо вычищать, и мы будем это делать. Я слышал, что больше всего шума Дикие подняли на берегу, в районе таможни и в лесу. Отправляйся туда и отбрось бандитов обратно. Мы не можем допустить расширения их зоны влияния.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Ну что, показал им, куда приводит путь мародёра? Я и сам без дела не сидел, патронов еле хватило.\n\nМне вся эта активность не нравится. Сдаётся мне, что это только начало какой-то крупной операции или разборок между главарями. Будь рядом.", + "67f3fa9690fd1d33eadcbaee": "Убить Диких на локации Берег", + "67f3fadcf58627867b3de35f": "Убить Диких на локации Таможня", + "67f3fb467def2176367b6a3d": "Убить Диких на локации Лес", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Неизвестный благотворитель", + "67f3ea78c54fde6cc2004855 description": "Здравствуйте. Вы знаете, пациенты во время восстановления часто делятся новостями и слухами о том, что происходит в Таркове. Чаще всего это бытовые разговоры, но сейчас я обнаружила тенденцию, которая сильно меня беспокоит.\n\nЛюди говорят о том, что в городе появился человек или группа людей, которые готовы обеспечить граждан пропитанием и защитой. В другое время я бы сама постаралась выйти на связь и скооперироваться ради благого дела. Но мы с вами понимаем, что в Таркове открытых и честных людей осталось совсем немного.\n\nОбычные жители и без того находятся на грани выживания. Боюсь, что слишком многие могут довериться громким заявлениям даже без каких-либо гарантий. Мы должны выяснить, кто и с какой целью зазывает людей с помощью щедрого предложения. Если вы готовы помочь мне, поищите информацию на стоянках и форпостах Диких.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Да, если всем этой программой руководит Лыжник, жителям это может только навредить. Вечно ему на месте не сидится... \n\nЭти записи нужно изучить подробнее, но ваша помощь обязательно понадобится позже. Мы должны помешать планам Лыжника, какими бы они ни были.", + "67f45f2598742add16d22abf": "Найти документы вербовщиков с данными о благотворительной кампании", + "67f45f31e2662881c816ffaf": "Передать найденную информацию", + "67ff74183ce253402679842a": "Посетить стоянки Диких на локации Таможня, Берег или Лес", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "Альтернатива", + "67f3ea873daf3aaf3e0e7ff5 description": "Я изучила записи, которые вы предоставили. Лыжник собирается запустить полноценную кампанию по набору «добровольцев», и готов вложить в это немалые ресурсы. Он хочет обманом заманить сомневающихся жителей в ряды своих бандитов, а потом использовать их в своих операциях. И уж точно не будет беречь необученных и истощённых новобранцев.\n\nУже сейчас люди Лыжника заняты подготовкой пунктов сбора, в которых якобы будут выдавать продукты и одежду. Но ничто не мешает прямо оттуда грузить местных в автомобили и силой увозить на свою территорию. Мы должны спасти жителей от такой участи.\n\nУ меня есть запасы одежды и даже свободные помещения, где я смогу временно разместить прибывших. Но дефицит провизии остаётся серьёзной проблемой, и здесь мне нужна ваша помощь. Лучше всего подойдут сухпайки и чистая вода. \n\nДа, мы не можем предложить местным комфортные условия. Но гораздо лучше будет, если потенциальные «добровольцы» окажутся под моей крышей вместо казарм этого мошенника.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "Вы сделали большое дело. Сейчас Лыжник нас опережает, но когда мы оборудуем свои точки выдачи питания, мы сможем перетянуть к себе хотя бы часть потенциальных наёмников. Я постараюсь предложить им альтернативную занятость, которая пойдёт на пользу моим кли... моей клинике.", + "67f45fe79fba85108c424981": "Передать найденные в рейде предметы из подтипа \"Сухпайки\"", + "67f4600c5ba71d753b968d38": "Передать найденные в рейде предметы из подтипа \"Вода\"", + "68022bbf8396a75701b8616e": "Передать найденные в рейде предметы из подтипа \"Сухпайки\"", + "68022c20049c6309cfc34586": "Передать найденные в рейде предметы из подтипа \"Вода\"", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Удар на опережение", + "67f3eaa3a7799274d50a8b66 description": "Я уже знаю, что происходит, можешь не рассказывать. Эльвира опять надеется на лучшее, а может и сама задумала чего... Но те, кто размышляет о работе у Лыжника, уже показали свою слабость. В таких ситуациях страх работает гораздо лучше, чем подачки.\n\nЯ отправил Партизана посмотреть на эти пункты. Есть четыре точки: лагерь МЧС в заповеднике, затопленная деревня рядом с очистными у маяка, база контрабандистов у санатория, и какая-то стройка в районе таможни, туда мой товарищ добраться не смог.\n\nТуда собираются подвозить припасы, и туда же вербовщики будут сгонять народ. Сами вербовщики уже на месте, ничем от обычного сброда Лыжника не отличаются.\n\nУ Партизана сейчас есть другие дела, не менее важные. Поэтому нужна твоя помощь: убери вербовщиков на пунктах сбора. Тогда жители трижды подумают перед тем, как приходить туда за помощью.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "По всем пунктам прошёлся? Добро. Посмотрим, как это повлияет на общий расклад. Пока что я жду вестей от Партизана, он продолжает разведку.\n\nЗаходи попозже, сейчас лучше не делать лишних движений.", + "67f460cfc206895e959e1d69": "Убить 3 любые цели с особых гранат", + "67f7127d515e3a3c4a894aee": "Убить Диких на пунктах сбора Лыжника", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Дефицит кадров", + "67f3eab9a33cd296b20ee695 description": "Ну здарова! Слышал про мою глобальную схему? Рожу только не криви, я ж не даром людей нанимаю. А если кому условия не понравятся, пусть жалобу на меня подают, ёпта. Не в Москве живём, пора уже всем на землю спуститься и реальность принять.\n\nЧё я тебя позвал-то. Лесник этот вонючий проснулся, мешает сильно. Маршруты заброски припасов Партизан расхерачил, а ещё на моих вербовщиков охоту открыли, ЧВК пацанов отсреливают.\n\nТак что твоё участие лишним не будет. Прикрой моих ребят на пунктах, и гниду эту партизанскую в лесу где-нибудь закопай. На бабки я тебя не кину, сам знаешь. Эти пополнения мне позарез нужны, людей в Таркове больше не становится!", + "67f3eab9a33cd296b20ee695 failMessageText": "Стопэ, это ты, что ли, с Егерем закорешился? Чё, и с Партизаном на троих чаи гоняете? Так и идите лесом тогда все вместе, нехер тут заявляться! И поперёк моих дел больше не лезь — пожалеешь, понял?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Ну красава, затащил прям! Чё, и Партизана уложил? Эта скотина всех в городе бесила. Теперь дела получше, хотя бы будет куда добровольцев звать. Лавеху свою ты отработал на сто процентов.\n\nА я уже намутил кой-чё, теперь они мои пункты хер найдут.", + "67f519c5ecdcf329ac2d5ef9": "Убить Партизана", + "67f51f3416da2f5a9251bc98": "Убить 10 операторов ЧВК", + "67f71386222d15f53e5be7ee": "Найти и нейтрализовать Партизана", + "67f7142fa9a0ae3401ddb94c": "Убить бойцов ЧВК", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Непуганый зверь", + "67f3eacef649e7bceb0bb455 description": "Гнили в Таркове меньше не становится, несмотря на наши старания. Лыжник изменил тактику, теперь пункты мобильные, и за всеми мы не успеем. Да и местные начали собираться рядом. Мы не можем подвергать опасности невиновных жителей.\n\nНо остаётся полно Диких, вина которых не требует доказательств. Надо показать людям, куда приводит мародёрство и бандитизм. Надежду они уже потеряли, но страх ещё точно остался.\n\nПартизан только что заходил, занёс парочку экспериментальных гранат. Он убрал из них замедлитель, говорит, в Афгане только такие использовали. Задержки считай что нет. А если сделать растяжку... На такое никто не успеет среагировать.\n\nВозьми их и продемонстрируй, что ждёт тех, кто откажется от человеческой морали. Надо сделать так, чтобы никто и не думал о работе с Лыжником. А ещё лучше, чтобы даже ЧВК увидели риски и снизили свою активность.", + "67f3eacef649e7bceb0bb455 failMessageText": "А ты чего тут? Партизана не видел? Он должен был появиться уже полчаса назад... Так просто он бы не опоздал, значит плохо дело. И помощь твоя без толку, раз Диких там всё ещё так много!\n\nСтупай лучше отсюда, не до тебя сейчас. Мне друга надо выручать, а от тебя, похоже, одна морока.", + "67f3eacef649e7bceb0bb455 successMessageText": "Ну что, как тебе эти гранаты? Я не рисковал, слишком уж задержка короткая. Так и руку потерять можно. В городе уже говорят о том, что ты сделал, значит, послание наше было услышано.\n\nНадеюсь, это охладит горячие головы и поможет одуматься тем, кто засомневался в человеческих ценностях. Они не скажут нам спасибо, зато смогут дожить до мирных времён.\n\nА для тебя у меня есть особый подарок, Прапор передал. Используй с умом и будь осторожен.", + "67f530370a3a9a0f90b76716": "Убить любую цель, используя Гранату Ф-1 с сокращенным замедлителем", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Всё спокойно, значит? Хорошо, молодец, боец.", @@ -28896,6 +29470,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Неплохо.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Все необходимые предметы в списке. Найти и оставить в месте закладки.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Доступны другие задания, но испытывать моё терпение не рекомендую.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "Так, чемпион, зарядку делаешь? А тренировки? Вот не надо расслабляться. Поэтому давай, покажи на Арене всем чего ты стоишь, выиграй матч.", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Мой совет тебе, чемпион: поддерживай свой статус. Как на тебя будут ставить, если о тебе не говорят? Ебошь, побеждай в раундах, пусть про тебя помнят.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "Так, чемпион, зарядку делаешь? А тренировки? Вот не надо расслабляться. Поэтому давай, покажи на Арене всем чего ты стоишь, выиграй матч.", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "Так, чемпион, зарядку делаешь? А тренировки? Вот не надо расслабляться. Поэтому давай, покажи на Арене всем чего ты стоишь, выиграй матч.", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "Так, чемпион, зарядку делаешь? А тренировки? Вот не надо расслабляться. Поэтому давай, покажи на Арене всем чего ты стоишь, выиграй матч.", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Здорова, чемпион. В рядах гладиаторов что-то слишком много хлюпиков развелось, надо прорядить их. Берёшься? Только сообщи мне обязательно, как закончишь.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Здорова, чемпион. В рядах гладиаторов что-то слишком много хлюпиков развелось, надо прорядить их. Берёшься? Только сообщи мне обязательно, как закончишь.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Здорова, чемпион. В рядах гладиаторов что-то слишком много хлюпиков развелось, надо прорядить их. Берёшься? Только сообщи мне обязательно, как закончишь.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Здорова, чемпион. В рядах гладиаторов что-то слишком много хлюпиков развелось, надо прорядить их. Берёшься? Только сообщи мне обязательно, как закончишь.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Мой совет тебе, чемпион: поддерживай свой статус. Как на тебя будут ставить, если о тебе не говорят? Ебошь, побеждай в раундах, пусть про тебя помнят.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "Мой совет тебе, чемпион: поддерживай свой статус. Как на тебя будут ставить, если о тебе не говорят? Ебошь, побеждай в раундах, пусть про тебя помнят.", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "Мой совет тебе, чемпион: поддерживай свой статус. Как на тебя будут ставить, если о тебе не говорят? Ебошь, побеждай в раундах, пусть про тебя помнят.", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "Мне нужно, чтобы ты блистал. Так на тебя больше ставят. Так что давай, ноги в руки и вперёд на Арену побеждать. Надо, чтобы ты до верхов добрался, а на это уйдёт много времени, учти это.", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "Чемпион, знаешь, что важно? Не давать о себе забыть. Поэтому надо постоянно ебашить. Так и бабки не утекут к конкурентам, и адреналин всё время будет в крови.\n\nТы же не хочешь, чтоб про тебя забыли? Тогда надо побеждать в десятках раундов, а это небыстро.", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "Мне нужно, чтобы ты блистал. Так на тебя больше ставят. Так что давай, ноги в руки и вперёд на Арену побеждать. Надо, чтобы ты до верхов добрался, а на это уйдёт много времени, учти это.", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "Мне нужно, чтобы ты блистал. Так на тебя больше ставят. Так что давай, ноги в руки и вперёд на Арену побеждать. Надо, чтобы ты до верхов добрался, а на это уйдёт много времени, учти это.", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "Мне нужно, чтобы ты блистал. Так на тебя больше ставят. Так что давай, ноги в руки и вперёд на Арену побеждать. Надо, чтобы ты до верхов добрался, а на это уйдёт много времени, учти это.", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "Привет, чемпион! На Арене должен быть порядок. Это важно для бизнеса: как им управлять, если все страдают хернёй? Поэтому надо проводить чистки. Как раз настало время одной такой. Только учти, что это займёт время.", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "Привет, чемпион! На Арене должен быть порядок. Это важно для бизнеса: как им управлять, если все страдают хернёй? Поэтому надо проводить чистки. Как раз настало время одной такой. Только учти, что это займёт время.", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "Привет, чемпион! На Арене должен быть порядок. Это важно для бизнеса: как им управлять, если все страдают хернёй? Поэтому надо проводить чистки. Как раз настало время одной такой. Только учти, что это займёт время.", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "Привет, чемпион! На Арене должен быть порядок. Это важно для бизнеса: как им управлять, если все страдают хернёй? Поэтому надо проводить чистки. Как раз настало время одной такой. Только учти, что это займёт время.", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "Чемпион, знаешь, что важно? Не давать о себе забыть. Поэтому надо постоянно ебашить. Так и бабки не утекут к конкурентам, и адреналин всё время будет в крови.\n\nТы же не хочешь, чтоб про тебя забыли? Тогда надо побеждать в десятках раундов, а это небыстро.", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "Чемпион, знаешь, что важно? Не давать о себе забыть. Поэтому надо постоянно ебашить. Так и бабки не утекут к конкурентам, и адреналин всё время будет в крови.\n\nТы же не хочешь, чтоб про тебя забыли? Тогда надо побеждать в десятках раундов, а это небыстро.", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "Чемпион, знаешь, что важно? Не давать о себе забыть. Поэтому надо постоянно ебашить. Так и бабки не утекут к конкурентам, и адреналин всё время будет в крови.\n\nТы же не хочешь, чтоб про тебя забыли? Тогда надо побеждать в десятках раундов, а это небыстро.", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "Не хочешь квалификацию повышать, значит? Такой инфой вообще-то обычно не делятся, понял? Хотя чё я тебе объясняю, сам потом ко мне приползёшь.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "Я знал, что ты готов инвестировать в себя! Цифры ты теперь знаешь, на той стороне я обо всём уже договорился.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "Здарова! Я помню, что тебе понравилось учиться у реальных профи. А я нарыл один контакт, который даже тебя сможет на новый уровень вытащить. Но мне сейчас нужны бабки, да и спец этот один на весь город, так что придётся раскошелиться.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Это ты зря. Мой кореш ещё недельку отлежится, потом его хер выцепишь. Серьёзные люди за его услуги бабки платят, а ты походу вообще не одупляешь, от чего отказался.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Я в тебе не сомневался! Кореш уже готовит материалы для тебя, всё по серьёзке. Повезло тебе, что со мной связь держишь. Этот волчара даже лёжа на койке половину ваших ЧВК уделает.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Как сам? Жизнь бьёт гаечным ключом? Ну ничё, мы с тобой и не в таком дерьме плавали. Кстати, у меня кореш есть, который тут с самого начала всей херни работает. Его одна крыса подкараулила и чуть не заземлила. Понятно, что сволочь эта больше землю не топчет, но друган мой с ранением теперь лежит. \n\nЯ и подумал, может тебе интересно с таким опытным спецом побазарить? Само собой, не задаром. Если хочешь компетенции свои поднять, неси бабки.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "И корешу своему в беде не поможешь, да? Я ж это только тебе предлагаю, а ты не оценил даже. Когда тебя припрёт, на меня не рассчитывай.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Ну, красава. Бабки тут оставь, а когда к Славке пойдёшь, ты это... На возраст внимания не обращай. Он хоть и малой ещё, но внатуре вундеркинд! Спрашивай о чём хочешь, от баллистики до рыночной, мать её, экономики.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Здарова, бандит. Давай к делу сразу. С бабками у меня сейчас туго, поэтому для тебя открывается специальное, мля, предложение. Ты подогреваешь меня лавешечкой, а в ответ сведу с одним из своих спецов. Я этого пацана от всех прячу, потому что кадр уникальный. Но с тобой мы не одну тему замутили, так что тебе могу довериться.\n\nНо учти, это я сейчас добрый. Зелень мне на этой неделе нужна, потом лавочка закроется. У моего спеца и без репетиторства загрузки хватает.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Чё? Да у меня на эти материалы очередь уже выстроилась, и поинтереснее цены предлагают! А ты даже не выкупил, чё теряешь.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "А ты шаришь! На эти материалы уже очередь собралась и цену выше предлагали, но я лучше тебе отдам. \n\nТы кореш проверенный, и точно эти знания против меня использовать не будешь.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Маза одна для тебя есть, может интересно будет. Ко мне в руки недавно попали материалы по углублённой подготовке для юсековских офицеров. Обычным солдатикам, ясен хер, такая инфа не поможет, они так и так откинутся.\n\nНо такой волчара, как ты, точно пользу из ветеранских секретов достанет. Сам понимаешь, такой товар долго залёживаться не будет, так что время на подумать ограничено. ", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Не, ну чё ты за вафел такой? Думаешь, больше всех знаешь? Ну давай, мля, удачи тогда.\n\nХотя тебе-то может и полегче без этой инфы будет, зелёный ты ещё.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Заебца! Придётся подвинуть пару темок ради тебя, но ради надёжного кента и не такое можно.\n\nТолько два условия: ты эту инфу никому дальше не передаёшь и никак не фиксируешь, понял? Если с той стороны узнают об утечке, здесь всем херово будет.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Ну чё, май френд, давно квалификацию себе не повышал? Я тут с Миротворцем забазарился, и он мне пару секретов раскрыл, из опыта наших «западных коллег». Походу иногда реально полезно на ситуацию другими глазами посмотреть.\n\nПонятно, что ты уже сам вояка со стажем, но инфа внатуре ценная. Если интересно, могу с тобой поделиться. Но у меня сейчас работы навалом, так что за моё время заплатить придётся.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Дикий друг ЧВК ", "6512ea46f7a078264a4376e4 description": "Выжить и выйти с локации Развязка вместе с Диким, играя за ЧВК", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29145,6 +29864,256 @@ "670febed5ee0fc738a0965a4 name": "Летальный исход", "670febed5ee0fc738a0965a4 description": "Завершить цепочку заданий и уничтожить заражённых вместе с вирусом в событии «Хэллоуин 2024»", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Установка завершена", + "67222f22110c584f2b01c021 description": "Выиграть раунд в режиме BlastGang, установив и успешно активировав устройство", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "Без права на ошибку", + "672231e82ff336b7b80274fc description": "Выиграть раунд в режиме BlastGang, обезвредив устройство", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "База", + "6722322686058f05ac06999a description": "Выиграть раунд в режиме TeamFight, захватив точку захвата", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "У нас отмена", + "67223555110c584f2b01c50c description": "Обезвредить устройство в режиме BlastGang за одну секунду до активации", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Не сегодня", + "672236cd1f224ce5e5080a61 description": "Устранить противника в режиме BlastGang, пока он обезвреживает устройство\t", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Страйк!", + "67223776dd95e350e500834e description": "Устранить 5 противников в одном раунде в режиме BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "С точностью хирурга", + "67223dd56c3352f1ac0eb54d description": "Устранить 5 противников выстрелом в голову в одном раунде в режиме BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Три в одном", + "67223e7a474c52f03f04695b description": "Устранить 3 противников в одном раунде из 3-х разных типов оружий в BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Не стой на месте", + "67225d2343d757b68f09758d description": "Устранить противника в режиме TeamFight, пока он захватывает точку захвата\t", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!", + "67225e8004774d33a2056d3d description": "Устранить 5 противников в одном раунде в режиме TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "Трио из Бельвилля", + "672260176006cd22c70fce7c description": "Устранить 3 противников в одном раунде из 3-х разных типов оружий в TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "Первый герой", + "6722612dab4a24e9da0361aa description": "Занять первое место в режиме LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Хет-трик", + "672261a72bcba14c030b7ddf description": "Занять первое место в режиме LastHero 3 раза подряд", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Убийственная скорость", + "672262c7297a7399d80b50b8 description": "Устранить 5 противников в течение 10 секунд в режиме LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Неуязвимый", + "672263055d63b6886a0ca01f description": "Устранить 10 противников в режиме LastHero, не умирая\t", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Скорострел", + "672264e52bcba14c030b7de3 description": "Самостоятельно устранить 5 противников в режиме BlastGang до установки устройства", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Слепая ярость", + "67226609297a7399d80b50bb description": "Устранить противника, будучи ослепленным светошумовой гранатой", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "А вот и Джонни!\t", + "6722758743d757b68f097593 description": "Устранить противника, пока он перезаряжает оружие", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Самая быстрая рука в Таркове", + "6722763e7c8c397a5004f42e description": "Победить в раунде в режиме TeamFight или BlastGang менее чем за 25 секунд", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "Чё за балет?", + "6722773504774d33a2056d44 description": "Устранить противника, находящегося в воздухе", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Воздушный атлет", + "67227a5804774d33a2056d4c description": "Устранить противника, находясь в воздухе", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "Без потерь", + "67227b2f297a7399d80b50c5 description": "Устранить всю вражескую команду без потерь в своей команде", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Устранить 5 противников выстрелом в голову в одном раунде в режиме TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "Последний герой", + "67227d075d63b6886a0ca029 description": "Устранить 5 противников в одном раунде в режиме BlastGang, оставшись последним игроком в команде", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "Последний гладиатор", + "67227e4658871c73f3038bb5 description": "Устранить 5 противников в одном раунде в режиме TeamFight, оставшись последним игроком в команде", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Победоносное шествие", + "6722917226925a3eb600de23 description": "Одержать победу в режиме TeamFight на каждой карте (кроме Лесопилки)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Победить на локации Вокзал", + "6722946ee0be7df249cbf7f0": "Победить на локации Экватор", + "672294a242288ca1a38bc28a": "Победить на локации Разборка", + "672294b67235ffa33641f664": "Победить на локации Порт 5", + "672294ce35fa6ee8ca334854": "Победить на локации Лесопилка", + "672294e96ee23926b298ee14": "Победить на локации Форт", + "672294ec7905caa417f2f815": "Победить на локации Район", + "672294ee52f1f27ecbdac24c": "Победить на локации Аэропорт", + "6722952e1b72d31e6d51229c": "Победить на локации Стадион", + "672296fd04774d33a2056d4f name": "Победитель во всем", + "672296fd04774d33a2056d4f description": "Стать первым в режиме LastHero на каждой карте (кроме Лесопилки)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Победить на локации Стадион", + "672297759dfed248f31ea77d": "Победить на локации Аэропорт", + "672297775dd46eb922eb45a4": "Победить на локации Район", + "672297797653d12f117305f4": "Победить на локации Форт", + "6722977bcc6a038b1a38cee1": "Победить на локации Лесопилка", + "6722977dc2cf9891520f18ba": "Победить на локации Порт 5", + "6722977fb3e33661bc5a5808": "Победить на локации Разборка", + "67229781cbe3245ba8958714": "Победить на локации Экватор", + "6722986fbdd16b3eea6b9c8c": "Победить на локации Вокзал", + "672299a48d46d067f60eee89 name": "Завоеватель", + "672299a48d46d067f60eee89 description": "Одержать победу в режиме BlastGang на каждой карте", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Победить на локации Вокзал", + "672299ee15ab5f28b1f0cf43": "Победить на локации Стадион", + "672299f0d1e3f702b79a3432": "Победить на локации Форт", + "672299f2af539eca74d25caf": "Победить на локации Порт 5", + "67229aee43d757b68f09759f name": "Минёр", + "67229aee43d757b68f09759f description": "Установить 100 устройств в режиме BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Сапёр", + "67229bcd5d63b6886a0ca02d description": "Обезвредить 100 устройств в режиме BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Захватчик", + "67229c47297a7399d80b50ce description": "Захватить точку захвата 50 раз в режиме TeamFight\t", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Выжить любой ценой", + "67229d0a04774d33a2056d55 description": "Занять первое место 50 раз в режиме LastHero\t", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Всё победителю", + "67229dd443d757b68f0975a2 description": "Победить 100 раз в режиме BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Командная игра", + "67229e44ab4a24e9da0361da description": "Победить 100 раз в режиме TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Мастер Штурмовых винтовок", + "67229e9a7c8c397a5004f43d description": "Устранить 250 противников из Штурмовых винтовок", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Эксперт по Штурмовым винтовкам", + "6722a00eab4a24e9da0361dd description": "Устранить 1000 противников из Штурмовых винтовок", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Мастер Пулемётов\t\t", + "6722a08f6006cd22c70fce8e description": "Устранить 250 противников из Пулемётов", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Эксперт по Пулемётам", + "6722a10504774d33a2056d59 description": "Устранить 1000 противников из Пулемётов", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Мастер Марксманских винтовок", + "6722a1556006cd22c70fce91 description": "Устранить 250 противников из Марксманских винтовок", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Эксперт по Марксманским винтовкам", + "6722a28604774d33a2056d5c description": "Устранить 1000 противников из Марксманских винтовок\t", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Мастер Штурмовых карабинов\t", + "6722a32c58871c73f3038bbc description": "Устранить 250 противников из Штурмовых карабинов", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Эксперт по Штурмовым карабинам", + "6722a3d58d46d067f60eee90 description": "Устранить 1000 противников из Штурмовых карабинов", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Мастер Болтовых винтовок", + "6722a44aab4a24e9da0361e3 description": "Устранить 50 противников из Болтовых винтовок", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Эксперт по Болтовым винтовкам", + "6722a4bb7c8c397a5004f441 description": "Устранить 250 противников из Болтовых винтовок", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Мастер Пистолетов-Пулеметов", + "6722a5092bcba14c030b7df1 description": "Устранить 250 противников из Пистолетов-Пулемётов", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Эксперт по Пистолетам-Пулемётам", + "6722a58726925a3eb600de2c description": "Устранить 1000 противников из Пистолетов-Пулемётов", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Мастер Дробовиков", + "6722a5d28d46d067f60eee93 description": "Устранить 250 противников из Дробовиков", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Эксперт по Дробовикам", + "6722a6c526925a3eb600de2f description": "Устранить 1000 противников из Дробовиков", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Мастер Пистолетов", + "6722a73e26925a3eb600de32 description": "Устранить 50 противников из Пистолетов", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Эксперт по Пистолетам", + "6722a7d46006cd22c70fce95 description": "Устранить 250 противников из Пистолетов", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Мастер Ножей", + "6722a8758d46d067f60eee97 description": "Устранить 5 противников Ножом", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Эксперт по Ножам", + "6722a8e1ab4a24e9da0361e6 description": "Устранить 25 противников Ножом", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Гренадёр", + "6722a927297a7399d80b50d5 description": "Устранить 10 противников Гранатой", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Эксперт по Гранатам", + "6722a99e297a7399d80b50d8 description": "Устранить 100 противников Гранатой", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Львиное сердце", + "6722bd8726925a3eb600de37 description": "Выиграть в BlastGang с выбитой грудью и остаться в живых", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Бессердечный", + "6722bde7297a7399d80b50dd description": "Выиграть в TeamFight с выбитой грудью и остаться в живых", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Холодная голова", + "6722bfce6006cd22c70fce9a description": "Выиграть в BlastGang с выбитой головой и остаться в живых", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Без Лица", + "6722c036ab4a24e9da0361ea description": "Выиграть в TeamFight с выбитой головой и остаться в живых", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Реки крови", + "6722c08e7c8c397a5004f446 description": "Убить 100 врагов кровотечением", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Путь Самурая", + "6722c0ca8d46d067f60eee9b description": "Выиграть 3 матча подряд в рейтинговых режимах", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Тысяча порезов", + "6722c13d2bcba14c030b7df8 description": "Выиграть 10 раундов в BlastGang, получив от 2 тяжелых кровотечений в раунде и оставшись в живых", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Кровосток", + "6722c16a43d757b68f0975a8 description": "Выиграть 10 раундов в TeamFight, получив от 2 тяжелых кровотечений в раунде и оставшись в живых", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Пуленепробиваемый", + "6722c1955d63b6886a0ca037 description": "Выиграть 10 раундов в BlastGang, не получив урона и оставшись последним выжившим из команды", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Хрен попадёшь", + "6722c1bb6006cd22c70fce9e description": "Выиграть 10 раундов в TeamFight, не получив урона и оставшись последним выжившим из команды", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Исполнитель", + "6722c2392bcba14c030b7dfc description": "Выполнить 50 ежедневных заданий", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Работник месяца", + "6722c29443d757b68f0975ab description": "Выполнить 5 еженедельных заданий", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Работник квартала", + "6722c2f05d63b6886a0ca03e description": "Выполнить 15 еженедельных заданий", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Вот так встреча!", + "6722c3366006cd22c70fcea1 description": "Впервые умереть от команды Зачистки", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "Моя прелесть", + "6722c36926925a3eb600de3a description": "Передать из Арены в EFT 10.000.000 рублей", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Деньги на стол", + "6722c39c6006cd22c70fcea4 description": "Передать из EFT в Арену 100.000.000 рублей", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Хорошая работа", + "6722c3ee26925a3eb600de3d description": "Стать MVP матча 10 раз в любом режиме", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Лучший из лучших", + "6722c41b8d46d067f60eee9e description": "Стать MVP матча 100 раз в любом режиме", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Жизнеспособный гладиатор", + "6722c44c58871c73f3038bc7 description": "Стать MVP раунда 50 раз в любом режиме", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Претендент на свободу", + "6722c47704774d33a2056d66 description": "Стать MVP раунда 500 раз в любом режиме", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Праздник к нам приходит", + "674f46a681f38ceef70b5fa1 description": "Выполнить цепочку новогодних квестов в 2024 году", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Полный привод", "675709bef4e2a2ce0f058f56 description": "Решить вопрос с мехводом БТР тем или иным способом", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29158,11 +30127,20 @@ "676094451fec2f7426093be6 description": "Получить второй уровень Престижа", "676094451fec2f7426093be6 successMessage": "", "67a0e57117e34930e50075f3 name": "В поисках выхода", - "67a0e57117e34930e50075f3 description": "Выполнить основную цепочку заданий в событии «Лабиринт»", + "67a0e57117e34930e50075f3 description": "Выполнить основную цепочку заданий в событии «Лабиринт 2025»", "67a0e57117e34930e50075f3 successMessage": "", "67a0e57b972c11a3f50773b2 name": "Мастер подземелий", - "67a0e57b972c11a3f50773b2 description": "Выполнить основную цепочку и все дополнительные задания в событии «Лабиринт»", + "67a0e57b972c11a3f50773b2 description": "Выполнить основную цепочку и все дополнительные задания в событии «Лабиринт 2025»", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "Всё на красное", + "67c838a4c566b0028f0f2d07 description": "Поставить всё на отряд BEAR в Норвинской области и завершить цепочку заданий Лыжника \"Выгодное предприятие\"", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "Пески Арены", + "67caccd347ff06535404a0c7 description": "Достигнуть 150 уровня Боевого Пропуска Сезон 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Звезда по имени Солнце", + "67fce0c2f18dc20eae02240b description": "Убить сектанта, используя Гранатомет РШГ-2", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Слот 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/sk.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/sk.json index 58d77049..d4fb3121 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/sk.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/sk.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,11 +14609,14 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", "678fa929819ddc4c350c0317 Name": "Valve handwheel", - "678fa929819ddc4c350c0317 ShortName": "handwheel", + "678fa929819ddc4c350c0317 ShortName": "Wheel", "678fa929819ddc4c350c0317 Description": "A massive handwheel removed from some kind of valve. It must have been used to regulate the water or gas supply in the Knossos underground facilities.", "679b944d597ba2ed120c3d3c Name": "Last Breath poster", "679b944d597ba2ed120c3d3c ShortName": "Last Breath", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Cesta k autu pri vojenskej základni", " Voip/DisabledForOffline": "VoIP je nedostupný v offline režime", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Ste si istý, že chcete odstrániť upravené vybavenie?", "APC/CustomizationTab": "Prispôsobenie", "APC/EnterName": "Zadajte názov", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Rýchly prístup", "APC/Locked": "Zamknuté", "APC/PurchasedStatesAll": "Všetky", "APC/ReadyToUlock": "K odomknutiu", "APC/Unlocked": "Odomknuté", "APC/ViewPreset": "Zobraziť", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Ochrana{1}", "APCBar/Firepower": "{0}Palebná sila{1}", "APCBar/Metascore": "{0}Meta body{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Útočné karabíny", "APCFilter/AssaultRifles": "Útočné pušky", "APCFilter/AssaultScope": "Útočné puškohľady", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Pomocné diely", "APCFilter/Barrel": "Hlavne", "APCFilter/Bipod": "Dvojnožky", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Nabíjacie tiahla", "APCFilter/Collimator": "Kolimátory", "APCFilter/CompactCollimator": "Kompaktné kolimátory", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Chladné zbrane", "APCFilter/Mount": "Montáže", "APCFilter/Muzzle": "Úsťové zariadenia", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Úsťové adaptéry", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Puškohľady", "APCFilter/PistolGrip": "Pažbičky", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Pištole", "APCFilter/Receiver": "Kryty uzáveru, Púzdra uzáveru, Spúšte", "APCFilter/SMGs": "Samopaly", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "VYLEPŠOVANIE", "ARENA/ARMORY/LINKS": "PREPOJENÉ", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Presun do EFT je nedostupný", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "TRIEDA ARMORU", "ARMOR POINTS": "BODY ARMORU", "ARMOR TYPE": "TYP ARMORU", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Položka nebola nájdená", "Arena/Armory/LevelReward/readyToUlockState": "Pripravené", "Arena/Armory/LevelReward/unlockedState": "Pripravené", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blokované", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Nedostatok peňazí", "Arena/BigCustomPurchaseInfo/Purchase": "Kúpiť", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Predĺženie", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} z {1}", "Arena/BlastGang/ResultScreenSwapSides": "Zmena stran", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Zrušiť žiadosť o priateľstvo", "Arena/CustomGame/Lobby/cancel invite to group": "Zrušiť pozvánku do skupiny", "Arena/CustomGame/Lobby/invite to friends": "Pridať na zoznam priateľov", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Zostávajúce pokusy:", "Arena/CustomGames/Create/Maps": "Lokácia", "Arena/CustomGames/Create/Modes": "Módy", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Podmódy", "Arena/CustomGames/Create/TournamentMode": "Turnajový mód", "Arena/CustomGames/Create/TournamentSettings": "Turnajové nastavenie", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Zobrať", "Arena/CustomGames/No servers found": "Nenájdené aktívne servery", "Arena/CustomGames/Observers": "Pozorovatelia", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Vstup na server", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Nahradenie operačnej úlohy / Ref", "Arena/CustomGames/Settings": "Nastavenia", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Vypnuté", "Arena/CustomGames/Settings/enable": "Zapnuté", "Arena/CustomGames/create/enter name": "Zadajte názov", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Región", "Arena/CustomGames/toggle/room name": "Názov miestnosti", "Arena/CustomGames/toggle/tournament": "Turnaj", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Zápas sa skončil, kým ste boli preč", "Arena/EnterPresetName": "Zadaj názov šablóny", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Zbraň", "Arena/Rematching": "Návrat do hry s vysokou prioritou", "Arena/Rematching/NoServer": "Z technických dôvodov nebol nájdený server. Vrátenie k vyhľadávaniu hry.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Azurový", "Arena/TeamColor/azure_plural": "Azurový", "Arena/TeamColor/blue": "Modrý", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Modrý", "Arena/TeamColor/fuchsia": "Ružový", "Arena/TeamColor/fuchsia_plural": "Ružový", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Zelený", "Arena/TeamColor/grey": "Šedý", "Arena/TeamColor/red": "Červený", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Červený", "Arena/TeamColor/white": "Biely", "Arena/TeamColor/white_plural": "Biely", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Šablóna odomknutá", "Arena/Tooltip/MapSelectedCounter": "Počet zvolených lokácií", "Arena/Tooltip/MinMapCount {0}": "Vyberte niekoľko lokácií. Musíte vybrať aspoň {0} lokácií(e)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Šablóna obsadená", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", + "Arena/Widgets/ team {0} capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Planting the device", "Arena/Widgets/Event/can activate object": "Plant the device", "Arena/Widgets/Event/deactivate object": "Deactivate the device", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "READY", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Strong Poison", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Daily first win bonus: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} invites you to battle", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Any game mode", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Game mode(s)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Locations", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiple game modes", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "LEAVE THE MATCH", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Upper back", "ArmorVest": "Body Armor\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rank", "ArmoryCondition/CompletedDailyQuests": "Complete daily tasks:", "ArmoryCondition/CompletedWeeklyQuests": "Complete weekly tasks:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Barter", "Battle category": "Battle category", "BattleCategory": "Combat", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK Systems", "BearAssaultoperations": "BEAR Assault Operations", "BearAuthority": "BEAR Authority", @@ -15812,13 +15926,34 @@ "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0.#%}]", "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "The following items will be moved to the task item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to task item stash", "Check your email": "Please check the email you used to register this account. You will receive the Device ID within 5 minues from now.", "CheckAmmo": "Check ammo", "CheckChamber": "Check chamber/Fix malfunction", "CheckFireMode": "Check fire mode", - "CheckPointDescription": "Fight for control over the game location along with your team by capturing and holding the objectives.", + "CheckPointDescription": "A team battle in the 5v5 format. Fight for control over the game location along with your team by capturing and holding the objectives.", "CheckTimeSpeed": "Check speed modifier", "Chest": "THORAX", "Choose Look": "Choose appearance", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Unavailable", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Available for purchase on the website", "ClothingPanel/InternalObtain": "Trader purchase conditions:", "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Connecting to server...", "Connection to server lost": "Server connection lost", "Console": "Console", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Total tasks completed", "Daily/Stat/VeryEasy": "Total very easy tasks completed", "Daily/Stat/VeryHard": "Total very hard tasks completed", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Win a match", "DailyQuestName/ArenaWinRound": "Win a round", "DailyQuestName/Completion": "Find and transfer", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Flame", "DamageType_GrenadeFragment": "Fragmentation", "DamageType_HeavyBleeding": "Heavy bleeding", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Impact damage", "DamageType_Landmine": "Landmine", "DamageType_LightBleeding": "Light bleeding", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Radioactive exposure", "DamageType_Sniper": "Sniper shot", "DamageType_Stimulator": "Stimulant side effect", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Previous damage", "Day": "Day", "DeactivateObject": "Deactivate the device", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Cover fire", "ETraderServiceType/BtrItemsDelivery": "Move items to stash", "ETraderServiceType/PlayerTaxi": "Take a ride", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipment", "EWishlistGroup/Hideout": "Hideout", "EWishlistGroup/Other": "Other", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "Cannot add {0} to {1}. The modified weapon will take more space than is available. Try repositioning weapon to other part of your stash.", "Escape": "Back", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Inspect current weapon", "Excellent standing": "excellent", "ExceptionItem": "This trader can't repair that item", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Found in raid", "Free cam": "Free camera", "FreeChangeQuest": "Free of charge", + "FreeWeekend": "Free Weekend", "Freetrading": "Free Trading", "Freetradingdescription": "Free trading", "Friend invite to {0} was sent succesfully": "A friend request was successfully sent to {0}!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cultist Circle", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Cultists can't bestow their Gift while you're in the Hideout", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", "Nape": "Nape", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "REQUIRED SEARCH", "NetworkError/SessionLostErrorMessage": "Session lost. Re-login required", "NetworkError/TooManyFriendRequestsHeader": "Too many requests", @@ -17620,6 +17768,7 @@ "PVE settings": "AI settings", "Pain": "Pain", "Painkiller": "On painkillers", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Chilling horror", "PaperGesture": "Paper", "Paramedic": "Paramedic", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Replacement cost:", "Quest/Change/TimeLeft": "Time remaining to complete the task:", "Quest/Change/Tooltip": "Operational task replacement cost:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Find items from the category in one raid: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminate{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " with a {0} shot", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Extract with the items from the category: {0}", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Útočník", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "any location", "QuestCondition/SurviveOnLocation/ExitName": " by extracting through the \"{0}\"", "QuestCondition/SurviveOnLocation/Location": "the location", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "head", "QuestCount/Transfered": "transferred", "QuestCount/Transferred": "Eliminated:", @@ -18256,7 +18418,7 @@ "Settings/Graphics/DLSSLockThis": "This setting is unavailable while DLSS is on", "Settings/Graphics/DLSSModeTooltip": "NVIDIA DLSS uses AI Super Resolution to provide the highest possible frame rates at maximum graphics settings. DLSS requires an NVIDIA RTX graphics card.", "Settings/Graphics/DLSSNotSupported": "DLSS is not supported on your system", - "Settings/Graphics/DLSSPreset": "DLSS Preset", + "Settings/Graphics/DLSSPreset": "DLSS Preset:", "Settings/Graphics/DLSSPresetTooltip": "Specific DLSS presets.", "Settings/Graphics/DLSSWrongSampling": "Disable Resampling to enable DLSS", "Settings/Graphics/FSR2LockThis": "This setting is unavailable while FSR 2.2 is on", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Overall volume:", "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Unavailable", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base CP", "Shadow visibility:": "Shadow visibility:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "TYPES OF FIRE", "Tactical": "Toggle tactical devices", "Tactical clothing": "Tactical clothing", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "Tactical Rig", @@ -18582,6 +18746,7 @@ "Task": "Task", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Task Performance", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "TeamFight", "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Team deathmatch", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Interact", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Tremor", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventory slot lines in stash", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "off", "UI/Settings/NVidiaReflexMode/On": "on", "UI/Settings/NVidiaReflexMode/OnAndBoost": "on and boost", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Default", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Other actions", "UI/Settings/Rest": "Other", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "Charisma skill discount", "UI/Standing:": "Trader standing:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Unknown Error", "UnknownErrorMessage": "Unknown error occurred. Close the game and submit a bug report.", "UnknownToxin": "Unknown toxin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "UNLOAD AMMO", "Unloadmagazine": "Detach magazine", "Unlock": "Unlock", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Skill of basic weapon modding on the go increases the mod ergonomics and reduces silencer wear.", "WeaponMounting": "Mount weapon", "WeaponPunch": "Buttstroke", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0.#%}]", "WeaponReloadBuff": "Increases reload speed by [{0:0.#%}]", "WeaponStiffHands": "Increases weapon ergonomics by [{0:0.#%}]", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "You can't use flea market right now", "You can't use ragfair now": "You can't use Flea Market now", "You can't use that symbol": "You can't use that character", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "You cannot modify texture quality in raid.", "You cannot take off a dogtag from a friend or group member": "You cannot take off a dogtag from a friend or group member", "You don't have some items to finish the deal": "You don't have some items required to finish the deal", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "Inspect", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicitné šablóny:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Povoliť duplicitné šablóny", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Attempts left:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "ARP LEFT", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "SELECT ARENA", "arena/matching/SelectGametype": "SELECT GAME TYPE", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TYPE", "arena/matching/UnavailableReason": "Unavailable", "arena/matching/buyPreset": "ZAKÚPENIE ŠABLÓNY", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "FAVORITES", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP minca. Používa sa na odomknutie vybavenia, šablón a nákup vybavenia v EFT. Získavajú sa za dokončenie operačných úloh v Aréne.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Šablóny", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complete daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complete weekly tasks:", "arenaui/presetview/lockedpreset": "Nedostupné", "arm broke": "You broke your arm!", "assaultKills": "Assault rifle kills", @@ -19643,6 +19860,29 @@ "camora_003": "Chamber 4", "camora_004": "Chamber 5", "camora_005": "Chamber 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Player has cancelled the friend request", "cancelfriendrequest": "Cancel friend request", "captcha/too frequent attempts": "The attempts are too frequent. Access to the flea market and traders is currently unavailable. Try again later.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Sewage Conduit", "lab_Vent": "Ventilation Shaft", "labir_exit": "The Way Up", + "laboratory": "Laboratórium", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Last session", "leader": "Leader", @@ -20358,6 +20599,7 @@ "un-sec": "Severná blokáda UN", "undefined": "", "uninstall": "ODINŠTALOVAŤ", + "unlock requires:": "Požiadavky na odomknutie:", "unlockedSafes": "Odomknutých trezorov", "unpack": "rozbaliť", "usecKills": "zabitých USEC", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "United Security", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "Find a 6B13 assault armor in 0-50% durability in raid", - "5ae9bc6e86f7746e0026222c": "Hand over the found in raid 6B13 assault armor in 0-50% durability", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "Find a 6B13 assault armor in 50-100% durability in raid", - "5ae9bea886f77468ab400e64": "Hand over the found in raid 6B13 assault armor in 50-100% durability", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operácia Vodnár - Časť 2", + "664ca9f577af670dad0ad339 description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "664ca9f577af670dad0ad33d": "Zabi divochov na colnici", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Zhon", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operácia Vodnár - Časť 2", + "6659a9716b1be75165030e4e description": "Glad to see you once again. My people found out who was involved in all of these illegal operations with clean water. Thanks to your information, of course. In short, it’s a gang of Scavs operating in the Customs area. I’m really not comfortable with this kind of request, but there are lives at stake, and these scoundrels still go on with their dirty business. We need to properly scare them off, so let them die in suffering so they would feel what they've done and what are being punished for. Will you do it?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "You can be proud of yourself - even if you took lives today, those people weren’t of the best species of the human race. You gave a chance to survive to many civilians.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Good.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "All required items are on the list. Find them and bring them to the drop spot.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "There are other tasks available, at the cost of my patience.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "Najlepší priateľ operátora PMC", "6512ea46f7a078264a4376e4 description": "Preži a opusti mapu Interchange pomocou Scav Co-Op východu ako PMC", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Fatal Outcome", "670febed5ee0fc738a0965a4 description": "Destroy the virus along with all the infected and complete the Halloween 2024 event task line", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "All-Wheel Drive", "675709bef4e2a2ce0f058f56 description": "Resolve the issue with the BTR driver one way or another", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29055,11 +30011,20 @@ "676094451fec2f7426093be6 description": "Earn the Prestige level 2", "676094451fec2f7426093be6 successMessage": "", "67a0e57117e34930e50075f3 name": "In Search of an Exit", - "67a0e57117e34930e50075f3 description": "Complete the Labyrinth event task line", + "67a0e57117e34930e50075f3 description": "Complete the Labyrinth 2025 event task line", "67a0e57117e34930e50075f3 successMessage": "", "67a0e57b972c11a3f50773b2 name": "Dungeon Master", - "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", + "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth 2025 event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/tu.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/tu.json index 56fe178f..7493a59e 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/tu.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locales/global/tu.json @@ -7499,6 +7499,9 @@ "5fd760001189a17bcc172b85 Name": "", "5fd760001189a17bcc172b85 ShortName": "", "5fd760001189a17bcc172b85 Description": "", + "5fd7769cd3d418755f40ea43 Name": "", + "5fd7769cd3d418755f40ea43 ShortName": "", + "5fd7769cd3d418755f40ea43 Description": "", "5fd78519a8c881276c55eae6 Name": "", "5fd78519a8c881276c55eae6 ShortName": "", "5fd78519a8c881276c55eae6 Description": "", @@ -13145,6 +13148,9 @@ "66ace88c46fb07947008645b Name": "", "66ace88c46fb07947008645b ShortName": "", "66ace88c46fb07947008645b Description": "", + "66acebd4ede86671bb09584b Name": "", + "66acebd4ede86671bb09584b ShortName": "", + "66acebd4ede86671bb09584b Description": "", "66acec1dc94f4bf5bc063a16 Name": "", "66acec1dc94f4bf5bc063a16 ShortName": "", "66acec1dc94f4bf5bc063a16 Description": "", @@ -13274,6 +13280,9 @@ "66bf6769f08c35734d4940c4 Name": "", "66bf6769f08c35734d4940c4 ShortName": "", "66bf6769f08c35734d4940c4 Description": "", + "66bf6885952b42739a5f2298 Name": "", + "66bf6885952b42739a5f2298 ShortName": "", + "66bf6885952b42739a5f2298 Description": "", "66bf68d0f08c35734d4940c6 Name": "", "66bf68d0f08c35734d4940c6 ShortName": "", "66bf68d0f08c35734d4940c6 Description": "", @@ -13769,6 +13778,9 @@ "6740987b89d5e1ddc603f4f0 Name": "Locked case", "6740987b89d5e1ddc603f4f0 ShortName": "Locked case", "6740987b89d5e1ddc603f4f0 Description": "The contents are unknown, but you'll need a key to open it.", + "67446fdd752be02c220f27b3 Name": "ShG-2 assault rocket", + "67446fdd752be02c220f27b3 ShortName": "ShG-2", + "67446fdd752be02c220f27b3 Description": "A 72.5mm thermobaric assault rocket for the RShG-2 rocket launcher.", "67449b6c89d5e1ddc603f504 Name": "Case key", "67449b6c89d5e1ddc603f504 ShortName": "Case key", "67449b6c89d5e1ddc603f504 Description": "A key suitable for opening most standard cases.", @@ -14597,6 +14609,9 @@ "676aa450fe1fc45172014df2 Name": "Twitch Winter 2025 case (Epic)", "676aa450fe1fc45172014df2 ShortName": "Twitch 2025", "676aa450fe1fc45172014df2 Description": "A case with some epic goodies.", + "676bf44c5539167c3603e869 Name": "RShG-2 72.5mm rocket launcher", + "676bf44c5539167c3603e869 ShortName": "RShG-2", + "676bf44c5539167c3603e869 Description": "A single-use 72.5mm rocket-propelled grenade launcher, designed to engage enemy personnel in open terrain, field shelters, and various types of structures. Manufactured by NPO Bazalt.", "678f84bb9e85556ca60f0362 Name": "Tagilla's welding mask \"ZABEY\"", "678f84bb9e85556ca60f0362 ShortName": "\"ZABEY\"", "678f84bb9e85556ca60f0362 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy?", @@ -14717,12 +14732,12 @@ "67a5f9a193f7b62b6b0f6576 Name": "Lower half-mask (Wraith)", "67a5f9a193f7b62b6b0f6576 ShortName": "Wraith", "67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.", - "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)", "67a5f9c8fafb8efd440694b8 ShortName": "Half-mask", - "67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", - "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas)", + "67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)", "67a5f9e7f7041a25760dda38 ShortName": "Half-mask", - "67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", + "67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", "67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)", "67a5fa01fafb8efd440694ba ShortName": "Half-mask", "67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.", @@ -14738,8 +14753,8 @@ "67a9cd28cade15e0f00123b6 Name": "Balaclava (Born to Die)", "67a9cd28cade15e0f00123b6 ShortName": "BTD", "67a9cd28cade15e0f00123b6 Description": "With the embroidery on this balaclava, everyone will know your creed.", - "67a9cd381fb22063280728a6 Name": "Balaclava (Not Today)", - "67a9cd381fb22063280728a6 ShortName": "Not Today", + "67a9cd381fb22063280728a6 Name": "Balaclava (Not Nice)", + "67a9cd381fb22063280728a6 ShortName": "Not Nice", "67a9cd381fb22063280728a6 Description": "A definitive woolen balaclava is not only a head-warmer but soul-warmer too for anyone who is too modest for public heroic deeds. The letterings add some flavor.", "67a9cd55c2a2d940930aec86 Name": "Balaclava (Yellow)", "67a9cd55c2a2d940930aec86 ShortName": "Yellow", @@ -14890,7 +14905,7 @@ "67ac886da6749cd1690ae1e1 Description": "T-shirt", "67ac88b55d717b44c00a0c9a Name": "SBEU Mosquito t-shirt", "67ac88b55d717b44c00a0c9a ShortName": "SBEU", - "67ac88b55d717b44c00a0c9a Description": "A T-shirt with a mosquito", + "67ac88b55d717b44c00a0c9a Description": "T-shirt", "67ac88ef2d470eee7a03a726 Name": "Fucker & Motherfucker t-shirt", "67ac88ef2d470eee7a03a726 ShortName": "", "67ac88ef2d470eee7a03a726 Description": "Merch t-shirt", @@ -14947,7 +14962,7 @@ "67af2d9c551084dbef0f3178 Description": "", "67af2ddb551084dbef0f317a Name": "Gladiator t-shirt", "67af2ddb551084dbef0f317a ShortName": "Gladiator", - "67af2ddb551084dbef0f317a Description": "A Gladiator T-shirt", + "67af2ddb551084dbef0f317a Description": "T-shirt", "67af41dd1eb308667602db4a Name": "Dundukk sport sunglasses (Orange lenses)", "67af41dd1eb308667602db4a ShortName": "Dundukk", "67af41dd1eb308667602db4a Description": "Modern sunglasses, made in a sporty style. Great for a stylish shootout at the gas station.", @@ -14978,6 +14993,9 @@ "67b32bf0d813e783fc0ddac1 Name": "USEC K4 (Timber Brown)", "67b32bf0d813e783fc0ddac1 ShortName": "", "67b32bf0d813e783fc0ddac1 Description": "Tactical pants", + "67b49e7335dec48e3e05e057 Name": "F-1 hand grenade (Reduced delay)", + "67b49e7335dec48e3e05e057 ShortName": "F-1", + "67b49e7335dec48e3e05e057 Description": "The F-1 hand grenade (GRAU Index 57-G-721) is an anti-personnel fragmentation grenade, designed for neutralizing enemy personnel in defensive combat. This version is personally modified by Partisan and has a shortened fuze, intended for explosive tripwires.", "67b70e43f753cf9f7a0a07a6 Name": "LATAM Drops Event 2025 case (Common)", "67b70e43f753cf9f7a0a07a6 ShortName": "Twitch", "67b70e43f753cf9f7a0a07a6 Description": "", @@ -14987,12 +15005,12 @@ "67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)", "67b72c64f753cf9f7a0a07aa ShortName": "Twitch", "67b72c64f753cf9f7a0a07aa Description": "", - "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)", "67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)", - "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", - "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (Battle Pass Season 0)", + "67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.", + "67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)", "67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)", - "67cad3226bf74131800752b7 Description": "A reward for progress in Battle Pass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", + "67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.", "67d3ed3271c17ff82e0a5b0b Name": "Key case", "67d3ed3271c17ff82e0a5b0b ShortName": "Keys", "67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.", @@ -15002,6 +15020,21 @@ "67ea616a74f765cefd009fb7 Name": "Tagilla's welding mask \"ZABEY\" (Replica)", "67ea616a74f765cefd009fb7 ShortName": "\"ZABEY\"", "67ea616a74f765cefd009fb7 Description": "Judging by this mask, the Labyrinth had severely affected Tagilla's mental state, making him even more unhinged and bloodthirsty. Who thought he could be any more crazy? It seems that this is merely a replica and cannot be worn. The mask was probably created as a souvenir, intended to remind survivors of their encounter with a ruthless killer.", + "67f3fd9bdb1fbd5add090f96 Name": "Recruiter's notes", + "67f3fd9bdb1fbd5add090f96 ShortName": "Notes", + "67f3fd9bdb1fbd5add090f96 Description": "The journal lists gathering points and routes for transporting people to Scav bases spread throughout the city. According to the instructions for recruiters, a large-scale mercenary recruitment campaign is being prepared in Tarkov.", + "67f90180f07898267b0a4ed7 Name": "Arena Cup Series balaclava", + "67f90180f07898267b0a4ed7 ShortName": "ACS", + "67f90180f07898267b0a4ed7 Description": "A signature balaclava of the famous Tarkov hip-hop artist with the Arena Cup Series tournament insignia. The artist hasn't performed in Tarkov for quite a while, but their merch has found a new life.", + "67f924a9154a04c33b0a3c57 Name": "Killa fangirl poster", + "67f924a9154a04c33b0a3c57 ShortName": "Rinaki", + "67f924a9154a04c33b0a3c57 Description": "This poster shows a Killa fangirl. Despite the scratches on the paper and folding marks, you can tell that the previous owner treasured this poster very much.", + "67f924adb45d94a2600a8cc8 Name": "Grenade girl poster", + "67f924adb45d94a2600a8cc8 ShortName": "Shoroh", + "67f924adb45d94a2600a8cc8 Description": "Women are not usually allowed to join BEAR or USEC. But even though the poster is damaged and the paper is sticky in places, it is obvious that this photo is authentic.", + "67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster", + "67f924b1b07831a6ef0ce317 ShortName": "Voroshka", + "67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.", " V-ex_light": "Askeri Üs V-Ex Çıkışı'na Giden Yol", " Voip/DisabledForOffline": "VoIP, çevrimdışı modda kullanılamaz", " kg": " kg", @@ -15064,12 +15097,14 @@ "APC/ConfirmDestroyModified": "Are you sure you want to remove the modified equipment?", "APC/CustomizationTab": "Özelleştirme", "APC/EnterName": "Enter name", + "APC/EnterName ": "Enter name", "APC/FastAccess": "Quick access", "APC/Locked": "Locked", "APC/PurchasedStatesAll": "Tümü", "APC/ReadyToUlock": "Unlockable", "APC/Unlocked": "Unlocked", "APC/ViewPreset": "Görüntüle", + "APC/ViewPreset ": "View", "APCBar/Defence": "{0}Defense{1}", "APCBar/Firepower": "{0}Firepower{1}", "APCBar/Metascore": "{0}Metascore{1}", @@ -15085,9 +15120,11 @@ "APCFilter/AssaultCarbine": "Assault carbines", "APCFilter/AssaultRifles": "Assault rifles", "APCFilter/AssaultScope": "Assault scopes", + "APCFilter/AssaultScope ": "Assault scopes", "APCFilter/Auxiliary": "Auxiliary parts", "APCFilter/Barrel": "Namlular", "APCFilter/Bipod": "Bipods", + "APCFilter/Camouflagepaint": "Camouflages", "APCFilter/Charge": "Charging handles", "APCFilter/Collimator": "Reflex sights", "APCFilter/CompactCollimator": "Compact reflex sights", @@ -15117,9 +15154,12 @@ "APCFilter/Melee": "Melee weapons", "APCFilter/Mount": "Mounts", "APCFilter/Muzzle": "Muzzle devices", + "APCFilter/Muzzle ": "Muzzle devices", "APCFilter/MuzzleCombo": "Muzzle adapters", + "APCFilter/MuzzleCombo ": "Muzzle adapters", "APCFilter/OpticScope": "Optics", "APCFilter/PistolGrip": "Pistol grips", + "APCFilter/PistolGrip ": "Pistol grips", "APCFilter/Pistols": "Tabancalar", "APCFilter/Receiver": "Dust covers, Receivers, Trigger groups", "APCFilter/SMGs": "Submachine guns", @@ -15149,6 +15189,9 @@ "ARENA/ARMORY/LEVELINGUP": "LEVELING", "ARENA/ARMORY/LINKS": "LINKS", "ARENA/MERCHANTS/NOEFTBUTTONTEXT": "Transfer to EFT is unavailable", + "ARENA/RANK/TOOLTIP/Any": "Any game mode: \"Ranked\" \"Unranked\"", + "ARENA/RANK/TOOLTIP/Ranked": "Game mode: \"Ranked\"", + "ARENA/RANK/TOOLTIP/Unranked": "Game mode: \"Unranked\"", "ARMOR CLASS": "KORUMA SEVİYESİ", "ARMOR POINTS": "ZIRH DAYANIKLILIĞI", "ARMOR TYPE": "ZIRH TÜRÜ", @@ -15260,6 +15303,8 @@ "Arena/Armory/ItemNotFoundErrorHeader": "Item not found", "Arena/Armory/LevelReward/readyToUlockState": "Hazır", "Arena/Armory/LevelReward/unlockedState": "Hazır", + "Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.", + "Arena/BattlePassSeason0/NonUnlockable": "Reward for progress in Arena BattlePass Season 0.", "Arena/BigCustomPurchaseInfo/Blocked": "Blocked", "Arena/BigCustomPurchaseInfo/NotEnoughMoney": "Not enough money", "Arena/BigCustomPurchaseInfo/Purchase": "Purchase", @@ -15268,6 +15313,25 @@ "Arena/BlastGang/ResultScreenOvertime": "Overtime", "Arena/BlastGang/ResultScreenRoundsProgress": "{0} of {1}", "Arena/BlastGang/ResultScreenSwapSides": "Switching sides", + "Arena/Chat/NoDialogsPlaceholder": "No chat history found. Send a message to start.", + "Arena/Context/AcceptFriendInvite": "ACCEPT FRIEND REQUEST", + "Arena/Context/AddToIgnore": "BLOCK", + "Arena/Context/CancelFriendInvite": "CANCEL FRIEND REQUEST", + "Arena/Context/CancelInviteSquad": "CANCEL SQUAD INVITE", + "Arena/Context/DeclineFriendInvite": "DECLINE FRIEND REQUEST", + "Arena/Context/FriendInvite": "FRIEND REQUEST", + "Arena/Context/FriendRemove": "REMOVE FROM FRIENDS", + "Arena/Context/InviteSquad": "INVITE TO SQUAD", + "Arena/Context/KickFromSquad": "KICK FROM SQUAD", + "Arena/Context/OpenDialogue": "OPEN CHAT", + "Arena/Context/OpenSquadChat": "OPEN SQUAD CHAT", + "Arena/Context/Pin": "PIN CONTACT", + "Arena/Context/RemoveFromIgnore": "UNBLOCK", + "Arena/Context/Reply": "Reply", + "Arena/Context/Report": "REPORT", + "Arena/Context/ReportNickname": "REPORT NICKNAME", + "Arena/Context/SetSquadLeader": "TRANSFER LEADER", + "Arena/Context/Unpin": "UNPIN CONTACT", "Arena/CustomGame/Lobby/cancel invite to friends": "Arkadaş davetini iptal et", "Arena/CustomGame/Lobby/cancel invite to group": "Grup davetini iptal et", "Arena/CustomGame/Lobby/invite to friends": "Arkadaş listesinden davet et", @@ -15279,6 +15343,7 @@ "Arena/CustomGame/popups/AttemptsCountLeft:": "Kalan deneme sayısı:", "Arena/CustomGames/Create/Maps": "Konumlar", "Arena/CustomGames/Create/Modes": "Oyun Modları", + "Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling", "Arena/CustomGames/Create/SubModes": "Alt Oyun Modları", "Arena/CustomGames/Create/TournamentMode": "Turnuva modu", "Arena/CustomGames/Create/TournamentSettings": "Turnuva ayarları", @@ -15292,9 +15357,11 @@ "Arena/CustomGames/Lobby/Take": "Al", "Arena/CustomGames/No servers found": "Açık sunucu bulunamadı", "Arena/CustomGames/Observers": "Seyirciler", + "Arena/CustomGames/Popup/ChangeTeamName": "CHANGE TEAM NAME", "Arena/CustomGames/Popup/Enter to server": "Sunucuya giriş yapılıyor", "Arena/CustomGames/Popup/RefreshDailyQuest {0}": "Operational task replacement / Ref", "Arena/CustomGames/Settings": "Ayarlar", + "Arena/CustomGames/Settings/default": "Default", "Arena/CustomGames/Settings/disable": "Devre dışı", "Arena/CustomGames/Settings/enable": "Etkin", "Arena/CustomGames/create/enter name": "İsim gir", @@ -15315,8 +15382,10 @@ "Arena/CustomGames/toggle/region": "Bölge", "Arena/CustomGames/toggle/room name": "Oda adı", "Arena/CustomGames/toggle/tournament": "Turnuva", + "Arena/DeputyPreset/NonUnlockable": "Items from Deputy preset. Could have been obtained in 2024.", "Arena/EndMatchNotification": "Bilgisayar başında değilken maç sona erdi", "Arena/EnterPresetName": "Ön ayar adını girin", + "Arena/FreeWeekend2024/NonUnlockable": "Could have been obtained during the free weekend of Winter 2024.", "Arena/MVP": "MVP", "Arena/MVP/DamageStatLabel": "Damage dealt to enemies", "Arena/MVP/DeactivatedBomb": "Deactivated the device", @@ -15377,9 +15446,17 @@ "Arena/Presets/Tooltips/Weapon": "Silah", "Arena/Rematching": "Öncelikli eşleştirmeye geri dönülüyor", "Arena/Rematching/NoServer": "Teknik nedenlerden dolayı sunucu bulunamadı. Oyun aramasına geri dönülüyor.", + "Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.", + "Arena/Settings/FullScreenWarning": "Switching to Fullscreen may affect performance.", + "Arena/Settings/FullScreenWarningApply": "Apply", + "Arena/Settings/FullScreenWarningCancel": "Cancel", + "Arena/SpecialRewardObjectGoplitMask1/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask2/NonUnlockable": "A unique reward for participating in special events or tournaments.", + "Arena/SpecialRewardObjectGoplitMask3/NonUnlockable": "A unique reward for participating in special events or tournaments.", "Arena/TeamColor/azure": "Gök Mavisi", "Arena/TeamColor/azure_plural": "Gök Mavisi", "Arena/TeamColor/blue": "Mavi", + "Arena/TeamColor/blue_colorless": "B", "Arena/TeamColor/blue_plural": "Mavi", "Arena/TeamColor/fuchsia": "Pembe", "Arena/TeamColor/fuchsia_plural": "Pembe", @@ -15387,6 +15464,7 @@ "Arena/TeamColor/green_plural": "Yeşil", "Arena/TeamColor/grey": "Grey", "Arena/TeamColor/red": "Kırmızı", + "Arena/TeamColor/red_colorless": "A", "Arena/TeamColor/red_plural": "Kırmızı", "Arena/TeamColor/white": "Beyaz", "Arena/TeamColor/white_plural": "Beyaz", @@ -15406,6 +15484,7 @@ "Arena/Tiers/UnlockedPresets": "Ön ayarların kilidi açıldı", "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", + "Arena/TwitchDrops/NonUnlockable": "Obtained as part of Twitch special events.", "Arena/UI/APCConditionsUncompleted": "Conditions are not met", "Arena/UI/APCItemBuyCaption": "Item unlock", "Arena/UI/APCItemBuyDescription": "Purchase the item?", @@ -15438,6 +15517,10 @@ "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Bekleniyor...", "Arena/Ui/ServerFounding": "Sunucu aranıyor...", + "Arena/Widgets/ team {0} capturing point": "{0} takım hedefi ele geçiriyor", + "Arena/Widgets/ team {0} won": "Team {0} won", + "Arena/Widgets/ {0} capturing point": "{0} are capturing the objective", + "Arena/Widgets/ {0} won": "{0} won", "Arena/Widgets/Event/activating object": "Planting the device", "Arena/Widgets/Event/can activate object": "Plant the device", "Arena/Widgets/Event/deactivate object": "Deactivate the device", @@ -15495,6 +15578,30 @@ "Arena/presets/footer/ready": "HAZIR", "ArenaArmoryItemReward/Description": "Unlocks item in Armory", "ArenaArmoryScreen/TutorialButton": "Tutorial", + "ArenaBattlePass/BattlePassItem/Bought": "Purchased", + "ArenaBattlePass/BuyButton/Buy": "Purchase for", + "ArenaBattlePass/BuyButton/Take": "Claim", + "ArenaBattlePass/ConfirmationPurchase/Description": "\"{1}\" is available only for the {2} faction. You can use it only after switching your faction. Confirm purchase?", + "ArenaBattlePass/ConfirmationPurchase/Title": "Purchase confirmation", + "ArenaBattlePass/CurrencyExchange": "Currency exchange", + "ArenaBattlePass/CurrencyExchange/Buy": "Purchase", + "ArenaBattlePass/CurrencyExchange/LimitsUpdatePeriod": "BP exchange is limited to {0} per day", + "ArenaBattlePass/CurrencyExchange/Timer": "Offer will update in", + "ArenaBattlePass/Inspector/RelatedTradingRule": "Will be available for purchase with Ref in Escape from Tarkov", + "ArenaBattlePass/LevelContainer": "Level", + "ArenaBattlePass/Notification/BoughtItem": "{0} acquired", + "ArenaBattlePass/NumberBattlePassItem": "Rewards earned", + "ArenaBattlePass/NumberDailyQuests": "Daily tasks", + "ArenaBattlePass/NumberWeeklyQuests": "Weekly tasks", + "ArenaBattlePass/RewardCurrency": "Next level reward:", + "ArenaBattlePass/Tutorial/Step1": "This is your BattlePass level. For each level gained, you earn Battle Points, the special BattlePass currency. To gain a level, you need to complete operational tasks and participate in Arena battles in any game mode.", + "ArenaBattlePass/Tutorial/Step2": "This is the special BattlePass currency - Battle Points, used to unlock rewards. You can earn the currency by leveling through your BattlePass and completing operational tasks.", + "ArenaBattlePass/Tutorial/Step3": "You can also earn Battle Points by exchanging Roubles and GP Coins. Exchange offers are updated once every 24 hours.", + "ArenaBattlePass/Tutorial/Step4": "To earn a reward, you need to have the corresponding BattlePass level and a certain number of Battle Points. Rewards may have additional unlock conditions. For example, unlocking several rewards from the previous page or completing several operational tasks.", + "ArenaBattlePass/Tutorial/Step5": "All BattlePass items, except for currency and crates, will remain with you after wipes. May fortune be with you on the sands of the Arena!", + "ArenaBattlePass/Tutorial/Title": "ARENA BATTLEPASS", + "ArenaBattlePass/Tutorial/Welcome": "Here you can track your BattlePass progress and earn new rewards.", + "ArenaBattlePass/Tutorial/Welcome/Next": "PROCEED", "ArenaIntoxication": "Güçlü Zehir", "ArenaMemberCategory/UniqueID": "Ryzhy Edition", "ArenaPostMatchScreen/DailyExpBonus {0}": "Günlük ilk galibiyet bonusu: {0}", @@ -15515,10 +15622,13 @@ "ArenaQuestReroll/NotHaveMoneyAndStanding": "Not enough standing and money to replace this task", "ArenaQuestReroll/NotHaveStanding": "Not enough standing to replace this task", "ArenaRaidInviteDescription": "{0} seni savaşa davet etti", + "ArenaSpawnProtection": "Spawn Protection", "ArenaTraderScreen/QuestTab/AnyGameMode": "Any mode", "ArenaTraderScreen/QuestTab/GameModesBlockTitle": "Game mode(s)", "ArenaTraderScreen/QuestTab/LocationsBlockTitle": "Konumlar", "ArenaTraderScreen/QuestTab/MultiplyGameModes": "Multiple game modes", + "ArenaTutorial/ActionAnyKey": "Press any key to continue", + "ArenaTutorial/ActionClick": "Click the highlighted area to continue", "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Oyundan erken ayrılmak istediğinizden emin misiniz?", "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "MAÇTAN AYRIL", @@ -15532,6 +15642,7 @@ "Arena_AutoService": "Chop Shop", "Arena_Bay5": "Bay 5", "Arena_Bowl": "Bowl", + "Arena_Prison": "Prison", "Arena_Yard": "Block", "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Sonuç", @@ -15580,6 +15691,8 @@ "Armor Zone SpineTop": "Upper back", "ArmorVest": "Çelik Yelek\n", "ArmoryCondition/ArenaArmoryProgression": "Reach weapon level {0} with:", + "ArmoryCondition/ArenaBattlePassProgressionLevel": "BattlePass level", + "ArmoryCondition/ArenaBattlePassUnlockedItems": "Items purchased on page {0}", "ArmoryCondition/ArenaRank": "Rütbe", "ArmoryCondition/CompletedDailyQuests": "Complete daily tasks:", "ArmoryCondition/CompletedWeeklyQuests": "Complete weekly tasks:", @@ -15665,6 +15778,7 @@ "Barterdescription": "Takas", "Battle category": "Savaş kategorisi", "BattleCategory": "Çatışma", + "BattlePassSeason0Event": "Prove Your Valor", "BearAksystems": "BEAR AK Sistemleri", "BearAssaultoperations": "BEAR Taarruz Operasyonları", "BearAuthority": "BEAR Yetkilisi", @@ -15812,6 +15926,27 @@ "CharismaInsuranceDiscount": "Sigorta hizmetleri fiyatlarını [{0:0%}] oranında düşürür", "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Scav çantası fiyatlarına indirim ekler", + "Chat/AcceptAllFriendsRequests": "ACCEPT ALL REQUESTS", + "Chat/Blocked": "You are blocked", + "Chat/BlockedByMe": "Player is blocked", + "Chat/GlobalSearch": "GLOBAL SEARCH", + "Chat/GlobalSearchPlaceholder": "Search by all players", + "Chat/GlobalSearchTooltip": "Global search", + "Chat/Incoming": "Incoming", + "Chat/LocalSearchPlaceholder": "Search by contacts", + "Chat/LocalSearchTooltip": "Search by friends", + "Chat/NoMatches": "NO MATCHES", + "Chat/Offline": "Offline", + "Chat/Online": "Online", + "Chat/Outcoming": "Outcoming", + "Chat/PMCDialoguesHeaderLabel": "Operatives", + "Chat/PMCFrequency": "PMC frequency", + "Chat/RemoveFriendConfirmWindowDescription": "Are you sure you want to remove this player from friend list?", + "Chat/ReplyToNickname": "Reply to", + "Chat/SearchInAllPlayers": "SEARCH BY ALL PLAYERS", + "Chat/SearchOnFriendList": "SEARCH BY FRIEND LIST", + "Chat/SpecialCommunications": "Special comms", + "Chat/Squad": "Squad", "ChatScreen/QuestItemsListHeader": "Aşağıdaki eşyalar görev eşyası deposuna taşınacak:", "ChatScreen/QuestItemsMoved": "Öğeler başarıyla görev deposuna taşındı", "Check your email": "Lütfen bu hesabın kaydı için kullandığınız e-posta adresini kontrol edin. Cihaz doğrulama kodunu 5 dakika içinde alacaksınız.", @@ -15847,6 +15982,7 @@ "ClothingItem/Unavailable": "Kullanım dışı", "ClothingPanel/Available_both_games": "Available both in EFT and Arena", "ClothingPanel/Available_only_arena": "Available only in Arena", + "ClothingPanel/BattlePass": "Unlocked through BattlePass", "ClothingPanel/ExternalObtain": "Available for purchase on the website", "ClothingPanel/InternalObtain": "Trader purchase conditions:", "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", @@ -15918,6 +16054,7 @@ "Conditional/ConditionLevel/Type": "Character level", "Conditional/ConditionQuest/Type": "Tasks:", "Conditional/ConditionSkill/Type": "Skills:", + "Confirmation {0:F1}": "Confirmation {0:F1}", "Connecting to server": "Sunucuya bağlanılıyor...", "Connection to server lost": "Sunucu bağlantısı kesildi", "Console": "Konsol", @@ -15999,6 +16136,7 @@ "Custom_scav_pmc": "Boiler Room Basement (Co-op)", "CustomizationDirectReward/Description": "You will unlock this style as a reward", "CustomizationNotExists": "Unavailable clothing in one or more presets", + "CustomizationOffer/ArenaBattlePass": "Available in EFT: Arena BattlePass Season {0}", "CustomizationOfferReward/Description": "Unlocks tactical clothing offer", "CustomizationReward/Description": "Unlocks tactical clothing", "Customizations/ObtainHeader": "Obtained:", @@ -16045,6 +16183,8 @@ "Daily/Stat/Total": "Tamamlanan toplam görevler", "Daily/Stat/VeryEasy": "Tamamlanan toplam çok kolay görevler", "Daily/Stat/VeryHard": "Tamamlanan toplam çok zor görevler", + "DailyQuestName/ArenaAction/AddScoresByPointCaptured": "Score points", + "DailyQuestName/ArenaAction/PointCaptured": "Capture the objective", "DailyQuestName/ArenaWinMatch": "Win a match", "DailyQuestName/ArenaWinRound": "Win a round", "DailyQuestName/Completion": "Bul ve transfer et", @@ -16067,6 +16207,7 @@ "DamageType_Flame": "Yanık hasarı", "DamageType_GrenadeFragment": "Parçalanma", "DamageType_HeavyBleeding": "Yoğun kanama", + "DamageType_HotGases": "Hot gases", "DamageType_Impact": "Çarpma hasarı", "DamageType_Landmine": "Mayın hasar", "DamageType_LightBleeding": "Hafif kanama", @@ -16075,6 +16216,7 @@ "DamageType_RadExposure": "Radyoaktife maruz kalma", "DamageType_Sniper": "Keskin nişancı hasarı", "DamageType_Stimulator": "Stimulatörün yan etkisi", + "DamageType_ThermobaricExplosion": "Thermobaric explosion", "DamageType_Undefined": "Önceki hasar", "Day": "Gün", "DeactivateObject": "Deactivate the device", @@ -16413,6 +16555,7 @@ "ETraderServiceType/BtrBotCover": "Cover fire", "ETraderServiceType/BtrItemsDelivery": "Move items to stash", "ETraderServiceType/PlayerTaxi": "Take a ride", + "EWeaponQuality/Low": "low", "EWishlistGroup/Equipment": "Equipment", "EWishlistGroup/Hideout": "Hideout", "EWishlistGroup/Other": "Other", @@ -16534,6 +16677,7 @@ "Errors/Cannot resize 0 1": "{0} üzerine {1} eklenemiyor. Modifiye edilmiş silah şimdikinden daha fazla yer kaplayacaktır. Zulanızda silahın bulunduğu konumu değiştirmeyi deneyin.", "Escape": "Geri", "Escape from Tarkov": "ESCAPE FROM TARKOV", + "EweaponQuality/High": "high", "ExamineWeapon": "Geçerli silahı incele", "Excellent standing": "mükemmel", "ExceptionItem": "Seçilen tüccar bu tür eşyaları onaramaz", @@ -16627,6 +16771,7 @@ "FoundInRaid": "Baskında bulundu", "Free cam": "Serbest kamera", "FreeChangeQuest": "Free of charge", + "FreeWeekend": "Free Weekend", "Freetrading": "Serbest Ticaret", "Freetradingdescription": "Serbest ticaret", "Friend invite to {0} was sent succesfully": "{0} tarafına arkadaşlık isteği başarıyla gönderildi!", @@ -16781,6 +16926,8 @@ "Hideout/CircleOfCultists": "Cultist Circle", "Hideout/CircleOfCultists/MaxItemsCount": "Max items: {0}", "Hideout/CircleOfCultists/TheGiftCantBeBestowed": "Cultists can't bestow their Gift while you're in the Hideout.", + "Hideout/Craft/CantBuyFIRItems": "Cannot buy Found in Raid items", + "Hideout/Craft/HaveAllCraftItems": "You have all the required items", "Hideout/Craft/ToolMarkerTooltip": "Bu öğe yardımcı bir araç olarak kullanılacaktır. Üretim tamamlandıktan sonra zulanıza geri dönecektir.", "Hideout/Customization/Ceiling/TabName": "Ceiling", "Hideout/Customization/Ceiling/WindowHeader": "Select the ceiling for installation", @@ -17451,6 +17598,7 @@ "NY_FINAL_DESC": "Final Generator", "Nakatani_stairs_free_exit": "Nakatani Bodrum Merdiveni", "Nape": "Ense", + "NeedIdle": "Can't perform action while moving", "NeededSearch": "GEREKLİ ARAMA", "NetworkError/SessionLostErrorMessage": "Oturum kayboldu. Tekrar giriş yapmak gerekiyor", "NetworkError/TooManyFriendRequestsHeader": "Çok fazla istek var", @@ -17620,6 +17768,7 @@ "PVE settings": "PVE ayarları", "Pain": "Ağrı", "Painkiller": "Ağrı kesici etkisinde", + "Painting violations type {0} for camouflage paints {1}": "Cannot paint with {1} camouflage: {0}.", "PanicEffect": "Tüyler ürpertici korku", "PaperGesture": "Paper", "Paramedic": "Sıhhiye çavuşu", @@ -17764,6 +17913,8 @@ "Quest/Change/Price": "Değiştirme fiyatı:", "Quest/Change/TimeLeft": "Görevi bitirmek için kalan süre:", "Quest/Change/Tooltip": "Operasyonel görev değiştirme maliyeti:", + "QuestCondition/ArenaAction/AddScoresByPointCaptured": "Contribute to win score{timer}{counter}{playerPreset}{resetOnSessionEnd}", + "QuestCondition/ArenaAction/PointCaptured": "Capture the objective{timer}{counter}{playerPreset}{resetOnSessionEnd}", "QuestCondition/ArenaDeathCount/Equal{0}": " dying {0} time(s)", "QuestCondition/ArenaDeathCount/LessOrEqual{0}": " dying less than {0} time(s)", "QuestCondition/ArenaDeathCount/More{0}": " dying more than {0} time(s)", @@ -17801,6 +17952,10 @@ "QuestCondition/ArenaWinMatch": "{matchPlace}{resetOnConditionFailed{0}}{roundCount}{playerInTeamPlace}{roundResult}{playerPreset}{deathCount}", "QuestCondition/ArenaWinRound": "{roundPlace}{resetOnConditionFailed{0}}{resetOnSessionEnd}{roundResult}{playerAction}{playerPreset}{deathCount}", "QuestCondition/Category": "Bir baskında bu kategorideki eşyaları bul: {0}", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/Equal{0}": " while holding {0} objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Match/NowPointCaptured/MoreOrEqual{0}": " while holding {0} or more objectives at the end of the match", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/Equal{0}": " while having {0} objective(s) captured", + "QuestCondition/Counter/PlayerTeam/Spawn/NowPointCaptured/MoreOrEqual{0}": " while having {0} or more objectives captured", "QuestCondition/Elimination": "Eliminate{kill}{zone}{enemyPreset}{playerPreset}{resetOnSessionEnd}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", "QuestCondition/Elimination/Kill/BodyPart": " {0} bölgesinden vuruş ile", @@ -17840,6 +17995,10 @@ "QuestCondition/Inventory": "Baskında {0} kategorisindeki eşyaları çıkart", "QuestCondition/Many{0}{1}": "{0} {1} time(s)", "QuestCondition/PickUp": "{equipment}", + "QuestCondition/PlayerCurrentAction/Enemy/PointCapturing": " who are capturing the objective", + "QuestCondition/PlayerCurrentAction/Enemy/StandOnPoint": " who are staying on the objective", + "QuestCondition/PlayerCurrentAction/Player/PointCapturing": " while capturing the objective", + "QuestCondition/PlayerCurrentAction/Player/StandOnPoint": " while staying on the objective", "QuestCondition/Preset": "{presetid}{presettype}", "QuestCondition/Preset/632f7afadcb4c7c2c209ba8f": "Enforcer", "QuestCondition/Preset/632f8229f6541cacd808452c": "Assault", @@ -17857,6 +18016,9 @@ "QuestCondition/SurviveOnLocation/Any": "herhangi bir bölge", "QuestCondition/SurviveOnLocation/ExitName": "\"{0}\" aracılığıyla çıkış yapılıyor", "QuestCondition/SurviveOnLocation/Location": "bölge", + "QuestCondition/Timer/EndMatch/MoreOrEqual{0}": " before timer hits {0} until the end of the match", + "QuestCondition/Timer/Minute{0}": "{0} minute(s)", + "QuestCondition/Timer/Second{0}": "{0} seconds", "QuestConditionVariable/EBodyPart/head": "kafa", "QuestCount/Transfered": "transferred", "QuestCount/Transferred": "Eliminated:", @@ -18299,6 +18461,7 @@ "Settings/Sound/OverallVolume": "Genel ses:", "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Kullanılamaz", + "Settings/graphics/weaponQuality": "Weapon texture quality", "SevereMusclePain": "Şiddetli kas ağrısı", "Shack": "Askeri Üs KN", "Shadow visibility:": "Gölge görünürlüğü:", @@ -18570,6 +18733,7 @@ "TYPES OF FIRE": "ATIŞ TİPİ", "Tactical": "Taktik cihazı ayarla", "Tactical clothing": "Taktiksel giyim", + "TacticalClothing": "Tactical clothing", "TacticalInteractionMode/Hold": "Hold", "TacticalInteractionMode/Press": "Press", "TacticalVest": "Hücum Yeleği", @@ -18582,6 +18746,7 @@ "Task": "Görev", "Taskbar/Unavailable": "Unavailable", "Taskperformance": "Görev Performansı", + "TeamDeathMatchDescription": "Classic team deathmatch game mode. The objective is to capture and hold the checkpoints to gain the victory points.", "TeamFight": "Takım Savaşı", "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Takım ölüm maçı", @@ -18727,6 +18892,18 @@ "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Çökmüş Vinç", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Ayrıl", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hikayeyi kapat", @@ -18765,6 +18942,7 @@ "Transit/AccessNotGranted": "Access denied", "Transit/InactivePoint": "Transit unavailable", "Transit/Interaction": "Etkileşim", + "Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition", "Transition in ": "Transition in ", "Transition in {0:F1}": "Transition in {0:F1}", "Tremor": "Titreme", @@ -18952,6 +19130,8 @@ "UI/Quest/Reward/AdditionalStashRowsCaption": "Zuladaki envanter slot hatları", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Yeni envanter slot hatlarının eklenmesiyle zulanız genişleyecektir. Bu değişiklikler daha sonra uygulanacaktır (ayrıntılar için web sitemizi kontrol edin).", "UI/Quest/Reward/AssortmentUnlockCaption": "Unlocks assortment at {0} Loyalty Level {1}", + "UI/Quest/Reward/BattlePassCurrency": "Battle Points", + "UI/Quest/Reward/BattlePassExperience": "BattlePass experience", "UI/Quest/Reward/CustomizationOfferCaption": "Tactical clothing", "UI/Quest/Reward/ItemCaption": "Item", "UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}", @@ -18977,10 +19157,12 @@ "UI/Settings/NVidiaReflexMode/Off": "kapalı", "UI/Settings/NVidiaReflexMode/On": "açık", "UI/Settings/NVidiaReflexMode/OnAndBoost": "açık ve güçlendirilmiş", + "UI/Settings/NotAvailableInRaid": "Not available in raid", "UI/Settings/NotificationType/Default": "Varsayılan", "UI/Settings/NotificationType/WebSocket": "Web socket", "UI/Settings/OtherActions": "Diğer Eylemler", "UI/Settings/Rest": "Diğer", + "UI/Settings/Voice/ArenaManagerVoice": "Announcer language:", "UI/Settings/WishlistNotify": "Wishlist item notifications", "UI/Skills/Charisma/CharismaDiscount": "Karizma beceri indirimi", "UI/Standing:": "Tüccar ayakta:", @@ -19050,6 +19232,7 @@ "UnknownErrorHeader": "Bilinmeyen Hata", "UnknownErrorMessage": "Bilinmeyen bir hata meydana geldi. Oyunu kapatıp hatayı bildirin.", "UnknownToxin": "Bilinmeyen toksin", + "UnlimitedOvertime": "unlimited", "UnloadAmmo": "CEPHANEYİ BOŞALT", "Unloadmagazine": "Şarjörü çıkar", "Unlock": "Kilidi Aç", @@ -19176,6 +19359,7 @@ "WeaponModdingDescription": "Basit silah modlaması yeteneği, ergonomiyi artırır ve susturucuların aşınma hızını azaltır.", "WeaponMounting": "Mount weapon", "WeaponPunch": "Dipçik darbesi", + "WeaponQuality/High": "High", "WeaponRecoilBuff": "Silah geri tepmesini [{0:0%}] azaltır", "WeaponReloadBuff": "Yeniden yükleme hızını [{0:0%}] artırır", "WeaponStiffHands": "Silah ergonomisini [{0:0%}] artırır", @@ -19249,6 +19433,7 @@ "You can't use flea market right now": "Bit pazarını şuanda kullanamazsınız", "You can't use ragfair now": "Bit pazarını şuanda kullanamazsınız", "You can't use that symbol": "Bu karakteri kullanamazsın", + "You cannot modify quality in raid.": "You cannot modify graphics quality in raid.", "You cannot modify texture quality in raid.": "Baskın sırasında Doku Kalitesini değiştiremezsiniz.", "You cannot take off a dogtag from a friend or group member": "Arkadaşından veya takım üyesinden künye toplayamazsın", "You don't have some items to finish the deal": "Anlaşmayı tamamlamak için bazı eşyalar sende mevcut değil", @@ -19290,6 +19475,7 @@ "arena/AssistShort": "A", "arena/CapturePointScores": "Score", "arena/CapturePointScoresОчкиArena/Widgets/capture point hold": "Capture and hold the objectives", + "arena/CapturePointsCount": "CAPTURES", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", @@ -19452,19 +19638,35 @@ "arena/contextInteractions/card/delete": "Delete", "arena/contextInteractions/card/edit": "Edit", "arena/contextInteractions/card/inspect default preset": "İncele", + "arena/contextInteractions/card/try": "TRY OUT", + "arena/customGames/bestofvalueteam": "Win streak:", + "arena/customGames/create/additionalSettings": "ADDITIONAL", + "arena/customGames/create/availablePresets": "Available presets:", + "arena/customGames/create/bestof": "Best of ...", "arena/customGames/create/gameModeBlastGang": "GAME MODE (BLASTGANG)", "arena/customGames/create/gameModeCheckPoint": "Game mode (CheckPoint)", + "arena/customGames/create/gameModeTeamFight": "GAME MODE (TEAMFIGHT)", + "arena/customGames/create/killCamera": "Kill Camera:", "arena/customGames/create/overtime": "Overtime", + "arena/customGames/create/presetsOptions": "PRESETS", + "arena/customGames/create/roundWinCount": "Match win round count:", "arena/customGames/create/samePresets": "Duplicate presets:", + "arena/customGames/create/setAvailablePresets": "Set available presets:", + "arena/customGames/create/setBestof": "Best of ...", + "arena/customGames/create/setKillCamera": "Kill Camera", "arena/customGames/create/setMatchDuration": "Match duration:", "arena/customGames/create/setOvertime": "Set overtime", + "arena/customGames/create/setRoundWinCount": "Set match win round count:", "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/create/setScoresToWinCount": "Points to win:", + "arena/customGames/create/setSkillLvl": "Set player skills level:", + "arena/customGames/create/skillLvl": "Player skills level:", "arena/customGames/invite/message{0}": "ÖZEL OYUN DAVETİ {0}", "arena/customGames/notify/GameRemoved": "Oda dağıtıldı", "arena/customgames/errors/notification/gamealreadystarted": "Oyun zaten başlamış", "arena/customgames/popup/refreshdailyquest": "Replace operational task?", "arena/customgames/popups/attemptscountleft:": "Deneme kaldı:", + "arena/info/BattlePoints": "BP", "arena/info/GLP Left": "KALAN ARP", "arena/info/GP": "GP", "arena/info/KD Ratio": "K/D", @@ -19487,6 +19689,7 @@ "arena/matching/SelectArenaMap": "ARENA SEÇ", "arena/matching/SelectGametype": "OYUN TÜRÜNÜ SEÇİN", "arena/matching/SelectRankedGamemode": "DERECELİ OYUN MODUNU SEÇİN", + "arena/matching/SelectUnrankedGamemode": "SELECT UNRANKED GAME MODE", "arena/matching/Type": "TİP", "arena/matching/UnavailableReason": "Kullanılamaz", "arena/matching/buyPreset": "ÖN AYAR SATIN AL", @@ -19563,12 +19766,14 @@ "arena/presets/unlocked slots count": "slots unlocked:", "arena/questLogTemplate/gameModes": "Game mode(s)", "arena/questLogTemplate/maps": "Location(s)", + "arena/quests/notification/finished": "Task complete!", "arena/resultContent/matchMVPExpTitle": "Match MVP bonus", "arena/resultContent/matchMVPMoneyTitle": "Match MVP bonus", "arena/resultContent/roundMVPExpTitle": "Round MVP bonus", "arena/resultContent/roundMVPMoneyTitle": "Round MVP bonus", "arena/selection/gameMode": "game mode", "arena/selection/tiers": "tier", + "arena/shootingrange": "SHOOTING RANGE", "arena/tab/ASSAULT": "TAARRUZ", "arena/tab/COLLECTION": "KOLEKSİYON", "arena/tab/FAVORITES": "FAVORİLER", @@ -19576,6 +19781,7 @@ "arena/tab/RATING": "SIRALAMA", "arena/tab/SCOUT": "GÖZCÜ", "arena/tab/SQB": "ENFORCER", + "arena/tooltip/BattlePoints": "Battle Points are used to purchase rewards in the BattlePass. They can be obtained as rewards for daily and weekly operational tasks, exchanged for Roubles and GP coins, or earned through leveling the BattlePass.", "arena/tooltip/GP": "GP Coin. Used to unlock equipment for presets and to purchase gear in EFT. Earned for completing operational tasks in Arena.", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Ön ayar", @@ -19595,6 +19801,17 @@ "arena/tooltip/winRate": "Sıralamalı ve sıralamasız maçlardaki tüm galibiyet ve yenilgilerden hesaplanan genel galibiyet oranınız.", "arena/widget/ally_capture_point": "Allies captured point", "arena/widget/enemy_capture_point": "Enemies captured point", + "arena/widgets/activate object": "Plant the device", + "arena/widgets/defend object": "Defend the device", + "arena/widgets/event/activating object": "Planting the device", + "arena/widgets/event/can activate object": "Plant the device", + "arena/widgets/event/defend object": "Defend the device", + "arenaarmoryconditioncounter/676bd52b43079daa000cf4fa": "Complete daily tasks:", + "arenaarmoryconditioncounter/676bd538de156756bd0e937d": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67a0e4a4529b5cfb9000577c": "Complete daily tasks:", + "arenaarmoryconditioncounter/67a0e4b2e85d5ea5f20bb35c": "Complete weekly tasks:", + "arenaarmoryconditioncounter/67c04056d9500f30cb0c4624": "Complete daily tasks:", + "arenaarmoryconditioncounter/67c0406354d859aa1d077c56": "Complete weekly tasks:", "arenaui/presetview/lockedpreset": "Ön ayar kullanılamıyor", "arm broke": "Kolunu kırdın", "assaultKills": "Taarruz tüfeğiyle öldürme", @@ -19643,6 +19860,29 @@ "camora_003": "Hazne 4", "camora_004": "Hazne 5", "camora_005": "Hazne 6", + "camouflage/buttons/to painting": "Paint", + "camouflage/component/infinity": "Infinite", + "camouflage/different paint case exception": "Paints from special camouflage kits are incompatible with regular paints.", + "camouflage/info/base camouflage": "Base", + "camouflage/notification/camouflage paint {0} not available for mod {1}": "{0} camo paint is not available for the attachment {1}.", + "camouflage/notification/camouflage paint {0} not available for weapon {1}": "{0} camo paint is not available for the weapon {1}.", + "camouflage/notification/message/NoPaintInInventory": "paint not unlocked in Armory", + "camouflage/notification/message/NotAvailablePaint": "components cannot be painted", + "camouflage/notification/message/NotEnoughPaint": "not enough paint", + "camouflage/notification/message/Unknown paint {0}": "unknown paint", + "camouflage/notification/not available slots for quick painting": "No available slots for quick painting", + "camouflage/paint case exception": "Paints from special camouflage kits are incompatible with other special paints.", + "camouflage/quickPanel/not selected camouflage": "NO CAMO SELECTED", + "camouflage/quickPanel/paint details": "Paint details", + "camouflage/quickPanel/painting all": "Paint all", + "camouflage/quickPanel/remain": "Remaining:", + "camouflage/quickPanel/resource requirement": "Resource required:", + "camouflage/quickPanel/summary resource at build": "Total resource in build", + "camouflage/tooltip/limit exceeded": "Camouflage limit exceeded. To add another camouflage paint, remove one of the applied camouflage paints from all attachments.", + "camouflage/tooltip/only painting available": "The only available customization for this item is painting.", + "camouflage/tooltip/weapon painting available": "Ability to paint weapons and attachments,\napplying camouflage either individually or on the whole weapon.\nUp to 3 camouflage paints per one build.\nWhen applying paint to the whole weapon, the magazine will not be painted.", + "camouflage/tooltip/weapon painting header": "Weapon painting", + "camouflage/tooltip/weapon painting not available": "This weapon is not available for painting.", "canceled friend request": "Oyuncu {0} arkadaşlık isteğini iptal etti", "cancelfriendrequest": "Arkadaşlık isteğini iptal et", "captcha/too frequent attempts": "Çok sık deneme. Bit pazarına ve tüccarlara erişim şu anda mevcut değil. Daha sonra tekrar deneyin.", @@ -20068,6 +20308,7 @@ "lab_Under_Storage_Collector": "Kanalizasyon borusu", "lab_Vent": "Havalandırma şaftı", "labir_exit": "The Way Up", + "laboratory": "Laboratuvar", "labyrinth_secret_tagilla_key": "Ariadne's Path", "lastSession": "Son oturum", "leader": "Lider", @@ -20358,6 +20599,7 @@ "un-sec": "Kuzey BM barikatı", "undefined": "", "uninstall": "KALDIR", + "unlock requires:": "kilidini gerektirir:", "unlockedSafes": "Açılan kasalar", "unpack": "paketten çıkarmak", "usecKills": "Öldürülen USEC'ler", @@ -20716,7 +20958,9 @@ "676bc75c4859905179061aff 0": "Prestige rewards", "6776e324810eb26b880fb4a5 0": "They say tools are in short supply these days, even OLI can't save the day. Good thing I ordered those tape measures in bulk back then. Here, take this — I’ll help you out now, and we’ll settle up later, one way or another.", "678e601d80e518e4d4025a14 0": "I see you're supporting the mercs recording their experience in Tarkov, warrior. Commendable! Here's a little something for you from the guys, consider it an appreciation package. What, something wrong? These are the highest quality paints we could find. At least it'll help you clean up your bunker or whatever man cave you're hiding in. Go on, go make some happy little accidents.", - "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the \"Balancing, Part 1\" task before patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "67f91739ee3ea2aa290f365d 0": "You have received a 3-day trial version of the game Escape from Tarkov: Arena after successfully completing the task Balancing - Part 1 task before Patch 16.5.5. \n\nThe game is already activated on your account. \n\nYou may need to restart the BattleState Games Launcher.", + "680a1df210f5a7a4720be7d5 0": "Spring sale is upon us! The special offer for a 20% discount applies to all types of editions and upgrades Escape from Tarkov. Don’t miss a chance to upgrade your edition now!", + "680a2f9487ba4059ed0532b6 0": "Spring sale is upon us! Limited time offer for a 20% discount available on our website. Don’t miss a chance to purchase The Unheard Edition now!", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", "5fc615710b735e7b024c76ed Name": "Boss sanitar", @@ -20782,6 +21026,12 @@ "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began. The area has yet again become a hot zone since the early days of the conflict.", + "662b728d328cb632bd0c6caf Name": "SkyBridge", + "662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.", + "6690e7e7dc976e4c780336b1 Name": "Fort", + "6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights", + "66ba059e89f905cb2208bd58 Name": "", + "66ba059e89f905cb2208bd58 Description": "", "6733700029c367a3d40b02af Name": "The Labyrinth", "6733700029c367a3d40b02af Description": "A facility of one of TerraGroup's contractors, Knossos LLC. According to public sources, they build amusement and theme parks. However, this place looks more like a heavily fortified bunker than a new theme park.", "5464e0404bdc2d2a708b4567 Name": "Birleşmiş Güvenlik", @@ -21132,6 +21382,7 @@ "639bc71cad9d7e3216668fb4": "", "639bc824f5765f47cc7f0e7b": "", "642a9912889663f8fd0f4ce5": "", + "6467091468662dbe55032ebf": "", "64772d12ac21bb41ed1fc8e7": "", "64772f64a791a06f316e06e9": "", "649b17088e4e24533878bd07": "", @@ -21558,6 +21809,8 @@ "67861fd9941d06578a0ea8fe": "", "6786206c27f04d22000ebdde": "", "6786210427f04d22000ebdf7": "", + "679b63f7db03cf47450ea349": "", + "67a328326e3613a197068d05": "", "67a4705dff08b5b478075453": "", "67a4707171519b8a49015cae": "", "67a4709c9e31e9e3f60f751a": "", @@ -21591,6 +21844,12 @@ "67a9fd84ab1557d7070a32ed": "", "67aa001f510a89c2ed024003": "", "67aa00e8b725f94eb603cdfe": "", + "67c0f084ed9b54332c0c7a51": "", + "67c0f1025c7db4d10a09a4ac": "", + "67c0f14c74902341390d23dd": "", + "67c0f1aba83a5ddcb703e22d": "", + "67c0f225be5f821f27069f57": "", + "67c0f27bbe5f821f27069f6d": "", "67c86f58179c494df00eedf6": "", "67c86fc392716de04e03a1b6": "", "67c87094d05729369306ce76": "", @@ -22646,9 +22905,9 @@ "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", "5ae9bb6986f77415a869b40b": "0-50% dayanıklılığa sahip 6B43 6A Zabralo-SH vücud zırhı edin", - "5ae9bc6e86f7746e0026222c": "Zırhı teslim et", + "5ae9bc6e86f7746e0026222c": "Hand over the 6B43 assault armor in 0-75% durability", "5ae9be7f86f7746c6337153d": "50-100% dayanıklılığa sahip 6B43 6A Zabralo-Sh edin", - "5ae9bea886f77468ab400e64": "Zırhı teslim et", + "5ae9bea886f77468ab400e64": "Hand over the 6B43 assault armor in 75-100% durability", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -26467,6 +26726,49 @@ "662bcb9694ad0943f91dfd36 acceptPlayerMessage": "", "662bcb9694ad0943f91dfd36 declinePlayerMessage": "", "662bcb9694ad0943f91dfd36 completePlayerMessage": "", + "664204df09d70892b00cc452 name": "", + "664204df09d70892b00cc452 description": "", + "664204df09d70892b00cc452 failMessageText": "", + "664204df09d70892b00cc452 successMessageText": "", + "664204df09d70892b00cc452 acceptPlayerMessage": "", + "664204df09d70892b00cc452 declinePlayerMessage": "", + "664204df09d70892b00cc452 completePlayerMessage": "", + "664204f638023d29720e7660 name": "", + "664204f638023d29720e7660 description": "", + "664204f638023d29720e7660 failMessageText": "", + "664204f638023d29720e7660 successMessageText": "", + "664204f638023d29720e7660 acceptPlayerMessage": "", + "664204f638023d29720e7660 declinePlayerMessage": "", + "664204f638023d29720e7660 completePlayerMessage": "", + "664204ffc34e1fb1810b45f7 name": "", + "664204ffc34e1fb1810b45f7 description": "", + "664204ffc34e1fb1810b45f7 failMessageText": "", + "664204ffc34e1fb1810b45f7 successMessageText": "", + "664204ffc34e1fb1810b45f7 acceptPlayerMessage": "", + "664204ffc34e1fb1810b45f7 declinePlayerMessage": "", + "664204ffc34e1fb1810b45f7 completePlayerMessage": "", + "664ca9f577af670dad0ad339 name": "Operasyon Aquarius - Bölüm 2", + "664ca9f577af670dad0ad339 description": "Seni tekrardan gördüğüme sevindim. Adamlarım bu temiz suyla ilgili illegal operasyonların arkasında kimlerin olduğunu belirlediler. Tabi ki senin istihbaratın sayesinde. Gümrük bölgesinde faal olan Scav çetesi. Böyle bir istekte bulunduğum için huzursuzum fakat ortada hayatlar söz konusu ve bu alçaklar kirli işlerini sürdürüyorlar. Bunları düzgün bir şekilde rahatsız etmemiz lazım. Sanırım daha fazla bunun ne anlama geldiğini açıklamam gerekmiyor. Var mısın?", + "664ca9f577af670dad0ad339 failMessageText": "", + "664ca9f577af670dad0ad339 successMessageText": "Bugün canlar almana rağmen kendinle gurur duymalısın. Bu aldığın canlar insanoğlunun temiz örnekleri değildi, böylelikle bir çok sivile yaşama şansı vermiş oldun.", + "664ca9f577af670dad0ad33d": "Gümrük bölgesinde scavleri öldür", + "664ca9f577af670dad0ad339 acceptPlayerMessage": "", + "664ca9f577af670dad0ad339 declinePlayerMessage": "", + "664ca9f577af670dad0ad339 completePlayerMessage": "", + "6650b271b456806d1a0a87bc name": "", + "6650b271b456806d1a0a87bc description": "", + "6650b271b456806d1a0a87bc failMessageText": "", + "6650b271b456806d1a0a87bc successMessageText": "", + "6650b271b456806d1a0a87bc acceptPlayerMessage": "", + "6650b271b456806d1a0a87bc declinePlayerMessage": "", + "6650b271b456806d1a0a87bc completePlayerMessage": "", + "6651d6f4706b6b20d0055d56 name": "", + "6651d6f4706b6b20d0055d56 description": "", + "6651d6f4706b6b20d0055d56 failMessageText": "", + "6651d6f4706b6b20d0055d56 successMessageText": "", + "6651d6f4706b6b20d0055d56 acceptPlayerMessage": "", + "6651d6f4706b6b20d0055d56 declinePlayerMessage": "", + "6651d6f4706b6b20d0055d56 completePlayerMessage": "", "66588c0c98194a5d26010197 name": "Acele", "66588c0c98194a5d26010197 description": "Hello mercenary! Heard what happened at the Lighthouse? My sources tell me the local crime lords have had a big dispute with the Rogues, and they're looking all over the city and the outskirts for them. The task is to help these Rogues. Because disturbing the peace and order on my watch is forbidden. Understood?", "66588c0c98194a5d26010197 failMessageText": "", @@ -26502,6 +26804,13 @@ "6658a15615cbb1b2c6014d5b acceptPlayerMessage": "", "6658a15615cbb1b2c6014d5b declinePlayerMessage": "", "6658a15615cbb1b2c6014d5b completePlayerMessage": "", + "6659a9716b1be75165030e4e name": "Operasyon Aquarius - Bölüm 2", + "6659a9716b1be75165030e4e description": "Seni tekrardan gördüğüme sevindim. Adamlarım bu temiz suyla ilgili illegal operasyonların arkasında kimlerin olduğunu belirlediler. Tabi ki senin istihbaratın sayesinde. Gümrük bölgesinde faal olan Scav çetesi. Böyle bir istekte bulunduğum için huzursuzum fakat ortada hayatlar söz konusu ve bu alçaklar kirli işlerini sürdürüyorlar. Bunları düzgün bir şekilde rahatsız etmemiz lazım. Sanırım daha fazla bunun ne anlama geldiğini açıklamam gerekmiyor. Var mısın?", + "6659a9716b1be75165030e4e failMessageText": "", + "6659a9716b1be75165030e4e successMessageText": "Bugün canlar almana rağmen kendinle gurur duymalısın. Bu aldığın canlar insanoğlunun temiz örnekleri değildi, böylelikle bir çok sivile yaşama şansı vermiş oldun.", + "6659a9716b1be75165030e4e acceptPlayerMessage": "", + "6659a9716b1be75165030e4e declinePlayerMessage": "", + "6659a9716b1be75165030e4e completePlayerMessage": "", "665eeacf5d86b6c8aa03c79b name": "Thirsty - Hounds", "665eeacf5d86b6c8aa03c79b description": "We need to talk. Sanitar's goons have been prowling the shore area at nights. Obviously looking for something. Can't let it go unchecked. Scare them off while I try to find out what they're up to.", "665eeacf5d86b6c8aa03c79b failMessageText": "", @@ -27651,6 +27960,17 @@ "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage": "", "6740b60c60a98cad1b0e0aa0 declinePlayerMessage": "", "6740b60c60a98cad1b0e0aa0 completePlayerMessage": "", + "674447ae2f29dd504b08ba48 name": "Christmas Time - Part 1", + "674447ae2f29dd504b08ba48 description": "Christmas is upon us, so let's lift the mood. I told my guys to decorate some of the arenas. The crowd's gonna love it. Go see for yourself.", + "674447ae2f29dd504b08ba48 failMessageText": "", + "674447ae2f29dd504b08ba48 successMessageText": "Did you like it? Of course you did!", + "6744486948b346cd86161c99": "Play a match in any game mode on Bay 5", + "674d88f049fc3122ec66b214": "Play a match in any game mode on Fort", + "674d89c50978c569977de137": "Play a match in any game on Block", + "67674c856a639c8ce4aeed8a": "Play a match in any game on Chop Shop", + "674447ae2f29dd504b08ba48 acceptPlayerMessage": "", + "674447ae2f29dd504b08ba48 declinePlayerMessage": "", + "674447ae2f29dd504b08ba48 completePlayerMessage": "", "674492b6909d2013670a347a name": "Ask for Directions", "674492b6909d2013670a347a description": "So Ragman's looking for new routes, you say? I'm thinking about that myself right now, since Skier won't let me go so easily. But there is one option that Ragman could use. I won't pass on my BTR through there, but when I was a puny pedestrian, I used to sneak around there often.\n\nYou know the village by the cliffs where the cottages are? You can go up from one of the backyards, and then follow the crevice. Then, you reach those wealthy houses, you'll have to be on guard over there.\n\nThere are no truly safe roads left, so I guess this one's better than nothing. Just make sure you come back to me when you've marked it, I'll double check it with my maps just to be sure.", "674492b6909d2013670a347a failMessageText": "", @@ -27842,6 +28162,61 @@ "6746480cd0b2f8eb9b034e3e acceptPlayerMessage": "", "6746480cd0b2f8eb9b034e3e declinePlayerMessage": "", "6746480cd0b2f8eb9b034e3e completePlayerMessage": "", + "674ee1bf60367910080aaebd name": "Christmas Time - Part 2", + "674ee1bf60367910080aaebd description": "People always expect a miracle or at least something different before Christmas. That's precisely what I've arranged! The new fights really attracted the audience. If only you'd seen how fast all the tickets flew out!\n\nIt's time for you to mix it up, too. I'll give you a Christmas bonus for it! Hats, masks, all that festive jazz... Just the way you like it.", + "674ee1bf60367910080aaebd failMessageText": "", + "674ee1bf60367910080aaebd successMessageText": "Cool, very good show. I'm sure you've gained plenty of new fans.", + "674ee21ed41f6549146625f3": "Win a match in CheckPoint", + "674ee1bf60367910080aaebd acceptPlayerMessage": "", + "674ee1bf60367910080aaebd declinePlayerMessage": "", + "674ee1bf60367910080aaebd completePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 name": "Christmas Time - Part 3", + "674f1e43f5a9e4aac60a8ba9 description": "So I've come up with another idea. This should be fun for everyone! All right, listen up.\n\nYou take a festive hat, a white beard and go fight in the Arena. I'll give you the hat. I will not give you the beard. You can buy it yourself, it's pretty cheap in our Armory.\nCome on now, it's time for some Christmas excitement!", + "674f1e43f5a9e4aac60a8ba9 failMessageText": "", + "674f1e43f5a9e4aac60a8ba9 successMessageText": "What a great thing that turned out to be! The audience erupted in cheers.", + "674f220c7fecee47b2501f9d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in TeamFight or BlastGang", + "674f22bf3dad64df4183fe2d": "Eliminate enemies while wearing a Santa/Ded Moroz hat and Fake white beard in LastHero or CheckPoint", + "674f1e43f5a9e4aac60a8ba9 acceptPlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 declinePlayerMessage": "", + "674f1e43f5a9e4aac60a8ba9 completePlayerMessage": "", + "674f241c3f14221a8d037687 name": "Christmas Time - Part 4", + "674f241c3f14221a8d037687 description": "Okay, this one is very fucking straightforward. You'll handle it no problem. All you have to do is win a few times.\n\nAlright, come on, they're waiting for you in the Arena.", + "674f241c3f14221a8d037687 failMessageText": "", + "674f241c3f14221a8d037687 successMessageText": "Excellent. You're a great crowd-pleaser.", + "674f27bea3e4161c0f0d9278": "Win a match in TeamFight or BlastGang", + "674f241c3f14221a8d037687 acceptPlayerMessage": "", + "674f241c3f14221a8d037687 declinePlayerMessage": "", + "674f241c3f14221a8d037687 completePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 name": "Christmas Time - Part 5", + "674f2cb7e19a49fa2f0df7f9 description": "We need to keep the crowd hyped up. So we're upping the stakes and adding a little more action.\n\nHere's the plan: you dress up as Santa again and go fuck your enemies up with everything you've got. Hmm, no, that would be too much. I'll remove knives, machine guns and grenades from the list. Gonna save that for later, hehe.\n\nMission clear? Then get to it.", + "674f2cb7e19a49fa2f0df7f9 failMessageText": "", + "674f2cb7e19a49fa2f0df7f9 successMessageText": "Even I took some time to watch. You did good, I respect that.", + "674f2d04715561a8e5f66daa": "Eliminate an enemy while using an Assault rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f30889dc534ec985fcbc1": "Eliminate an enemy while using a Marksman rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f317aec455ac4ada680be": "Eliminate an enemy while using an Assault carbine and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f32272981d633aeb6f909": "Eliminate an enemy while using a Bolt-action rifle and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f34074b0e210e93a15d7c": "Eliminate an enemy while using a Submachine gun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f349f542fafbc90af9165": "Eliminate an enemy while using a Shotgun and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f35aecae1d426da8ea811": "Eliminate an enemy while using a Pistol and wearing a Ded Moroz/Santa hat and Fake white beard", + "674f2cb7e19a49fa2f0df7f9 acceptPlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 declinePlayerMessage": "", + "674f2cb7e19a49fa2f0df7f9 completePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 name": "Christmas Time - Part 6", + "674f422de19a49fa2f0e3ea2 description": "It's the final stretch. We've got to keep the crowd happy. Afterwards, I'll give you a real Christmas miracle for your help.\nYou need to show off. Be the best, wherever you decide.", + "674f422de19a49fa2f0e3ea2 failMessageText": "", + "674f422de19a49fa2f0e3ea2 successMessageText": "You're a real badass motherfucker. Nice one.", + "674f422de19a49fa2f0e3ea7": "Earn a Match MVP in any game mode", + "674f422de19a49fa2f0e3ea2 acceptPlayerMessage": "", + "674f422de19a49fa2f0e3ea2 declinePlayerMessage": "", + "674f422de19a49fa2f0e3ea2 completePlayerMessage": "", + "674f4321e19a49fa2f0e3eac name": "Christmas Time - Finale", + "674f4321e19a49fa2f0e3eac description": "The crowd rejoices, mate! We've got to finish it with a blast. One last challenge, and the present is yours for the taking. A one-of-a-kind! You're gonna love it. \n\nNow, onto the business at hand. You have to eliminate four opponents and then win the round. Simple as that. Come on, the magnificent prize is right here, waiting for your return.", + "674f4321e19a49fa2f0e3eac failMessageText": "", + "674f4321e19a49fa2f0e3eac successMessageText": "Thought you'd get iced, to be honest. Yet here you are. I stand by my word, here's your wonderful reward.", + "674f4321e19a49fa2f0e3eaf": "Win a round after eliminating 4 enemies in TeamFight or BlastGang", + "674f4321e19a49fa2f0e3eac acceptPlayerMessage": "", + "674f4321e19a49fa2f0e3eac declinePlayerMessage": "", + "674f4321e19a49fa2f0e3eac completePlayerMessage": "", "675031be899713ccad00060c name": "Christmas Dinner", "675031be899713ccad00060c description": "How's it going my friend! Not cold, are you? Well, here's the thing... We're going to arrange a feast with our comrades-in-arms at the base, it's Christmas after all!\n\nBut you know how it is in inventory warehouses. According to the records everything is there, but in reality there's only tushonka and a shitload of potatoes. We wanted to make olivier salad, maybe two bowls. Amd we need some booze, too. \n\nCan you get it? Just don't bring the potatoes, we have enough of it.", "675031be899713ccad00060c failMessageText": "", @@ -28317,6 +28692,93 @@ "67a09761e720611a6a01f288 acceptPlayerMessage": "I didn't think I'd be part of some ritual... Well, I'll figure it out when I get there.", "67a09761e720611a6a01f288 declinePlayerMessage": "", "67a09761e720611a6a01f288 completePlayerMessage": "It's done. Your friends are gonna love this.", + "67af4c1405c58dc6f7056667 name": "Profitable Venture", + "67af4c1405c58dc6f7056667 description": "Remember the first time you came to me looking for work? You've gotten smarter since then, and you've helped me out more than once. Now I have a potentially very lucrative business opportunity. But I need a reliable partner, and you could become that partner.\n\nThere's a squad commander guy who's been talking to me, he's got his own team, some veterans and shit. Thing is, the lads were out of the cordon when all the war shit started. They want to do work, and they say they have a tip on an abandoned USEC base in the region. The problem is, some pricks have already taken it over.\n\nIf we do everything right, Luka and his boys will be able to provide us with equipment and other goods that are in short supply here. No one in Tarkov has a force like this! They want to scout at night so they don't cause a commotion. You know, it's a quiet area, and many things could go wrong if they get spotted.\n\nHowever, the lads don't have any thermals, so they asked me to get some from here. If you want to get into this business, now's the time!", + "67af4c1405c58dc6f7056667 failMessageText": "", + "67af4c1405c58dc6f7056667 successMessageText": "Quite an expensive investment, but my hunch never fails. When we get Luka's squad ready, you'll be so rich you won't be short or anything!\n\nI'll take care of the transfer across the cordon.\n\nThe lads gave me the contact of a local spetsnaz instructor. He's retired, but he knows things they didn't tell you in your basic training, I can guarantee that. He'll make a real terminator out of you. Consider it a bonus from our partnership.", + "67af6dd0f5685508d9050158": "Hand over the item: Trijicon REAP-IR thermal scope", + "67af4c1405c58dc6f7056667 acceptPlayerMessage": "", + "67af4c1405c58dc6f7056667 declinePlayerMessage": "", + "67af4c1405c58dc6f7056667 completePlayerMessage": "", + "67af4c169d95ad16e004fd86 name": "Safety Guarantee", + "67af4c169d95ad16e004fd86 description": "Hey. Got some news from Luka. The intel was right, the USECs left a fuckload of equipment there when they abandoned the base. But the scumbags who found the place first, they're still holed up there, ready for war. To take the base, our lads need proper protection, otherwise the risk is too high.\n\nWe need to help them with gear, because without us they'll attract too much attention on the big land. You seem to be interested in the development of our little venture, so I trust you'll be able to procure what we need. We need Zhuk armor and Vulkan helmet sets, shouldn't be too hard. \n\nOh, and also... Luka asked for something extra... He says he needs helmets like Killa's. To avoid the military, they need to take the base as quickly as possible. The crime world's known about Killa for a long time, even outside Tarkov. If we convince them that Killa and his gang are now operating even outside the cordon, they'll leave with their tails between their legs right away.", + "67af4c169d95ad16e004fd86 failMessageText": "", + "67af4c169d95ad16e004fd86 successMessageText": "Beautiful. It's not easy to get a shipment like this across the cordon, but I'll think of something. We're gonna need a proper channel of communication when the dividends come in from the other side. In the meantime, you go see your coach.\n\nYou already packed a punch before, and now you're like Bruce Lee! I think we got a real expert instructor, let me tell you.", + "67af6e1ee67a772b14e08061": "Hand over the item: BNTI Zhuk body armor (EMR)", + "67af6f1d268fd33c21524a02": "Hand over the item: Vulkan-5 LShZ-5 bulletproof helmet", + "67af6f7961ee5d07d0c210c9": "Hand over the item: Maska-1SCh face shield (Killa Edition)", + "67af4c169d95ad16e004fd86 acceptPlayerMessage": "", + "67af4c169d95ad16e004fd86 declinePlayerMessage": "", + "67af4c169d95ad16e004fd86 completePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 name": "Never Too Late To Learn", + "67af4c17f4f1fb58a907f8f6 description": "So, how's your training going? I didn't think you still had so much to learn about warfare. That old saying ain't bullshit, ye? \n\nLuka and his squad could use a lesson. He said they got burned on the far side, had to retreat. Now the buggers at the base know they got competition, and they've tightened their defenses. They won't be able to take the base by surprise. \n\nThat's why Luka asked to throw them some proper weapons to kill the cunts for sure. Everything they need is on the list right here. The cache must be real tough if those pricks aren't scared of even the military. Perhaps they got protection watching over them from the big land. \n\nBut that protection ain't gonna reach us. From our side, the main thing is to equip Luka's squad and set up a supply line from them to Tarkov. I'll let Luka deal with the consequences himself, he's not a kid.", + "67af4c17f4f1fb58a907f8f6 failMessageText": "", + "67af4c17f4f1fb58a907f8f6 successMessageText": "Even got the knives, impressive. I've already found a trusty bloke on the cordon who's gonna handle our deliveries. \n\nHe's not asking for anything yet, but he'll surely put a premium on it later. It's a hell of a lot of work to get supplies to the mainland, you know.", + "67af7037f7937389517f0569": "Hand over the item: HK 416A5 5.56x45 assault rifle", + "67af7055a7ffd02753b8c5bd": "Hand over the item: 5.56x45mm MK 318 Mod 0 (SOST)", + "67af70650fa4c937ca034063": "Hand over the item: UVSR Taiga-1 survival machete", + "67af4c17f4f1fb58a907f8f6 acceptPlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 declinePlayerMessage": "", + "67af4c17f4f1fb58a907f8f6 completePlayerMessage": "", + "67af4c1991ee75c6d7060a16 name": "Get a Foothold", + "67af4c1991ee75c6d7060a16 description": "We've got some good fucking news on our business. Luka says they took the base and even interrogated one of those pricks. They attacked during the mortar attack in Tarkov, it went quickly. They didn't seem to have blown their cover in front of the military. \n\nOur lads found out that this group belongs to some young professional criminal, and it seems that he's going to try to take the base back. I don't think he's afraid of the military at all, he's definitely well-connected. If we don't want to lose our boys, we need to give them some medicine. \n\nLuka didn't ask for anything in particular, but it's in our interest to stock them well. So bring everything you've got. They had casualties after the assault, and they can't search through the whole base right now.", + "67af4c1991ee75c6d7060a16 failMessageText": "", + "67af4c1991ee75c6d7060a16 successMessageText": "I don't know if I've ever seen such a pile of combat drugs before. Surely that's enough for our lads. And to make you less addicted to this bullshit, I got you a little something. \n\nMy men were cleaning out a spot the other day and they found a cache of medical supplies. There's a bunch of medical books and manuals, with notes and drawings all over them. My medics took a closer look, said the author of these scribblings is a real pro. \n\nHere, why don't you study it while we wait for the next message from Luka.", + "67af70d60ef31f2d26f1a4d5": "Hand over the item: SJ6 TGLabs combat stimulant injector", + "67af70e894e1096f325b8050": "Hand over the item: Obdolbos 2 cocktail injector", + "67af70f3cfdf90b749b5eb36": "Hand over the item: Propital regenerative stimulant injector", + "67af70fe8c503a010078afd0": "Hand over the item: M.U.L.E. stimulant injector", + "67af710c5662b533d9f5b9ca": "Hand over the item: eTG-change regenerative stimulant injector", + "67af7117f8c948d02b632085": "Hand over the item: SJ9 TGLabs combat stimulant injector", + "67af7121aeed86a73d8653be": "Hand over the item: SJ12 TGLabs combat stimulant injector", + "67af712cf5f86ab56db8f198": "Hand over the item: Meldonin injector", + "67af4c1991ee75c6d7060a16 acceptPlayerMessage": "", + "67af4c1991ee75c6d7060a16 declinePlayerMessage": "", + "67af4c1991ee75c6d7060a16 completePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 name": "Profit Retention", + "67af4c1a6c3ebfd8e6034916 description": "So you're a true field surgeon now, huh? Well, good for you. I've never liked books, much less reading other people's scribbles, I find it hard to understand.\n\nIt's time to take dividends on our business! Luka and his boys repelled those thugs, he said it was a tough fight. And guess what, there's still no sign of the military, the thugs were definitely in on it with them. I guess you can find someone like our Prapor even beyond the cordon, huh?\n\nThe only issues left are the good ones. They're ready to send a shipment from the other side, but it doesn't fit any of the old schemes. It's a wagonload of equipment! \n\nTo get it all out, my mate demands a special fee, all in advance. The risks are too fucking high, so we have to pay. This bastard's got a bitcoin farm over there, I reckon.", + "67af4c1a6c3ebfd8e6034916 failMessageText": "", + "67af4c1a6c3ebfd8e6034916 successMessageText": "All right, get your stash ready. You'd better get another bunker for yourself, with this much of imminent income! Now everything's gonna go smoothly. \n\nIf you had doubts, better stop it, for fuck's sake! Our money's on its way. And when you get it, you'll be on another level.", + "67af7168fab0681948d9ed8b": "Hand over the item: Graphics card", + "67af7178ea4fed9c667abb17": "Hand over the item: Physical Bitcoin", + "67af4c1a6c3ebfd8e6034916 acceptPlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 declinePlayerMessage": "", + "67af4c1a6c3ebfd8e6034916 completePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 name": "A Life Lesson", + "67af4c1cc0e59d55e2010b97 description": "Wha-- Oh, it's you. Come in, don't just stand there... We've lost our dividends, it seems... Luka's not getting in touch, the fucking bastard! We can't even check what's going on outside the cordon... I \ndon't have any eyes there.\n\nWhat if there was no USEC base in the first place? Maybe this fucker Luka doesn't even have a squad... And look at us, we didn't suspect a goddamn thing. And you, fucking eagle eye... Fuck's sake.\n\nOkay... There's no fucking way we're gonna get these cocksuckers from here. Until I'm pissed and then sober again, don't count on a new plan. What, you want to help? Bring some more booze, then...", + "67af4c1cc0e59d55e2010b97 failMessageText": "", + "67af4c1cc0e59d55e2010b97 successMessageText": "This way... Fucking this way, you dumb fuck! Come sit by if you want to take a swig too. I'll tell you the shit I've been through in my life... Perhaps it'll save you from the same fucking miserable fate.", + "67af71c90036a462a17a72d3": "Hand over the item: Bottle of Tarkovskaya vodka", + "67af71d6a6e77337205f5bfe": "Hand over the item: Bottle of Dan Jackiel whiskey", + "67af71f19ce81d8ebb21530f": "Hand over the item: Bottle of Fierce Hatchling moonshine", + "67af4c1cc0e59d55e2010b97 acceptPlayerMessage": "", + "67af4c1cc0e59d55e2010b97 declinePlayerMessage": "", + "67af4c1cc0e59d55e2010b97 completePlayerMessage": "", + "67af4c1d8c9482eca103e477 name": "Consolation Prize", + "67af4c1d8c9482eca103e477 description": "Oh, hello there. I've gone through all my options, those fuckers are really hard to get. But we both spent a shitload of money on this whole thing. We gotta salvage our situation, this time without any fucking Lukas. Just you and me.\n\nI got a lead from inside the lab. Hey just listen to me first, you fuckhead! My lads spotted Raiders moving some junk. They must have evacuated one of their outside stashes and hid it somewhere in the lab until they can find a better place. You won't be able to find it alone, but I've got experts in this field. Just make sure they're safe.\n\nWe need to clean up the lab. It'll take my fellas several days to search the place and find the stash. I don't think there'll be anything useful for you in that stash, but I'll think of something to reward you with.", + "67af4c1d8c9482eca103e477 failMessageText": "", + "67af4c1d8c9482eca103e477 successMessageText": "While you were in the lab, I've come up with a reward for you. You're into this whole skill learning thing, right?\n\nI got a mate who used to work for Ref, he was an armorer or something. Here's his contact, tell him I sent you. Talk to him, he'll give you some good advice on guns. \n\nIt won't bring you back the money you lost, but it could save your life in the future. And that's worth more than gear and cash.", + "67af727750e1b6f21d9f5511": "Survive and extract from The Lab", + "67af730c69887224a61084ac": "Eliminate Raiders in The Lab", + "67af4c1d8c9482eca103e477 acceptPlayerMessage": "", + "67af4c1d8c9482eca103e477 declinePlayerMessage": "", + "67af4c1d8c9482eca103e477 completePlayerMessage": "", + "67b45467814ab0ffa000c7e7 name": "The Art of Explosion", + "67b45467814ab0ffa000c7e7 description": "So, I see you're pretty well with the hand grenades, warrior. Recently I was able to negotiate a supply of weapons of the same nature, but much more dangerous. You can't give them to just anybody, these babies require self-control. Plus they're very rare commodities.\n\nSo if you want to buy such a serious piece of weaponry from me, prove to me that in your hands the explosives always hit the target. No other way around this, hehe. Otherwise you're gonna blow yourself up with one of those, or even kill your teammates, if you have any.\n\nYou can use anything that makes things go boom: underbarrels, handmades, anything. It's up to you, just make sure you get the results I want to see.", + "67b45467814ab0ffa000c7e7 failMessageText": "", + "67b45467814ab0ffa000c7e7 successMessageText": "Yup, I've heard about your combat exploits. In your hands, the RShG will only do you good, believe me. So, like I said, it's a one-of-a-kind item, but I can manage to put aside a piece per restock for you. \n\nWhen you're using it, make sure there's plenty of room and no one stands behind you. And read through the manual on the tube, don't be a jackass.", + "67b45467814ab0ffa000c7ea": "Eliminate any target while using grenades or grenade launchers", + "67b45467814ab0ffa000c7e7 acceptPlayerMessage": "", + "67b45467814ab0ffa000c7e7 declinePlayerMessage": "", + "67b45467814ab0ffa000c7e7 completePlayerMessage": "", + "67b5be6c080431c729082b97 name": "Fearless Beast", + "67b5be6c080431c729082b97 description": "Come on in. Tarkov's bandit count isn't getting any smaller, no matter how hard we try. I think it's just a general weariness with everything that's going on around us. It's hard on the regular people, while the criminals have food and protection... That's why people turn to the other side, out of desperation.\n\nIt's hardly possible to provide everyone with food and medicine, yet there is another way. We have to show them where pillaging and abandoning morality leads. They've already lost hope, but they still have fear.\n\nPartisan was having some tea with me the other day, and he brought in a couple of experimental grenades, without the retarder. He says that's the only grenade they used in Afghanistan. No delay at all. And if you make a booby trap with one of these...\n\nTake them and show what awaits the people who abandon human morality. We can save those who haven't turned to the bandits yet.", + "67b5be6c080431c729082b97 failMessageText": "", + "67b5be6c080431c729082b97 successMessageText": "So, what do you think of these nades? I wouldn't risk usem them myself, the delay's too short for me. Could easily lose an arm with one of those, or even worse. There's already talk of your deeds in the city, which means our message has been heard.\n\nI hope it will calm the hotheads and help those who question human values to come to their senses. They won't thank us for this, but they can at least live to see a time of peace.", + "67b5be6c080431c729082b9a": "Eliminate any target while using F-1 hand grenade (Reduced delay)", + "67b5be6c080431c729082b97 acceptPlayerMessage": "", + "67b5be6c080431c729082b97 declinePlayerMessage": "", + "67b5be6c080431c729082b97 completePlayerMessage": "", "67d03be712fb5f8fd2096332 name": "Vacate the Premises", "67d03be712fb5f8fd2096332 description": "That whole health resort thing went massive, didn't it? Thing is, as I told you, I had business there with Ref, in those cellars. I used to think Ref took all the equipment outta there, but now it turns out there's still tons of tech still down there. So I figured, what's the harm in taking some of it?\n\nNah, you don't have to bring me those TVs and cameras, don't worry. Those need careful inspection and good packing. I got my own people for that. But I can't just send them out there right now! They're good with tech, but they're dogshit with guns. If a real professional, wink-wink, would make it down there and chase all the other guys out of there, then we'd be in business.\n\nSo just when I thought of that, I remembered you, brother! You ready to help with a good cause? Obviously, if you do the job properly, I'll give you some goodies in return!", "67d03be712fb5f8fd2096332 failMessageText": "", @@ -28325,6 +28787,49 @@ "67d03be712fb5f8fd2096332 acceptPlayerMessage": "", "67d03be712fb5f8fd2096332 declinePlayerMessage": "", "67d03be712fb5f8fd2096332 completePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 name": "Creator Inspiration - Part 1", + "67dd4a2293c5a2d9cf0576b8 description": "Got a job you're gonna enjoy. You hear what's going on in town right now? One of my, uh, associates is going on a real rampage out there. You can't do shit like that without any performance enhancer, I'll tell you that.\n\nI've been thinking of ways to cheer up the audience. Sometimes even veteran fights lack excitement, it's like they're too afraid to put their best foot forward. So I'll make you a simple deal: kill everyone you see, but use stimulants first. We'll see what happens. \n\nWe need to put on a show that makes the Minotaur carnage seem dull. I know you won't disappoint me.", + "67dd4a2293c5a2d9cf0576b8 failMessageText": "", + "67dd4a2293c5a2d9cf0576b8 successMessageText": "This is what true fury is all about! You've set an example for a lot of fighters, and you've brought the crowd back to the Arena. I see the stimulants are working well.", + "67dd4a2293c5a2d9cf0576c1": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4c3c6215612fe197e796": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4c9746f2ec1225e13e9f": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4a2293c5a2d9cf0576b8 acceptPlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 declinePlayerMessage": "", + "67dd4a2293c5a2d9cf0576b8 completePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc name": "Creator Inspiration - Part 1", + "67dd4dcb93c5a2d9cf0576cc description": "So, you still wanna make it to the top, huh? I've got a job for you then. A guy I know made a big fuss in Tarkov, a real massacre under the health resort! I'm sure he's got some stimulants in his system again. You may not be used to it yet, but I'll tell you this: without them, you'll never reach your full potential. \n\nSo if you want to prove yourself, here's your mission. Use your stimulants and destroy everything you see. I don't give a shit what kind, as long as you show this city that the craziest fights are in the Arena, and not in some boring resort. You got it?", + "67dd4dcb93c5a2d9cf0576cc failMessageText": "", + "67dd4dcb93c5a2d9cf0576cc successMessageText": "Now do you know what I'm talking about? You know the real rage? That's right! The audience is already talking about you like a berserker who knows no fear. So, you've earned your reward.", + "67dd4dcb93c5a2d9cf0576cf": "Eliminate enemies while under the influence of the Adrenaline stimulant", + "67dd4dcb93c5a2d9cf0576d1": "Eliminate enemies while under the influence of the Trimadol stimulant", + "67dd4dcb93c5a2d9cf0576d3": "Eliminate enemies while under the influence of the AHF1-M stimulant", + "67dd4dcb93c5a2d9cf0576cc acceptPlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc declinePlayerMessage": "", + "67dd4dcb93c5a2d9cf0576cc completePlayerMessage": "", + "67dd51f7ea43a622d0016479 name": "Creator Inspiration - Part 2", + "67dd51f7ea43a622d0016479 description": "You never cease to amaze me... Ready for a new challenge? Listen to this, then. A couple of your victories were caught on camera, and I showed the video to that friend of mine from Tarkov. He found your rampage fascinating, and that's not an easy feat to impress him! So he slipped me a little something to help you get into those crazy dungeons under the health resort. Think of it as an invitation.\n\nBut you do realize I'm not just gonna give it to you for nothing, right? Make sure you get a standing ovation at the Arena, and this keycard is yours.", + "67dd51f7ea43a622d0016479 failMessageText": "", + "67dd51f7ea43a622d0016479 successMessageText": "You certainly know how to make a commotion! Here's the gift from the Minotaur, make sure you don't get lost in his labyrinth! Come back again, the Arena audience appreciates you more than the bums in the Tarkov ruins. \nOne more thing, you gotta understand that those keycards are a very unique and rare commodity, so I'll give them to you only after you do some of my harder side jobs. Check your list tomorrow, I'll make sure to include them in your reward list.", + "67dd52ac33ed06e73e533fcb": "Win a match in TeamFight mode", + "67dd54b877dbb3b57e197fe3": "Win a round as attackers after the device is planted in BlastGang mode", + "67dd57b3f772c6c20c0151fa": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd57fa41e41a9afe2ce5bb": "Earn 3000 points in CheckPoint mode", + "67ea940ff40b5ffa60ed01d4": "Eliminate enemies in BlastGang mode", + "67dd51f7ea43a622d0016479 acceptPlayerMessage": "", + "67dd51f7ea43a622d0016479 declinePlayerMessage": "", + "67dd51f7ea43a622d0016479 completePlayerMessage": "", + "67dd5d2231fb19ec9408894a name": "Creator Inspiration - Part 2", + "67dd5d2231fb19ec9408894a description": "Recovered from the stimulants? Well, get ready for a new task then. You managed to outdo yourself a few times. I shared the tape with that Tarkov acquaintance of mine. He saw your potential and wants to pass something along as an invitation of sorts.\n\nBut you must understand that in the Arena, as in Tarkov, nothing comes for free! I want you to prove you're ready to face the Minotaur. Show your fury on the sands of the Arena, and then this keycard is yours. Do not disappoint me!", + "67dd5d2231fb19ec9408894a failMessageText": "", + "67dd5d2231fb19ec9408894a successMessageText": "There really is something about you... If you survive your encounter with my acquaintance, do come back to the Arena. In Tarkov, you'll never receive a fraction of what you have here, in the Arena. So long, gladiator.", + "67dd5d2231fb19ec9408894d": "Capture the objective in TeamFight mode", + "67dd5d2231fb19ec9408894f": "Plant the device and win the round as attackers in BlastGang mode", + "67dd5d2231fb19ec94088951": "Eliminate the device-carrying enemy in BlastGang mode", + "67dd5d2231fb19ec94088953": "Earn 5000 capture points in CheckPoint mode", + "67dd5d2231fb19ec9408894a acceptPlayerMessage": "", + "67dd5d2231fb19ec9408894a declinePlayerMessage": "", + "67dd5d2231fb19ec9408894a completePlayerMessage": "", "67e993b1ac26bf29380a320b name": "Surprise Gift", "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? ", @@ -28345,6 +28850,62 @@ "67e993f5ed537409f009da75 acceptPlayerMessage": "", "67e993f5ed537409f009da75 declinePlayerMessage": "", "67e993f5ed537409f009da75 completePlayerMessage": "", + "67f3ea581cd4c15d3d040305 name": "Fight Back", + "67f3ea581cd4c15d3d040305 description": "One thing I don't understand about all this bandit scum in Tarkov is how they still manage to recruit new thugs over and over again. Seems the locals have had a hard time since the start of the conflict, and now there's nowhere else to go for those who were left behind. Banditry, however, is a one way road that won't lead to any good.\n\nThat doesn't change our goal. The filth has to be cleaned out, and we're the ones who'll do it. I hear the Scavs have made the most noise on the coast, at the customs district and in Priozersk. Get out there and drive the bandits back. We can't let them expand their territory.", + "67f3ea581cd4c15d3d040305 failMessageText": "", + "67f3ea581cd4c15d3d040305 successMessageText": "Good work. I went there myself as well and showed them where the marauder's path leads.\n\nI don't like all this sudden new activity. I got a feeling this is just the beginning of some big operation or some kind of gang war. Stay in touch, kid.", + "67f3fa9690fd1d33eadcbaee": "Eliminate Scavs on Shoreline", + "67f3fadcf58627867b3de35f": "Eliminate Scavs on Customs", + "67f3fb467def2176367b6a3d": "Eliminate Scavs on Woods", + "67f3ea581cd4c15d3d040305 acceptPlayerMessage": "", + "67f3ea581cd4c15d3d040305 declinePlayerMessage": "", + "67f3ea581cd4c15d3d040305 completePlayerMessage": "", + "67f3ea78c54fde6cc2004855 name": "Secret Benefactor", + "67f3ea78c54fde6cc2004855 description": "Greetings. You know, during recovery, my patients often share news and rumors about what is happening in Tarkov. Most of the time it is simple everyday talk, however nowadays I have noticed a tendency that concerns me greatly.\n\nPeople are talking about a person or group of people in town who are willing to provide sustenance and protection for the citizens. At different times, I myself would have tried to reach out and cooperate for a noble cause. Yet you and I both are aware that there are very few honest people left in Tarkov.\n\nThe ordinary citizens are already on the brink of survival. I am afraid that too many people may trust loud claims without any guarantees. We must find out who is luring people in with generous offers and for what purpose. If you are willing to help me, search the Scav checkpoints and outposts for information.", + "67f3ea78c54fde6cc2004855 failMessageText": "", + "67f3ea78c54fde6cc2004855 successMessageText": "Hm, so it is Skier. With him in charge of this program, it is only going to hurt the population. Slimy, as always...\n\nThese records need to be studied further, however I will still need your help later. We must thwart Skier's plans, whatever they may be.", + "67f45f2598742add16d22abf": "Locate and obtain the new charity recruiters' notes", + "67f45f31e2662881c816ffaf": "Hand over the found information", + "67ff74183ce253402679842a": "Scout the Scav checkpoints on Customs, Shoreline or Woods", + "67f3ea78c54fde6cc2004855 acceptPlayerMessage": "", + "67f3ea78c54fde6cc2004855 declinePlayerMessage": "", + "67f3ea78c54fde6cc2004855 completePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 name": "An Alternative", + "67f3ea873daf3aaf3e0e7ff5 description": "I have studied the records you provided. Skier is about to launch a full-fledged recruitment drive for “volunteers”, and he is willing to invest a considerable amount of resources in it. He wants to trick hesitant residents into joining his gang and then use them in his operations. And he certainly will not spare untrained and exhausted recruits.\n\nEven at this moment, Skier's men are busy preparing assembly points where food and clothing will supposedly be distributed. However, nothing prevents them from forcing the locals into trucks and forcibly taking them to their territory. We must save the inhabitants from this fate.\n\nI have supplies of clothing and even spare rooms where I can temporarily house the newcomers. The shortage of provisions, though, remains a serious problem, and this is where I need your help. Dry provisions and clean water would be best. \n\nObviously, we cannot offer the locals the most comfortable accommodations. Yet it would be much better if potential “volunteers” were under my roof instead of this crook's prison barracks.", + "67f3ea873daf3aaf3e0e7ff5 failMessageText": "", + "67f3ea873daf3aaf3e0e7ff5 successMessageText": "This is a great accomplishment. Skier is currently still ahead of us, but once we've set up our food distribution points, we'll be able to pull in at least some of the potential hires. I'll try to offer them alternative employment that will benefit my clie-- My clinic, I mean.", + "67f45fe79fba85108c424981": "Hand over the found in raid dry food type items", + "67f4600c5ba71d753b968d38": "Hand over the found in raid clean water type items", + "68022bbf8396a75701b8616e": "Hand over the found in raid dry food type items", + "68022c20049c6309cfc34586": " Hand over the found in raid clean water type items", + "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage": "", + "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 name": "Preemptive Strike", + "67f3eaa3a7799274d50a8b66 description": "I already know what's going on, no need to tell me. Elvira is \"doing what's best for people\" again, obviously up to something again... But those who are thinking about working for Skier have already shown their weakness. In these situations, fear works much better than charity handouts.\n\nI've asked Partisan to look at those checkpoints. There are four places: Emercom camp at the military base, the flooded village near the water treatment plant, the old cattle farm near the health resort, and some kind of construction site near the customs district, which my comrade couldn't get to.\n\nThey are going to bring supplies and the recruited people there. The recruiters themselves are already in place, they don't differ from the usual Skier's mob.\n\nPartisan has other things to do right now, no less important. That's why we need your help: remove the recruiters at their gathering points. That way the residents will think three times before coming there for aid.", + "67f3eaa3a7799274d50a8b66 failMessageText": "", + "67f3eaa3a7799274d50a8b66 successMessageText": "You cleared all the spots? Good. Let's see how it affects the overall situation. For now, I'm waiting to hear from Partisan, he's still out scouting.\n\nCome back later, it's best not to make any unnecessary moves right now.", + "67f7127d515e3a3c4a894aee": "Eliminate Scavs at Skier's charity checkpoints", + "67f3eaa3a7799274d50a8b66 acceptPlayerMessage": "", + "67f3eaa3a7799274d50a8b66 declinePlayerMessage": "", + "67f3eaa3a7799274d50a8b66 completePlayerMessage": "", + "67f3eab9a33cd296b20ee695 name": "Staff Shortage", + "67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.", + "67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!", + "67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.", + "67f71386222d15f53e5be7ee": "Locate and neutralize Partisan", + "67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives", + "67f3eab9a33cd296b20ee695 acceptPlayerMessage": "", + "67f3eab9a33cd296b20ee695 declinePlayerMessage": "", + "67f3eab9a33cd296b20ee695 completePlayerMessage": "", + "67f3eacef649e7bceb0bb455 name": "Fearless Beast", + "67f3eacef649e7bceb0bb455 description": "Despite our efforts, the scum in Tarkov is not getting any weaker. Skier changed his tactics, now the stations are mobile, and we won't be able to keep up with all of them. The locals are starting to gather around him. We can't put innocent civilians in danger.\n\nThere's still plenty of Scavs who don't need to be proven guilty. We need to show people what pillaging and banditry leads to. They've already lost hope, but fear is definitely still there.\n\nPartisan just came in with a couple of his experimental grenades. He took the retarder out of them, says they used to use them in Afghanistan very often. No bang delay at all. And if you make turn it into a booby trap... No one would have time to react to that.\n\nTake them and show the people what awaits those who abandon human morality. We need to make sure no one ever thinks about working with Skier. Better yet, make even the PMCs see the risks and quiet down.", + "67f3eacef649e7bceb0bb455 failMessageText": "What brings you here? Have you seen Partisan by any chance? He was supposed to show up half an hour ago... He would never be late, it's not good. There are still too many bandits out there!\n\nYou better leave now, I'm not in the mood. I've got a friend to help, and you seem to be nothing but trouble.", + "67f3eacef649e7bceb0bb455 successMessageText": "So, what do you think of these grenades? I wouldn't risk using one, the delay's too short for my reflexes. Thugs are already talking about your endeavors, which means our message has been heard loud and clear.\n\nI hope it will cool their tempers and help those who question human values. They won't thank us, but they can live to see better days.\n\nAnd for you, I have a special gift. Prapor passed it on. Use it wisely and stay safe.", + "67f530370a3a9a0f90b76716": "Eliminate any target while using the F-1 hand grenade with reduced delay", + "67f3eacef649e7bceb0bb455 acceptPlayerMessage": "", + "67f3eacef649e7bceb0bb455 declinePlayerMessage": "", + "67f3eacef649e7bceb0bb455 completePlayerMessage": "", "616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ", "616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Her şey açık mı diyorsunuz? O zaman iyi iş, asker.", @@ -28795,6 +29356,151 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Iyi.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Gerekli tüm öğeler listede. Onları bulun ve bırakma noktasına getirin.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Sabrım pahasına yapılabilecek başka görevler de var.", + "663929e8fc03422847097941 startedMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 failMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 successMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "663929e8fc03422847097941 description 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "663929e8fc03422847097941 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a9ac7d4c17548073882": "", + "6642165a2a9057fc17065108 startedMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 failMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 successMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "6642165a2a9057fc17065108 description 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6642165a2a9057fc17065108 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b197b94ceb51609399c": "", + "664f0953795ae3ac3b0babb8 startedMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 failMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 successMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f0953795ae3ac3b0babb8 description 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f0953795ae3ac3b0babb8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a910ac29c084b05d4ca": "", + "664f217c795ae3ac3b0babb9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 failMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 successMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f217c795ae3ac3b0babb9 description 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f217c795ae3ac3b0babb9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a744b855b7a3a0084ce": "", + "664f6402b2af0d85e101c9d9 startedMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 failMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 successMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "664f6402b2af0d85e101c9d9 description 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "So, Champion, what about your morning routine? Do you workout? What about range day? You better not slack around. Now come on, get out there and show em!", + "664f6402b2af0d85e101c9d9 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588a667b94ceb516093999": "", + "665462d9479d0207c60da93f startedMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f failMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f successMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "665462d9479d0207c60da93f description 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "665462d9479d0207c60da93f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ae0831b87c41702e598": "", + "66548e314b855b7a3a0084c8 startedMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 failMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 successMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66548e314b855b7a3a0084c8 description 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66548e314b855b7a3a0084c8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588adac7d4c17548073883": "", + "66549bd6795ae3ac3b0babc8 startedMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 failMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 successMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "66549bd6795ae3ac3b0babc8 description 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "66549bd6795ae3ac3b0babc8 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588acb4b855b7a3a0084cf": "", + "6654ac68c7d4c1754807387e startedMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e failMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e successMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6654ac68c7d4c1754807387e description 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "Hello, Champion. So lately there's been a lot of wimps among the gladiators. It needs to change. You up? Don't forget to report back once you're done. If you're still alive that is.", + "6654ac68c7d4c1754807387e changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ad40ac29c084b05d4cb": "", + "6655fec61cbb3b61d709b65b startedMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b failMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b successMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "6655fec61cbb3b61d709b65b description 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "Take my advice, Champion: keep your score up. How are people supposed to bet on you if no one knows your name? Get out there and slay. Make them remember who you are.", + "6655fec61cbb3b61d709b65b changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b14831b87c41702e599": "", + "66560487831b87c41702e593 startedMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 failMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 successMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 description 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "66560487831b87c41702e593 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b0cc7d4c17548073884": "", + "6656f780b2af0d85e101c9f3 startedMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 failMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 successMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 description 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "6656f780b2af0d85e101c9f3 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b060ac29c084b05d4cc": "", + "66573f951cbb3b61d709b65f startedMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f failMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f successMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f description 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b65f changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b644b855b7a3a0084d2": "", + "66573f951cbb3b61d709b660 startedMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 failMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 successMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 description 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b660 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588bacc7d4c17548073888": "", + "66573f951cbb3b61d709b661 startedMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 failMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 successMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 description 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b661 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b5e7b94ceb51609399d": "", + "66573f951cbb3b61d709b662 startedMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 failMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 successMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 description 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b662 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b59831b87c41702e59a": "", + "66573f951cbb3b61d709b663 startedMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 failMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 successMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 description 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b663 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b54c7d4c17548073885": "", + "66573f951cbb3b61d709b664 startedMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 failMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 successMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 description 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b664 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b850ac29c084b05d4cf": "", + "66573f951cbb3b61d709b665 startedMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 failMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 successMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 description 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b665 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b804b855b7a3a0084d3": "", + "66573f951cbb3b61d709b666 startedMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 failMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 successMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 description 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b666 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b7b7b94ceb51609399e": "", + "66573f951cbb3b61d709b667 startedMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 failMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 successMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 description 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b667 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b76831b87c41702e59b": "", + "66573f951cbb3b61d709b668 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 failMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 successMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 description 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b668 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba80ac29c084b05d4d0": "", + "66573f951cbb3b61d709b669 startedMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 failMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 successMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 description 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b669 changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588ba24b855b7a3a0084d4": "", + "66573f951cbb3b61d709b66a startedMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a failMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a successMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a description 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "66573f951cbb3b61d709b66a changeQuestMessageText 6617beeaa9cfa777ca915b7c 66588b9d7b94ceb51609399f": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "You don't want to up your skills, huh? Whatever, you'll come crawling back to me later.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I knew you were ready to invest in yourself! You know the figures now, I've already arranged everything on the other side.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "I remember you liked learning from the real experts. I found a contact who can take you to the next level. But I need the cash now, and there's only one expert in the whole city, so you're gonna have to shell out.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c05982287fbe840f98e7": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "Bad decision. Many people pay serious money for this guy's services. Well, whatever, it's your loss.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "I knew you'd be ready! My mate's already preparing the material for you, all serious business. You're lucky you keep in touch with me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "You and I, we've been through some shit before. By the way, I got a mate who's been working here since the war started.\n\nI thought maybe you'd be interested in talking to an experienced specialist like him. Not for free, of course. If you want to raise your skills, bring the dough.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f3def9c13d370fcb98": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Won't even help your friend in need? This offer is for you only, and you don't even appreciate it. When you're in need, don't count on me.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Cool. Leave the money here, and when you go to Slavka's, please don't... Don't mention his age. He's still a kid, but he's a true prodigy! \nAsk him anything you want, from ballistics to market economics.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "Let's get straight to the point. I'm a little tight on cash right now, so I got a special offer for you. You warm me up with a little cash, and in return, I'll set you up with one of my specialists. I'm hiding this kid from everyone because he's one of a kind. But you and me, we're tight, so I know can trust you.\n\nBut you should know, that's me being nice right now. I need the cash this week, otherwise the deal's off. My lad has enough to do even without coaching.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f482287fbe840f98e8": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "What? I've already got a waiting line for this intel, with better offers! You don't know how much knowledge you've just missed out on.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "You know what you're doing! There's already a queue for these docs, someone even offered me a higher price, but I'd rather give it to you. \n\nYou're a trusted partner, and I know you won't use this knowledge against me.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "Got a proposal that might be of interest to you. I've recently got my hands on some documents on advanced training for USEC officers. Such information won't help ordinary soldiers, of course, they'll get iced anyway.\n\nBut a wolf like you will definitely benefit from veteran secrets. Obviously, such proposal won't last long, so your time to think is limited.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f590813c114f0b6667": "", + "67b3491b05fcb6db310cfca7 startedMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", + "67b3491b05fcb6db310cfca7 failMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Fucking waffler. You think you know more than everybody else? Well, good fucking luck then.", + "67b3491b05fcb6db310cfca7 successMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "I'll have to postpone some business because of this, but for a trusted friend, it's no big deal.\n\nTwo conditions: you don't pass this information on to anyone else and you don't document it in any way, you understand? If the westerners find out about the leak, it's gonna be bad news for everyone here.", + "67b3491b05fcb6db310cfca7 description 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "Well, mate, how long has it been since you raised your professional skills? I had a chat with Peacekeeper, and he told me a few secrets from the experience of our \"Western colleagues\". I guess sometimes it's really useful to look at a situation from a different perspective.\n\nIt's obvious that you're already a warrior with experience, but this info is really valuable. If you're interested, I can share it with you. But I have a lot of work right now, so you'll have to pay for my time.", + "67b3491b05fcb6db310cfca7 changeQuestMessageText 58330581ace78e27b8b10cee 67c5c1f6601cf8e556035f59": "", "6512ea46f7a078264a4376e4 name": "PMC'nin En İyi Dostu", "6512ea46f7a078264a4376e4 description": "PMC olarak oynarken Scav Ortak Çıkışını kullanarak Kavşak'ta hayatta kal ve tahliye ol", "6512ea46f7a078264a4376e4 successMessage": "", @@ -29042,6 +29748,256 @@ "670febed5ee0fc738a0965a4 name": "Kaçınılmaz Son", "670febed5ee0fc738a0965a4 description": "Virüsü ve tüm enfekte olanları yok et, Cadılar Bayramı 2024 etkinlik görev serisini tamamla", "670febed5ee0fc738a0965a4 successMessage": "", + "67222f22110c584f2b01c021 name": "Bomb Has Been Planted", + "67222f22110c584f2b01c021 description": "Win a round by planting and successfully activating the device in BlastGang", + "67222f22110c584f2b01c021 successMessage": "", + "672231e82ff336b7b80274fc name": "No Room for Error", + "672231e82ff336b7b80274fc description": "Win a round by deactivating the device in BlastGang", + "672231e82ff336b7b80274fc successMessage": "", + "6722322686058f05ac06999a name": "Based", + "6722322686058f05ac06999a description": "Win a round by capturing the objective in TeamFight", + "6722322686058f05ac06999a successMessage": "", + "67223555110c584f2b01c50c name": "Scratch That", + "67223555110c584f2b01c50c description": "Deactivate the device one second before activation in BlastGang", + "67223555110c584f2b01c50c successMessage": "", + "672236cd1f224ce5e5080a61 name": "Not Today\t", + "672236cd1f224ce5e5080a61 description": "Eliminate the enemy player while they are deactivating the device in BlastGang", + "672236cd1f224ce5e5080a61 successMessage": "", + "67223776dd95e350e500834e name": "Strike!", + "67223776dd95e350e500834e description": "Eliminate 5 enemies in one round in BlastGang", + "67223776dd95e350e500834e successMessage": "", + "67223dd56c3352f1ac0eb54d name": "Surgical", + "67223dd56c3352f1ac0eb54d description": "Eliminate 5 enemies with headshots in one round in BlastGang", + "67223dd56c3352f1ac0eb54d successMessage": "", + "67223e7a474c52f03f04695b name": "Three in One", + "67223e7a474c52f03f04695b description": "Eliminate 3 enemies in one round using 3 different weapon types in BlastGang", + "67223e7a474c52f03f04695b successMessage": "", + "67225d2343d757b68f09758d name": "Don’t Stand Still", + "67225d2343d757b68f09758d description": "Eliminate the enemy player while they are capturing the objective in TeamFight", + "67225d2343d757b68f09758d successMessage": "", + "67225e8004774d33a2056d3d name": "Ace!\t", + "67225e8004774d33a2056d3d description": "Eliminate 5 enemies in one round in TeamFight", + "67225e8004774d33a2056d3d successMessage": "", + "672260176006cd22c70fce7c name": "The Triplets of Belleville", + "672260176006cd22c70fce7c description": "Eliminate 3 enemies in one round using 3 different weapon types in TeamFight", + "672260176006cd22c70fce7c successMessage": "", + "6722612dab4a24e9da0361aa name": "The First Hero", + "6722612dab4a24e9da0361aa description": "Take the first place in LastHero", + "6722612dab4a24e9da0361aa successMessage": "", + "672261a72bcba14c030b7ddf name": "Hat-Trick", + "672261a72bcba14c030b7ddf description": "Take the first place in LastHero three times in a row", + "672261a72bcba14c030b7ddf successMessage": "", + "672262c7297a7399d80b50b8 name": "Killer Speed", + "672262c7297a7399d80b50b8 description": "Eliminate 5 enemies in 10 seconds in LastHero", + "672262c7297a7399d80b50b8 successMessage": "", + "672263055d63b6886a0ca01f name": "Invincible", + "672263055d63b6886a0ca01f description": "Eliminate 10 enemies without dying in LastHero", + "672263055d63b6886a0ca01f successMessage": "", + "672264e52bcba14c030b7de3 name": "Quickshot", + "672264e52bcba14c030b7de3 description": "Eliminate 5 enemies by yourself before the device is planted in BlastGang", + "672264e52bcba14c030b7de3 successMessage": "", + "67226609297a7399d80b50bb name": "Blind Fury", + "67226609297a7399d80b50bb description": "Eliminate an enemy while you are blinded by a flashbang grenade", + "67226609297a7399d80b50bb successMessage": "", + "6722758743d757b68f097593 name": "Here's Johnny!", + "6722758743d757b68f097593 description": "Eliminate an enemy while they are reloading", + "6722758743d757b68f097593 successMessage": "", + "6722763e7c8c397a5004f42e name": "Fastest Hand in Tarkov", + "6722763e7c8c397a5004f42e description": "Win a round in less than 25 seconds in TeamFight or BlastGang", + "6722763e7c8c397a5004f42e successMessage": "", + "6722773504774d33a2056d44 name": "They Fly Now?", + "6722773504774d33a2056d44 description": "Eliminate an enemy while they are mid-air", + "6722773504774d33a2056d44 successMessage": "", + "67227a5804774d33a2056d4c name": "Aerial Athlete", + "67227a5804774d33a2056d4c description": "Eliminate an enemy while mid-air", + "67227a5804774d33a2056d4c successMessage": "", + "67227b2f297a7399d80b50c5 name": "No Losses", + "67227b2f297a7399d80b50c5 description": "Eliminate the enemy team with no losses in your team", + "67227b2f297a7399d80b50c5 successMessage": "", + "67227bfb2bcba14c030b7dea name": "Ace-high!", + "67227bfb2bcba14c030b7dea description": "Eliminate 5 enemies with headshots in one round in TeamFight", + "67227bfb2bcba14c030b7dea successMessage": "", + "67227d075d63b6886a0ca029 name": "The Final Hero", + "67227d075d63b6886a0ca029 description": "Eliminate 5 enemies in one round after becoming the last player in your team in BlastGang", + "67227d075d63b6886a0ca029 successMessage": "", + "67227e4658871c73f3038bb5 name": "The Last Gladiator", + "67227e4658871c73f3038bb5 description": "Eliminate 5 enemies in one round after becoming the last player in your team in TeamFight", + "67227e4658871c73f3038bb5 successMessage": "", + "6722917226925a3eb600de23 name": "Victory March", + "6722917226925a3eb600de23 description": "Win a TeamFight match on every location (except Sawmill)", + "6722917226925a3eb600de23 successMessage": "", + "672290eaf4513e1b94315ef7": "Win a match on Skybridge", + "6722946ee0be7df249cbf7f0": "Win a match on Equator", + "672294a242288ca1a38bc28a": "Win a match on Chop Shop", + "672294b67235ffa33641f664": "Win a match on Bay 5", + "672294ce35fa6ee8ca334854": "Win a match on Sawmill", + "672294e96ee23926b298ee14": "Win a match on Fort", + "672294ec7905caa417f2f815": "Win a match on Block", + "672294ee52f1f27ecbdac24c": "Win a match on Air Pit", + "6722952e1b72d31e6d51229c": "Win a match on Bowl", + "672296fd04774d33a2056d4f name": "Winner in Everything", + "672296fd04774d33a2056d4f description": "Take the first place in LastHero on every location (except Sawmill)", + "672296fd04774d33a2056d4f successMessage": "", + "672297354d4a104d43414208": "Win a match on Bowl", + "672297759dfed248f31ea77d": "Win a match on Air Pit", + "672297775dd46eb922eb45a4": "Win a match on Block", + "672297797653d12f117305f4": "Win a match on Fort", + "6722977bcc6a038b1a38cee1": "Win a match on Sawmill", + "6722977dc2cf9891520f18ba": "Win a match on Bay 5", + "6722977fb3e33661bc5a5808": "Win a match on Chop Shop", + "67229781cbe3245ba8958714": "Win a match on Equator", + "6722986fbdd16b3eea6b9c8c": "Win a match on Skybridge", + "672299a48d46d067f60eee89 name": "Conqueror", + "672299a48d46d067f60eee89 description": "Win a match in BlastGang on every location", + "672299a48d46d067f60eee89 successMessage": "", + "672299ebc26671ca134e515d": "Win a match on Skybridge", + "672299ee15ab5f28b1f0cf43": "Win a match on Bowl", + "672299f0d1e3f702b79a3432": "Win a match on Fort", + "672299f2af539eca74d25caf": "Win a match on Bay 5", + "67229aee43d757b68f09759f name": "Demoman\t", + "67229aee43d757b68f09759f description": "Plant the device 100 times in BlastGang", + "67229aee43d757b68f09759f successMessage": "", + "67229bcd5d63b6886a0ca02d name": "Bomb Squad", + "67229bcd5d63b6886a0ca02d description": "Deactivate the device 100 times in BlastGang", + "67229bcd5d63b6886a0ca02d successMessage": "", + "67229c47297a7399d80b50ce name": "Capturer", + "67229c47297a7399d80b50ce description": "Capture the objective 50 times in TeamFight", + "67229c47297a7399d80b50ce successMessage": "", + "67229d0a04774d33a2056d55 name": "Born Survivor", + "67229d0a04774d33a2056d55 description": "Take the first place 50 times in LastHero", + "67229d0a04774d33a2056d55 successMessage": "", + "67229dd443d757b68f0975a2 name": "Winner Takes All", + "67229dd443d757b68f0975a2 description": "Win a match 100 times in BlastGang", + "67229dd443d757b68f0975a2 successMessage": "", + "67229e44ab4a24e9da0361da name": "Team Game", + "67229e44ab4a24e9da0361da description": "Win a match 100 times in TeamFight", + "67229e44ab4a24e9da0361da successMessage": "", + "67229e9a7c8c397a5004f43d name": "Assault Rifle Master", + "67229e9a7c8c397a5004f43d description": "Eliminate 250 enemies with Assault rifles", + "67229e9a7c8c397a5004f43d successMessage": "", + "6722a00eab4a24e9da0361dd name": "Assault Rifle Expert", + "6722a00eab4a24e9da0361dd description": "Eliminate 1000 enemies with Assault rifles", + "6722a00eab4a24e9da0361dd successMessage": "", + "6722a08f6006cd22c70fce8e name": "Machine Gun Master", + "6722a08f6006cd22c70fce8e description": "Eliminate 250 enemies with Machine guns", + "6722a08f6006cd22c70fce8e successMessage": "", + "6722a10504774d33a2056d59 name": "Machine Gun Expert", + "6722a10504774d33a2056d59 description": "Eliminate 1000 enemies with Machine guns", + "6722a10504774d33a2056d59 successMessage": "", + "6722a1556006cd22c70fce91 name": "Marksman Rifle Master", + "6722a1556006cd22c70fce91 description": "Eliminate 250 enemies with Marksman rifles", + "6722a1556006cd22c70fce91 successMessage": "", + "6722a28604774d33a2056d5c name": "Marksman Rifle Expert", + "6722a28604774d33a2056d5c description": "Eliminate 1000 enemies with Marksman rifles", + "6722a28604774d33a2056d5c successMessage": "", + "6722a32c58871c73f3038bbc name": "Assault Carbine Master", + "6722a32c58871c73f3038bbc description": "Eliminate 250 enemies with Assault carbines", + "6722a32c58871c73f3038bbc successMessage": "", + "6722a3d58d46d067f60eee90 name": "Assault Carbine Expert", + "6722a3d58d46d067f60eee90 description": "Eliminate 1000 enemies with Assault carbines", + "6722a3d58d46d067f60eee90 successMessage": "", + "6722a44aab4a24e9da0361e3 name": "Bolt-Action Rifle Master", + "6722a44aab4a24e9da0361e3 description": "Eliminate 50 enemies with Bolt-action rifles", + "6722a44aab4a24e9da0361e3 successMessage": "", + "6722a4bb7c8c397a5004f441 name": "Bolt-Action Rifle Expert", + "6722a4bb7c8c397a5004f441 description": "Eliminate 250 enemies with Bolt-action rifles", + "6722a4bb7c8c397a5004f441 successMessage": "", + "6722a5092bcba14c030b7df1 name": "Submachine Gun Master", + "6722a5092bcba14c030b7df1 description": "Eliminate 250 enemies with Submachine guns", + "6722a5092bcba14c030b7df1 successMessage": "", + "6722a58726925a3eb600de2c name": "Submachine Gun Expert", + "6722a58726925a3eb600de2c description": "Eliminate 1000 enemies with Submachine guns", + "6722a58726925a3eb600de2c successMessage": "", + "6722a5d28d46d067f60eee93 name": "Shotgun Master", + "6722a5d28d46d067f60eee93 description": "Eliminate 250 enemies with Shotguns", + "6722a5d28d46d067f60eee93 successMessage": "", + "6722a6c526925a3eb600de2f name": "Shotgun Expert", + "6722a6c526925a3eb600de2f description": "Eliminate 1000 enemies with Shotguns", + "6722a6c526925a3eb600de2f successMessage": "", + "6722a73e26925a3eb600de32 name": "Pistol Master", + "6722a73e26925a3eb600de32 description": "Eliminate 50 enemies with Pistols", + "6722a73e26925a3eb600de32 successMessage": "", + "6722a7d46006cd22c70fce95 name": "Pistol Expert", + "6722a7d46006cd22c70fce95 description": "Eliminate 250 enemies with Pistols", + "6722a7d46006cd22c70fce95 successMessage": "", + "6722a8758d46d067f60eee97 name": "Melee Master", + "6722a8758d46d067f60eee97 description": "Eliminate 5 enemies with Melee weapons", + "6722a8758d46d067f60eee97 successMessage": "", + "6722a8e1ab4a24e9da0361e6 name": "Melee Expert", + "6722a8e1ab4a24e9da0361e6 description": "Eliminate 25 enemies with Melee weapons", + "6722a8e1ab4a24e9da0361e6 successMessage": "", + "6722a927297a7399d80b50d5 name": "Throwables Master", + "6722a927297a7399d80b50d5 description": "Eliminate 10 enemies with Throwables", + "6722a927297a7399d80b50d5 successMessage": "", + "6722a99e297a7399d80b50d8 name": "Throwables Expert", + "6722a99e297a7399d80b50d8 description": "Eliminate 100 enemies with Throwables", + "6722a99e297a7399d80b50d8 successMessage": "", + "6722bd8726925a3eb600de37 name": "Lionheart", + "6722bd8726925a3eb600de37 description": "Win a round by staying alive with a blacked-out thorax in BlastGang", + "6722bd8726925a3eb600de37 successMessage": "", + "6722bde7297a7399d80b50dd name": "Heartless", + "6722bde7297a7399d80b50dd description": "Win a round by staying alive with a blacked-out thorax in TeamFight", + "6722bde7297a7399d80b50dd successMessage": "", + "6722bfce6006cd22c70fce9a name": "Cold-Headed", + "6722bfce6006cd22c70fce9a description": "Win a round by staying alive with a blacked-out head in BlastGang", + "6722bfce6006cd22c70fce9a successMessage": "", + "6722c036ab4a24e9da0361ea name": "Faceless", + "6722c036ab4a24e9da0361ea description": "Win a round by staying alive with a blacked-out head in TeamFight", + "6722c036ab4a24e9da0361ea successMessage": "", + "6722c08e7c8c397a5004f446 name": "Rivers of Blood", + "6722c08e7c8c397a5004f446 description": "Make 100 enemies die from blood loss", + "6722c08e7c8c397a5004f446 successMessage": "", + "6722c0ca8d46d067f60eee9b name": "Way of the Samurai", + "6722c0ca8d46d067f60eee9b description": "Win 3 matches in a row in a Ranked game mode", + "6722c0ca8d46d067f60eee9b successMessage": "", + "6722c13d2bcba14c030b7df8 name": "Thousand Cuts", + "6722c13d2bcba14c030b7df8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in BlastGang", + "6722c13d2bcba14c030b7df8 successMessage": "", + "6722c16a43d757b68f0975a8 name": "Krovostok", + "6722c16a43d757b68f0975a8 description": "Win 10 rounds by staying alive with 2 heavy bleeds in TeamFight", + "6722c16a43d757b68f0975a8 successMessage": "", + "6722c1955d63b6886a0ca037 name": "Bulletproof", + "6722c1955d63b6886a0ca037 description": "Win 10 rounds without taking any damage and being the last player in your team in BlastGang", + "6722c1955d63b6886a0ca037 successMessage": "", + "6722c1bb6006cd22c70fce9e name": "Improvise, Adapt, Overcome", + "6722c1bb6006cd22c70fce9e description": "Win 10 rounds without taking any damage and being the last player in your team in TeamFight", + "6722c1bb6006cd22c70fce9e successMessage": "", + "6722c1e65d63b6886a0ca03a name": "", + "6722c1e65d63b6886a0ca03a description": "", + "6722c1e65d63b6886a0ca03a successMessage": "", + "6722c2392bcba14c030b7dfc name": "Executive", + "6722c2392bcba14c030b7dfc description": "Complete 50 daily tasks", + "6722c2392bcba14c030b7dfc successMessage": "", + "6722c29443d757b68f0975ab name": "Employee of the Month", + "6722c29443d757b68f0975ab description": "Complete 5 weekly tasks", + "6722c29443d757b68f0975ab successMessage": "", + "6722c2f05d63b6886a0ca03e name": "Employee of the Quarter", + "6722c2f05d63b6886a0ca03e description": "Complete 15 weekly tasks", + "6722c2f05d63b6886a0ca03e successMessage": "", + "6722c3366006cd22c70fcea1 name": "Well Met!", + "6722c3366006cd22c70fcea1 description": "Die to the Cleanup crew for the first time", + "6722c3366006cd22c70fcea1 successMessage": "", + "6722c36926925a3eb600de3a name": "My Precious", + "6722c36926925a3eb600de3a description": "Transfer 10,000,000 RUB from Arena to EFT", + "6722c36926925a3eb600de3a successMessage": "", + "6722c39c6006cd22c70fcea4 name": "Money On The Table", + "6722c39c6006cd22c70fcea4 description": "Transfer 100,000,000 RUB from EFT to Arena", + "6722c39c6006cd22c70fcea4 successMessage": "", + "6722c3ee26925a3eb600de3d name": "Good Job", + "6722c3ee26925a3eb600de3d description": "Earn the Match MVP award 10 times in any game mode", + "6722c3ee26925a3eb600de3d successMessage": "", + "6722c41b8d46d067f60eee9e name": "Best of the Best", + "6722c41b8d46d067f60eee9e description": "Earn the Match MVP award 100 times in any game mode", + "6722c41b8d46d067f60eee9e successMessage": "", + "6722c44c58871c73f3038bc7 name": "Resilient Gladiator", + "6722c44c58871c73f3038bc7 description": "Earn the Round MVP award 50 times in any game mode", + "6722c44c58871c73f3038bc7 successMessage": "", + "6722c47704774d33a2056d66 name": "Freedom Contender", + "6722c47704774d33a2056d66 description": "Earn the Round MVP award 500 times in any game mode", + "6722c47704774d33a2056d66 successMessage": "", + "674f46a681f38ceef70b5fa1 name": "Christmas Time", + "674f46a681f38ceef70b5fa1 description": "Complete the 2024 New Year questline", + "674f46a681f38ceef70b5fa1 successMessage": "", "675709bef4e2a2ce0f058f56 name": "Dört Çeker", "675709bef4e2a2ce0f058f56 description": "BTR sürücüsüyle ilgili meseleyi bir şekilde hallet", "675709bef4e2a2ce0f058f56 successMessage": "", @@ -29060,6 +30016,15 @@ "67a0e57b972c11a3f50773b2 name": "Dungeon Master", "67a0e57b972c11a3f50773b2 description": "Complete the Labyrinth event task line and all side tasks", "67a0e57b972c11a3f50773b2 successMessage": "", + "67c838a4c566b0028f0f2d07 name": "All on Red", + "67c838a4c566b0028f0f2d07 description": "Go all in on the BEAR squad beyond the cordon and complete Skier's Profitable Venture task line", + "67c838a4c566b0028f0f2d07 successMessage": "", + "67caccd347ff06535404a0c7 name": "The Sands of Arena", + "67caccd347ff06535404a0c7 description": "Reach level 150 in Battle Pass Season 0", + "67caccd347ff06535404a0c7 successMessage": "", + "67fce0c2f18dc20eae02240b name": "Star Called Sun", + "67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher", + "67fce0c2f18dc20eae02240b successMessage": "", "674724a154d58001c3aae177 name": "", "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/bigmap/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/bigmap/base.json index 1fc88edc..76db3338 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/bigmap/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/bigmap/base.json @@ -92,31 +92,7 @@ ], "BossLocationSpawn": [ { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 30, + "BossChance": 20, "BossDifficult": "normal", "BossEscortAmount": "2", "BossEscortDifficult": "normal", @@ -188,6 +164,30 @@ { "BossChance": 15, "BossDifficult": "normal", + "BossEscortAmount": "0", + "BossEscortDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossName": "bossPartisan", + "BossPlayer": false, + "BossZone": "", + "Delay": 0, + "DependKarma": true, + "DependKarmaPVE": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "RandomTimeSpawn": false, + "SpawnMode": [ + "regular", + "pve" + ], + "Supports": null, + "Time": -1, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent" + }, + { + "BossChance": 20, + "BossDifficult": "normal", "BossEscortAmount": "4", "BossEscortDifficult": "normal", "BossEscortType": "sectantWarrior", @@ -425,11 +425,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -472,11 +472,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -584,8 +584,8 @@ "VisibleDistance": 1 }, "BotMarksman": 20, - "BotMax": 19, - "BotMaxPlayer": 9, + "BotMax": 30, + "BotMaxPlayer": 0, "BotMaxPvE": 30, "BotMaxTimePlayer": 0, "BotNormal": 50, @@ -10025,6 +10025,10 @@ { "TemplateId": "675aaab74bca0b001d02f356", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -10100,9 +10104,27 @@ "users_spawn_seconds_n2": 200, "users_summon_seconds": 0, "waves": [ + { + "BotPreset": "hard", + "BotSide": "Savage", + "KeepZoneOnSpawn": true, + "SpawnMode": [ + "pve", + "regular" + ], + "SpawnPoints": "ZoneScavBase", + "WildSpawnType": "assault", + "isPlayers": false, + "number": 0, + "slots_max": 2, + "slots_min": 1, + "time_max": -1, + "time_min": -1 + }, { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10118,14 +10140,16 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneDormitory", "WildSpawnType": "assault", "isPlayers": false, "number": 2, - "slots_max": 3, + "slots_max": 2, "slots_min": 1, "time_max": -1, "time_min": -1 @@ -10133,21 +10157,24 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneGasStation", "WildSpawnType": "assault", "isPlayers": false, "number": 3, - "slots_max": 2, - "slots_min": 0, + "slots_max": 3, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10155,14 +10182,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 4, - "slots_max": 3, - "slots_min": 0, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10178,21 +10206,24 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneOldAZS", "WildSpawnType": "assault", "isPlayers": false, "number": 6, - "slots_max": 0, - "slots_min": 0, + "slots_max": 3, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10208,6 +10239,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10216,13 +10248,14 @@ "isPlayers": false, "number": 8, "slots_max": 1, - "slots_min": 0, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10238,6 +10271,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10253,6 +10287,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10268,6 +10303,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10283,6 +10319,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10298,6 +10335,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10313,6 +10351,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10328,6 +10367,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10340,24 +10380,10 @@ "time_max": -1, "time_min": -1 }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 0, - "slots_max": 3, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10365,7 +10391,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 0, - "slots_max": 3, + "slots_max": 1, "slots_min": 1, "time_max": -1, "time_min": -1 diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_day/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_day/base.json index 1511c572..74af88d8 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_day/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_day/base.json @@ -227,11 +227,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -274,11 +274,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -5044,6 +5044,10 @@ { "TemplateId": "675aaaf674a7619a5304c233", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -5100,6 +5104,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5116,6 +5121,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5132,6 +5138,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5148,6 +5155,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5164,6 +5172,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5180,6 +5189,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5196,6 +5206,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5212,6 +5223,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_night/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_night/base.json index f27f5426..aa7cda5f 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_night/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/factory4_night/base.json @@ -350,17 +350,17 @@ ] } ], - "DistToActivate": 100, - "DistToActivatePvE": 100, + "DistToActivate": 140, + "DistToActivatePvE": 140, "DistToPersueAxemanCoef": 0.9, - "DistToSleep": 120, - "DistToSleepPvE": 120, + "DistToSleep": 150, + "DistToSleepPvE": 150, "FogVisibilityDistanceCoef": 1, "FogVisibilitySpeedCoef": 1, "GainSight": 1, "KhorovodChance": 0, - "LockSpawnCheckRadius": 150, - "LockSpawnCheckRadiusPvE": 150, + "LockSpawnCheckRadius": 120, + "LockSpawnCheckRadiusPvE": 120, "LockSpawnStartTime": 10, "LockSpawnStartTimePvE": 10, "LockSpawnStepTime": 50, @@ -377,9 +377,9 @@ "VisibleDistance": 1 }, "BotMarksman": 0, - "BotMax": 16, + "BotMax": 20, "BotMaxPlayer": 0, - "BotMaxPvE": 22, + "BotMaxPvE": 20, "BotMaxTimePlayer": 0, "BotNormal": 0, "BotSpawnCountStep": 3, @@ -5132,6 +5132,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5148,6 +5149,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5164,6 +5166,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5180,6 +5183,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5196,6 +5200,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5212,6 +5217,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5228,6 +5234,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" @@ -5244,6 +5251,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/interchange/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/interchange/base.json index facace14..9b04fb6e 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/interchange/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/interchange/base.json @@ -253,11 +253,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -300,11 +300,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -7670,6 +7670,10 @@ { "TemplateId": "634959225289190e5e773b3b", "Value": 7 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -7720,6 +7724,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7735,21 +7740,24 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneCenterBot", "WildSpawnType": "assault", "isPlayers": false, "number": 1, - "slots_max": 2, - "slots_min": 0, + "slots_max": 3, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7765,6 +7773,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7780,6 +7789,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7795,6 +7805,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7810,6 +7821,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7825,6 +7837,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -7840,6 +7853,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/laboratory/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/laboratory/base.json index b6909094..b4cb5ed8 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/laboratory/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/laboratory/base.json @@ -9,6 +9,13 @@ "AveragePlayTime": 30, "AveragePlayerLevel": 45, "Banners": [ + { + "id": "67d1ad1b5df2d64de808e1da", + "pic": { + "path": "CONTENT/banners/banner_laboratory.jpg", + "rcid": "" + } + }, { "id": "5805f617245977100b2c1f41", "pic": { @@ -489,11 +496,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "marksman" }, { @@ -536,11 +543,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "marksman" }, { @@ -577,8 +584,8 @@ "FogVisibilitySpeedCoef": 1, "GainSight": 1, "KhorovodChance": 0, - "LockSpawnCheckRadius": 150, - "LockSpawnCheckRadiusPvE": 150, + "LockSpawnCheckRadius": 120, + "LockSpawnCheckRadiusPvE": 120, "LockSpawnStartTime": 10, "LockSpawnStartTimePvE": 10, "LockSpawnStepTime": 50, @@ -588,7 +595,7 @@ "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, "NonWaveSpawnBotsLimitPerPlayer": 10, - "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "NonWaveSpawnBotsLimitPerPlayerPvE": 10, "RainVisibilityDistanceCoef": 1, "RainVisibilitySpeedCoef": 1, "Scattering": 1, @@ -773,7 +780,7 @@ "NewSpawnForPlayers": false, "NonWaveGroupScenario": { "Chance": 50, - "Enabled": false, + "Enabled": true, "MaxToBeGroup": 3, "MinToBeGroup": 2 }, @@ -5733,6 +5740,10 @@ { "TemplateId": "5c0530ee86f774697952d952", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/lighthouse/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/lighthouse/base.json index 6692b700..bdca5dad 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/lighthouse/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/lighthouse/base.json @@ -74,7 +74,7 @@ "TriggerName": "" }, { - "BossChance": 30, + "BossChance": 15, "BossDifficult": "normal", "BossEscortAmount": "0", "BossEscortDifficult": "normal", @@ -98,7 +98,7 @@ "TriggerName": "botEvent" }, { - "BossChance": 30, + "BossChance": 20, "BossDifficult": "normal", "BossEscortAmount": "2", "BossEscortDifficult": "normal", @@ -555,11 +555,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -602,11 +602,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -8408,6 +8408,10 @@ { "TemplateId": "675aaa8f7f3c962069072b27", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -8467,6 +8471,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8474,7 +8479,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 1, - "slots_max": 3, + "slots_max": 2, "slots_min": 0, "time_max": -1, "time_min": -1 @@ -8482,6 +8487,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8497,6 +8503,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8512,6 +8519,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8519,7 +8527,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 3, - "slots_max": 3, + "slots_max": 2, "slots_min": 0, "time_max": -1, "time_min": -1 @@ -8527,14 +8535,16 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "Zone_Rocks", "WildSpawnType": "assault", "isPlayers": false, "number": 4, - "slots_max": 0, + "slots_max": 2, "slots_min": 0, "time_max": -1, "time_min": -1 @@ -8542,8 +8552,10 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "Zone_Chalet", "WildSpawnType": "assault", @@ -8557,6 +8569,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8572,6 +8585,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8587,14 +8601,16 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "Zone_LongRoad", "WildSpawnType": "assault", "isPlayers": false, "number": 8, - "slots_max": 0, + "slots_max": 2, "slots_min": 0, "time_max": -1, "time_min": -1 @@ -8602,6 +8618,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8617,6 +8634,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8632,6 +8650,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -8647,6 +8666,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/rezervbase/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/rezervbase/base.json index ccf9fc73..0cea710a 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/rezervbase/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/rezervbase/base.json @@ -116,7 +116,7 @@ "TriggerName": "" }, { - "BossChance": 25, + "BossChance": 30, "BossDifficult": "normal", "BossEscortAmount": "2,2,2,2,3", "BossEscortDifficult": "normal", @@ -138,7 +138,7 @@ "TriggerName": "interactObject" }, { - "BossChance": 25, + "BossChance": 30, "BossDifficult": "normal", "BossEscortAmount": "2,2,2,2,3", "BossEscortDifficult": "normal", @@ -160,7 +160,7 @@ "TriggerName": "interactObject" }, { - "BossChance": 25, + "BossChance": 30, "BossDifficult": "normal", "BossEscortAmount": "2,2,2,2,3", "BossEscortDifficult": "normal", @@ -363,11 +363,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -410,11 +410,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -6672,6 +6672,10 @@ { "TemplateId": "675aaa003107dac10006332f", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -6731,6 +6735,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6747,6 +6752,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6763,6 +6769,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6779,22 +6786,24 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" ], - "SpawnPoints": "", + "SpawnPoints": "ZoneSubStorage", "WildSpawnType": "assault", "isPlayers": false, "number": 4, "slots_max": 3, "slots_min": 1, - "time_max": 300, - "time_min": 100 + "time_max": -1, + "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6811,6 +6820,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6827,6 +6837,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6843,6 +6854,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6859,6 +6871,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6875,6 +6888,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6891,6 +6905,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6907,22 +6922,24 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ "regular", "pve" ], - "SpawnPoints": "", + "SpawnPoints": "ZoneBarrack", "WildSpawnType": "assault", "isPlayers": false, "number": 12, "slots_max": 3, "slots_min": 1, - "time_max": 1400, - "time_min": 900 + "time_max": -1, + "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6939,6 +6956,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -6955,6 +6973,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/sandbox_high/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/sandbox_high/base.json index 0a36583b..607749fa 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/sandbox_high/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/sandbox_high/base.json @@ -18,7 +18,29 @@ "Area": 0, "AveragePlayTime": 35, "AveragePlayerLevel": 40, - "Banners": [], + "Banners": [ + { + "id": "67d1ac822b87c1a5a30e5ae8", + "pic": { + "path": "CONTENT/banners/banner_Sandbox.jpg", + "rcid": "" + } + }, + { + "id": "63a9c1f5662a5b0a2c7fbde5", + "pic": { + "path": "CONTENT/banners/banner_City_final.jpg", + "rcid": "" + } + }, + { + "id": "64c0acf85174e095610734a0", + "pic": { + "path": "CONTENT/banners/banner_sherpa.jpg", + "rcid": "" + } + } + ], "BossLocationSpawn": [ { "BossChance": 30, @@ -228,11 +250,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "marksman" }, { @@ -275,11 +297,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 70, + "EnemyChance": 100, "Role": "marksman" }, { @@ -311,7 +333,7 @@ "DistToActivatePvE": 260, "DistToSleep": 300, "DistToSleepPvE": 300, - "FogVisibilityDistanceCoef": -1.6, + "FogVisibilityDistanceCoef": 0, "FogVisibilitySpeedCoef": 0, "GainSight": 1, "LockSpawnCheckRadius": 150, @@ -324,7 +346,7 @@ "MaxExfiltrationTime": 1500, "MinExfiltrationTime": 1200, "NonWaveSpawnBotsLimitPerPlayer": 10, - "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "NonWaveSpawnBotsLimitPerPlayerPvE": 10, "RainVisibilityDistanceCoef": 0.35, "RainVisibilitySpeedCoef": 0, "Scattering": 1, @@ -6517,6 +6539,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -6532,6 +6555,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -6547,6 +6571,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -6562,6 +6587,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -6577,6 +6603,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/shoreline/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/shoreline/base.json index 648731e8..9e8e2449 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/shoreline/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/shoreline/base.json @@ -71,30 +71,6 @@ "TriggerId": "", "TriggerName": "" }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, { "BossChance": 30, "BossDifficult": "normal", @@ -168,6 +144,30 @@ { "BossChance": 15, "BossDifficult": "normal", + "BossEscortAmount": "0", + "BossEscortDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossName": "bossPartisan", + "BossPlayer": false, + "BossZone": "", + "Delay": 0, + "DependKarma": true, + "DependKarmaPVE": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "RandomTimeSpawn": false, + "SpawnMode": [ + "pve", + "regular" + ], + "Supports": null, + "Time": -1, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent" + }, + { + "BossChance": 40, + "BossDifficult": "normal", "BossEscortAmount": "3,4", "BossEscortDifficult": "normal", "BossEscortType": "sectantWarrior", @@ -454,11 +454,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -501,11 +501,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -9945,6 +9945,10 @@ { "TemplateId": "675aab0d6b6addc02a08f097", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -10007,6 +10011,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10022,6 +10027,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10037,6 +10043,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10052,6 +10059,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10067,6 +10075,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10082,6 +10091,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10097,6 +10107,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10112,6 +10123,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10127,6 +10139,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10142,6 +10155,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10157,6 +10171,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10172,6 +10187,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10187,6 +10203,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10202,6 +10219,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10217,10 +10235,12 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], - "SpawnPoints": "", + "SpawnPoints": "ZoneSmuglers", "WildSpawnType": "assault", "isPlayers": false, "number": 15, @@ -10232,6 +10252,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10247,6 +10268,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10262,6 +10284,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10277,6 +10300,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10292,6 +10316,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10307,6 +10332,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10322,6 +10348,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10337,6 +10364,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10352,6 +10380,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10367,6 +10396,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10382,6 +10412,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "pve" ], @@ -10397,8 +10428,10 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneSanatorium1", "WildSpawnType": "assault", @@ -10412,8 +10445,10 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneSanatorium2", "WildSpawnType": "assault", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/tarkovstreets/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/tarkovstreets/base.json index 26fb3cf2..1957a1a3 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/tarkovstreets/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/tarkovstreets/base.json @@ -425,11 +425,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -472,11 +472,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -14161,6 +14161,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14169,14 +14170,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 0, - "slots_max": 4, - "slots_min": 3, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14185,14 +14187,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 1, - "slots_max": 3, - "slots_min": 2, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14201,14 +14204,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 2, - "slots_max": 4, - "slots_min": 3, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14225,6 +14229,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14233,14 +14238,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 4, - "slots_max": 4, - "slots_min": 2, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14257,6 +14263,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14265,14 +14272,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 6, - "slots_max": 3, - "slots_min": 2, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14289,6 +14297,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14305,6 +14314,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14313,7 +14323,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 9, - "slots_max": 4, + "slots_max": 1, "slots_min": 1, "time_max": -1, "time_min": -1 @@ -14321,6 +14331,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14329,7 +14340,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 10, - "slots_max": 4, + "slots_max": 1, "slots_min": 1, "time_max": -1, "time_min": -1 @@ -14337,6 +14348,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14345,14 +14357,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 11, - "slots_max": 3, - "slots_min": 2, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "SpawnMode": [ "regular", "pve" @@ -14361,8 +14374,8 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 12, - "slots_max": 4, - "slots_min": 2, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 } diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/terminal/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/terminal/base.json index a76462f1..c63c81c1 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/terminal/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/terminal/base.json @@ -100,27 +100,5 @@ "Id": "Terminal", "_Id": "5704e5a4d2720bb45b8b4567", "Loot": [], - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "5464c4344bdc2d98698b4567", - "pic": { - "path": "CONTENT/banners/banner_hotkeys_1.png", - "rcid": "RCID_hotkeys_1" - } - } - ] -} \ No newline at end of file + "Banners": [] +} diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/woods/base.json b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/woods/base.json index eed0e8e1..1e8eeaa9 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/locations/woods/base.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/locations/woods/base.json @@ -50,31 +50,7 @@ ], "BossLocationSpawn": [ { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 30, + "BossChance": 20, "BossDifficult": "normal", "BossEscortAmount": "2", "BossEscortDifficult": "normal", @@ -146,6 +122,30 @@ { "BossChance": 15, "BossDifficult": "normal", + "BossEscortAmount": "0", + "BossEscortDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossName": "bossPartisan", + "BossPlayer": false, + "BossZone": "", + "Delay": 0, + "DependKarma": true, + "DependKarmaPVE": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "RandomTimeSpawn": false, + "SpawnMode": [ + "regular", + "pve" + ], + "Supports": null, + "Time": -1, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent" + }, + { + "BossChance": 20, + "BossDifficult": "normal", "BossEscortAmount": "4", "BossEscortDifficult": "normal", "BossEscortType": "sectantWarrior", @@ -337,9 +337,19 @@ "BossName": "arenaFighterEvent", "BossPlayer": false, "BossZone": "ZoneMiniHouse,ZoneClearVill,ZoneRoad,ZoneBrokenVill,ZoneScavBase2", + "Delay": 0, + "DependKarma": false, + "DependKarmaPVE": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, "RandomTimeSpawn": false, - "Supports": [], - "Time": -1 + "SpawnMode": [ + "pve" + ], + "Supports": null, + "Time": -1, + "TriggerId": "", + "TriggerName": "" } ], "BotAssault": 80, @@ -375,11 +385,11 @@ "BotRole": "pmcBEAR", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -422,11 +432,11 @@ "BotRole": "pmcUSEC", "ChancedEnemies": [ { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "assault" }, { - "EnemyChance": 80, + "EnemyChance": 100, "Role": "marksman" }, { @@ -790,7 +800,7 @@ "y": 0, "z": 0 }, - "Radius": 55 + "Radius": 70 } }, "CorePointId": 0, @@ -1009,7 +1019,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "0629d023-ea80-45cb-8376-9ea211e740f9", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -63.1000061, "y": 9.763999, @@ -1675,7 +1685,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "191b6c5a-0fb7-40b2-95b4-3a33397eb872", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -54.1099854, "y": 8.883999, @@ -3315,7 +3325,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "43598be9-9042-4e06-8ee9-11a3d346d570", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -63.6699829, "y": 9.714, @@ -7538,7 +7548,7 @@ "y": 0, "z": 0 }, - "Radius": 55 + "Radius": 70 } }, "CorePointId": 0, @@ -7719,7 +7729,7 @@ "y": 0, "z": 0 }, - "Radius": 55 + "Radius": 70 } }, "CorePointId": 0, @@ -8543,7 +8553,7 @@ "y": 0, "z": 0 }, - "Radius": 55 + "Radius": 70 } }, "CorePointId": 0, @@ -8609,7 +8619,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "ceb25518-5a40-42cd-b57d-076d40d29890", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -60.97, "y": 9.24399948, @@ -9033,7 +9043,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "da22cead-d753-44c4-b44e-131a3d9690b7", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -59.6399841, "y": 9.093999, @@ -10400,7 +10410,7 @@ "y": 0, "z": 0 }, - "Radius": 55 + "Radius": 70 } }, "CorePointId": 0, @@ -10735,7 +10745,7 @@ "y": 0, "z": 0 }, - "Radius": 40 + "Radius": 80 } }, "CorePointId": 7, @@ -11183,6 +11193,10 @@ { "TemplateId": "675aaa9a3107dac100063331", "Value": 2 + }, + { + "TemplateId": "676bf44c5539167c3603e869", + "Value": 0 } ], "sav_summon_seconds": 60, @@ -11254,6 +11268,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11262,7 +11277,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 0, - "slots_max": 3, + "slots_max": 1, "slots_min": 1, "time_max": -1, "time_min": -1 @@ -11270,6 +11285,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11278,7 +11294,7 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 1, - "slots_max": 3, + "slots_max": 1, "slots_min": 1, "time_max": -1, "time_min": -1 @@ -11286,22 +11302,25 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": true, "OpenZones": "", "SpawnMode": [ - "pve" + "pve", + "regular" ], "SpawnPoints": "ZoneScavBase2", "WildSpawnType": "assault", "isPlayers": false, "number": 2, - "slots_max": 3, - "slots_min": 1, + "slots_max": 2, + "slots_min": 0, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11318,6 +11337,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11334,6 +11354,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11350,6 +11371,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11366,6 +11388,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11382,6 +11405,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11398,6 +11422,7 @@ { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11414,6 +11439,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11430,6 +11456,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11446,6 +11473,7 @@ { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11462,6 +11490,7 @@ { "BotPreset": "easy", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11470,14 +11499,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 0, - "slots_max": 3, - "slots_min": 0, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "normal", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" @@ -11486,14 +11516,15 @@ "WildSpawnType": "assault", "isPlayers": false, "number": 0, - "slots_max": 3, - "slots_min": 0, + "slots_max": 1, + "slots_min": 1, "time_max": -1, "time_min": -1 }, { "BotPreset": "hard", "BotSide": "Savage", + "KeepZoneOnSpawn": false, "OpenZones": "", "SpawnMode": [ "pve" diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/achievements.json b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/achievements.json index 383aa95e..02bc7014 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/achievements.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/achievements.json @@ -2293,12 +2293,12 @@ "availableInGameEditions": [], "illustrationConfig": null, "isHidden": false, - "target": "67f6c20924d8a61dbd09dbcf", + "target": "68110661cafbcd69bd0c68d2", "loyaltyLevel": 4, "traderId": "5c0647fdd443bc2504c2d371", "items": [ { - "_id": "67f6c20924d8a61dbd09dbcf", + "_id": "68110661cafbcd69bd0c68d2", "_tpl": "674fe9a75e51f1c47c04ec23", "upd": { "Repairable": { @@ -2308,87 +2308,87 @@ } }, { - "_id": "67f6c20924d8a61dbd09dbd0", + "_id": "68110661cafbcd69bd0c68d3", "_tpl": "674fe57721a9aa6be6045b96", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_handguard" }, { - "_id": "67f6c20924d8a61dbd09dbd1", + "_id": "68110661cafbcd69bd0c68d4", "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "67f6c20924d8a61dbd09dbd0", + "parentId": "68110661cafbcd69bd0c68d3", "slotId": "mod_foregrip" }, { - "_id": "67f6c20924d8a61dbd09dbd2", + "_id": "68110661cafbcd69bd0c68d5", "_tpl": "674fe89a4472d471fb0f07d8", - "parentId": "67f6c20924d8a61dbd09dbd0", + "parentId": "68110661cafbcd69bd0c68d3", "slotId": "mod_mount" }, { - "_id": "67f6c20924d8a61dbd09dbd3", + "_id": "68110661cafbcd69bd0c68d6", "_tpl": "674fe8dd362ea1f88b0e2792", - "parentId": "67f6c20924d8a61dbd09dbd2", + "parentId": "68110661cafbcd69bd0c68d5", "slotId": "mod_sight_front" }, { - "_id": "67f6c20924d8a61dbd09dbd4", + "_id": "68110661cafbcd69bd0c68d7", "_tpl": "674fe8b9362ea1f88b0e278d", - "parentId": "67f6c20924d8a61dbd09dbd2", + "parentId": "68110661cafbcd69bd0c68d5", "slotId": "mod_mount" }, { - "_id": "67f6c20924d8a61dbd09dbd5", + "_id": "68110661cafbcd69bd0c68d8", "_tpl": "59f9d81586f7744c7506ee62", - "parentId": "67f6c20924d8a61dbd09dbd4", + "parentId": "68110661cafbcd69bd0c68d7", "slotId": "mod_scope" }, { - "_id": "67f6c20924d8a61dbd09dbd6", + "_id": "68110661cafbcd69bd0c68d9", "_tpl": "674fe8cf4472d471fb0f07df", - "parentId": "67f6c20924d8a61dbd09dbd4", + "parentId": "68110661cafbcd69bd0c68d7", "slotId": "mod_sight_rear" }, { - "_id": "67f6c20924d8a61dbd09dbd7", + "_id": "68110661cafbcd69bd0c68da", "_tpl": "59fb137a86f7740adb646af1", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_muzzle" }, { - "_id": "67f6c20924d8a61dbd09dbd8", + "_id": "68110661cafbcd69bd0c68db", "_tpl": "6087e663132d4d12c81fd96b", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_pistol_grip" }, { - "_id": "67f6c20924d8a61dbd09dbd9", + "_id": "68110661cafbcd69bd0c68dc", "_tpl": "676017fe8cfeeba9f707c8d6", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_reciever" }, { - "_id": "67f6c20924d8a61dbd09dbda", + "_id": "68110661cafbcd69bd0c68dd", "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_stock" }, { - "_id": "67f6c20924d8a61dbd09dbdb", + "_id": "68110661cafbcd69bd0c68de", "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "67f6c20924d8a61dbd09dbda", + "parentId": "68110661cafbcd69bd0c68dd", "slotId": "mod_stock" }, { - "_id": "67f6c20924d8a61dbd09dbdc", + "_id": "68110661cafbcd69bd0c68df", "_tpl": "674fe8f6f34d761ab8020cc8", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_magazine" }, { - "_id": "67f6c20924d8a61dbd09dbdd", + "_id": "68110661cafbcd69bd0c68e0", "_tpl": "6130ca3fd92c473c77020dbd", - "parentId": "67f6c20924d8a61dbd09dbcf", + "parentId": "68110661cafbcd69bd0c68d2", "slotId": "mod_charge" } ], @@ -4642,12 +4642,12 @@ "availableInGameEditions": [], "illustrationConfig": null, "isHidden": false, - "target": "67f6c20924d8a61dbd09dbde", + "target": "68110661cafbcd69bd0c68e1", "loyaltyLevel": 4, "traderId": "54cb50c76803fa8b248b4571", "items": [ { - "_id": "67f6c20924d8a61dbd09dbde", + "_id": "68110661cafbcd69bd0c68e1", "_tpl": "674fe9a75e51f1c47c04ec23", "upd": { "Repairable": { @@ -4657,81 +4657,81 @@ } }, { - "_id": "67f6c20924d8a61dbd09dbdf", + "_id": "68110661cafbcd69bd0c68e2", "_tpl": "674fe57721a9aa6be6045b96", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_handguard" }, { - "_id": "67f6c20924d8a61dbd09dbe0", + "_id": "68110661cafbcd69bd0c68e3", "_tpl": "5c1bc5612e221602b5429350", - "parentId": "67f6c20924d8a61dbd09dbdf", + "parentId": "68110661cafbcd69bd0c68e2", "slotId": "mod_foregrip" }, { - "_id": "67f6c20924d8a61dbd09dbe1", + "_id": "68110661cafbcd69bd0c68e4", "_tpl": "674fe89a4472d471fb0f07d8", - "parentId": "67f6c20924d8a61dbd09dbdf", + "parentId": "68110661cafbcd69bd0c68e2", "slotId": "mod_mount" }, { - "_id": "67f6c20924d8a61dbd09dbe2", + "_id": "68110661cafbcd69bd0c68e5", "_tpl": "674fe8dd362ea1f88b0e2792", - "parentId": "67f6c20924d8a61dbd09dbe1", + "parentId": "68110661cafbcd69bd0c68e4", "slotId": "mod_sight_front" }, { - "_id": "67f6c20924d8a61dbd09dbe3", + "_id": "68110661cafbcd69bd0c68e6", "_tpl": "674fe8b9362ea1f88b0e278d", - "parentId": "67f6c20924d8a61dbd09dbe1", + "parentId": "68110661cafbcd69bd0c68e4", "slotId": "mod_mount" }, { - "_id": "67f6c20924d8a61dbd09dbe4", + "_id": "68110661cafbcd69bd0c68e7", "_tpl": "58491f3324597764bc48fa02", - "parentId": "67f6c20924d8a61dbd09dbe3", + "parentId": "68110661cafbcd69bd0c68e6", "slotId": "mod_scope" }, { - "_id": "67f6c20924d8a61dbd09dbe5", + "_id": "68110661cafbcd69bd0c68e8", "_tpl": "674fe8cf4472d471fb0f07df", - "parentId": "67f6c20924d8a61dbd09dbe3", + "parentId": "68110661cafbcd69bd0c68e6", "slotId": "mod_sight_rear" }, { - "_id": "67f6c20924d8a61dbd09dbe6", + "_id": "68110661cafbcd69bd0c68e9", "_tpl": "59fb137a86f7740adb646af1", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_muzzle" }, { - "_id": "67f6c20924d8a61dbd09dbe7", + "_id": "68110661cafbcd69bd0c68ea", "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_pistol_grip" }, { - "_id": "67f6c20924d8a61dbd09dbe8", + "_id": "68110661cafbcd69bd0c68eb", "_tpl": "676017fe8cfeeba9f707c8d6", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_reciever" }, { - "_id": "67f6c20924d8a61dbd09dbe9", + "_id": "68110661cafbcd69bd0c68ec", "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_stock" }, { - "_id": "67f6c20924d8a61dbd09dbea", + "_id": "68110661cafbcd69bd0c68ed", "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "67f6c20924d8a61dbd09dbe9", + "parentId": "68110661cafbcd69bd0c68ec", "slotId": "mod_stock" }, { - "_id": "67f6c20924d8a61dbd09dbeb", + "_id": "68110661cafbcd69bd0c68ee", "_tpl": "674fe8f6f34d761ab8020cc8", - "parentId": "67f6c20924d8a61dbd09dbde", + "parentId": "68110661cafbcd69bd0c68e1", "slotId": "mod_magazine" } ], @@ -5524,13 +5524,13 @@ "availableInGameEditions": [], "illustrationConfig": null, "isHidden": false, - "target": "67f6c20924d8a61dbd09dbed", + "target": "68110661cafbcd69bd0c68f0", "value": 1, "isEncoded": false, "findInRaid": true, "items": [ { - "_id": "67f6c20924d8a61dbd09dbed", + "_id": "68110661cafbcd69bd0c68f0", "_tpl": "67614b3ab8c060ebb204b106", "upd": { "SpawnedInSession": true, @@ -5788,5 +5788,35 @@ "progressBarEnabled": false, "side": "All", "index": 9986 + }, + { + "id": "67c838a4c566b0028f0f2d07", + "imageUrl": "/files/achievement/67dad91e2af1a9900b0f06b1.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "67c838e5bd695f000f3c8be8", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "conditionType": "Block" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "All", + "index": 3300 } ] \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/handbook.json b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/handbook.json index abbc4b67..57b07e0d 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/handbook.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/handbook.json @@ -624,7 +624,7 @@ { "Id": "5696686a4bdc2da3298b456a", "ParentId": "5b5f78b786f77447ed5636af", - "Price": 125 + "Price": 122 }, { "Id": "572b7adb24597762ae139821", @@ -4059,7 +4059,7 @@ { "Id": "59faff1d86f7746c51718c9c", "ParentId": "5b47574386f77428ca22b2f1", - "Price": 1072442 + "Price": 1279290 }, { "Id": "5aa66a9be5b5b0214e506e89", @@ -21540,6 +21540,36 @@ "Id": "67cad3226bf74131800752b7", "ParentId": "5b47574386f77428ca22b2f4", "Price": 0 + }, + { + "Id": "676bf44c5539167c3603e869", + "ParentId": "5b5f79eb86f77447ed5636b7", + "Price": 42500 + }, + { + "Id": "67b49e7335dec48e3e05e057", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 7300 + }, + { + "Id": "67f90180f07898267b0a4ed7", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 44300 + }, + { + "Id": "67f924a9154a04c33b0a3c57", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 100000 + }, + { + "Id": "67f924adb45d94a2600a8cc8", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 100000 + }, + { + "Id": "67f924b1b07831a6ef0ce317", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 100000 } ] } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/quests.json b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/quests.json index 0e5dedbd..6190632a 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/templates/quests.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/templates/quests.json @@ -1,621 +1,4 @@ { - "60e71dc0a94be721b065bbfc": { - "QuestName": "Long Line", - "_id": "60e71dc0a94be721b065bbfc", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71dc0a94be721b065bbfc acceptPlayerMessage", - "changeQuestMessageText": "60e71dc0a94be721b065bbfc changeQuestMessageText", - "completePlayerMessage": "60e71dc0a94be721b065bbfc completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "60e73ee8b567ff641b12956f", - "conditions": [ - { - "id": "60e73f4cd1a062318d3d225e", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "60e73f9ca6e322250215f07f", - "dynamicLocale": false, - "zoneIds": [ - "place_merch_022_1", - "place_merch_022_2", - "place_merch_022_3", - "place_merch_022_4", - "place_merch_022_5", - "place_merch_022_6", - "place_merch_022_7" - ], - "conditionType": "InZone" - } - ] - }, - "id": "60e73ee8b567ff641b129570", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6101498dccda1c5f7b1dd091", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae449d986f774453a54a7e1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61014992e5b13723fc7609b1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 45, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71dc0a94be721b065bbfc description", - "failMessageText": "60e71dc0a94be721b065bbfc failMessageText", - "declinePlayerMessage": "60e71dc0a94be721b065bbfc declinePlayerMessage", - "name": "60e71dc0a94be721b065bbfc name", - "note": "60e71dc0a94be721b065bbfc note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71dc0a94be721b065bbfc startedMessageText", - "successMessageText": "60e71dc0a94be721b065bbfc successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 84000, - "id": "60f037405349d209ec627216", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "610291c0289a8754756b3a93", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17a6", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17a6", - "_tpl": "5df8a4d786f77412672a1e3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "610291c3e10c48364e47a919", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17ab", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17ab", - "_tpl": "5f60c74e3b85f6263c145586", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17ac", - "_tpl": "657bc285aab96fccee08bea3", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17ab", - "slotId": "Helmet_top" - }, - { - "_id": "68010064f81036801d0b17ad", - "_tpl": "657bc2c5a1c61ee0c3036333", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17ab", - "slotId": "Helmet_back" - }, - { - "_id": "68010064f81036801d0b17ae", - "_tpl": "657bc2e7b30eca976305118d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17ab", - "slotId": "Helmet_ears" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "675c04f4db8807b75d0f38e8": { - "QuestName": "Closer to the People", - "_id": "675c04f4db8807b75d0f38e8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c04f4db8807b75d0f38e8 acceptPlayerMessage", - "changeQuestMessageText": "675c04f4db8807b75d0f38e8 changeQuestMessageText", - "completePlayerMessage": "675c04f4db8807b75d0f38e8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "675c04f4db8807b75d0f38eb", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7b168d28a25ec7007dbb" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "675c04f4db8807b75d0f38ec", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7b168d28a25ec7007dbb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "675c04f4db8807b75d0f38ea", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "675c047fa46173572a0bd878", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c04f4db8807b75d0f38e8 description", - "failMessageText": "675c04f4db8807b75d0f38e8 failMessageText", - "declinePlayerMessage": "675c04f4db8807b75d0f38e8 declinePlayerMessage", - "name": "675c04f4db8807b75d0f38e8 name", - "note": "675c04f4db8807b75d0f38e8 note", - "traderId": "54cb57776803fa99248b456e", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c04f4db8807b75d0f38e8 startedMessageText", - "successMessageText": "675c04f4db8807b75d0f38e8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10300, - "id": "6762f0afc0560cb292d3e5e9", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 10300, - "id": "6762f0bbe02eb7ed717409b6", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17b0", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b17b0", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 10300 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6762f0c41fc090f71f5975c5", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6762f0cc4bb083aa5e27bccd", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17b3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17b2", - "_tpl": "5c052e6986f7746b207bc3c9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17b3", - "_tpl": "5c052e6986f7746b207bc3c9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac346a886f7744e1b083d67": { - "QuestName": "Signal - Part 2", - "_id": "5ac346a886f7744e1b083d67", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac346a886f7744e1b083d67 acceptPlayerMessage", - "changeQuestMessageText": "5ac346a886f7744e1b083d67 changeQuestMessageText", - "completePlayerMessage": "5ac346a886f7744e1b083d67 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb6f81d86f7740e9d452683", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573477e124597737dd42e191" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5e79986f7747398341847", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573477e124597737dd42e191" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb6f88d86f7747d215f09c1", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a358486f77429692b2790" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5e88e86f7741c5804f9db", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a358486f77429692b2790" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb6f8de86f7740e9d452685", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3b0486f7743954552bdb" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5e98886f77479bc6ca201", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3b0486f7743954552bdb" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb6f9c586f7740ace254c44", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "56742c324bdc2d150f8b456d" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5ea0586f774609f36280c", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "56742c324bdc2d150f8b456d" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b7186f774184175301d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3b7886f77418420bf36f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3467986f7741d6224abc2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac346a886f7744e1b083d67 description", - "failMessageText": "5ac346a886f7744e1b083d67 failMessageText", - "declinePlayerMessage": "5ac346a886f7744e1b083d67 declinePlayerMessage", - "name": "5ac346a886f7744e1b083d67 name", - "note": "5ac346a886f7744e1b083d67 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac346a886f7744e1b083d67 startedMessageText", - "successMessageText": "5ac346a886f7744e1b083d67 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6700, - "id": "60cc7e382b555f16df5c41c3", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7e3ca7d63f18200a24f2", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "5acb7c4586f7740fae6a5e34", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17b5", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b17b5", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5ae4498786f7744bde357695": { "QuestName": "The Key to Success", "_id": "5ae4498786f7744bde357695", @@ -783,12 +166,12 @@ "id": "5ae9c1b686f7746398105b16", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17b7", + "target": "6812400b0c5cf2cf75074b38", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17b7", + "_id": "6812400b0c5cf2cf75074b38", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 60000 @@ -802,12 +185,12 @@ "id": "5ae9c1d586f7747bf975eff3", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17ba", + "target": "6812400b0c5cf2cf75074b3b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b17b9", + "_id": "6812400b0c5cf2cf75074b3a", "_tpl": "5ab8f4ff86f77431c60d91ba", "upd": { "StackObjectsCount": 1, @@ -815,7 +198,7 @@ } }, { - "_id": "68010064f81036801d0b17ba", + "_id": "6812400b0c5cf2cf75074b3b", "_tpl": "5ab8f4ff86f77431c60d91ba", "upd": { "StackObjectsCount": 1, @@ -843,508 +226,6 @@ "arenaLocations": [], "status": 0 }, - "5ae449d986f774453a54a7e1": { - "QuestName": "Supervisor", - "_id": "5ae449d986f774453a54a7e1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae449d986f774453a54a7e1 acceptPlayerMessage", - "changeQuestMessageText": "5ae449d986f774453a54a7e1 changeQuestMessageText", - "completePlayerMessage": "5ae449d986f774453a54a7e1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9e55886f77445315f662a", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ad7247386f7747487619dc3" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9e58886f77423572433f5", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ad7247386f7747487619dc3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae9e58e86f77423572433f6", - "target": "5ae9e55886f77445315f662a", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af4186c86f77428ae313afa", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 40, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af417e386f77428ae313af3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae449c386f7744bde357697", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af4181286f77428bb55edd9", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4498786f7744bde357695", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae449d986f774453a54a7e1 description", - "failMessageText": "5ae449d986f774453a54a7e1 failMessageText", - "declinePlayerMessage": "5ae449d986f774453a54a7e1 declinePlayerMessage", - "name": "5ae449d986f774453a54a7e1 name", - "note": "5ae449d986f774453a54a7e1 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae449d986f774453a54a7e1 startedMessageText", - "successMessageText": "5ae449d986f774453a54a7e1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 24100, - "id": "5c95118b86f774551528defc", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc983365e4664318606b5c", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 250000, - "id": "5ae9e5ed86f7742cfd3cb562", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17bc", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b17bc", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 250000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc98541bdece56c249cbdb", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17be", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17be", - "_tpl": "5be4038986f774527d3fae60", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63bd873bbe101745b01ccfee", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17c8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17c8", - "_tpl": "5e9dacf986f774054d6b89f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17c9", - "_tpl": "65732de75d3a3129fb05f3dd", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b17ca", - "_tpl": "65732df4d0acf75aea06c87b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b17cb", - "_tpl": "65732e05d0acf75aea06c87f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b17cc", - "_tpl": "65732e0f6784ca384b0167ad", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b17cd", - "_tpl": "65732e215d3a3129fb05f3e1", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Collar" - }, - { - "_id": "68010064f81036801d0b17ce", - "_tpl": "65732e30dd8739f6440ef383", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Groin" - }, - { - "_id": "68010064f81036801d0b17cf", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b17d0", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17c8", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b90fa17bdcb1576b1226c8", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b17d1", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b17d1", - "_tpl": "5ca21c6986f77479963115a7" - } - ], - "loyaltyLevel": 4, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4499a86f77449783815db": { - "QuestName": "Charisma Brings Success", - "_id": "5ae4499a86f77449783815db", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4499a86f77449783815db acceptPlayerMessage", - "changeQuestMessageText": "5ae4499a86f77449783815db changeQuestMessageText", - "completePlayerMessage": "5ae4499a86f77449783815db completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5ae9c29386f77427153c7fb0", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Charisma", - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4170e86f7745c267423e9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4497b86f7744cf402ed00", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af4171686f7741c8f21cb9e", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448f286f77448d73c0131", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4499a86f77449783815db description", - "failMessageText": "5ae4499a86f77449783815db failMessageText", - "declinePlayerMessage": "5ae4499a86f77449783815db declinePlayerMessage", - "name": "5ae4499a86f77449783815db name", - "note": "5ae4499a86f77449783815db note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", - "type": "Skill", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4499a86f77449783815db startedMessageText", - "successMessageText": "5ae4499a86f77449783815db successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15600, - "id": "60cc96b35f9e6175514de2c3", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc96be20a6283a506aeb37", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 60000, - "id": "60cc96f6a7d63f18200a2509", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17d3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b17d3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 60000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc96e1646f74055e276525", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17db", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17db", - "_tpl": "5d5d87f786f77427997cfaef", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17dc", - "_tpl": "6570e5100b57c03ec90b970a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b17dd", - "_tpl": "6570e479a6560e4ee50c2b02", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b17de", - "_tpl": "6570e5674cc0d2ab1e05edbb", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b17df", - "_tpl": "6570e59b0b57c03ec90b970e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b17e0", - "_tpl": "656f9fa0498d1b7e3e071d98", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b17e1", - "_tpl": "656f9fa0498d1b7e3e071d98", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b17db", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b8d891fe356507267b2fc", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b17e2", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b17e2", - "_tpl": "5ca2151486f774244a3b8d30" - } - ], - "loyaltyLevel": 4, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "6744af0969a58fceba101fed": { "QuestName": "The Price of Independence", "_id": "6744af0969a58fceba101fed", @@ -1782,12 +663,12 @@ "id": "675851bbc29b6ca12b080256", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17e4", + "target": "6812400b0c5cf2cf75074b3d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17e4", + "_id": "6812400b0c5cf2cf75074b3d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 300000 @@ -1809,11 +690,11 @@ "id": "67585724fcea9bbf3b694aea", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b17e5", + "target": "6812400b0c5cf2cf75074b3e", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b17e5", + "_id": "6812400b0c5cf2cf75074b3e", "_tpl": "66d98233302686954b0c6f81" } ], @@ -1825,11 +706,11 @@ "id": "67585862fc73bbbf9a33c21b", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b17e6", + "target": "6812400b0c5cf2cf75074b3f", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b17e6", + "_id": "6812400b0c5cf2cf75074b3f", "_tpl": "57347ca924597744596b4e71" } ], @@ -1855,140 +736,61 @@ "arenaLocations": [], "status": 0 }, - "5ac3467986f7741d6224abc2": { - "QuestName": "Signal - Part 1", - "_id": "5ac3467986f7741d6224abc2", + "675c04f4db8807b75d0f38e8": { + "QuestName": "Closer to the People", + "_id": "675c04f4db8807b75d0f38e8", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3467986f7741d6224abc2 acceptPlayerMessage", - "changeQuestMessageText": "5ac3467986f7741d6224abc2 changeQuestMessageText", - "completePlayerMessage": "5ac3467986f7741d6224abc2 completePlayerMessage", + "acceptPlayerMessage": "675c04f4db8807b75d0f38e8 acceptPlayerMessage", + "changeQuestMessageText": "675c04f4db8807b75d0f38e8 changeQuestMessageText", + "completePlayerMessage": "675c04f4db8807b75d0f38e8 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac5e0fa86f77431c305d242", - "conditions": [ - { - "id": "5ac5e11f86f7740f9772d5a2", - "dynamicLocale": false, - "target": "place_SIGNAL_01_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac5e0fa86f77431c305d243", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "675c04f4db8807b75d0f38eb", "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", - "oneSessionOnly": true, + "isEncoded": false, + "onlyFoundInRaid": false, "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac5e13586f7746074388f92", - "conditions": [ - { - "id": "5ac5e13d86f7747cbf7845a2", - "dynamicLocale": false, - "target": "place_SIGNAL_01_2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac5e13586f7746074388f93", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac5e18c86f7743ebd6c9574", - "conditions": [ - { - "id": "5ac5e1a186f774081b7b00a3", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ac5e1b086f77422b55be712", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ac5e18c86f7743ebd6c9575", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ac5e1e286f77431c305d244", - "target": "5ac5e0fa86f77431c305d243", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac5e1eb86f7747cbf7845a3", - "target": "5ac5e13586f7746074388f93", - "conditionType": "CompleteCondition" - } + "target": [ + "675f7b168d28a25ec7007dbb" ], - "isNecessary": false, - "isResetOnConditionFailed": false + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "675c04f4db8807b75d0f38ec", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675f7b168d28a25ec7007dbb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b6186f7741cdb2f7f8e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5acf3b6986f77418440390b4", + "id": "675c04f4db8807b75d0f38ea", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac2426c86f774138762edfe", + "target": "675c047fa46173572a0bd878", "status": [ 4 ], @@ -2000,28 +802,514 @@ ], "Fail": [] }, - "description": "5ac3467986f7741d6224abc2 description", - "failMessageText": "5ac3467986f7741d6224abc2 failMessageText", - "declinePlayerMessage": "5ac3467986f7741d6224abc2 declinePlayerMessage", - "name": "5ac3467986f7741d6224abc2 name", - "note": "5ac3467986f7741d6224abc2 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", - "type": "Discover", + "description": "675c04f4db8807b75d0f38e8 description", + "failMessageText": "675c04f4db8807b75d0f38e8 failMessageText", + "declinePlayerMessage": "675c04f4db8807b75d0f38e8 declinePlayerMessage", + "name": "675c04f4db8807b75d0f38e8 name", + "note": "675c04f4db8807b75d0f38e8 note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", + "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5ac3467986f7741d6224abc2 startedMessageText", - "successMessageText": "5ac3467986f7741d6224abc2 successMessageText", + "startedMessageText": "675c04f4db8807b75d0f38e8 startedMessageText", + "successMessageText": "675c04f4db8807b75d0f38e8 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10300, + "id": "6762f0afc0560cb292d3e5e9", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 10300, + "id": "6762f0bbe02eb7ed717409b6", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b41", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b41", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 10300 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6762f0c41fc090f71f5975c5", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6762f0cc4bb083aa5e27bccd", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b44", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b43", + "_tpl": "5c052e6986f7746b207bc3c9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b44", + "_tpl": "5c052e6986f7746b207bc3c9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60e71dc0a94be721b065bbfc": { + "QuestName": "Long Line", + "_id": "60e71dc0a94be721b065bbfc", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71dc0a94be721b065bbfc acceptPlayerMessage", + "changeQuestMessageText": "60e71dc0a94be721b065bbfc changeQuestMessageText", + "completePlayerMessage": "60e71dc0a94be721b065bbfc completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "60e73ee8b567ff641b12956f", + "conditions": [ + { + "id": "60e73f4cd1a062318d3d225e", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "60e73f9ca6e322250215f07f", + "dynamicLocale": false, + "zoneIds": [ + "place_merch_022_1", + "place_merch_022_2", + "place_merch_022_3", + "place_merch_022_4", + "place_merch_022_5", + "place_merch_022_6", + "place_merch_022_7" + ], + "conditionType": "InZone" + } + ] + }, + "id": "60e73ee8b567ff641b129570", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6101498dccda1c5f7b1dd091", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae449d986f774453a54a7e1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61014992e5b13723fc7609b1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 45, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71dc0a94be721b065bbfc description", + "failMessageText": "60e71dc0a94be721b065bbfc failMessageText", + "declinePlayerMessage": "60e71dc0a94be721b065bbfc declinePlayerMessage", + "name": "60e71dc0a94be721b065bbfc name", + "note": "60e71dc0a94be721b065bbfc note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71dc0a94be721b065bbfc startedMessageText", + "successMessageText": "60e71dc0a94be721b065bbfc successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 84000, + "id": "60f037405349d209ec627216", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "610291c0289a8754756b3a93", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b46", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b46", + "_tpl": "5df8a4d786f77412672a1e3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "610291c3e10c48364e47a919", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b4b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b4b", + "_tpl": "5f60c74e3b85f6263c145586", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b4c", + "_tpl": "657bc285aab96fccee08bea3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b4b", + "slotId": "Helmet_top" + }, + { + "_id": "6812400b0c5cf2cf75074b4d", + "_tpl": "657bc2c5a1c61ee0c3036333", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b4b", + "slotId": "Helmet_back" + }, + { + "_id": "6812400b0c5cf2cf75074b4e", + "_tpl": "657bc2e7b30eca976305118d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b4b", + "slotId": "Helmet_ears" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac346a886f7744e1b083d67": { + "QuestName": "Signal - Part 2", + "_id": "5ac346a886f7744e1b083d67", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac346a886f7744e1b083d67 acceptPlayerMessage", + "changeQuestMessageText": "5ac346a886f7744e1b083d67 changeQuestMessageText", + "completePlayerMessage": "5ac346a886f7744e1b083d67 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb6f81d86f7740e9d452683", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573477e124597737dd42e191" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5e79986f7747398341847", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573477e124597737dd42e191" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb6f88d86f7747d215f09c1", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a358486f77429692b2790" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5e88e86f7741c5804f9db", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a358486f77429692b2790" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb6f8de86f7740e9d452685", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3b0486f7743954552bdb" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5e98886f77479bc6ca201", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3b0486f7743954552bdb" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb6f9c586f7740ace254c44", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "56742c324bdc2d150f8b456d" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5ea0586f774609f36280c", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "56742c324bdc2d150f8b456d" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b7186f774184175301d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b7886f77418420bf36f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3467986f7741d6224abc2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac346a886f7744e1b083d67 description", + "failMessageText": "5ac346a886f7744e1b083d67 failMessageText", + "declinePlayerMessage": "5ac346a886f7744e1b083d67 declinePlayerMessage", + "name": "5ac346a886f7744e1b083d67 name", + "note": "5ac346a886f7744e1b083d67 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac346a886f7744e1b083d67 startedMessageText", + "successMessageText": "5ac346a886f7744e1b083d67 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], "value": 6700, - "id": "60cc7df12b555f16df5c41c2", + "id": "60cc7e382b555f16df5c41c3", "type": "Experience", "index": 0, "unknown": false @@ -2029,7 +1317,7 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "60cc7df5af2e5506c37822c3", + "id": "60cc7e3ca7d63f18200a24f2", "type": "TraderStanding", "index": 0, "target": "5a7c2eca46aef81a7ca2145d", @@ -2037,58 +1325,524 @@ }, { "availableInGameEditions": [], - "value": 10000, - "id": "5acb7be086f77417d0797166", + "value": 50000, + "id": "5acb7c4586f7740fae6a5e34", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17e8", + "target": "6812400b0c5cf2cf75074b50", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17e8", + "_id": "6812400b0c5cf2cf75074b50", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 10000 + "StackObjectsCount": 50000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae449d986f774453a54a7e1": { + "QuestName": "Supervisor", + "_id": "5ae449d986f774453a54a7e1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae449d986f774453a54a7e1 acceptPlayerMessage", + "changeQuestMessageText": "5ae449d986f774453a54a7e1 changeQuestMessageText", + "completePlayerMessage": "5ae449d986f774453a54a7e1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9e55886f77445315f662a", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ad7247386f7747487619dc3" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9e58886f77423572433f5", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ad7247386f7747487619dc3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae9e58e86f77423572433f6", + "target": "5ae9e55886f77445315f662a", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5af4186c86f77428ae313afa", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 40, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af417e386f77428ae313af3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae449c386f7744bde357697", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af4181286f77428bb55edd9", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4498786f7744bde357695", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae449d986f774453a54a7e1 description", + "failMessageText": "5ae449d986f774453a54a7e1 failMessageText", + "declinePlayerMessage": "5ae449d986f774453a54a7e1 declinePlayerMessage", + "name": "5ae449d986f774453a54a7e1 name", + "note": "5ae449d986f774453a54a7e1 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae449d986f774453a54a7e1 startedMessageText", + "successMessageText": "5ae449d986f774453a54a7e1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 24100, + "id": "5c95118b86f774551528defc", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc983365e4664318606b5c", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 250000, + "id": "5ae9e5ed86f7742cfd3cb562", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b52", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b52", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 250000 } } ] }, { "availableInGameEditions": [], - "value": 3, - "id": "5acb7c0886f7740fae6a5dbd", + "value": 1, + "id": "60cc98541bdece56c249cbdb", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17ec", + "target": "6812400b0c5cf2cf75074b54", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b17ea", - "_tpl": "5a718f958dc32e00094b97e7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17eb", - "_tpl": "5a718f958dc32e00094b97e7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17ec", - "_tpl": "5a718f958dc32e00094b97e7", + "_id": "6812400b0c5cf2cf75074b54", + "_tpl": "5be4038986f774527d3fae60", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63bd873bbe101745b01ccfee", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b5e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b5e", + "_tpl": "5e9dacf986f774054d6b89f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b5f", + "_tpl": "65732de75d3a3129fb05f3dd", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074b60", + "_tpl": "65732df4d0acf75aea06c87b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074b61", + "_tpl": "65732e05d0acf75aea06c87f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074b62", + "_tpl": "65732e0f6784ca384b0167ad", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074b63", + "_tpl": "65732e215d3a3129fb05f3e1", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Collar" + }, + { + "_id": "6812400b0c5cf2cf75074b64", + "_tpl": "65732e30dd8739f6440ef383", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Groin" + }, + { + "_id": "6812400b0c5cf2cf75074b65", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074b66", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b5e", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b90fa17bdcb1576b1226c8", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074b67", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b67", + "_tpl": "5ca21c6986f77479963115a7" + } + ], + "loyaltyLevel": 4, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4499a86f77449783815db": { + "QuestName": "Charisma Brings Success", + "_id": "5ae4499a86f77449783815db", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4499a86f77449783815db acceptPlayerMessage", + "changeQuestMessageText": "5ae4499a86f77449783815db changeQuestMessageText", + "completePlayerMessage": "5ae4499a86f77449783815db completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5ae9c29386f77427153c7fb0", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "Charisma", + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4170e86f7745c267423e9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4497b86f7744cf402ed00", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af4171686f7741c8f21cb9e", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448f286f77448d73c0131", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4499a86f77449783815db description", + "failMessageText": "5ae4499a86f77449783815db failMessageText", + "declinePlayerMessage": "5ae4499a86f77449783815db declinePlayerMessage", + "name": "5ae4499a86f77449783815db name", + "note": "5ae4499a86f77449783815db note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", + "type": "Skill", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4499a86f77449783815db startedMessageText", + "successMessageText": "5ae4499a86f77449783815db successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15600, + "id": "60cc96b35f9e6175514de2c3", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc96be20a6283a506aeb37", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 60000, + "id": "60cc96f6a7d63f18200a2509", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b69", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b69", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 60000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc96e1646f74055e276525", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b71", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b71", + "_tpl": "5d5d87f786f77427997cfaef", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b72", + "_tpl": "6570e5100b57c03ec90b970a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074b73", + "_tpl": "6570e479a6560e4ee50c2b02", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074b74", + "_tpl": "6570e5674cc0d2ab1e05edbb", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074b75", + "_tpl": "6570e59b0b57c03ec90b970e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074b76", + "_tpl": "656f9fa0498d1b7e3e071d98", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074b77", + "_tpl": "656f9fa0498d1b7e3e071d98", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074b71", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b8d891fe356507267b2fc", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074b78", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b78", + "_tpl": "5ca2151486f774244a3b8d30" + } + ], + "loyaltyLevel": 4, + "traderId": "5ac3b934156ae10c4430e83c" } ], "Fail": [] @@ -2538,12 +2292,12 @@ "id": "675859a948a56e046abe50c3", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17ee", + "target": "6812400b0c5cf2cf75074b7a", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17ee", + "_id": "6812400b0c5cf2cf75074b7a", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 300000 @@ -2565,11 +2319,11 @@ "id": "67585ed9b45774471005567f", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b17ef", + "target": "6812400b0c5cf2cf75074b7b", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b17ef", + "_id": "6812400b0c5cf2cf75074b7b", "_tpl": "66d98233302686954b0c6f81" } ], @@ -2581,11 +2335,11 @@ "id": "67585ee10fda433711e12f4b", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b17f0", + "target": "6812400b0c5cf2cf75074b7c", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b17f0", + "_id": "6812400b0c5cf2cf75074b7c", "_tpl": "57347ca924597744596b4e71" } ], @@ -2611,175 +2365,6 @@ "arenaLocations": [], "status": 0 }, - "675c1cf4a757ddd00404f0a3": { - "QuestName": "Work Smarter", - "_id": "675c1cf4a757ddd00404f0a3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c1cf4a757ddd00404f0a3 acceptPlayerMessage", - "changeQuestMessageText": "675c1cf4a757ddd00404f0a3 changeQuestMessageText", - "completePlayerMessage": "675c1cf4a757ddd00404f0a3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "676ab31c058363b09072c78e", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "675c1cf4a757ddd00404f0a6", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675aaab74bca0b001d02f356" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "675c1cf4a757ddd00404f0a7", - "conditions": [ - { - "id": "676be7dcf9483d2aabc83437", - "dynamicLocale": false, - "target": "exit777", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "675c1cf4a757ddd00404f0a6", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762f2023cc36958678613e8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d24b81486f77439c92d6ba8", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c1cf4a757ddd00404f0a3 description", - "failMessageText": "675c1cf4a757ddd00404f0a3 failMessageText", - "declinePlayerMessage": "675c1cf4a757ddd00404f0a3 declinePlayerMessage", - "name": "675c1cf4a757ddd00404f0a3 name", - "note": "675c1cf4a757ddd00404f0a3 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c1cf4a757ddd00404f0a3 startedMessageText", - "successMessageText": "675c1cf4a757ddd00404f0a3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6600, - "id": "6762f217d2cd8ebfa6b55ffa", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 32000, - "id": "6762f221172ad5de43ed7896", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17f2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b17f2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 32000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "6762f22a5545ef599a75a8f0", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6762f23501a76c1d2dcc966d", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b17f5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b17f4", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b17f5", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5ac3479086f7742880308199": { "QuestName": "Insider", "_id": "5ac3479086f7742880308199", @@ -2888,12 +2473,12 @@ "id": "5acb7a2986f77440a60503c1", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17f7", + "target": "6812400b0c5cf2cf75074b7e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17f7", + "_id": "6812400b0c5cf2cf75074b7e", "_tpl": "569668774bdc2da2298b4568", "upd": { "StackObjectsCount": 800 @@ -2907,12 +2492,12 @@ "id": "5acb7a6e86f77432b76dbca9", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17fa", + "target": "6812400b0c5cf2cf75074b81", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b17f9", + "_id": "6812400b0c5cf2cf75074b80", "_tpl": "5a32a064c4a28200741e22de", "upd": { "StackObjectsCount": 1, @@ -2920,7 +2505,7 @@ } }, { - "_id": "68010064f81036801d0b17fa", + "_id": "6812400b0c5cf2cf75074b81", "_tpl": "5a32a064c4a28200741e22de", "upd": { "StackObjectsCount": 1, @@ -2940,6 +2525,2255 @@ "arenaLocations": [], "status": 0 }, + "5ac3475486f7741d6224abd3": { + "QuestName": "Bad Habit", + "_id": "5ac3475486f7741d6224abd3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3475486f7741d6224abd3 acceptPlayerMessage", + "changeQuestMessageText": "5ac3475486f7741d6224abd3 changeQuestMessageText", + "completePlayerMessage": "5ac3475486f7741d6224abd3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5ee9986f7746e7a509a26", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573476d324597737da2adc13" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5eee986f77401fd341c9e", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573476d324597737da2adc13" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5ef2a86f7741c5804f9f5", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5734770f24597738025ee254" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5ef5686f77416ca60f644", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5734770f24597738025ee254" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5ef9886f7746e7a509a2d", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573476f124597737e04bf328" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5eff886f7740f43322559", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573476f124597737e04bf328" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3c3086f77418d851688f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3c3d86f7741ce21f9b1a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3460c86f7742880308185", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3475486f7741d6224abd3 description", + "failMessageText": "5ac3475486f7741d6224abd3 failMessageText", + "declinePlayerMessage": "5ac3475486f7741d6224abd3 declinePlayerMessage", + "name": "5ac3475486f7741d6224abd3 name", + "note": "5ac3475486f7741d6224abd3 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4d9aa86f7744784484abf.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3475486f7741d6224abd3 startedMessageText", + "successMessageText": "5ac3475486f7741d6224abd3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6700, + "id": "60cc7efa7c496e588343a6ed", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7f0177dc197c774254d1", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 300, + "id": "5acb7b7a86f7747a5a561a40", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b83", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b83", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 300 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ec1a05813e6fb78d4420dbb", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b84", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b84", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf75074b85", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "6812400b0c5cf2cf75074b84", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074b86", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "6812400b0c5cf2cf75074b84", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074b87", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "6812400b0c5cf2cf75074b86", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074b88", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "6812400b0c5cf2cf75074b86", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75074b89", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6812400b0c5cf2cf75074b84", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "5ec1a07483b69d213d3c2ef0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b96", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b8c", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b8d", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b8c", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074b8e", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b8f", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b8e", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074b90", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b91", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b90", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074b92", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b93", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b92", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074b94", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b95", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b94", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074b96", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b97", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074b96", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "62a11832c30cfa1d366aeb84", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074b98", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b98", + "_tpl": "62a0a043cf4a99369e2624a5" + } + ], + "loyaltyLevel": 1, + "traderId": "54cb57776803fa99248b456e" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac3467986f7741d6224abc2": { + "QuestName": "Signal - Part 1", + "_id": "5ac3467986f7741d6224abc2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3467986f7741d6224abc2 acceptPlayerMessage", + "changeQuestMessageText": "5ac3467986f7741d6224abc2 changeQuestMessageText", + "completePlayerMessage": "5ac3467986f7741d6224abc2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac5e0fa86f77431c305d242", + "conditions": [ + { + "id": "5ac5e11f86f7740f9772d5a2", + "dynamicLocale": false, + "target": "place_SIGNAL_01_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac5e0fa86f77431c305d243", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac5e13586f7746074388f92", + "conditions": [ + { + "id": "5ac5e13d86f7747cbf7845a2", + "dynamicLocale": false, + "target": "place_SIGNAL_01_2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac5e13586f7746074388f93", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac5e18c86f7743ebd6c9574", + "conditions": [ + { + "id": "5ac5e1a186f774081b7b00a3", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ac5e1b086f77422b55be712", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ac5e18c86f7743ebd6c9575", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ac5e1e286f77431c305d244", + "target": "5ac5e0fa86f77431c305d243", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac5e1eb86f7747cbf7845a3", + "target": "5ac5e13586f7746074388f93", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b6186f7741cdb2f7f8e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b6986f77418440390b4", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac2426c86f774138762edfe", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3467986f7741d6224abc2 description", + "failMessageText": "5ac3467986f7741d6224abc2 failMessageText", + "declinePlayerMessage": "5ac3467986f7741d6224abc2 declinePlayerMessage", + "name": "5ac3467986f7741d6224abc2 name", + "note": "5ac3467986f7741d6224abc2 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3467986f7741d6224abc2 startedMessageText", + "successMessageText": "5ac3467986f7741d6224abc2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6700, + "id": "60cc7df12b555f16df5c41c2", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7df5af2e5506c37822c3", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 10000, + "id": "5acb7be086f77417d0797166", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b9a", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b9a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 10000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5acb7c0886f7740fae6a5dbd", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074b9e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074b9c", + "_tpl": "5a718f958dc32e00094b97e7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b9d", + "_tpl": "5a718f958dc32e00094b97e7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074b9e", + "_tpl": "5a718f958dc32e00094b97e7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac3477486f7741d651d6885": { + "QuestName": "Scout", + "_id": "5ac3477486f7741d651d6885", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3477486f7741d651d6885 acceptPlayerMessage", + "changeQuestMessageText": "5ac3477486f7741d651d6885 changeQuestMessageText", + "completePlayerMessage": "5ac3477486f7741d651d6885 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac61a8a86f7743a8d663c76", + "conditions": [ + { + "id": "5ac61a9b86f7743a8b697a2d", + "dynamicLocale": false, + "target": "place_pacemaker_SCOUT_01", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac61a8a86f7743a8d663c77", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac61ab986f7746e352cec8b", + "conditions": [ + { + "id": "5ac61ac586f7743a8b697a35", + "dynamicLocale": false, + "target": "place_pacemaker_SCOUT_02", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac61ab986f7746e352cec8c", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac61adf86f774741c1bf095", + "conditions": [ + { + "id": "5ac61aea86f7743a8b697a36", + "dynamicLocale": false, + "target": "place_pacemaker_SCOUT_03", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac61adf86f774741c1bf096", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a865ce1943b749b5021f87", + "conditions": [ + { + "id": "63a865f51943b749b5021f88", + "dynamicLocale": false, + "target": "place_pacemaker_SCOUT_04", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a865ce1943b749b5021f86", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac61b1486f7743a8f30fc83", + "conditions": [ + { + "id": "5ac61b1c86f774741c1bf0a1", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5b7ffa8e86f77457da4f820a", + "dynamicLocale": false, + "target": [ + "factory4_day", + "factory4_night" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ac61b1486f7743a8f30fc84", + "index": 4, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ac61b2f86f7743a8d663c98", + "target": "5ac61a8a86f7743a8d663c77", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac61b3386f7743a8f30fc86", + "target": "5ac61ab986f7746e352cec8c", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac61b3a86f7743a8f30fc87", + "target": "5ac61adf86f774741c1bf096", + "conditionType": "CompleteCondition" + }, + { + "id": "63a866e710b7a13eb0159655", + "target": "63a865ce1943b749b5021f86", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3bcb86f77418403493b7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3bd286f7741bb83784a3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac346a886f7744e1b083d67", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3477486f7741d651d6885 description", + "failMessageText": "5ac3477486f7741d651d6885 failMessageText", + "declinePlayerMessage": "5ac3477486f7741d651d6885 declinePlayerMessage", + "name": "5ac3477486f7741d651d6885 name", + "note": "5ac3477486f7741d651d6885 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/5ac4da0486f7744cc7701bdc.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3477486f7741d651d6885 startedMessageText", + "successMessageText": "5ac3477486f7741d651d6885 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6800, + "id": "60cc7f24f09d61072d6d00ce", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7f2a98b49270603645e5", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "5ace322c86f7744aac5392d5", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ba0", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ba0", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc7f3daf2e5506c37822cb", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ba2", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ba2", + "_tpl": "5448ba0b4bdc2d02308b456c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "675c1cf4a757ddd00404f0a3": { + "QuestName": "Work Smarter", + "_id": "675c1cf4a757ddd00404f0a3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c1cf4a757ddd00404f0a3 acceptPlayerMessage", + "changeQuestMessageText": "675c1cf4a757ddd00404f0a3 changeQuestMessageText", + "completePlayerMessage": "675c1cf4a757ddd00404f0a3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "676ab31c058363b09072c78e", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "675c1cf4a757ddd00404f0a6", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675aaab74bca0b001d02f356" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "675c1cf4a757ddd00404f0a7", + "conditions": [ + { + "id": "676be7dcf9483d2aabc83437", + "dynamicLocale": false, + "target": "exit777", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "675c1cf4a757ddd00404f0a6", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6762f2023cc36958678613e8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d24b81486f77439c92d6ba8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c1cf4a757ddd00404f0a3 description", + "failMessageText": "675c1cf4a757ddd00404f0a3 failMessageText", + "declinePlayerMessage": "675c1cf4a757ddd00404f0a3 declinePlayerMessage", + "name": "675c1cf4a757ddd00404f0a3 name", + "note": "675c1cf4a757ddd00404f0a3 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c1cf4a757ddd00404f0a3 startedMessageText", + "successMessageText": "675c1cf4a757ddd00404f0a3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6600, + "id": "6762f217d2cd8ebfa6b55ffa", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 32000, + "id": "6762f221172ad5de43ed7896", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ba4", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ba4", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 32000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "6762f22a5545ef599a75a8f0", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6762f23501a76c1d2dcc966d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ba7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ba6", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ba7", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "675c047fa46173572a0bd878": { + "QuestName": "Shipment Tracking", + "_id": "675c047fa46173572a0bd878", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c047fa46173572a0bd878 acceptPlayerMessage", + "changeQuestMessageText": "675c047fa46173572a0bd878 changeQuestMessageText", + "completePlayerMessage": "675c047fa46173572a0bd878 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "675c04b3fc6b273a36ed294a", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675f7acc4076a741a3061566" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "675c04c1b68cc8180efb38c6", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675f7acc4076a741a3061566" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "675c049993cfc3bb9a80429a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "675c03d1f7da9792a405549a", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c047fa46173572a0bd878 description", + "failMessageText": "675c047fa46173572a0bd878 failMessageText", + "declinePlayerMessage": "675c047fa46173572a0bd878 declinePlayerMessage", + "name": "675c047fa46173572a0bd878 name", + "note": "675c047fa46173572a0bd878 note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c047fa46173572a0bd878 startedMessageText", + "successMessageText": "675c047fa46173572a0bd878 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9600, + "id": "6762f041c8a15bcac7d105d1", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 52000, + "id": "6762f04d0f98353d7a7929d0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ba9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ba9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 52000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6762f056c054785aa7f585a9", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6762f06fe0447929e3ba67af", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bac", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bab", + "_tpl": "62a0a124de7ac81993580542", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074bac", + "_tpl": "62a0a124de7ac81993580542", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639872fa9b4fb827b200d8e5": { + "QuestName": "Gunsmith - Part 9", + "_id": "639872fa9b4fb827b200d8e5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639872fa9b4fb827b200d8e5 acceptPlayerMessage", + "changeQuestMessageText": "639872fa9b4fb827b200d8e5 changeQuestMessageText", + "completePlayerMessage": "639872fa9b4fb827b200d8e5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "6398776f93ae507d5858c3a8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "56d59856d2720bd8418b456a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 80.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 20, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 610.0, + "compareMethod": "<=" + }, + "weight": { + "value": 1.5, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5c00076d0db834001d23ee1f", + "5c0009510db834001966907f" + ], + "hasItemFromCategory": [ + "55818b164bdc2ddc698b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "6398acabcd51826f7a069b89", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 19, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639aef8881b99001240bbe16", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae3277186f7745973054106", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639872fa9b4fb827b200d8e5 description", + "failMessageText": "639872fa9b4fb827b200d8e5 failMessageText", + "declinePlayerMessage": "639872fa9b4fb827b200d8e5 declinePlayerMessage", + "name": "639872fa9b4fb827b200d8e5 name", + "note": "639872fa9b4fb827b200d8e5 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae950f83fd6083938904c.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639872fa9b4fb827b200d8e5 startedMessageText", + "successMessageText": "639872fa9b4fb827b200d8e5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9800, + "id": "6398af00cadede58636ddd55", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6398aeeceee7ff72370f7dd9", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 300, + "id": "6398aed2700117662d337be7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bae", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bae", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 300 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398aea5c8f8cc12a47b02a8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bb1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bb0", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074bb1", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19bebfcae11642e50f9b9", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074bb2", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bb2", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074bb3", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6812400b0c5cf2cf75074bb2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074bb4", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6812400b0c5cf2cf75074bb2", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074bb5", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6812400b0c5cf2cf75074bb2", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074bb6", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6812400b0c5cf2cf75074bb5", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074bb7", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6812400b0c5cf2cf75074bb6", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074bb8", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6812400b0c5cf2cf75074bb6", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75074bb9", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "6812400b0c5cf2cf75074bb5", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074bba", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "6812400b0c5cf2cf75074bb9", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074bbb", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "6812400b0c5cf2cf75074bb5", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074bbc", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf75074bb2", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074bbd", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "6812400b0c5cf2cf75074bbc", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf75074bbe", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6812400b0c5cf2cf75074bb2", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19bf52c2d4f2e4807808f", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074bbf", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bbf", + "_tpl": "5cc86832d7f00c000d3a6e6c" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b47799d86f7746c5d6a5fd8": { + "QuestName": "Gunsmith - Part 12", + "_id": "5b47799d86f7746c5d6a5fd8", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage", + "changeQuestMessageText": "5b47799d86f7746c5d6a5fd8 changeQuestMessageText", + "completePlayerMessage": "5b47799d86f7746c5d6a5fd8 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5b477b3b86f77401da02e6c4", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "58948c8e86f77409493f7266" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 300.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 52.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 225.0, + "compareMethod": "<=" + }, + "weight": { + "value": 4.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5b07db875acfc40dc528a5f6", + "5b3a16655acfc40016387a2a", + "5b07dd285acfc4001754240d" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0d6086f7742c1f5a3c4d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 23, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f085586f7747a2910a9b2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639872fc93ae507d5858c3a6", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b47799d86f7746c5d6a5fd8 description", + "failMessageText": "5b47799d86f7746c5d6a5fd8 failMessageText", + "declinePlayerMessage": "5b47799d86f7746c5d6a5fd8 declinePlayerMessage", + "name": "5b47799d86f7746c5d6a5fd8 name", + "note": "5b47799d86f7746c5d6a5fd8 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5b4785f586f77470315db7ed.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b47799d86f7746c5d6a5fd8 startedMessageText", + "successMessageText": "5b47799d86f7746c5d6a5fd8 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 12300, + "id": "60cc78f26a2a1958fc523205", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc78f78f570e28f148115f", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "5b48768d86f7744a14343aea", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bc1", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bc1", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5b48769b86f7744d06237e54", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bc3", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bc3", + "_tpl": "5a7c147ce899ef00150bd8b8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc791f8f570e28f1481161", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bc5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bc5", + "_tpl": "5cebec00d7f00c065c53522a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc794565e4664318606af9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bc7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bc7", + "_tpl": "5c6592372e221600133e47d7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6399b0c3cadede58636ddd56", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bc9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bc9", + "_tpl": "5a7c147ce899ef00150bd8b8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "673f4e956f1b89c7bc0f56ef": { + "QuestName": "Hot Wheels", + "_id": "673f4e956f1b89c7bc0f56ef", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "673f4e956f1b89c7bc0f56ef acceptPlayerMessage", + "changeQuestMessageText": "673f4e956f1b89c7bc0f56ef changeQuestMessageText", + "completePlayerMessage": "673f4e956f1b89c7bc0f56ef completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "673f507029a1128d5c4d7498", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Btr_wheels", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "673f5065cdfe082966842575", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "673f507029a1128d5c4d7498", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Wrong_wheels", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "673f4ef514413b8e0da8ee15", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6752f6d83038f7df520c83e8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "673f5069fd98c4d6d89e7a4c", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Wrong_wheels", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ] + }, + "description": "673f4e956f1b89c7bc0f56ef description", + "failMessageText": "673f4e956f1b89c7bc0f56ef failMessageText", + "declinePlayerMessage": "673f4e956f1b89c7bc0f56ef declinePlayerMessage", + "name": "673f4e956f1b89c7bc0f56ef name", + "note": "673f4e956f1b89c7bc0f56ef note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "any", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "673f4e956f1b89c7bc0f56ef startedMessageText", + "successMessageText": "673f4e956f1b89c7bc0f56ef successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 24300, + "id": "675817d4d2cc390dd059492f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 116000, + "id": "675817e5009e791281adb147", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bcb", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bcb", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 116000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "675817f01182d14a6ce22730", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758180d24adbc261147cf37", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bcd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bcd", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "600302d73b897b11364cd161": { + "QuestName": "Hunter", + "_id": "600302d73b897b11364cd161", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "600302d73b897b11364cd161 acceptPlayerMessage", + "changeQuestMessageText": "600302d73b897b11364cd161 changeQuestMessageText", + "completePlayerMessage": "600302d73b897b11364cd161 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "600303250b79c6604058ce2f", + "conditions": [ + { + "id": "60030339009aaa47f3044281", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "600303250b79c6604058ce30", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "TraderLoyalty", + "id": "600304b78dfec348e767018c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5c0647fdd443bc2504c2d371", + "globalQuestCounterId": "", + "value": 4, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "62a8381c0b9c482a93053993", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2ee86f77443e35162ea", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "600302d73b897b11364cd161 description", + "failMessageText": "600302d73b897b11364cd161 failMessageText", + "declinePlayerMessage": "600302d73b897b11364cd161 declinePlayerMessage", + "name": "600302d73b897b11364cd161 name", + "note": "600302d73b897b11364cd161 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5d69470786f774238a38d844.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "600302d73b897b11364cd161 startedMessageText", + "successMessageText": "600302d73b897b11364cd161 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 100000, + "id": "60030420fc172404495164e8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bcf", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bcf", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 100000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "600307a2fc172404495164f7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bd1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bd1", + "_tpl": "5c1267ee86f77416ec610f72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "600307e1fc172404495164fe", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074bd3", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bd3", + "_tpl": "59fb023c86f7746d0d4b423c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "600306ee63625014312be3bb", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074bd4", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074bd4", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074bd5", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "6812400b0c5cf2cf75074bd4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074bd6", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "6812400b0c5cf2cf75074bd4", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074bd7", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf75074bd4", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400b0c5cf2cf75074bd8", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "6812400b0c5cf2cf75074bd7", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf75074bd9", + "_tpl": "5fc278107283c4046c581489", + "parentId": "6812400b0c5cf2cf75074bd4", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074bda", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "6812400b0c5cf2cf75074bd9", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074bdb", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "6812400b0c5cf2cf75074bda", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074bdc", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "6812400b0c5cf2cf75074bda", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75074bdd", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "6812400b0c5cf2cf75074bd9", + "slotId": "mod_handguard" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5ac346e886f7741d6118b99b": { "QuestName": "Signal - Part 4", "_id": "5ac346e886f7741d6118b99b", @@ -3033,12 +4867,12 @@ "id": "5acb7d0786f7742fa2019cc3", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17fc", + "target": "6812400b0c5cf2cf75074bdf", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b17fc", + "_id": "6812400b0c5cf2cf75074bdf", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -3052,12 +4886,12 @@ "id": "5acb7d3986f7740ee6641447", "type": "Item", "index": 0, - "target": "68010064f81036801d0b17fe", + "target": "6812400b0c5cf2cf75074be1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b17fe", + "_id": "6812400b0c5cf2cf75074be1", "_tpl": "618ba27d9008e4636a67f61d", "upd": { "StackObjectsCount": 1, @@ -3403,12 +5237,12 @@ "id": "5a28005d86f7741e20754241", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1800", + "target": "6812400b0c5cf2cf75074be3", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b1800", + "_id": "6812400b0c5cf2cf75074be3", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 800 @@ -3422,12 +5256,12 @@ "id": "60cc6a1faf2e5506c3782299", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1803", + "target": "6812400b0c5cf2cf75074be6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1802", + "_id": "6812400b0c5cf2cf75074be5", "_tpl": "5d1c819a86f774771b0acd6c", "upd": { "StackObjectsCount": 1, @@ -3435,7 +5269,7 @@ } }, { - "_id": "68010064f81036801d0b1803", + "_id": "6812400b0c5cf2cf75074be6", "_tpl": "5d1c819a86f774771b0acd6c", "upd": { "StackObjectsCount": 1, @@ -3449,11 +5283,11 @@ "id": "655b74107f92d5105c6f7b77", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1804", + "target": "6812400b0c5cf2cf75074be7", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1804", + "_id": "6812400b0c5cf2cf75074be7", "_tpl": "5c0d5ae286f7741e46554302" } ], @@ -3465,11 +5299,11 @@ "id": "5ac66c4f86f77403df401d38", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1805", + "target": "6812400b0c5cf2cf75074be8", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1805", + "_id": "6812400b0c5cf2cf75074be8", "_tpl": "593d493f86f7745e6b2ceb22" } ], @@ -3598,12 +5432,12 @@ "id": "6769733f044177ab3920833e", "type": "Item", "index": 0, - "target": "68010064f81036801d0b180e", + "target": "6812400b0c5cf2cf75074bf1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b180e", + "_id": "6812400b0c5cf2cf75074bf1", "_tpl": "674d6121c09f69dfb201a888", "upd": { "StackObjectsCount": 1, @@ -3615,66 +5449,66 @@ } }, { - "_id": "68010064f81036801d0b180f", + "_id": "6812400b0c5cf2cf75074bf2", "_tpl": "63f4da90f31d4a33b87bd054", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_pistol_grip" }, { - "_id": "68010064f81036801d0b1810", + "_id": "6812400b0c5cf2cf75074bf3", "_tpl": "674d5e287075e056160e0176", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_handguard" }, { - "_id": "68010064f81036801d0b1811", + "_id": "6812400b0c5cf2cf75074bf4", "_tpl": "628a665a86cbd9750d2ff5e5", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_reciever" }, { - "_id": "68010064f81036801d0b1812", + "_id": "6812400b0c5cf2cf75074bf5", "_tpl": "5a33b2c9c4a282000c5a9511", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_scope" }, { - "_id": "68010064f81036801d0b1813", + "_id": "6812400b0c5cf2cf75074bf6", "_tpl": "5a32aa8bc4a2826c6e06d737", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1812", + "parentId": "6812400b0c5cf2cf75074bf5", "slotId": "mod_scope" }, { - "_id": "68010064f81036801d0b1814", + "_id": "6812400b0c5cf2cf75074bf7", "_tpl": "5b0e794b5acfc47a877359b2", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_stock_000" }, { - "_id": "68010064f81036801d0b1815", + "_id": "6812400b0c5cf2cf75074bf8", "_tpl": "5c0548ae0db834001966a3c2", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b180e", + "parentId": "6812400b0c5cf2cf75074bf1", "slotId": "mod_magazine" } ] @@ -3695,12 +5529,12 @@ "id": "6762f54bcc5c1a483fe3b7ee", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1817", + "target": "6812400b0c5cf2cf75074bfa", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b1817", + "_id": "6812400b0c5cf2cf75074bfa", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 65000 @@ -3723,12 +5557,12 @@ "id": "6762f5675910a8f6d35ef15d", "type": "Item", "index": 0, - "target": "68010064f81036801d0b182c", + "target": "6812400b0c5cf2cf75074c0f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1822", + "_id": "6812400b0c5cf2cf75074c05", "_tpl": "5c0e625a86f7742d77340f62", "upd": { "StackObjectsCount": 1, @@ -3736,88 +5570,88 @@ } }, { - "_id": "68010064f81036801d0b1823", + "_id": "6812400b0c5cf2cf75074c06", "_tpl": "65764275d8537eb26a0355e9", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Soft_armor_front" }, { - "_id": "68010064f81036801d0b1824", + "_id": "6812400b0c5cf2cf75074c07", "_tpl": "657642b0e6d5dd75f40688a5", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Soft_armor_back" }, { - "_id": "68010064f81036801d0b1825", + "_id": "6812400b0c5cf2cf75074c08", "_tpl": "6576434820cc24d17102b148", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Soft_armor_left" }, { - "_id": "68010064f81036801d0b1826", + "_id": "6812400b0c5cf2cf75074c09", "_tpl": "657643732bc38ef78e076477", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "soft_armor_right" }, { - "_id": "68010064f81036801d0b1827", + "_id": "6812400b0c5cf2cf75074c0a", "_tpl": "657643a220cc24d17102b14c", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Collar" }, { - "_id": "68010064f81036801d0b1828", + "_id": "6812400b0c5cf2cf75074c0b", "_tpl": "656f63c027aed95beb08f62c", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Front_plate" }, { - "_id": "68010064f81036801d0b1829", + "_id": "6812400b0c5cf2cf75074c0c", "_tpl": "656fafe3498d1b7e3e071da4", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Back_plate" }, { - "_id": "68010064f81036801d0b182a", + "_id": "6812400b0c5cf2cf75074c0d", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Left_side_plate" }, { - "_id": "68010064f81036801d0b182b", + "_id": "6812400b0c5cf2cf75074c0e", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b1822", + "parentId": "6812400b0c5cf2cf75074c05", "slotId": "Right_side_plate" }, { - "_id": "68010064f81036801d0b182c", + "_id": "6812400b0c5cf2cf75074c0f", "_tpl": "5c0e625a86f7742d77340f62", "upd": { "StackObjectsCount": 1, @@ -3825,84 +5659,84 @@ } }, { - "_id": "68010064f81036801d0b182d", + "_id": "6812400b0c5cf2cf75074c10", "_tpl": "65764275d8537eb26a0355e9", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Soft_armor_front" }, { - "_id": "68010064f81036801d0b182e", + "_id": "6812400b0c5cf2cf75074c11", "_tpl": "657642b0e6d5dd75f40688a5", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Soft_armor_back" }, { - "_id": "68010064f81036801d0b182f", + "_id": "6812400b0c5cf2cf75074c12", "_tpl": "6576434820cc24d17102b148", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Soft_armor_left" }, { - "_id": "68010064f81036801d0b1830", + "_id": "6812400b0c5cf2cf75074c13", "_tpl": "657643732bc38ef78e076477", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "soft_armor_right" }, { - "_id": "68010064f81036801d0b1831", + "_id": "6812400b0c5cf2cf75074c14", "_tpl": "657643a220cc24d17102b14c", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Collar" }, { - "_id": "68010064f81036801d0b1832", + "_id": "6812400b0c5cf2cf75074c15", "_tpl": "656f63c027aed95beb08f62c", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Front_plate" }, { - "_id": "68010064f81036801d0b1833", + "_id": "6812400b0c5cf2cf75074c16", "_tpl": "656fafe3498d1b7e3e071da4", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Back_plate" }, { - "_id": "68010064f81036801d0b1834", + "_id": "6812400b0c5cf2cf75074c17", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Left_side_plate" }, { - "_id": "68010064f81036801d0b1835", + "_id": "6812400b0c5cf2cf75074c18", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010064f81036801d0b182c", + "parentId": "6812400b0c5cf2cf75074c0f", "slotId": "Right_side_plate" } ] @@ -4036,12 +5870,12 @@ "id": "5ae9e49d86f77440d37ce047", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1837", + "target": "6812400b0c5cf2cf75074c1a", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b1837", + "_id": "6812400b0c5cf2cf75074c1a", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -4055,12 +5889,12 @@ "id": "5ae9e4b786f77443f2500fe0", "type": "Item", "index": 0, - "target": "68010064f81036801d0b183a", + "target": "6812400b0c5cf2cf75074c1d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1839", + "_id": "6812400b0c5cf2cf75074c1c", "_tpl": "5ab8ebf186f7742d8b372e80", "upd": { "StackObjectsCount": 1, @@ -4068,7 +5902,7 @@ } }, { - "_id": "68010064f81036801d0b183a", + "_id": "6812400b0c5cf2cf75074c1d", "_tpl": "5ab8ebf186f7742d8b372e80", "upd": { "StackObjectsCount": 1, @@ -4082,11 +5916,11 @@ "id": "60b90e93634af31280203931", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b183b", + "target": "6812400b0c5cf2cf75074c1e", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b183b", + "_id": "6812400b0c5cf2cf75074c1e", "_tpl": "5b40e2bc5acfc40016388216" } ], @@ -4098,11 +5932,11 @@ "id": "657fc5e0fd86b9d9680c4a22", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b183c", + "target": "6812400b0c5cf2cf75074c1f", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b183c", + "_id": "6812400b0c5cf2cf75074c1f", "_tpl": "65573fa5655447403702a816" } ], @@ -4286,12 +6120,12 @@ "id": "5f039dc857a46716b610b578", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1840", + "target": "6812400b0c5cf2cf75074c23", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b183e", + "_id": "6812400b0c5cf2cf75074c21", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -4299,7 +6133,7 @@ } }, { - "_id": "68010064f81036801d0b183f", + "_id": "6812400b0c5cf2cf75074c22", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -4307,7 +6141,7 @@ } }, { - "_id": "68010064f81036801d0b1840", + "_id": "6812400b0c5cf2cf75074c23", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -4341,12 +6175,12 @@ "id": "60cb63d03e4e974efa345ca5", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1842", + "target": "6812400b0c5cf2cf75074c25", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b1842", + "_id": "6812400b0c5cf2cf75074c25", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -4360,12 +6194,12 @@ "id": "60cb636898b4927060364546", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1843", + "target": "6812400b0c5cf2cf75074c26", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1843", + "_id": "6812400b0c5cf2cf75074c26", "_tpl": "5926bb2186f7744b1c6c6e60", "upd": { "StackObjectsCount": 1, @@ -4376,45 +6210,45 @@ } }, { - "_id": "68010064f81036801d0b1844", + "_id": "6812400b0c5cf2cf75074c27", "_tpl": "5926c3b286f774640d189b6b", - "parentId": "68010064f81036801d0b1843", + "parentId": "6812400b0c5cf2cf75074c26", "slotId": "mod_magazine" }, { - "_id": "68010064f81036801d0b1845", + "_id": "6812400b0c5cf2cf75074c28", "_tpl": "5926f2e086f7745aae644231", - "parentId": "68010064f81036801d0b1843", + "parentId": "6812400b0c5cf2cf75074c26", "slotId": "mod_reciever" }, { - "_id": "68010064f81036801d0b1846", + "_id": "6812400b0c5cf2cf75074c29", "_tpl": "5926f34786f77469195bfe92", - "parentId": "68010064f81036801d0b1845", + "parentId": "6812400b0c5cf2cf75074c28", "slotId": "mod_handguard" }, { - "_id": "68010064f81036801d0b1847", + "_id": "6812400b0c5cf2cf75074c2a", "_tpl": "5926d2be86f774134d668e4e", - "parentId": "68010064f81036801d0b1845", + "parentId": "6812400b0c5cf2cf75074c28", "slotId": "mod_sight_rear" }, { - "_id": "68010064f81036801d0b1848", + "_id": "6812400b0c5cf2cf75074c2b", "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "68010064f81036801d0b1845", + "parentId": "6812400b0c5cf2cf75074c28", "slotId": "mod_stock" }, { - "_id": "68010064f81036801d0b1849", + "_id": "6812400b0c5cf2cf75074c2c", "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "68010064f81036801d0b1845", + "parentId": "6812400b0c5cf2cf75074c28", "slotId": "mod_muzzle" }, { - "_id": "68010064f81036801d0b184a", + "_id": "6812400b0c5cf2cf75074c2d", "_tpl": "5926c32286f774616e42de99", - "parentId": "68010064f81036801d0b1843", + "parentId": "6812400b0c5cf2cf75074c26", "slotId": "mod_charge" } ] @@ -4425,12 +6259,12 @@ "id": "60cb638b98b4927060364548", "type": "Item", "index": 0, - "target": "68010064f81036801d0b184e", + "target": "6812400b0c5cf2cf75074c31", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b184c", + "_id": "6812400b0c5cf2cf75074c2f", "_tpl": "5926c3b286f774640d189b6b", "upd": { "StackObjectsCount": 1, @@ -4438,7 +6272,7 @@ } }, { - "_id": "68010064f81036801d0b184d", + "_id": "6812400b0c5cf2cf75074c30", "_tpl": "5926c3b286f774640d189b6b", "upd": { "StackObjectsCount": 1, @@ -4446,7 +6280,7 @@ } }, { - "_id": "68010064f81036801d0b184e", + "_id": "6812400b0c5cf2cf75074c31", "_tpl": "5926c3b286f774640d189b6b", "upd": { "StackObjectsCount": 1, @@ -4461,12 +6295,12 @@ "id": "60cb63a3af2e5506c3781dae", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1855", + "target": "6812400b0c5cf2cf75074c38", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1851", + "_id": "6812400b0c5cf2cf75074c34", "_tpl": "6570259bc5d7d4cb4d07857f", "upd": { "StackObjectsCount": 1, @@ -4474,16 +6308,16 @@ } }, { - "_id": "68010064f81036801d0b1852", + "_id": "6812400b0c5cf2cf75074c35", "_tpl": "5a3c16fe86f77452b62de32a", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010064f81036801d0b1851", + "parentId": "6812400b0c5cf2cf75074c34", "slotId": "cartridges" }, { - "_id": "68010064f81036801d0b1853", + "_id": "6812400b0c5cf2cf75074c36", "_tpl": "6570259bc5d7d4cb4d07857f", "upd": { "StackObjectsCount": 1, @@ -4491,16 +6325,16 @@ } }, { - "_id": "68010064f81036801d0b1854", + "_id": "6812400b0c5cf2cf75074c37", "_tpl": "5a3c16fe86f77452b62de32a", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010064f81036801d0b1853", + "parentId": "6812400b0c5cf2cf75074c36", "slotId": "cartridges" }, { - "_id": "68010064f81036801d0b1855", + "_id": "6812400b0c5cf2cf75074c38", "_tpl": "6570259bc5d7d4cb4d07857f", "upd": { "StackObjectsCount": 1, @@ -4508,12 +6342,12 @@ } }, { - "_id": "68010064f81036801d0b1856", + "_id": "6812400b0c5cf2cf75074c39", "_tpl": "5a3c16fe86f77452b62de32a", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010064f81036801d0b1855", + "parentId": "6812400b0c5cf2cf75074c38", "slotId": "cartridges" } ] @@ -4758,12 +6592,12 @@ "id": "5a2813cb86f774567931372b", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1858", + "target": "6812400b0c5cf2cf75074c3b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1858", + "_id": "6812400b0c5cf2cf75074c3b", "_tpl": "5d9f1fa686f774726974a992", "upd": { "StackObjectsCount": 1, @@ -4777,11 +6611,11 @@ "id": "655b919d975a7f3c734661b0", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1859", + "target": "6812400b0c5cf2cf75074c3c", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1859", + "_id": "6812400b0c5cf2cf75074c3c", "_tpl": "5c17a7ed2e2216152142459c" } ], @@ -5036,12 +6870,12 @@ "id": "5c1fd82b86f7742b391bf154", "type": "Item", "index": 0, - "target": "68010064f81036801d0b185b", + "target": "6812400b0c5cf2cf75074c3e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b185b", + "_id": "6812400b0c5cf2cf75074c3e", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 100000 @@ -5055,12 +6889,12 @@ "id": "5c17cf0086f77430a323d853", "type": "Item", "index": 0, - "target": "68010064f81036801d0b185c", + "target": "6812400b0c5cf2cf75074c3f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b185c", + "_id": "6812400b0c5cf2cf75074c3f", "_tpl": "606dae0ab0e443224b421bb7", "upd": { "StackObjectsCount": 1, @@ -5070,51 +6904,51 @@ } }, { - "_id": "68010064f81036801d0b185d", + "_id": "6812400b0c5cf2cf75074c40", "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "68010064f81036801d0b185c", + "parentId": "6812400b0c5cf2cf75074c3f", "slotId": "mod_barrel" }, { - "_id": "68010064f81036801d0b185e", + "_id": "6812400b0c5cf2cf75074c41", "_tpl": "606ee5c81246154cad35d65e", - "parentId": "68010064f81036801d0b185c", + "parentId": "6812400b0c5cf2cf75074c3f", "slotId": "mod_handguard" }, { - "_id": "68010064f81036801d0b185f", + "_id": "6812400b0c5cf2cf75074c42", "_tpl": "6076c87f232e5a31c233d50e", - "parentId": "68010064f81036801d0b185c", + "parentId": "6812400b0c5cf2cf75074c3f", "slotId": "mod_magazine" }, { - "_id": "68010064f81036801d0b1860", + "_id": "6812400b0c5cf2cf75074c43", "_tpl": "606eef46232e5a31c233d500", - "parentId": "68010064f81036801d0b185c", + "parentId": "6812400b0c5cf2cf75074c3f", "slotId": "mod_stock" }, { - "_id": "68010064f81036801d0b1861", + "_id": "6812400b0c5cf2cf75074c44", "_tpl": "606eef756d0bd7580617baf8", - "parentId": "68010064f81036801d0b1860", + "parentId": "6812400b0c5cf2cf75074c43", "slotId": "mod_stock" }, { - "_id": "68010064f81036801d0b1862", + "_id": "6812400b0c5cf2cf75074c45", "_tpl": "606ef0812535c57a13424d20", - "parentId": "68010064f81036801d0b1861", + "parentId": "6812400b0c5cf2cf75074c44", "slotId": "mod_stock" }, { - "_id": "68010064f81036801d0b1863", + "_id": "6812400b0c5cf2cf75074c46", "_tpl": "606f2696f2cb2e02a42aceb1", - "parentId": "68010064f81036801d0b1861", + "parentId": "6812400b0c5cf2cf75074c44", "slotId": "mod_tactical" }, { - "_id": "68010064f81036801d0b1864", + "_id": "6812400b0c5cf2cf75074c47", "_tpl": "60785ce5132d4d12c81fd918", - "parentId": "68010064f81036801d0b185c", + "parentId": "6812400b0c5cf2cf75074c3f", "slotId": "mod_mount" } ] @@ -5124,25 +6958,25 @@ "id": "655b84437f92d5105c6f7b7a", "type": "ProductionScheme", "index": 0, - "target": "68010064f81036801d0b1868", + "target": "6812400b0c5cf2cf75074c4b", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1866", + "_id": "6812400b0c5cf2cf75074c49", "_tpl": "5d6e6911a4b9361bd5780d52", "upd": { "StackObjectsCount": 20 } }, { - "_id": "68010064f81036801d0b1867", + "_id": "6812400b0c5cf2cf75074c4a", "_tpl": "5d6e6911a4b9361bd5780d52", "upd": { "StackObjectsCount": 20 } }, { - "_id": "68010064f81036801d0b1868", + "_id": "6812400b0c5cf2cf75074c4b", "_tpl": "5d6e6911a4b9361bd5780d52", "upd": { "StackObjectsCount": 20 @@ -5291,12 +7125,12 @@ "id": "61029dfee2795c58325bb365", "type": "Item", "index": 0, - "target": "68010064f81036801d0b186e", + "target": "6812400b0c5cf2cf75074c51", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b186a", + "_id": "6812400b0c5cf2cf75074c4d", "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, @@ -5304,7 +7138,7 @@ } }, { - "_id": "68010064f81036801d0b186b", + "_id": "6812400b0c5cf2cf75074c4e", "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, @@ -5312,7 +7146,7 @@ } }, { - "_id": "68010064f81036801d0b186c", + "_id": "6812400b0c5cf2cf75074c4f", "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, @@ -5320,7 +7154,7 @@ } }, { - "_id": "68010064f81036801d0b186d", + "_id": "6812400b0c5cf2cf75074c50", "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, @@ -5328,7 +7162,7 @@ } }, { - "_id": "68010064f81036801d0b186e", + "_id": "6812400b0c5cf2cf75074c51", "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, @@ -5343,12 +7177,12 @@ "id": "619d04f0c55ada1a24438f3b", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1870", + "target": "6812400b0c5cf2cf75074c53", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1870", + "_id": "6812400b0c5cf2cf75074c53", "_tpl": "619bde3dc9546643a67df6f2", "upd": { "StackObjectsCount": 1, @@ -5362,11 +7196,11 @@ "id": "655b72e14343a16d2e04766c", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1871", + "target": "6812400b0c5cf2cf75074c54", "unknown": true, "items": [ { - "_id": "68010064f81036801d0b1871", + "_id": "6812400b0c5cf2cf75074c54", "_tpl": "61962b617c6c7b169525f168" } ], @@ -5378,11 +7212,11 @@ "id": "655b93534343a16d2e047670", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1872", + "target": "6812400b0c5cf2cf75074c55", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1872", + "_id": "6812400b0c5cf2cf75074c55", "_tpl": "5aa7e276e5b5b000171d0647" } ], @@ -5481,12 +7315,12 @@ "id": "6758184f7df42c30f35fbb84", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1874", + "target": "6812400b0c5cf2cf75074c57", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b1874", + "_id": "6812400b0c5cf2cf75074c57", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 84000 @@ -5509,12 +7343,12 @@ "id": "6758186af1547c0c5399288e", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1876", + "target": "6812400b0c5cf2cf75074c59", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1876", + "_id": "6812400b0c5cf2cf75074c59", "_tpl": "5d1b2ffd86f77425243e8d17", "upd": { "StackObjectsCount": 1, @@ -5529,12 +7363,12 @@ "id": "675819399a04261b4dc4ba20", "type": "Item", "index": 0, - "target": "68010064f81036801d0b1878", + "target": "6812400b0c5cf2cf75074c5b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b1878", + "_id": "6812400b0c5cf2cf75074c5b", "_tpl": "5d1b2ffd86f77425243e8d17", "upd": { "StackObjectsCount": 1, @@ -5549,12 +7383,12 @@ "id": "6758194469303d6a48adceaa", "type": "Item", "index": 0, - "target": "68010064f81036801d0b187a", + "target": "6812400b0c5cf2cf75074c5d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b187a", + "_id": "6812400b0c5cf2cf75074c5d", "_tpl": "5d1b2ffd86f77425243e8d17", "upd": { "StackObjectsCount": 1, @@ -5742,12 +7576,12 @@ "id": "5a28244986f7741d5b719649", "type": "Item", "index": 0, - "target": "68010064f81036801d0b187c", + "target": "6812400b0c5cf2cf75074c5f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010064f81036801d0b187c", + "_id": "6812400b0c5cf2cf75074c5f", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 1300 @@ -5761,12 +7595,12 @@ "id": "60cc6ff73e4e974efa345d15", "type": "Item", "index": 0, - "target": "68010064f81036801d0b187e", + "target": "6812400b0c5cf2cf75074c61", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010064f81036801d0b187e", + "_id": "6812400b0c5cf2cf75074c61", "_tpl": "5f5e467b0bc58666c37e7821", "upd": { "StackObjectsCount": 1, @@ -5780,11 +7614,11 @@ "id": "5ac66eb986f77403de1f5d09", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b187f", + "target": "6812400b0c5cf2cf75074c62", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b187f", + "_id": "6812400b0c5cf2cf75074c62", "_tpl": "59c1383d86f774290a37e0ca" } ], @@ -5796,11 +7630,11 @@ "id": "655b90e97f92d5105c6f7b7d", "type": "AssortmentUnlock", "index": 0, - "target": "68010064f81036801d0b1880", + "target": "6812400b0c5cf2cf75074c63", "unknown": false, "items": [ { - "_id": "68010064f81036801d0b1880", + "_id": "6812400b0c5cf2cf75074c63", "_tpl": "5d5e7d28a4b936645d161203" } ], @@ -5818,4954 +7652,6 @@ "arenaLocations": [], "status": 0 }, - "5ac3475486f7741d6224abd3": { - "QuestName": "Bad Habit", - "_id": "5ac3475486f7741d6224abd3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3475486f7741d6224abd3 acceptPlayerMessage", - "changeQuestMessageText": "5ac3475486f7741d6224abd3 changeQuestMessageText", - "completePlayerMessage": "5ac3475486f7741d6224abd3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5ee9986f7746e7a509a26", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573476d324597737da2adc13" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5eee986f77401fd341c9e", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573476d324597737da2adc13" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5ef2a86f7741c5804f9f5", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5734770f24597738025ee254" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5ef5686f77416ca60f644", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5734770f24597738025ee254" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5ef9886f7746e7a509a2d", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573476f124597737e04bf328" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5eff886f7740f43322559", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573476f124597737e04bf328" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3c3086f77418d851688f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3c3d86f7741ce21f9b1a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3460c86f7742880308185", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac3475486f7741d6224abd3 description", - "failMessageText": "5ac3475486f7741d6224abd3 failMessageText", - "declinePlayerMessage": "5ac3475486f7741d6224abd3 declinePlayerMessage", - "name": "5ac3475486f7741d6224abd3 name", - "note": "5ac3475486f7741d6224abd3 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4d9aa86f7744784484abf.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac3475486f7741d6224abd3 startedMessageText", - "successMessageText": "5ac3475486f7741d6224abd3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6700, - "id": "60cc7efa7c496e588343a6ed", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7f0177dc197c774254d1", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 300, - "id": "5acb7b7a86f7747a5a561a40", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1882", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1882", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 300 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec1a05813e6fb78d4420dbb", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1883", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1883", - "_tpl": "5b1fa9b25acfc40018633c01", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010064f81036801d0b1884", - "_tpl": "5b1fa9ea5acfc40018633c0a", - "parentId": "68010064f81036801d0b1883", - "slotId": "mod_barrel" - }, - { - "_id": "68010064f81036801d0b1885", - "_tpl": "5b1faa0f5acfc40dc528aeb5", - "parentId": "68010064f81036801d0b1883", - "slotId": "mod_reciever" - }, - { - "_id": "68010064f81036801d0b1886", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "68010064f81036801d0b1885", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010064f81036801d0b1887", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "68010064f81036801d0b1885", - "slotId": "mod_sight_front" - }, - { - "_id": "68010064f81036801d0b1888", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "68010064f81036801d0b1883", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "5ec1a07483b69d213d3c2ef0", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1895", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b188b", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b188c", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b188b", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b188d", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b188e", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b188d", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b188f", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1890", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b188f", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b1891", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1892", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b1891", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b1893", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1894", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b1893", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b1895", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1896", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010064f81036801d0b1895", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "62a11832c30cfa1d366aeb84", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1897", - "unknown": true, - "items": [ - { - "_id": "68010064f81036801d0b1897", - "_tpl": "62a0a043cf4a99369e2624a5" - } - ], - "loyaltyLevel": 1, - "traderId": "54cb57776803fa99248b456e" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "673f4e956f1b89c7bc0f56ef": { - "QuestName": "Hot Wheels", - "_id": "673f4e956f1b89c7bc0f56ef", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "673f4e956f1b89c7bc0f56ef acceptPlayerMessage", - "changeQuestMessageText": "673f4e956f1b89c7bc0f56ef changeQuestMessageText", - "completePlayerMessage": "673f4e956f1b89c7bc0f56ef completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "673f507029a1128d5c4d7498", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Btr_wheels", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "673f5065cdfe082966842575", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "673f507029a1128d5c4d7498", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Wrong_wheels", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "673f4ef514413b8e0da8ee15", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6752f6d83038f7df520c83e8", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "673f5069fd98c4d6d89e7a4c", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Wrong_wheels", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ] - }, - "description": "673f4e956f1b89c7bc0f56ef description", - "failMessageText": "673f4e956f1b89c7bc0f56ef failMessageText", - "declinePlayerMessage": "673f4e956f1b89c7bc0f56ef declinePlayerMessage", - "name": "673f4e956f1b89c7bc0f56ef name", - "note": "673f4e956f1b89c7bc0f56ef note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "any", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "673f4e956f1b89c7bc0f56ef startedMessageText", - "successMessageText": "673f4e956f1b89c7bc0f56ef successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 24300, - "id": "675817d4d2cc390dd059492f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 116000, - "id": "675817e5009e791281adb147", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1899", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1899", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 116000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "675817f01182d14a6ce22730", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758180d24adbc261147cf37", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b189b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b189b", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae3280386f7742a41359364": { - "QuestName": "Gunsmith - Part 15", - "_id": "5ae3280386f7742a41359364", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae3280386f7742a41359364 acceptPlayerMessage", - "changeQuestMessageText": "5ae3280386f7742a41359364 changeQuestMessageText", - "completePlayerMessage": "5ae3280386f7742a41359364 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5ae4479686f7744f6c79b7b3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "57c44b372459772d2b39b8ce" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 33.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 30, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 220.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5a9eb32da2750c00171b3f9c", - "544909bb4bdc2d6f028b4577", - "5a7c74b3e899ef0014332c29" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af4140186f774522d460775", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 27, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af413fa86f77407184494f3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639872fe8871e1272b10ccf6", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae3280386f7742a41359364 description", - "failMessageText": "5ae3280386f7742a41359364 failMessageText", - "declinePlayerMessage": "5ae3280386f7742a41359364 declinePlayerMessage", - "name": "5ae3280386f7742a41359364 name", - "note": "5ae3280386f7742a41359364 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ae3281c86f7745b3e3bf2d1.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae3280386f7742a41359364 startedMessageText", - "successMessageText": "5ae3280386f7742a41359364 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 19400, - "id": "60cc784ea7d63f18200a24e4", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7852e3d0247e625dab6e", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ae99bc386f774391242a7ac", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b189d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b189d", - "_tpl": "5addaffe86f77470b455f900", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc78692b555f16df5c41ba", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b189f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b189f", - "_tpl": "5d1b327086f7742525194449", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19cc35032c67f050dd960", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b18a0", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b18a0", - "_tpl": "59eb7ebe86f7740b373438ce" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4497b86f7744cf402ed00": { - "QuestName": "Sew it Good - Part 4", - "_id": "5ae4497b86f7744cf402ed00", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4497b86f7744cf402ed00 acceptPlayerMessage", - "changeQuestMessageText": "5ae4497b86f7744cf402ed00 changeQuestMessageText", - "completePlayerMessage": "5ae4497b86f7744cf402ed00 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae45d7786f774178f237745", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7643b86f7742cbf2c109a" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae45d9386f774178f23774a", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7643b86f7742cbf2c109a" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5af079e486f77434693ad7f8", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5648a69d4bdc2ded0b8b457b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5af07a0286f7747dba10d8ac", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5648a69d4bdc2ded0b8b457b" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4168d86f7745c267423dc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4496986f774459e77beb6", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4497b86f7744cf402ed00 description", - "failMessageText": "5ae4497b86f7744cf402ed00 failMessageText", - "declinePlayerMessage": "5ae4497b86f7744cf402ed00 declinePlayerMessage", - "name": "5ae4497b86f7744cf402ed00 name", - "note": "5ae4497b86f7744cf402ed00 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4497b86f7744cf402ed00 startedMessageText", - "successMessageText": "5ae4497b86f7744cf402ed00 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18500, - "id": "60cc96016a2a1958fc523227", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc960f20a6283a506aeb33", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "60cc96088f570e28f148117d", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18a2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b18a2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "655b8b5bb71eeb7c4168c635", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18a4", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b18a4", - "_tpl": "5d5d940f86f7742797262046", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc964320a6283a506aeb34", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18ac", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18ac", - "_tpl": "5ab8dced86f774646209ec87", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18ad", - "_tpl": "6570f6e774d84423df065f21", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b18ae", - "_tpl": "6570f71dd67d0309980a7af8", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b18af", - "_tpl": "6570f74774d84423df065f25", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b18b0", - "_tpl": "6570f79c4c65ab77a6015121", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b18b1", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b18b2", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18ac", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b8b6d9db22d43ab42b70e", - "type": "ProductionScheme", - "index": 0, - "target": "68010064f81036801d0b18b8", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b18b8", - "_tpl": "5b44cad286f77402a54ae7e5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18b9", - "_tpl": "6575bc88c6700bd6b40e8a57", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18b8", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b18ba", - "_tpl": "6575bca0dc9932aed601c5d7", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18b8", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b18bb", - "_tpl": "656fae5f7c2d57afe200c0d7", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18b8", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b18bc", - "_tpl": "656fae5f7c2d57afe200c0d7", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18b8", - "slotId": "Back_plate" - } - ], - "loyaltyLevel": 3, - "traderId": 2 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5b47876e86f7744d1c353205": { - "QuestName": "The Blood of War - Part 2", - "_id": "5b47876e86f7744d1c353205", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b47876e86f7744d1c353205 acceptPlayerMessage", - "changeQuestMessageText": "5b47876e86f7744d1c353205 changeQuestMessageText", - "completePlayerMessage": "5b47876e86f7744d1c353205 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5b47884886f7744d1c35327d", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5b43575a86f77424f443fe62" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5b47886986f7744d1a393e65", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5b43575a86f77424f443fe62" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0c7b86f77479ee584ab0", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 23, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f09c786f77479806f2cf3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448f286f77448d73c0131", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f09f586f7744fba15b2dc", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4495086f77443c122bc40", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b47876e86f7744d1c353205 description", - "failMessageText": "5b47876e86f7744d1c353205 failMessageText", - "declinePlayerMessage": "5b47876e86f7744d1c353205 declinePlayerMessage", - "name": "5b47876e86f7744d1c353205 name", - "note": "5b47876e86f7744d1c353205 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5b4787d086f7744d184ecb35.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b47876e86f7744d1c353205 startedMessageText", - "successMessageText": "5b47876e86f7744d1c353205 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 14600, - "id": "60cc9887a7d63f18200a250e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc988bb2736c24b2118b9a", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "5b48a4f386f7747a8d6b2e3a", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18be", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b18be", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5b48a51286f7747a8d6b2e3b", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18c2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18c2", - "_tpl": "5b40e3f35acfc40016388218", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18c3", - "_tpl": "657f95bff92cd718b701550c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18c2", - "slotId": "Helmet_top" - }, - { - "_id": "68010064f81036801d0b18c4", - "_tpl": "657f9605f4c82973640b2358", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18c2", - "slotId": "Helmet_back" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc98b6b2736c24b2118b9b", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18d1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18d1", - "_tpl": "5f5f41476bdad616ad46d631", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18d2", - "_tpl": "65731b46cea9255e2102360a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b18d3", - "_tpl": "65731b4fcea9255e2102360e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b18d4", - "_tpl": "65731b576e709cddd001ec3f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b18d5", - "_tpl": "65731b60ff6dc44a7d068c4a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b18d6", - "_tpl": "65731b666e709cddd001ec43", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Collar" - }, - { - "_id": "68010064f81036801d0b18d7", - "_tpl": "65731b716e709cddd001ec47", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Groin" - }, - { - "_id": "68010064f81036801d0b18d8", - "_tpl": "65731b6b6042b0f210020ef6", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Groin_back" - }, - { - "_id": "68010064f81036801d0b18d9", - "_tpl": "656f664200d62bcd2e024077", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b18da", - "_tpl": "654a4f8bc721968a4404ef18", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Left_side_plate" - }, - { - "_id": "68010064f81036801d0b18db", - "_tpl": "654a4f8bc721968a4404ef18", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Right_side_plate" - }, - { - "_id": "68010064f81036801d0b18dc", - "_tpl": "657b2797c3dbcb01d60c35ea", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18d1", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b8a2c7f92d5105c6f7b7c", - "type": "ProductionScheme", - "index": 0, - "target": "68010064f81036801d0b18e4", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b18e4", - "_tpl": "5d5d87f786f77427997cfaef", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18e5", - "_tpl": "6570e5100b57c03ec90b970a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b18e6", - "_tpl": "6570e479a6560e4ee50c2b02", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b18e7", - "_tpl": "6570e5674cc0d2ab1e05edbb", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b18e8", - "_tpl": "6570e59b0b57c03ec90b970e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b18e9", - "_tpl": "656f9fa0498d1b7e3e071d98", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b18ea", - "_tpl": "656f9fa0498d1b7e3e071d98", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b18e4", - "slotId": "Back_plate" - } - ], - "loyaltyLevel": 2, - "traderId": 2 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac3464c86f7741d651d6877": { - "QuestName": "Farming - Part 4", - "_id": "5ac3464c86f7741d651d6877", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3464c86f7741d651d6877 acceptPlayerMessage", - "changeQuestMessageText": "5ac3464c86f7741d651d6877 changeQuestMessageText", - "completePlayerMessage": "5ac3464c86f7741d651d6877 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5081086f7740bde1b002f", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347ca924597744596b4e71" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5082586f77418804f7d4c", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347ca924597744596b4e71" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5083d86f7740be2744eed", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5734779624597737e04bf329" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5084d86f7740bde1b0031", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5734779624597737e04bf329" - ], - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b3486f7741ce21f9b06", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 14, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3b3b86f7741ce21f9b08", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3462b86f7741d6118b983", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac3464c86f7741d651d6877 description", - "failMessageText": "5ac3464c86f7741d651d6877 failMessageText", - "declinePlayerMessage": "5ac3464c86f7741d651d6877 declinePlayerMessage", - "name": "5ac3464c86f7741d651d6877 name", - "note": "5ac3464c86f7741d651d6877 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac3464c86f7741d651d6877 startedMessageText", - "successMessageText": "5ac3464c86f7741d651d6877 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8000, - "id": "60cc7af5f09d61072d6d00c9", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7aff179f8541b8469273", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5acb857e86f77456255bb28a", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18eb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18eb", - "_tpl": "5a7ae0c351dfba0017554310", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010064f81036801d0b18ec", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "68010064f81036801d0b18eb", - "slotId": "mod_barrel" - }, - { - "_id": "68010064f81036801d0b18ed", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "68010064f81036801d0b18ec", - "slotId": "mod_muzzle" - }, - { - "_id": "68010064f81036801d0b18ee", - "_tpl": "5a6f5f078dc32e00094b97dd", - "parentId": "68010064f81036801d0b18eb", - "slotId": "mod_reciever" - }, - { - "_id": "68010064f81036801d0b18ef", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "68010064f81036801d0b18eb", - "slotId": "mod_magazine" - }, - { - "_id": "68010064f81036801d0b18f0", - "_tpl": "5a7b4900e899ef197b331a2a", - "parentId": "68010064f81036801d0b18eb", - "slotId": "mod_tactical" - }, - { - "_id": "68010064f81036801d0b18f1", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "68010064f81036801d0b18f0", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b18f2", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "68010064f81036801d0b18f1", - "slotId": "mod_scope" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc7b1865e4664318606b02", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18f4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18f4", - "_tpl": "567143bf4bdc2d1a0f8b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 300, - "id": "629f0a7650f43060015c5382", - "type": "Skill", - "index": 0, - "target": "Attention", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64b6aa18dafd274049412d85", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18f7", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18f6", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18f7", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "64b6aa2425251516d768542a", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18fc", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b18f9", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18fa", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18fb", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b18fc", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "600302d73b897b11364cd161": { - "QuestName": "Hunter", - "_id": "600302d73b897b11364cd161", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "600302d73b897b11364cd161 acceptPlayerMessage", - "changeQuestMessageText": "600302d73b897b11364cd161 changeQuestMessageText", - "completePlayerMessage": "600302d73b897b11364cd161 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "600303250b79c6604058ce2f", - "conditions": [ - { - "id": "60030339009aaa47f3044281", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "600303250b79c6604058ce30", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "TraderLoyalty", - "id": "600304b78dfec348e767018c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5c0647fdd443bc2504c2d371", - "globalQuestCounterId": "", - "value": 4, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "62a8381c0b9c482a93053993", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2ee86f77443e35162ea", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "600302d73b897b11364cd161 description", - "failMessageText": "600302d73b897b11364cd161 failMessageText", - "declinePlayerMessage": "600302d73b897b11364cd161 declinePlayerMessage", - "name": "600302d73b897b11364cd161 name", - "note": "600302d73b897b11364cd161 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5d69470786f774238a38d844.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "600302d73b897b11364cd161 startedMessageText", - "successMessageText": "600302d73b897b11364cd161 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 100000, - "id": "60030420fc172404495164e8", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b18fe", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b18fe", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 100000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "600307a2fc172404495164f7", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1900", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1900", - "_tpl": "5c1267ee86f77416ec610f72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "600307e1fc172404495164fe", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1902", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1902", - "_tpl": "59fb023c86f7746d0d4b423c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "600306ee63625014312be3bb", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1903", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b1903", - "_tpl": "5fc22d7c187fea44d52eda44", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010064f81036801d0b1904", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "68010064f81036801d0b1903", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010064f81036801d0b1905", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "68010064f81036801d0b1903", - "slotId": "mod_magazine" - }, - { - "_id": "68010064f81036801d0b1906", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010064f81036801d0b1903", - "slotId": "mod_stock_001" - }, - { - "_id": "68010064f81036801d0b1907", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "68010064f81036801d0b1906", - "slotId": "mod_stock_000" - }, - { - "_id": "68010064f81036801d0b1908", - "_tpl": "5fc278107283c4046c581489", - "parentId": "68010064f81036801d0b1903", - "slotId": "mod_reciever" - }, - { - "_id": "68010064f81036801d0b1909", - "_tpl": "5fc23678ab884124df0cd590", - "parentId": "68010064f81036801d0b1908", - "slotId": "mod_barrel" - }, - { - "_id": "68010064f81036801d0b190a", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "68010064f81036801d0b1909", - "slotId": "mod_muzzle" - }, - { - "_id": "68010064f81036801d0b190b", - "_tpl": "5fc2360f900b1d5091531e19", - "parentId": "68010064f81036801d0b1909", - "slotId": "mod_gas_block" - }, - { - "_id": "68010064f81036801d0b190c", - "_tpl": "5fc235db2770a0045c59c683", - "parentId": "68010064f81036801d0b1908", - "slotId": "mod_handguard" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac3477486f7741d651d6885": { - "QuestName": "Scout", - "_id": "5ac3477486f7741d651d6885", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3477486f7741d651d6885 acceptPlayerMessage", - "changeQuestMessageText": "5ac3477486f7741d651d6885 changeQuestMessageText", - "completePlayerMessage": "5ac3477486f7741d651d6885 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac61a8a86f7743a8d663c76", - "conditions": [ - { - "id": "5ac61a9b86f7743a8b697a2d", - "dynamicLocale": false, - "target": "place_pacemaker_SCOUT_01", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac61a8a86f7743a8d663c77", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac61ab986f7746e352cec8b", - "conditions": [ - { - "id": "5ac61ac586f7743a8b697a35", - "dynamicLocale": false, - "target": "place_pacemaker_SCOUT_02", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac61ab986f7746e352cec8c", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac61adf86f774741c1bf095", - "conditions": [ - { - "id": "5ac61aea86f7743a8b697a36", - "dynamicLocale": false, - "target": "place_pacemaker_SCOUT_03", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac61adf86f774741c1bf096", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a865ce1943b749b5021f87", - "conditions": [ - { - "id": "63a865f51943b749b5021f88", - "dynamicLocale": false, - "target": "place_pacemaker_SCOUT_04", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a865ce1943b749b5021f86", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac61b1486f7743a8f30fc83", - "conditions": [ - { - "id": "5ac61b1c86f774741c1bf0a1", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5b7ffa8e86f77457da4f820a", - "dynamicLocale": false, - "target": [ - "factory4_day", - "factory4_night" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ac61b1486f7743a8f30fc84", - "index": 4, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ac61b2f86f7743a8d663c98", - "target": "5ac61a8a86f7743a8d663c77", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac61b3386f7743a8f30fc86", - "target": "5ac61ab986f7746e352cec8c", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac61b3a86f7743a8f30fc87", - "target": "5ac61adf86f774741c1bf096", - "conditionType": "CompleteCondition" - }, - { - "id": "63a866e710b7a13eb0159655", - "target": "63a865ce1943b749b5021f86", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3bcb86f77418403493b7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3bd286f7741bb83784a3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac346a886f7744e1b083d67", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac3477486f7741d651d6885 description", - "failMessageText": "5ac3477486f7741d651d6885 failMessageText", - "declinePlayerMessage": "5ac3477486f7741d651d6885 declinePlayerMessage", - "name": "5ac3477486f7741d651d6885 name", - "note": "5ac3477486f7741d651d6885 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/5ac4da0486f7744cc7701bdc.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac3477486f7741d651d6885 startedMessageText", - "successMessageText": "5ac3477486f7741d651d6885 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6800, - "id": "60cc7f24f09d61072d6d00ce", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7f2a98b49270603645e5", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "5ace322c86f7744aac5392d5", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b190e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b190e", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc7f3daf2e5506c37822cb", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1910", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1910", - "_tpl": "5448ba0b4bdc2d02308b456c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "675c3582f6ddc329a90f9c6d": { - "QuestName": "Private Club", - "_id": "675c3582f6ddc329a90f9c6d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c3582f6ddc329a90f9c6d acceptPlayerMessage", - "changeQuestMessageText": "675c3582f6ddc329a90f9c6d changeQuestMessageText", - "completePlayerMessage": "675c3582f6ddc329a90f9c6d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "675c37d2da4b531ba8daaadd", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7f224076a741a3061568" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "675c37e07ac1a33fff170966", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7f224076a741a3061568" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762f76729c543414654b313", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b4795fb86f7745876267770", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c3582f6ddc329a90f9c6d description", - "failMessageText": "675c3582f6ddc329a90f9c6d failMessageText", - "declinePlayerMessage": "675c3582f6ddc329a90f9c6d declinePlayerMessage", - "name": "675c3582f6ddc329a90f9c6d name", - "note": "675c3582f6ddc329a90f9c6d note", - "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c3582f6ddc329a90f9c6d startedMessageText", - "successMessageText": "675c3582f6ddc329a90f9c6d successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 23000, - "id": "6762f76fdbee4731a12455fe", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 104000, - "id": "6762f77d0fd827a96d2be08c", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1912", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1912", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 104000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6762f785b342c60b3e7b67f4", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6762f7947fda8f287ed4ac08", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1916", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1914", - "_tpl": "5f60cd6cf2bcbb675b00dac6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1915", - "_tpl": "5f60cd6cf2bcbb675b00dac6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1916", - "_tpl": "5f60cd6cf2bcbb675b00dac6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "6765ef67924bd72c4927a919", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1917", - "unknown": true, - "items": [ - { - "_id": "68010064f81036801d0b1917", - "_tpl": "674fe9a75e51f1c47c04ec23", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010064f81036801d0b1918", - "_tpl": "674fe57721a9aa6be6045b96", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_handguard" - }, - { - "_id": "68010064f81036801d0b1919", - "_tpl": "5c87ca002e221600114cb150", - "parentId": "68010064f81036801d0b1918", - "slotId": "mod_foregrip" - }, - { - "_id": "68010064f81036801d0b191a", - "_tpl": "674fe89a4472d471fb0f07d8", - "parentId": "68010064f81036801d0b1918", - "slotId": "mod_mount" - }, - { - "_id": "68010064f81036801d0b191b", - "_tpl": "674fe8dd362ea1f88b0e2792", - "parentId": "68010064f81036801d0b191a", - "slotId": "mod_sight_front" - }, - { - "_id": "68010064f81036801d0b191c", - "_tpl": "674fe8b9362ea1f88b0e278d", - "parentId": "68010064f81036801d0b191a", - "slotId": "mod_mount" - }, - { - "_id": "68010064f81036801d0b191d", - "_tpl": "616584766ef05c2ce828ef57", - "parentId": "68010064f81036801d0b191c", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b191e", - "_tpl": "5c7d55de2e221644f31bff68", - "parentId": "68010064f81036801d0b191d", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b191f", - "_tpl": "674fe8cf4472d471fb0f07df", - "parentId": "68010064f81036801d0b191c", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010064f81036801d0b1920", - "_tpl": "59fb137a86f7740adb646af1", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_muzzle" - }, - { - "_id": "68010064f81036801d0b1921", - "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010064f81036801d0b1922", - "_tpl": "676017fe8cfeeba9f707c8d6", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_reciever" - }, - { - "_id": "68010064f81036801d0b1923", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_stock" - }, - { - "_id": "68010064f81036801d0b1924", - "_tpl": "5947c73886f7747701588af5", - "parentId": "68010064f81036801d0b1923", - "slotId": "mod_stock" - }, - { - "_id": "68010064f81036801d0b1925", - "_tpl": "674fe8f6f34d761ab8020cc8", - "parentId": "68010064f81036801d0b1917", - "slotId": "mod_magazine" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac346cf86f7741d63233a02": { - "QuestName": "Signal - Part 3", - "_id": "5ac346cf86f7741d63233a02", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac346cf86f7741d63233a02 acceptPlayerMessage", - "changeQuestMessageText": "5ac346cf86f7741d63233a02 changeQuestMessageText", - "completePlayerMessage": "5ac346cf86f7741d63233a02 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5ac7a7bf86f774132252a524", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "place_SIGNAL_03_1", - "target": [ - "5ac78a9b86f7741cca0bbd8d" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5ac7a83b86f774665012340b", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "place_SIGNAL_03_2", - "target": [ - "5ac78a9b86f7741cca0bbd8d" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5ac7a8d386f7741321499e3c", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "place_SIGNAL_03_3", - "target": [ - "5ac78a9b86f7741cca0bbd8d" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac7a93286f774664f4cbd8b", - "conditions": [ - { - "id": "5ac7a94086f77466515f8b7b", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ac7a95886f77466515f8b7c", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ac7a93286f774664f4cbd8c", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ac7a95e86f774665012340f", - "target": "5ac7a7bf86f774132252a524", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac7a96386f774664f4cbd8d", - "target": "5ac7a83b86f774665012340b", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac7a96886f7746c57321d67", - "target": "5ac7a8d386f7741321499e3c", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b8886f77418440390b6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3b8f86f7741bb83784a1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac346a886f7744e1b083d67", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac346cf86f7741d63233a02 description", - "failMessageText": "5ac346cf86f7741d63233a02 failMessageText", - "declinePlayerMessage": "5ac346cf86f7741d63233a02 declinePlayerMessage", - "name": "5ac346cf86f7741d63233a02 name", - "note": "5ac346cf86f7741d63233a02 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac346cf86f7741d63233a02 startedMessageText", - "successMessageText": "5ac346cf86f7741d63233a02 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "id": "5ac79c4b86f7746d4764885b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1926", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b1926", - "_tpl": "5ac78a9b86f7741cca0bbd8d" - } - ], - "loyaltyLevel": 1, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5ac7a7c486f77412e95f1045", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b192a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1928", - "_tpl": "5ac78a9b86f7741cca0bbd8d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1929", - "_tpl": "5ac78a9b86f7741cca0bbd8d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b192a", - "_tpl": "5ac78a9b86f7741cca0bbd8d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 8500, - "id": "60cc7e5a6a2a1958fc523210", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7e5e77dc197c774254ce", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "5acb7c8986f7740ee664142a", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b192c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b192c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ad0ad9f86f77401ce32fdd9", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b192d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b192d", - "_tpl": "6259b864ebedf17603599e88", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010064f81036801d0b192e", - "_tpl": "6259c2c1d714855d182bad85", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_barrel" - }, - { - "_id": "68010064f81036801d0b192f", - "_tpl": "6259c4347d6aab70bc23a190", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_handguard" - }, - { - "_id": "68010064f81036801d0b1930", - "_tpl": "625ff2ccb8c587128c1a01dd", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_magazine" - }, - { - "_id": "68010064f81036801d0b1931", - "_tpl": "6259c3387d6aab70bc23a18d", - "upd": { - "Foldable": { - "Folded": false - } - }, - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_stock" - }, - { - "_id": "68010064f81036801d0b1932", - "_tpl": "6259c3d8012d6678ec38eeb8", - "parentId": "68010064f81036801d0b1931", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010064f81036801d0b1933", - "_tpl": "625ed7c64d9b6612df732146", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_mount" - }, - { - "_id": "68010064f81036801d0b1934", - "_tpl": "625ebcef6f53af4aa66b44dc", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010064f81036801d0b1935", - "_tpl": "625ec45bb14d7326ac20f572", - "parentId": "68010064f81036801d0b192d", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc7e6f179f8541b8469275", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b193c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1939", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b193a", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010064f81036801d0b1939", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b193b", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010064f81036801d0b1939", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "68010064f81036801d0b193c", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b193d", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010064f81036801d0b193c", - "slotId": "cartridges" - }, - { - "_id": "68010064f81036801d0b193e", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010064f81036801d0b193c", - "slotId": "cartridges", - "location": 1 - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "675c03d1f7da9792a405549a": { - "QuestName": "Abandoned Cargo", - "_id": "675c03d1f7da9792a405549a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c03d1f7da9792a405549a acceptPlayerMessage", - "changeQuestMessageText": "675c03d1f7da9792a405549a changeQuestMessageText", - "completePlayerMessage": "675c03d1f7da9792a405549a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "675c0444db2b69f48942f37c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c04497439eaed82b6dfeb", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c044cc482cb252c5a92d4", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c044e3691199fe911a641", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_5", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c3fbeb402d4fa5589516f", - "index": 4, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c3fd3a2c0bad5f70af01c", - "index": 5, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_6", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "675c3fdd5af984e99db7b4e1", - "index": 6, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "TerragroupBOX_7", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762efbd9dd6afda9061b618", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6179ad56c760af5ad2053587", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c03d1f7da9792a405549a description", - "failMessageText": "675c03d1f7da9792a405549a failMessageText", - "declinePlayerMessage": "675c03d1f7da9792a405549a declinePlayerMessage", - "name": "675c03d1f7da9792a405549a name", - "note": "675c03d1f7da9792a405549a note", - "traderId": "54cb57776803fa99248b456e", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c03d1f7da9792a405549a startedMessageText", - "successMessageText": "675c03d1f7da9792a405549a successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 7, - "id": "6762f00c986d8047a7120350", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1946", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1940", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1941", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1942", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1943", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1944", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1945", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1946", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 9400, - "id": "6762efcb24c9709dfacffec6", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 45000, - "id": "6762efd6601dd097ea988fca", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1948", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1948", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 45000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6762efe155dc4fb9583358ff", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6762efecb16e11dbe145e7da", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b194c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b194a", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b194b", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b194c", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5b478d0f86f7744d190d91b5": { - "QuestName": "Minibus", - "_id": "5b478d0f86f7744d190d91b5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b478d0f86f7744d190d91b5 acceptPlayerMessage", - "changeQuestMessageText": "5b478d0f86f7744d190d91b5 changeQuestMessageText", - "completePlayerMessage": "5b478d0f86f7744d190d91b5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5b478d8986f774563c7a4809", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_21_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5b478daf86f7744d1c35339b", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_21_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5b478dca86f7744d190d91c2", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_21_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5b478de086f7744d1c3533a0", - "conditions": [ - { - "id": "5b478df086f7746807461fd2", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5b478dfc86f7746807461fd3", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "id": "5b478de086f7744d1c3533a1", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5b478e0186f7744d1a393fc9", - "target": "5b478d8986f774563c7a4809", - "conditionType": "CompleteCondition" - }, - { - "id": "5b478e0586f774563c7a4810", - "target": "5b478daf86f7744d1c35339b", - "conditionType": "CompleteCondition" - }, - { - "id": "5b478e0b86f7744d1a393fca", - "target": "5b478dca86f7744d190d91c2", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0c9d86f7744def7f3385", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 24, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f0ac386f7747a2637c4c0", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4493d86f7744b8e15aa8f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b478d0f86f7744d190d91b5 description", - "failMessageText": "5b478d0f86f7744d190d91b5 failMessageText", - "declinePlayerMessage": "5b478d0f86f7744d190d91b5 declinePlayerMessage", - "name": "5b478d0f86f7744d190d91b5 name", - "note": "5b478d0f86f7744d190d91b5 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5b478d1b86f7744d1b23c60b.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b478d0f86f7744d190d91b5 startedMessageText", - "successMessageText": "5b478d0f86f7744d190d91b5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13800, - "id": "60cc98e841fd1e14d71e22fb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc98ec9f89812e5b6aa87d", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "5b48a5c286f774036c1b7b31", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b194e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b194e", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5b48a5d286f77476751f0a99", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1950", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1950", - "_tpl": "5b44c6ae86f7742d1627baea", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b88e632b0b1645e6f54ca", - "type": "ProductionScheme", - "index": 0, - "target": "68010064f81036801d0b1959", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b1959", - "_tpl": "61bcc89aef0f505f0c6cd0fc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b195a", - "_tpl": "6572eb0e55beba16bc04079f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010064f81036801d0b195b", - "_tpl": "6572eb1b04ee6483ef039882", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010064f81036801d0b195c", - "_tpl": "6572eb3004ee6483ef039886", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010064f81036801d0b195d", - "_tpl": "6572eb3b04ee6483ef03988a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "soft_armor_right" - }, - { - "_id": "68010064f81036801d0b195e", - "_tpl": "6572eb865b5eac12f10a03ee", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Groin" - }, - { - "_id": "68010064f81036801d0b195f", - "_tpl": "656fb21fa0dce000a2020f7c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Front_plate" - }, - { - "_id": "68010064f81036801d0b1960", - "_tpl": "656fb21fa0dce000a2020f7c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010064f81036801d0b1959", - "slotId": "Back_plate" - } - ], - "loyaltyLevel": 2, - "traderId": 2 - }, - { - "availableInGameEditions": [], - "id": "655b88f11f2b6843ec751fdd", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1961", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b1961", - "_tpl": "64abd93857958b4249003418" - } - ], - "loyaltyLevel": 2, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0be13186f7746f016734aa": { - "QuestName": "Psycho Sniper", - "_id": "5c0be13186f7746f016734aa", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0be13186f7746f016734aa acceptPlayerMessage", - "changeQuestMessageText": "5c0be13186f7746f016734aa changeQuestMessageText", - "completePlayerMessage": "5c0be13186f7746f016734aa completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5c0be2b486f7747bcb347d58", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Sniper", - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64b67c6358b5637e2d71a656", - "conditions": [ - { - "id": "64b67d16b24b672b97795056", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "627e14b21713922ded6f2c15", - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "61f7c9e189e6fb1a5e3ea78d", - "673cab3e03c6a20581028bc1" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "64b67c6358b5637e2d71a655", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1fb5f986f7744a1929a527", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 35, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5c1fb5f086f7744a184fb3c5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27bc8586f7741b543d8ea4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64b67fcd3e349c7dbd06bd17", - "conditions": [ - { - "id": "64b67fe3a857ea477002a407", - "dynamicLocale": false, - "status": [ - "Killed", - "MissingInAction", - "Left" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "64b67fcd3e349c7dbd06bd16", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] - }, - "description": "5c0be13186f7746f016734aa description", - "failMessageText": "5c0be13186f7746f016734aa failMessageText", - "declinePlayerMessage": "5c0be13186f7746f016734aa declinePlayerMessage", - "name": "5c0be13186f7746f016734aa name", - "note": "5c0be13186f7746f016734aa note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5a27cafa86f77424e20615d6.jpg", - "type": "Completion", - "isKey": false, - "restartable": true, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0be13186f7746f016734aa startedMessageText", - "successMessageText": "5c0be13186f7746f016734aa successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 26700, - "id": "60cc806e7c496e588343a6f6", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc80803e4e974efa345d7a", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 150000, - "id": "5c18c25286f77467bf06520f", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1963", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1963", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 150000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b90b7e81c51328c56d7716", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010064f81036801d0b1964", - "unknown": false, - "items": [ - { - "_id": "68010064f81036801d0b1964", - "_tpl": "5ac66d725acfc43b321d4b60", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010064f81036801d0b1965", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_gas_block" - }, - { - "_id": "68010064f81036801d0b1966", - "_tpl": "5cf4e3f3d7f00c06595bc7f0", - "parentId": "68010064f81036801d0b1965", - "slotId": "mod_handguard" - }, - { - "_id": "68010064f81036801d0b1967", - "_tpl": "5c7fc87d2e221644f31c0298", - "parentId": "68010064f81036801d0b1966", - "slotId": "mod_foregrip" - }, - { - "_id": "68010064f81036801d0b1968", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "68010064f81036801d0b1966", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b1969", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "68010064f81036801d0b1968", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b196a", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "68010064f81036801d0b1969", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b196b", - "_tpl": "5cc9ad73d7f00c000e2579d4", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_muzzle" - }, - { - "_id": "68010064f81036801d0b196c", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010064f81036801d0b196d", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_reciever" - }, - { - "_id": "68010064f81036801d0b196e", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "68010064f81036801d0b196d", - "slotId": "mod_scope" - }, - { - "_id": "68010064f81036801d0b196f", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010064f81036801d0b1970", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_stock" - }, - { - "_id": "68010064f81036801d0b1971", - "_tpl": "5c793fde2e221601da358614", - "parentId": "68010064f81036801d0b1970", - "slotId": "mod_stock" - }, - { - "_id": "68010064f81036801d0b1972", - "_tpl": "5cfe8010d7ad1a59283b14c6", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_magazine" - }, - { - "_id": "68010064f81036801d0b1973", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "68010064f81036801d0b1964", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "value": 300, - "id": "64b68107c3abf20a9660daa9", - "type": "Skill", - "index": 0, - "target": "Sniper", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "5f2480cfef1e594955237bfd", - "type": "Skill", - "index": 0, - "target": "Intellect", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "5dc15768f4ea412f68771d24", - "type": "Skill", - "index": 0, - "target": "StressResistance", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "5f2480c7f797691b9775a953", - "type": "Skill", - "index": 0, - "target": "Perception", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "675c047fa46173572a0bd878": { - "QuestName": "Shipment Tracking", - "_id": "675c047fa46173572a0bd878", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c047fa46173572a0bd878 acceptPlayerMessage", - "changeQuestMessageText": "675c047fa46173572a0bd878 changeQuestMessageText", - "completePlayerMessage": "675c047fa46173572a0bd878 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "675c04b3fc6b273a36ed294a", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7acc4076a741a3061566" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "675c04c1b68cc8180efb38c6", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f7acc4076a741a3061566" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "675c049993cfc3bb9a80429a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "675c03d1f7da9792a405549a", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c047fa46173572a0bd878 description", - "failMessageText": "675c047fa46173572a0bd878 failMessageText", - "declinePlayerMessage": "675c047fa46173572a0bd878 declinePlayerMessage", - "name": "675c047fa46173572a0bd878 name", - "note": "675c047fa46173572a0bd878 note", - "traderId": "54cb57776803fa99248b456e", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c047fa46173572a0bd878 startedMessageText", - "successMessageText": "675c047fa46173572a0bd878 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9600, - "id": "6762f041c8a15bcac7d105d1", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 52000, - "id": "6762f04d0f98353d7a7929d0", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1975", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b1975", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 52000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6762f056c054785aa7f585a9", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6762f06fe0447929e3ba67af", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b1978", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b1977", - "_tpl": "62a0a124de7ac81993580542", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b1978", - "_tpl": "62a0a124de7ac81993580542", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639872fa9b4fb827b200d8e5": { - "QuestName": "Gunsmith - Part 9", - "_id": "639872fa9b4fb827b200d8e5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639872fa9b4fb827b200d8e5 acceptPlayerMessage", - "changeQuestMessageText": "639872fa9b4fb827b200d8e5 changeQuestMessageText", - "completePlayerMessage": "639872fa9b4fb827b200d8e5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "6398776f93ae507d5858c3a8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "56d59856d2720bd8418b456a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 80.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 20, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 610.0, - "compareMethod": "<=" - }, - "weight": { - "value": 1.5, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5c00076d0db834001d23ee1f", - "5c0009510db834001966907f" - ], - "hasItemFromCategory": [ - "55818b164bdc2ddc698b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "6398acabcd51826f7a069b89", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 19, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "639aef8881b99001240bbe16", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ae3277186f7745973054106", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639872fa9b4fb827b200d8e5 description", - "failMessageText": "639872fa9b4fb827b200d8e5 failMessageText", - "declinePlayerMessage": "639872fa9b4fb827b200d8e5 declinePlayerMessage", - "name": "639872fa9b4fb827b200d8e5 name", - "note": "639872fa9b4fb827b200d8e5 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/63aae950f83fd6083938904c.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639872fa9b4fb827b200d8e5 startedMessageText", - "successMessageText": "639872fa9b4fb827b200d8e5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9800, - "id": "6398af00cadede58636ddd55", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6398aeeceee7ff72370f7dd9", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 300, - "id": "6398aed2700117662d337be7", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b197a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010064f81036801d0b197a", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 300 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6398aea5c8f8cc12a47b02a8", - "type": "Item", - "index": 0, - "target": "68010064f81036801d0b197d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010064f81036801d0b197c", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010064f81036801d0b197d", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19bebfcae11642e50f9b9", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b197e", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b197e", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b197f", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "68010065f81036801d0b197e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1980", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "68010065f81036801d0b197e", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1981", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "68010065f81036801d0b197e", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1982", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "68010065f81036801d0b1981", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1983", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "68010065f81036801d0b1982", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1984", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "68010065f81036801d0b1982", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1985", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "68010065f81036801d0b1981", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1986", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "68010065f81036801d0b1985", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1987", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "68010065f81036801d0b1981", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1988", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b197e", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1989", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "68010065f81036801d0b1988", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b198a", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "68010065f81036801d0b197e", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "63a19bf52c2d4f2e4807808f", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b198b", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b198b", - "_tpl": "5cc86832d7f00c000d3a6e6c" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5b47799d86f7746c5d6a5fd8": { - "QuestName": "Gunsmith - Part 12", - "_id": "5b47799d86f7746c5d6a5fd8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage", - "changeQuestMessageText": "5b47799d86f7746c5d6a5fd8 changeQuestMessageText", - "completePlayerMessage": "5b47799d86f7746c5d6a5fd8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5b477b3b86f77401da02e6c4", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "58948c8e86f77409493f7266" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 300.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 52.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 225.0, - "compareMethod": "<=" - }, - "weight": { - "value": 4.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5b07db875acfc40dc528a5f6", - "5b3a16655acfc40016387a2a", - "5b07dd285acfc4001754240d" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0d6086f7742c1f5a3c4d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 23, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f085586f7747a2910a9b2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639872fc93ae507d5858c3a6", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b47799d86f7746c5d6a5fd8 description", - "failMessageText": "5b47799d86f7746c5d6a5fd8 failMessageText", - "declinePlayerMessage": "5b47799d86f7746c5d6a5fd8 declinePlayerMessage", - "name": "5b47799d86f7746c5d6a5fd8 name", - "note": "5b47799d86f7746c5d6a5fd8 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5b4785f586f77470315db7ed.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b47799d86f7746c5d6a5fd8 startedMessageText", - "successMessageText": "5b47799d86f7746c5d6a5fd8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 12300, - "id": "60cc78f26a2a1958fc523205", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc78f78f570e28f148115f", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 500, - "id": "5b48768d86f7744a14343aea", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b198d", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b198d", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5b48769b86f7744d06237e54", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b198f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b198f", - "_tpl": "5a7c147ce899ef00150bd8b8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc791f8f570e28f1481161", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1991", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1991", - "_tpl": "5cebec00d7f00c065c53522a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc794565e4664318606af9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1993", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1993", - "_tpl": "5c6592372e221600133e47d7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6399b0c3cadede58636ddd56", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1995", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1995", - "_tpl": "5a7c147ce899ef00150bd8b8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4495c86f7744e87761355": { - "QuestName": "Sew it Good - Part 2", - "_id": "5ae4495c86f7744e87761355", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4495c86f7744e87761355 acceptPlayerMessage", - "changeQuestMessageText": "5ae4495c86f7744e87761355 changeQuestMessageText", - "completePlayerMessage": "5ae4495c86f7744e87761355 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b77f86f77432c81e3074", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ab8e79e86f7742d8b372e78" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b7c886f774307c29df56", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ab8e79e86f7742d8b372e78" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5aec6d2586f774198b1f3336", - "target": "5ae9b77f86f77432c81e3074", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b91386f77415a869b3f3", - "index": 2, - "maxDurability": 100.0, - "minDurability": 50.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ab8e79e86f7742d8b372e78" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b93b86f7746e0026221a", - "index": 3, - "maxDurability": 100.0, - "minDurability": 50.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ab8e79e86f7742d8b372e78" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5aec6d2a86f774198b1f3337", - "target": "5ae9b91386f77415a869b3f3", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4165d86f7745bf73dad72", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4495086f77443c122bc40", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4495c86f7744e87761355 description", - "failMessageText": "5ae4495c86f7744e87761355 failMessageText", - "declinePlayerMessage": "5ae4495c86f7744e87761355 declinePlayerMessage", - "name": "5ae4495c86f7744e87761355 name", - "note": "5ae4495c86f7744e87761355 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4495c86f7744e87761355 startedMessageText", - "successMessageText": "5ae4495c86f7744e87761355 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 17500, - "id": "60cc83db179f8541b846928b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc83e6af2e5506c37822db", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc844965e4664318606b55", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1997", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1997", - "_tpl": "5aa7e3abe5b5b000171d064d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc8438af2e5506c37822dc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1999", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1999", - "_tpl": "5c0919b50db834001b7ce3b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc844398b49270603645f6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b199b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b199b", - "_tpl": "5aa7e373e5b5b000137b76f0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "675c3507a06634b5110e3c18": { "QuestName": "Belka and Strelka", "_id": "675c3507a06634b5110e3c18", @@ -10854,12 +7740,12 @@ "id": "6762f71320ccb48e0f9deb45", "type": "Item", "index": 0, - "target": "68010065f81036801d0b199d", + "target": "6812400b0c5cf2cf75074c65", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b199d", + "_id": "6812400b0c5cf2cf75074c65", "_tpl": "6217726288ed9f0845317459", "upd": { "StackObjectsCount": 1 @@ -10883,12 +7769,12 @@ "id": "6762f6d8c6c0cbc5bf5eed0d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b199f", + "target": "6812400b0c5cf2cf75074c67", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b199f", + "_id": "6812400b0c5cf2cf75074c67", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 44000 @@ -10911,12 +7797,12 @@ "id": "6762f6fda3a082b9d4525b91", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19a5", + "target": "6812400b0c5cf2cf75074c6d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19a1", + "_id": "6812400b0c5cf2cf75074c69", "_tpl": "5448be9a4bdc2dfd2f8b456a", "upd": { "StackObjectsCount": 1, @@ -10924,7 +7810,7 @@ } }, { - "_id": "68010065f81036801d0b19a2", + "_id": "6812400b0c5cf2cf75074c6a", "_tpl": "5448be9a4bdc2dfd2f8b456a", "upd": { "StackObjectsCount": 1, @@ -10932,7 +7818,7 @@ } }, { - "_id": "68010065f81036801d0b19a3", + "_id": "6812400b0c5cf2cf75074c6b", "_tpl": "5448be9a4bdc2dfd2f8b456a", "upd": { "StackObjectsCount": 1, @@ -10940,7 +7826,7 @@ } }, { - "_id": "68010065f81036801d0b19a4", + "_id": "6812400b0c5cf2cf75074c6c", "_tpl": "5448be9a4bdc2dfd2f8b456a", "upd": { "StackObjectsCount": 1, @@ -10948,7 +7834,7 @@ } }, { - "_id": "68010065f81036801d0b19a5", + "_id": "6812400b0c5cf2cf75074c6d", "_tpl": "5448be9a4bdc2dfd2f8b456a", "upd": { "StackObjectsCount": 1, @@ -11108,51 +7994,51 @@ "id": "6762f1539161339973f36bcd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19a6", + "target": "6812400b0c5cf2cf75074c6e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19a6", + "_id": "6812400b0c5cf2cf75074c6e", "_tpl": "588892092459774ac91d4b11", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b19a7", + "_id": "6812400b0c5cf2cf75074c6f", "_tpl": "5888988e24597752fe43a6fa", - "parentId": "68010065f81036801d0b19a6", + "parentId": "6812400b0c5cf2cf75074c6e", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b19a8", + "_id": "6812400b0c5cf2cf75074c70", "_tpl": "5888956924597752983e182d", - "parentId": "68010065f81036801d0b19a6", + "parentId": "6812400b0c5cf2cf75074c6e", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b19a9", + "_id": "6812400b0c5cf2cf75074c71", "_tpl": "5888996c24597754281f9419", - "parentId": "68010065f81036801d0b19a8", + "parentId": "6812400b0c5cf2cf75074c70", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b19aa", + "_id": "6812400b0c5cf2cf75074c72", "_tpl": "5888976c24597754281f93f5", - "parentId": "68010065f81036801d0b19a8", + "parentId": "6812400b0c5cf2cf75074c70", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b19ab", + "_id": "6812400b0c5cf2cf75074c73", "_tpl": "57c55f172459772d27602381", - "parentId": "68010065f81036801d0b19a6", + "parentId": "6812400b0c5cf2cf75074c6e", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b19ac", + "_id": "6812400b0c5cf2cf75074c74", "_tpl": "58889d0c2459775bc215d981", - "parentId": "68010065f81036801d0b19a6", + "parentId": "6812400b0c5cf2cf75074c6e", "slotId": "mod_stock" } ] @@ -11173,12 +8059,12 @@ "id": "6762f11a8b20be5b16e7c073", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19ae", + "target": "6812400b0c5cf2cf75074c76", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b19ae", + "_id": "6812400b0c5cf2cf75074c76", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 105000 @@ -11201,12 +8087,12 @@ "id": "6762f141638d30d7741d8449", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19b9", + "target": "6812400b0c5cf2cf75074c81", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19b9", + "_id": "6812400b0c5cf2cf75074c81", "_tpl": "5b44d0de86f774503d30cba8", "upd": { "StackObjectsCount": 1, @@ -11214,84 +8100,84 @@ } }, { - "_id": "68010065f81036801d0b19ba", + "_id": "6812400b0c5cf2cf75074c82", "_tpl": "6575c342efc786cd9101a5e5", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b19bb", + "_id": "6812400b0c5cf2cf75074c83", "_tpl": "6575c34bc6700bd6b40e8a84", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b19bc", + "_id": "6812400b0c5cf2cf75074c84", "_tpl": "6575c35bc6700bd6b40e8a88", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b19bd", + "_id": "6812400b0c5cf2cf75074c85", "_tpl": "6575c366c6700bd6b40e8a8c", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b19be", + "_id": "6812400b0c5cf2cf75074c86", "_tpl": "6575c373dc9932aed601c5ec", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b19bf", + "_id": "6812400b0c5cf2cf75074c87", "_tpl": "6575c385dc9932aed601c5f0", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Groin" }, { - "_id": "68010065f81036801d0b19c0", + "_id": "6812400b0c5cf2cf75074c88", "_tpl": "6575c390efc786cd9101a5e9", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Groin_back" }, { - "_id": "68010065f81036801d0b19c1", + "_id": "6812400b0c5cf2cf75074c89", "_tpl": "656fa8d700d62bcd2e024084", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b19c2", + "_id": "6812400b0c5cf2cf75074c8a", "_tpl": "656fa8d700d62bcd2e024084", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b19b9", + "parentId": "6812400b0c5cf2cf75074c81", "slotId": "Back_plate" } ] @@ -11307,6 +8193,165 @@ "arenaLocations": [], "status": 0 }, + "675c1570526ff496850895d9": { + "QuestName": "Passion for Ergonomics", + "_id": "675c1570526ff496850895d9", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c1570526ff496850895d9 acceptPlayerMessage", + "changeQuestMessageText": "675c1570526ff496850895d9 changeQuestMessageText", + "completePlayerMessage": "675c1570526ff496850895d9 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "675c15916580a378dc0f012f", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675f80d4fe1b59cf490d3527" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "675c1595a4c063af74ee5279", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "675f80d4fe1b59cf490d3527" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6762f196778a1b93ebed6359", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3460c86f7742880308185", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c1570526ff496850895d9 description", + "failMessageText": "675c1570526ff496850895d9 failMessageText", + "declinePlayerMessage": "675c1570526ff496850895d9 declinePlayerMessage", + "name": "675c1570526ff496850895d9 name", + "note": "675c1570526ff496850895d9 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/6762fe26d4bdaabb7a02b683.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c1570526ff496850895d9 startedMessageText", + "successMessageText": "675c1570526ff496850895d9 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7200, + "id": "6762f1a0c53027595f587f37", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 25000, + "id": "6762f1b10d2009cfd8b56891", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074c8c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074c8c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 25000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6762f1bc96b105ad3a8b6e6a", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6762f1c822d660fb7e3da07f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074c8f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074c8e", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074c8f", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5a27bc3686f7741c73584026": { "QuestName": "Wet Job - Part 4", "_id": "5a27bc3686f7741c73584026", @@ -11431,12 +8476,12 @@ "id": "60cc70b365e4664318606ae6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19c4", + "target": "6812400b0c5cf2cf75074c91", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b19c4", + "_id": "6812400b0c5cf2cf75074c91", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 1700 @@ -11450,12 +8495,12 @@ "id": "60cc70c465e4664318606ae8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19c6", + "target": "6812400b0c5cf2cf75074c93", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19c6", + "_id": "6812400b0c5cf2cf75074c93", "_tpl": "5a80a29286f7742b25692012", "upd": { "StackObjectsCount": 1, @@ -11469,11 +8514,11 @@ "id": "60b90d8f7bdcb1576b1226c7", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b19c7", + "target": "6812400b0c5cf2cf75074c94", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b19c7", + "_id": "6812400b0c5cf2cf75074c94", "_tpl": "5dcbd56fdbd3d91b3e5468d5", "upd": { "FireMode": { @@ -11482,33 +8527,33 @@ } }, { - "_id": "68010065f81036801d0b19c8", + "_id": "6812400b0c5cf2cf75074c95", "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "68010065f81036801d0b19c7", + "parentId": "6812400b0c5cf2cf75074c94", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b19c9", + "_id": "6812400b0c5cf2cf75074c96", "_tpl": "5a3501acc4a282000d72293a", - "parentId": "68010065f81036801d0b19c7", + "parentId": "6812400b0c5cf2cf75074c94", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b19ca", + "_id": "6812400b0c5cf2cf75074c97", "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "68010065f81036801d0b19c7", + "parentId": "6812400b0c5cf2cf75074c94", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b19cb", + "_id": "6812400b0c5cf2cf75074c98", "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "68010065f81036801d0b19c7", + "parentId": "6812400b0c5cf2cf75074c94", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b19cc", + "_id": "6812400b0c5cf2cf75074c99", "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "68010065f81036801d0b19cb", + "parentId": "6812400b0c5cf2cf75074c98", "slotId": "mod_muzzle" } ], @@ -11526,165 +8571,6 @@ "arenaLocations": [], "status": 0 }, - "675c1570526ff496850895d9": { - "QuestName": "Passion for Ergonomics", - "_id": "675c1570526ff496850895d9", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c1570526ff496850895d9 acceptPlayerMessage", - "changeQuestMessageText": "675c1570526ff496850895d9 changeQuestMessageText", - "completePlayerMessage": "675c1570526ff496850895d9 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "675c15916580a378dc0f012f", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f80d4fe1b59cf490d3527" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "675c1595a4c063af74ee5279", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "675f80d4fe1b59cf490d3527" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762f196778a1b93ebed6359", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3460c86f7742880308185", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c1570526ff496850895d9 description", - "failMessageText": "675c1570526ff496850895d9 failMessageText", - "declinePlayerMessage": "675c1570526ff496850895d9 declinePlayerMessage", - "name": "675c1570526ff496850895d9 name", - "note": "675c1570526ff496850895d9 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/6762fe26d4bdaabb7a02b683.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c1570526ff496850895d9 startedMessageText", - "successMessageText": "675c1570526ff496850895d9 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 7200, - "id": "6762f1a0c53027595f587f37", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 25000, - "id": "6762f1b10d2009cfd8b56891", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b19ce", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b19ce", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 25000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6762f1bc96b105ad3a8b6e6a", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6762f1c822d660fb7e3da07f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b19d1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b19d0", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b19d1", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5a27b80086f774429a5d7e20": { "QuestName": "Eagle Eye", "_id": "5a27b80086f774429a5d7e20", @@ -11908,12 +8794,12 @@ "id": "5a27fde286f77477cd733d92", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19d3", + "target": "6812400b0c5cf2cf75074c9b", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b19d3", + "_id": "6812400b0c5cf2cf75074c9b", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 900 @@ -11927,12 +8813,12 @@ "id": "5a606d4f86f77465241848a5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19d5", + "target": "6812400b0c5cf2cf75074c9d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19d5", + "_id": "6812400b0c5cf2cf75074c9d", "_tpl": "57aca93d2459771f2c7e26db", "upd": { "StackObjectsCount": 1, @@ -11947,12 +8833,12 @@ "id": "5a3a447a86f7745ed8731053", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19d7", + "target": "6812400b0c5cf2cf75074c9f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19d7", + "_id": "6812400b0c5cf2cf75074c9f", "_tpl": "544a3a774bdc2d3a388b4567", "upd": { "StackObjectsCount": 1, @@ -11966,11 +8852,11 @@ "id": "63a19feeab6bb51044344bef", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b19d8", + "target": "6812400b0c5cf2cf75074ca0", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b19d8", + "_id": "6812400b0c5cf2cf75074ca0", "_tpl": "58948c8e86f77409493f7266", "upd": { "Repairable": { @@ -11980,87 +8866,87 @@ } }, { - "_id": "68010065f81036801d0b19d9", + "_id": "6812400b0c5cf2cf75074ca1", "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "68010065f81036801d0b19d8", + "parentId": "6812400b0c5cf2cf75074ca0", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b19da", + "_id": "6812400b0c5cf2cf75074ca2", "_tpl": "5894a05586f774094708ef75", - "parentId": "68010065f81036801d0b19d8", + "parentId": "6812400b0c5cf2cf75074ca0", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b19db", + "_id": "6812400b0c5cf2cf75074ca3", "_tpl": "5894a5b586f77426d2590767", - "parentId": "68010065f81036801d0b19d8", + "parentId": "6812400b0c5cf2cf75074ca0", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b19dc", + "_id": "6812400b0c5cf2cf75074ca4", "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "68010065f81036801d0b19db", + "parentId": "6812400b0c5cf2cf75074ca3", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b19dd", + "_id": "6812400b0c5cf2cf75074ca5", "_tpl": "58aeac1b86f77457c419f475", - "parentId": "68010065f81036801d0b19dc", + "parentId": "6812400b0c5cf2cf75074ca4", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b19de", + "_id": "6812400b0c5cf2cf75074ca6", "_tpl": "5894a42086f77426d2590762", - "parentId": "68010065f81036801d0b19db", + "parentId": "6812400b0c5cf2cf75074ca3", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b19df", + "_id": "6812400b0c5cf2cf75074ca7", "_tpl": "5894a73486f77426d259076c", - "parentId": "68010065f81036801d0b19de", + "parentId": "6812400b0c5cf2cf75074ca6", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b19e0", + "_id": "6812400b0c5cf2cf75074ca8", "_tpl": "58a56f8d86f774651579314c", - "parentId": "68010065f81036801d0b19de", + "parentId": "6812400b0c5cf2cf75074ca6", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b19e1", + "_id": "6812400b0c5cf2cf75074ca9", "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "68010065f81036801d0b19de", + "parentId": "6812400b0c5cf2cf75074ca6", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b19e2", + "_id": "6812400b0c5cf2cf75074caa", "_tpl": "58a56f8d86f774651579314c", - "parentId": "68010065f81036801d0b19de", + "parentId": "6812400b0c5cf2cf75074ca6", "slotId": "mod_mount_002" }, { - "_id": "68010065f81036801d0b19e3", + "_id": "6812400b0c5cf2cf75074cab", "_tpl": "5894a81786f77427140b8347", - "parentId": "68010065f81036801d0b19db", + "parentId": "6812400b0c5cf2cf75074ca3", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b19e4", + "_id": "6812400b0c5cf2cf75074cac", "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "68010065f81036801d0b19d8", + "parentId": "6812400b0c5cf2cf75074ca0", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b19e5", + "_id": "6812400b0c5cf2cf75074cad", "_tpl": "57ade1442459771557167e15", - "parentId": "68010065f81036801d0b19e4", + "parentId": "6812400b0c5cf2cf75074cac", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b19e6", + "_id": "6812400b0c5cf2cf75074cae", "_tpl": "58949fac86f77409483e16aa", - "parentId": "68010065f81036801d0b19d8", + "parentId": "6812400b0c5cf2cf75074ca0", "slotId": "mod_charge" } ], @@ -12233,12 +9119,12 @@ "id": "5c18bf7e86f77467be0572e9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19e8", + "target": "6812400b0c5cf2cf75074cb0", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b19e8", + "_id": "6812400b0c5cf2cf75074cb0", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -12252,12 +9138,12 @@ "id": "60cc7f8a3e4e974efa345d74", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19eb", + "target": "6812400b0c5cf2cf75074cb3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19ea", + "_id": "6812400b0c5cf2cf75074cb2", "_tpl": "59faff1d86f7746c51718c9c", "upd": { "StackObjectsCount": 1, @@ -12265,7 +9151,7 @@ } }, { - "_id": "68010065f81036801d0b19eb", + "_id": "6812400b0c5cf2cf75074cb3", "_tpl": "59faff1d86f7746c51718c9c", "upd": { "StackObjectsCount": 1, @@ -12279,11 +9165,11 @@ "id": "63a19f1b2c2d4f2e48078091", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b19ec", + "target": "6812400b0c5cf2cf75074cb4", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b19ec", + "_id": "6812400b0c5cf2cf75074cb4", "_tpl": "6193a720f8ee7e52e42109ed", "upd": { "FireMode": { @@ -12292,57 +9178,57 @@ } }, { - "_id": "68010065f81036801d0b19ed", + "_id": "6812400b0c5cf2cf75074cb5", "_tpl": "6194f02d9bb3d20b0946d2f0", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b19ee", + "_id": "6812400b0c5cf2cf75074cb6", "_tpl": "6194f5a318a3974e5e7421eb", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b19ef", + "_id": "6812400b0c5cf2cf75074cb7", "_tpl": "6194f2df645b5d229654ad77", - "parentId": "68010065f81036801d0b19ee", + "parentId": "6812400b0c5cf2cf75074cb6", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b19f0", + "_id": "6812400b0c5cf2cf75074cb8", "_tpl": "6194f3286db0f2477964e67d", - "parentId": "68010065f81036801d0b19ee", + "parentId": "6812400b0c5cf2cf75074cb6", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b19f1", + "_id": "6812400b0c5cf2cf75074cb9", "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b19f2", + "_id": "6812400b0c5cf2cf75074cba", "_tpl": "6193d3cded0429009f543e6a", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_trigger" }, { - "_id": "68010065f81036801d0b19f3", + "_id": "6812400b0c5cf2cf75074cbb", "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_hammer" }, { - "_id": "68010065f81036801d0b19f4", + "_id": "6812400b0c5cf2cf75074cbc", "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_catch" }, { - "_id": "68010065f81036801d0b19f5", + "_id": "6812400b0c5cf2cf75074cbd", "_tpl": "619624b26db0f2477964e6b0", - "parentId": "68010065f81036801d0b19ec", + "parentId": "6812400b0c5cf2cf75074cb4", "slotId": "mod_mount_000" } ], @@ -12360,6 +9246,1705 @@ "arenaLocations": [], "status": 0 }, + "639872fc93ae507d5858c3a6": { + "QuestName": "Gunsmith - Part 11", + "_id": "639872fc93ae507d5858c3a6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639872fc93ae507d5858c3a6 acceptPlayerMessage", + "changeQuestMessageText": "639872fc93ae507d5858c3a6 changeQuestMessageText", + "completePlayerMessage": "639872fc93ae507d5858c3a6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "63987860c8f8cc12a47b02a6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5fc3f2d5900b1d5091531e57" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 300.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 50.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 31, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 230.0, + "compareMethod": "<=" + }, + "weight": { + "value": 4.5, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5fbb978207e8a97d1f0902d3", + "5f6340d3ca442212f4047eb2" + ], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "6398b000cd51826f7a069b8a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 22, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639af2cf81b99001240bbe17", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae327c886f7745c7b3f2f3f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639872fc93ae507d5858c3a6 description", + "failMessageText": "639872fc93ae507d5858c3a6 failMessageText", + "declinePlayerMessage": "639872fc93ae507d5858c3a6 declinePlayerMessage", + "name": "639872fc93ae507d5858c3a6 name", + "note": "639872fc93ae507d5858c3a6 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae95961d7b024e808cc5c.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639872fc93ae507d5858c3a6 startedMessageText", + "successMessageText": "639872fc93ae507d5858c3a6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 11600, + "id": "6398b02593ae507d5858c3ab", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6398b033700117662d337be8", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "6398b03b8871e1272b10ccf9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cbf", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cbf", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6398b0593693c63d86328f28", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cc1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cc1", + "_tpl": "55d6190f4bdc2d87028b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6089732b59b92115597ad789": { + "QuestName": "Surplus Goods", + "_id": "6089732b59b92115597ad789", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6089732b59b92115597ad789 acceptPlayerMessage", + "changeQuestMessageText": "6089732b59b92115597ad789 changeQuestMessageText", + "completePlayerMessage": "6089732b59b92115597ad789 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6092942fb0f07c6ea1246e3a", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "60c080eb991ac167ad1c3ad4" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6092947635915c62b44fd05b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "60c080eb991ac167ad1c3ad4" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "609294820ce4cd3a353dfc67", + "target": "6092942fb0f07c6ea1246e3a", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "60bf73682837926f405dd792", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 13, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "60bf7364c53a5709996b40bf", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6089736efa70fc097863b8f6", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6089732b59b92115597ad789 description", + "failMessageText": "6089732b59b92115597ad789 failMessageText", + "declinePlayerMessage": "6089732b59b92115597ad789 declinePlayerMessage", + "name": "6089732b59b92115597ad789 name", + "note": "6089732b59b92115597ad789 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c3752d78280c17952e1e69.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6089732b59b92115597ad789 startedMessageText", + "successMessageText": "6089732b59b92115597ad789 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7500, + "id": "60bf6ffbbf90bf6b431e895d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60bf70069903f107aa251f34", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 40000, + "id": "60bf7031d4526a054d42e11b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cc3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cc3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 40000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60bf7014d4526a054d42e11a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cc6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cc5", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cc6", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60bf701fdb5461623517069b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cc9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cc8", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cc9", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5c0bdb5286f774166e38eed4": { + "QuestName": "Flint", + "_id": "5c0bdb5286f774166e38eed4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c0bdb5286f774166e38eed4 acceptPlayerMessage", + "changeQuestMessageText": "5c0bdb5286f774166e38eed4 changeQuestMessageText", + "completePlayerMessage": "5c0bdb5286f774166e38eed4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5c0bdbb586f774166e38eed5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "StressResistance", + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5c1faac986f77410894b63f5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 35, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5c1faac086f7740ebd348c76", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b4795fb86f7745876267770", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c0bdb5286f774166e38eed4 description", + "failMessageText": "5c0bdb5286f774166e38eed4 failMessageText", + "declinePlayerMessage": "5c0bdb5286f774166e38eed4 declinePlayerMessage", + "name": "5c0bdb5286f774166e38eed4 name", + "note": "5c0bdb5286f774166e38eed4 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", + "type": "Skill", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0bdb5286f774166e38eed4 startedMessageText", + "successMessageText": "5c0bdb5286f774166e38eed4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 25100, + "id": "60c8c0dd9bdefb3130121b11", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60c8c0e22238043a5267864a", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 150000, + "id": "5c17c12786f77430a70d197d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ccb", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ccb", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 150000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb62e7179f8541b8469226", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ccf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ccd", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cce", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ccf", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "62a7042e0da185500f06093e", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cd5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cd1", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cd2", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cd3", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cd4", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cd5", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5c17c1a986f77418e53fc52f", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074cd6", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cd6", + "_tpl": "5bffdd7e0db834001b734a1a" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "676529af9c90953d090882e7": { + "QuestName": "Gunsmith - Old Friends Request", + "_id": "676529af9c90953d090882e7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "676529af9c90953d090882e7 acceptPlayerMessage", + "changeQuestMessageText": "676529af9c90953d090882e7 changeQuestMessageText", + "completePlayerMessage": "676529af9c90953d090882e7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "676529e759261ce07bc47b62", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5df24cf80dee1b22f862e9bc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 18.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 5, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 500.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5aa66be6e5b5b0214e506e97", + "5888961624597754281f93f3" + ], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + }, + { + "conditionType": "WeaponAssembly", + "id": "676529af9c90953d090882ea", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": [ + "59984ab886f7743e98271174" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 57.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 30, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 400.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "58d399e486f77442e0016fe7", + "58d39b0386f77443380bf13c", + "5c1bc7752e221602b1779b34", + "5649ae4a4bdc2d1b2b8b4588", + "544909bb4bdc2d6f028b4577", + "59bfc5c886f7743bf6794e62", + "59ecc3dd86f7746dc827481c", + "560d657b4bdc2da74d8b4572" + ], + "hasItemFromCategory": [] + }, + { + "conditionType": "WeaponAssembly", + "id": "67652a2f4f75e1a9543289ed", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5a7ae0c351dfba0017554310" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 90.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 21, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 0.0, + "compareMethod": ">=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "560d657b4bdc2da74d8b4572", + "5a7b4960e899ef197b331a2d", + "5a6b5e468dc32e001207faf5", + "5a6b592c8dc32e00094b97bf", + "5a718da68dc32e000d46d264" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "676529af9c90953d090882e9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 17, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af413ae86f774522e3438a5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac244eb86f7741356335af1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "676529af9c90953d090882e7 description", + "failMessageText": "676529af9c90953d090882e7 failMessageText", + "declinePlayerMessage": "676529af9c90953d090882e7 declinePlayerMessage", + "name": "676529af9c90953d090882e7 name", + "note": "676529af9c90953d090882e7 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "676529af9c90953d090882e7 startedMessageText", + "successMessageText": "676529af9c90953d090882e7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 21930, + "id": "676529af9c90953d090882eb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "676529af9c90953d090882ec", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 155000, + "id": "676529af9c90953d090882ed", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cd8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cd8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 155000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "676d5b242401767e2bd05b3d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074cd9", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cd9", + "_tpl": "67600929bd0a0549d70993f6" + } + ], + "loyaltyLevel": 2, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60e71d6d7fcf9c556f325055": { + "QuestName": "The Courier", + "_id": "60e71d6d7fcf9c556f325055", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71d6d7fcf9c556f325055 acceptPlayerMessage", + "changeQuestMessageText": "60e71d6d7fcf9c556f325055 changeQuestMessageText", + "completePlayerMessage": "60e71d6d7fcf9c556f325055 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "60e84ba726b88043510e0ad8", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "mech_41_1", + "target": [ + "5a1eaa87fcdbcb001865f75e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "60e85b2a26b88043510e0ada", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "mech_41_2", + "target": [ + "5a1eaa87fcdbcb001865f75e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6101491e6c85b961071d75fd", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "60e71d23c1bfa3050473b8e6", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "6101492343d55d251d68e4fc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 52, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71d6d7fcf9c556f325055 description", + "failMessageText": "60e71d6d7fcf9c556f325055 failMessageText", + "declinePlayerMessage": "60e71d6d7fcf9c556f325055 declinePlayerMessage", + "name": "60e71d6d7fcf9c556f325055 name", + "note": "60e71d6d7fcf9c556f325055 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", + "type": "Multi", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71d6d7fcf9c556f325055 startedMessageText", + "successMessageText": "60e71d6d7fcf9c556f325055 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 115000, + "id": "60f03773c2a5085cc109674a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "61029298e5b13723fc7609b6", + "type": "Skill", + "index": 0, + "target": "Crafting", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "61029397e5b13723fc7609b7", + "type": "Skill", + "index": 0, + "target": "Intellect", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "610293a660307362d01d8c77", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cda", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cda", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074cdb", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "6812400b0c5cf2cf75074cda", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074cdc", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "6812400b0c5cf2cf75074cda", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074cdd", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf75074cda", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400b0c5cf2cf75074cde", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "6812400b0c5cf2cf75074cdd", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf75074cdf", + "_tpl": "5fc278107283c4046c581489", + "parentId": "6812400b0c5cf2cf75074cda", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074ce0", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "6812400b0c5cf2cf75074cdf", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074ce1", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "6812400b0c5cf2cf75074ce0", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074ce2", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "6812400b0c5cf2cf75074ce0", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75074ce3", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "6812400b0c5cf2cf75074cdf", + "slotId": "mod_handguard" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac244c486f77413e12cf945": { + "QuestName": "Gunsmith - Part 13", + "_id": "5ac244c486f77413e12cf945", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac244c486f77413e12cf945 acceptPlayerMessage", + "changeQuestMessageText": "5ac244c486f77413e12cf945 changeQuestMessageText", + "completePlayerMessage": "5ac244c486f77413e12cf945 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5acce11786f77411ed6fa6eb", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5a367e5dc4a282000e49738f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 1500.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 26.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 300.0, + "compareMethod": "<=" + }, + "weight": { + "value": 6.7, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf383d86f7741bb8378000", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf383686f7741bb8377fff", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b47799d86f7746c5d6a5fd8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac244c486f77413e12cf945 description", + "failMessageText": "5ac244c486f77413e12cf945 failMessageText", + "declinePlayerMessage": "5ac244c486f77413e12cf945 declinePlayerMessage", + "name": "5ac244c486f77413e12cf945 name", + "note": "5ac244c486f77413e12cf945 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4e08086f774623122ae44.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac244c486f77413e12cf945 startedMessageText", + "successMessageText": "5ac244c486f77413e12cf945 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13600, + "id": "60cc7742e3d0247e625dab6d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc775d3e4e974efa345d23", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "5acb82ca86f77456255bb07f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ce5", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ce5", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc77487c496e588343a6da", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ce8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ce7", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ce8", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6399b319e11ec11ff550403c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ceb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cea", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ceb", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19c9d5032c67f050dd95e", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074cec", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cec", + "_tpl": "5dfa3d2b0dee1b22f862eade" + } + ], + "loyaltyLevel": 3, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b478b1886f7744d1b23c57d": { + "QuestName": "Hot Delivery", + "_id": "5b478b1886f7744d1b23c57d", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b478b1886f7744d1b23c57d acceptPlayerMessage", + "changeQuestMessageText": "5b478b1886f7744d1b23c57d changeQuestMessageText", + "completePlayerMessage": "5b478b1886f7744d1b23c57d completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b478c4c86f7744d1a393fac", + "index": 0, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_020_1", + "target": [ + "5645bcc04bdc2d363b8b4572" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b478c7386f7744d1a393fb1", + "index": 1, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_020_1", + "target": [ + "5a7c4850e899ef00150be885" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b478cb586f7744d1a393fb5", + "index": 2, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_020_2", + "target": [ + "5ab8e79e86f7742d8b372e78" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0c9086f77453572f5538", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 29, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f0a8086f7744e3a6b3290", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae449b386f77446d8741719", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b478b1886f7744d1b23c57d description", + "failMessageText": "5b478b1886f7744d1b23c57d failMessageText", + "declinePlayerMessage": "5b478b1886f7744d1b23c57d declinePlayerMessage", + "name": "5b478b1886f7744d1b23c57d name", + "note": "5b478b1886f7744d1b23c57d note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b478b1886f7744d1b23c57d startedMessageText", + "successMessageText": "5b478b1886f7744d1b23c57d successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 20300, + "id": "60cc995c1bdece56c249cbdc", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60cc99605f9e6175514de2c8", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 55000, + "id": "5b48a6b586f7744b1229f6e9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cee", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cee", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 55000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5b48a6c486f774036c1b7b39", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074cfd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074cfd", + "_tpl": "5b44cd8b86f774503d30cba2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074cfe", + "_tpl": "6575c2adefc786cd9101a5d9", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074cff", + "_tpl": "6575c2be52b7f8c76a05ee25", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074d00", + "_tpl": "6575c2cd52b7f8c76a05ee29", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074d01", + "_tpl": "6575c2d852b7f8c76a05ee2d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074d02", + "_tpl": "6575c2e4efc786cd9101a5dd", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Collar" + }, + { + "_id": "6812400b0c5cf2cf75074d03", + "_tpl": "6575c2f7efc786cd9101a5e1", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Shoulder_l" + }, + { + "_id": "6812400b0c5cf2cf75074d04", + "_tpl": "6575c30352b7f8c76a05ee31", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Shoulder_r" + }, + { + "_id": "6812400b0c5cf2cf75074d05", + "_tpl": "6575c31b52b7f8c76a05ee35", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Groin" + }, + { + "_id": "6812400b0c5cf2cf75074d06", + "_tpl": "6575c326c6700bd6b40e8a80", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Groin_back" + }, + { + "_id": "6812400b0c5cf2cf75074d07", + "_tpl": "656fa8d700d62bcd2e024084", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d08", + "_tpl": "656fa8d700d62bcd2e024084", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Back_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d09", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Left_side_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d0a", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074cfd", + "slotId": "Right_side_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b95a9b71eeb7c4168c638", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074d0b", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d0b", + "_tpl": "5c0e774286f77468413cc5b2" + } + ], + "loyaltyLevel": 4, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5a27ba1c86f77461ea5a3c56": { "QuestName": "The Cult - Part 2", "_id": "5a27ba1c86f77461ea5a3c56", @@ -12501,12 +11086,12 @@ "id": "5a2805ee86f774291b083f8f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19f7", + "target": "6812400b0c5cf2cf75074d0d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b19f7", + "_id": "6812400b0c5cf2cf75074d0d", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 850 @@ -12520,12 +11105,12 @@ "id": "60cc6b4b98b49270603645b7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b19f8", + "target": "6812400b0c5cf2cf75074d0e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b19f8", + "_id": "6812400b0c5cf2cf75074d0e", "_tpl": "5df8ce05b11454561e39243b", "upd": { "StackObjectsCount": 1, @@ -12535,75 +11120,75 @@ } }, { - "_id": "68010065f81036801d0b19f9", + "_id": "6812400b0c5cf2cf75074d0f", "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "68010065f81036801d0b19f8", + "parentId": "6812400b0c5cf2cf75074d0e", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b19fa", + "_id": "6812400b0c5cf2cf75074d10", "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "68010065f81036801d0b19f8", + "parentId": "6812400b0c5cf2cf75074d0e", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b19fb", + "_id": "6812400b0c5cf2cf75074d11", "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b19f8", + "parentId": "6812400b0c5cf2cf75074d0e", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b19fc", + "_id": "6812400b0c5cf2cf75074d12", "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "68010065f81036801d0b19fb", + "parentId": "6812400b0c5cf2cf75074d11", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b19fd", + "_id": "6812400b0c5cf2cf75074d13", "_tpl": "5df8e4080b92095fd441e594", - "parentId": "68010065f81036801d0b19f8", + "parentId": "6812400b0c5cf2cf75074d0e", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b19fe", + "_id": "6812400b0c5cf2cf75074d14", "_tpl": "5df917564a9f347bc92edca3", - "parentId": "68010065f81036801d0b19fd", + "parentId": "6812400b0c5cf2cf75074d13", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b19ff", + "_id": "6812400b0c5cf2cf75074d15", "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "68010065f81036801d0b19fe", + "parentId": "6812400b0c5cf2cf75074d14", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1a00", + "_id": "6812400b0c5cf2cf75074d16", "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "68010065f81036801d0b19fe", + "parentId": "6812400b0c5cf2cf75074d14", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1a01", + "_id": "6812400b0c5cf2cf75074d17", "_tpl": "5df916dfbb49d91fb446d6b9", - "parentId": "68010065f81036801d0b19fd", + "parentId": "6812400b0c5cf2cf75074d13", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1a02", + "_id": "6812400b0c5cf2cf75074d18", "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "68010065f81036801d0b1a01", + "parentId": "6812400b0c5cf2cf75074d17", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b1a03", + "_id": "6812400b0c5cf2cf75074d19", "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "68010065f81036801d0b19fd", + "parentId": "6812400b0c5cf2cf75074d13", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1a04", + "_id": "6812400b0c5cf2cf75074d1a", "_tpl": "5df8e053bb49d91fb446d6a6", - "parentId": "68010065f81036801d0b19f8", + "parentId": "6812400b0c5cf2cf75074d0e", "slotId": "mod_charge" } ] @@ -12619,152 +11204,98 @@ "arenaLocations": [], "status": 0 }, - "5a27bb8386f7741c770d2d0a": { - "QuestName": "Wet Job - Part 1", - "_id": "5a27bb8386f7741c770d2d0a", + "5ae3280386f7742a41359364": { + "QuestName": "Gunsmith - Part 15", + "_id": "5ae3280386f7742a41359364", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27bb8386f7741c770d2d0a acceptPlayerMessage", - "changeQuestMessageText": "5a27bb8386f7741c770d2d0a changeQuestMessageText", - "completePlayerMessage": "5a27bb8386f7741c770d2d0a completePlayerMessage", + "acceptPlayerMessage": "5ae3280386f7742a41359364 acceptPlayerMessage", + "changeQuestMessageText": "5ae3280386f7742a41359364 changeQuestMessageText", + "completePlayerMessage": "5ae3280386f7742a41359364 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a281d8e86f77444dc7a2844", - "conditions": [ - { - "id": "5a281d9686f7743fe44eac8b", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5c07c60e0db834002330051f", - "5447a9cd4bdc2dbd208b4567", - "5d43021ca4b9362eab4b5e25" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [ - [ - "55d614004bdc2d86028b4568" - ], - [ - "59bffbb386f77435b379b9c2" - ], - [ - "55d6190f4bdc2d87028b4567" - ], - [ - "5c7955c22e221644f31bfd5e" - ], - [ - "57da93632459771cb65bf83f" - ], - [ - "57dbb57e2459774673234890" - ], - [ - "5a9fbb84a2750c00137fa685" - ], - [ - "5a34fe59c4a282000b1521a2" - ], - [ - "5cff9e5ed7ad1a09407397d4" - ], - [ - "5ea172e498dacb342978818e" - ], - [ - "5ea17bbc09aa976f2e7a51cd" - ], - [ - "5d44064fa4b9361e4f6eb8b5" - ], - [ - "60926df0132d4d12c81fd9df" - ], - [ - "626673016f1edc06f30cf6d5" - ], - [ - "638612b607dfed1ccb7206ba" - ], - [ - "63877c99e785640d436458ea" - ], - [ - "673f0b36536d64240f01acd6" - ], - [ - "673f0a9370a3ddcf0d0ee0b8" - ], - [ - "673f0a38259f5945d70e43a6" - ] - ], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5a281d9f86f774418b7eff14", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "5c9de99286f7741ced54c902", + "conditionType": "WeaponAssembly", + "id": "5ae4479686f7744f6c79b7b3", "index": 0, "parentId": "", - "oneSessionOnly": false, "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, + "target": [ + "57c44b372459772d2b39b8ce" + ], "globalQuestCounterId": "", - "value": 10, + "value": 1, "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 33.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 30, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 220.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5a9eb32da2750c00171b3f9c", + "544909bb4bdc2d6f028b4577", + "5a7c74b3e899ef0014332c29" + ], + "hasItemFromCategory": [] } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "5a3a72c786f7745a7e19f661", + "id": "5af4140186f774522d460775", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 14, + "value": 27, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5a281d5086f7743fe44eac83", + "id": "5af413fa86f77407184494f3", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27bafb86f7741c73584017", + "target": "639872fe8871e1272b10ccf6", "status": [ 4 ], @@ -12776,107 +11307,1117 @@ ], "Fail": [] }, - "description": "5a27bb8386f7741c770d2d0a description", - "failMessageText": "5a27bb8386f7741c770d2d0a failMessageText", - "declinePlayerMessage": "5a27bb8386f7741c770d2d0a declinePlayerMessage", - "name": "5a27bb8386f7741c770d2d0a name", - "note": "5a27bb8386f7741c770d2d0a note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", - "type": "Elimination", + "description": "5ae3280386f7742a41359364 description", + "failMessageText": "5ae3280386f7742a41359364 failMessageText", + "declinePlayerMessage": "5ae3280386f7742a41359364 declinePlayerMessage", + "name": "5ae3280386f7742a41359364 name", + "note": "5ae3280386f7742a41359364 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ae3281c86f7745b3e3bf2d1.jpg", + "type": "WeaponAssembly", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5a27bb8386f7741c770d2d0a startedMessageText", - "successMessageText": "5a27bb8386f7741c770d2d0a successMessageText", + "startedMessageText": "5ae3280386f7742a41359364 startedMessageText", + "successMessageText": "5ae3280386f7742a41359364 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 11400, - "id": "60cc6f40af2e5506c37822a7", + "value": 19400, + "id": "60cc784ea7d63f18200a24e4", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.04, - "id": "60cc6f4465e4664318606ade", + "value": 0.02, + "id": "60cc7852e3d0247e625dab6e", "type": "TraderStanding", "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 1100, - "id": "60cc6f4d3e4e974efa345d0f", + "value": 1, + "id": "5ae99bc386f774391242a7ac", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a06", + "target": "6812400b0c5cf2cf75074d1c", "unknown": false, - "findInRaid": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a06", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400b0c5cf2cf75074d1c", + "_tpl": "5addaffe86f77470b455f900", "upd": { - "StackObjectsCount": 1100 + "StackObjectsCount": 1, + "SpawnedInSession": true } } ] }, { "availableInGameEditions": [], - "id": "655b75adc023e22044165de9", - "type": "ProductionScheme", + "value": 1, + "id": "60cc78692b555f16df5c41ba", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a09", + "target": "6812400b0c5cf2cf75074d1e", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a08", - "_tpl": "619636be6db0f2477964e710", + "_id": "6812400b0c5cf2cf75074d1e", + "_tpl": "5d1b327086f7742525194449", "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "68010065f81036801d0b1a09", - "_tpl": "619636be6db0f2477964e710", - "upd": { - "StackObjectsCount": 60 + "StackObjectsCount": 1, + "SpawnedInSession": true } } - ], - "loyaltyLevel": 2, - "traderId": 10 + ] }, { "availableInGameEditions": [], + "id": "63a19cc35032c67f050dd960", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074d1f", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d1f", + "_tpl": "59eb7ebe86f7740b373438ce" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4497b86f7744cf402ed00": { + "QuestName": "Sew it Good - Part 4", + "_id": "5ae4497b86f7744cf402ed00", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4497b86f7744cf402ed00 acceptPlayerMessage", + "changeQuestMessageText": "5ae4497b86f7744cf402ed00 changeQuestMessageText", + "completePlayerMessage": "5ae4497b86f7744cf402ed00 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae45d7786f774178f237745", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7643b86f7742cbf2c109a" + ], + "countInRaid": false, + "globalQuestCounterId": "", "value": 2, - "id": "60cc6f5f8f570e28f148114b", + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae45d9386f774178f23774a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7643b86f7742cbf2c109a" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5af079e486f77434693ad7f8", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5648a69d4bdc2ded0b8b457b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5af07a0286f7747dba10d8ac", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5648a69d4bdc2ded0b8b457b" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4168d86f7745c267423dc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4496986f774459e77beb6", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4497b86f7744cf402ed00 description", + "failMessageText": "5ae4497b86f7744cf402ed00 failMessageText", + "declinePlayerMessage": "5ae4497b86f7744cf402ed00 declinePlayerMessage", + "name": "5ae4497b86f7744cf402ed00 name", + "note": "5ae4497b86f7744cf402ed00 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4497b86f7744cf402ed00 startedMessageText", + "successMessageText": "5ae4497b86f7744cf402ed00 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18500, + "id": "60cc96016a2a1958fc523227", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc960f20a6283a506aeb33", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "60cc96088f570e28f148117d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a0c", + "target": "6812400b0c5cf2cf75074d21", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d21", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "655b8b5bb71eeb7c4168c635", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d23", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d23", + "_tpl": "5d5d940f86f7742797262046", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc964320a6283a506aeb34", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d2b", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a0b", - "_tpl": "61bf7c024770ee6f9c6b8b53", + "_id": "6812400b0c5cf2cf75074d2b", + "_tpl": "5ab8dced86f774646209ec87", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1a0c", - "_tpl": "61bf7c024770ee6f9c6b8b53", + "_id": "6812400b0c5cf2cf75074d2c", + "_tpl": "6570f6e774d84423df065f21", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074d2d", + "_tpl": "6570f71dd67d0309980a7af8", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074d2e", + "_tpl": "6570f74774d84423df065f25", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074d2f", + "_tpl": "6570f79c4c65ab77a6015121", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074d30", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d31", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d2b", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b8b6d9db22d43ab42b70e", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75074d37", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d37", + "_tpl": "5b44cad286f77402a54ae7e5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d38", + "_tpl": "6575bc88c6700bd6b40e8a57", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d37", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074d39", + "_tpl": "6575bca0dc9932aed601c5d7", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d37", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074d3a", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d37", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d3b", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d37", + "slotId": "Back_plate" + } + ], + "loyaltyLevel": 3, + "traderId": 2 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b47876e86f7744d1c353205": { + "QuestName": "The Blood of War - Part 2", + "_id": "5b47876e86f7744d1c353205", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b47876e86f7744d1c353205 acceptPlayerMessage", + "changeQuestMessageText": "5b47876e86f7744d1c353205 changeQuestMessageText", + "completePlayerMessage": "5b47876e86f7744d1c353205 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5b47884886f7744d1c35327d", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5b43575a86f77424f443fe62" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5b47886986f7744d1a393e65", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5b43575a86f77424f443fe62" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0c7b86f77479ee584ab0", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 23, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f09c786f77479806f2cf3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448f286f77448d73c0131", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f09f586f7744fba15b2dc", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4495086f77443c122bc40", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b47876e86f7744d1c353205 description", + "failMessageText": "5b47876e86f7744d1c353205 failMessageText", + "declinePlayerMessage": "5b47876e86f7744d1c353205 declinePlayerMessage", + "name": "5b47876e86f7744d1c353205 name", + "note": "5b47876e86f7744d1c353205 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5b4787d086f7744d184ecb35.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b47876e86f7744d1c353205 startedMessageText", + "successMessageText": "5b47876e86f7744d1c353205 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 14600, + "id": "60cc9887a7d63f18200a250e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc988bb2736c24b2118b9a", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "5b48a4f386f7747a8d6b2e3a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d3d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d3d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5b48a51286f7747a8d6b2e3b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d41", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d41", + "_tpl": "5b40e3f35acfc40016388218", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d42", + "_tpl": "657f95bff92cd718b701550c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d41", + "slotId": "Helmet_top" + }, + { + "_id": "6812400b0c5cf2cf75074d43", + "_tpl": "657f9605f4c82973640b2358", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d41", + "slotId": "Helmet_back" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc98b6b2736c24b2118b9b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d50", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d50", + "_tpl": "5f5f41476bdad616ad46d631", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d51", + "_tpl": "65731b46cea9255e2102360a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074d52", + "_tpl": "65731b4fcea9255e2102360e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074d53", + "_tpl": "65731b576e709cddd001ec3f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074d54", + "_tpl": "65731b60ff6dc44a7d068c4a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074d55", + "_tpl": "65731b666e709cddd001ec43", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Collar" + }, + { + "_id": "6812400b0c5cf2cf75074d56", + "_tpl": "65731b716e709cddd001ec47", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Groin" + }, + { + "_id": "6812400b0c5cf2cf75074d57", + "_tpl": "65731b6b6042b0f210020ef6", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Groin_back" + }, + { + "_id": "6812400b0c5cf2cf75074d58", + "_tpl": "656f664200d62bcd2e024077", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d59", + "_tpl": "654a4f8bc721968a4404ef18", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Left_side_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d5a", + "_tpl": "654a4f8bc721968a4404ef18", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Right_side_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d5b", + "_tpl": "657b2797c3dbcb01d60c35ea", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d50", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b8a2c7f92d5105c6f7b7c", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75074d63", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d63", + "_tpl": "5d5d87f786f77427997cfaef", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d64", + "_tpl": "6570e5100b57c03ec90b970a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074d65", + "_tpl": "6570e479a6560e4ee50c2b02", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074d66", + "_tpl": "6570e5674cc0d2ab1e05edbb", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074d67", + "_tpl": "6570e59b0b57c03ec90b970e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074d68", + "_tpl": "656f9fa0498d1b7e3e071d98", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074d69", + "_tpl": "656f9fa0498d1b7e3e071d98", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074d63", + "slotId": "Back_plate" + } + ], + "loyaltyLevel": 2, + "traderId": 2 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac3464c86f7741d651d6877": { + "QuestName": "Farming - Part 4", + "_id": "5ac3464c86f7741d651d6877", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3464c86f7741d651d6877 acceptPlayerMessage", + "changeQuestMessageText": "5ac3464c86f7741d651d6877 changeQuestMessageText", + "completePlayerMessage": "5ac3464c86f7741d651d6877 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5081086f7740bde1b002f", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347ca924597744596b4e71" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5082586f77418804f7d4c", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347ca924597744596b4e71" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5083d86f7740be2744eed", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5734779624597737e04bf329" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5084d86f7740bde1b0031", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5734779624597737e04bf329" + ], + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b3486f7741ce21f9b06", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 14, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b3b86f7741ce21f9b08", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3462b86f7741d6118b983", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3464c86f7741d651d6877 description", + "failMessageText": "5ac3464c86f7741d651d6877 failMessageText", + "declinePlayerMessage": "5ac3464c86f7741d651d6877 declinePlayerMessage", + "name": "5ac3464c86f7741d651d6877 name", + "note": "5ac3464c86f7741d651d6877 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3464c86f7741d651d6877 startedMessageText", + "successMessageText": "5ac3464c86f7741d651d6877 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8000, + "id": "60cc7af5f09d61072d6d00c9", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7aff179f8541b8469273", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5acb857e86f77456255bb28a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d6a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d6a", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf75074d6b", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "6812400b0c5cf2cf75074d6a", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074d6c", + "_tpl": "5a7ad0c451dfba0013379712", + "parentId": "6812400b0c5cf2cf75074d6b", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074d6d", + "_tpl": "5a6f5f078dc32e00094b97dd", + "parentId": "6812400b0c5cf2cf75074d6a", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074d6e", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "6812400b0c5cf2cf75074d6a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074d6f", + "_tpl": "5a7b4900e899ef197b331a2a", + "parentId": "6812400b0c5cf2cf75074d6a", + "slotId": "mod_tactical" + }, + { + "_id": "6812400b0c5cf2cf75074d70", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "6812400b0c5cf2cf75074d6f", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074d71", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "6812400b0c5cf2cf75074d70", + "slotId": "mod_scope" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc7b1865e4664318606b02", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d73", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d73", + "_tpl": "567143bf4bdc2d1a0f8b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 300, + "id": "629f0a7650f43060015c5382", + "type": "Skill", + "index": 0, + "target": "Attention", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64b6aa18dafd274049412d85", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d76", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d75", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d76", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "64b6aa2425251516d768542a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074d7b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074d78", + "_tpl": "5c12620d86f7743f8b198b72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d79", + "_tpl": "5c12620d86f7743f8b198b72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d7a", + "_tpl": "5c12620d86f7743f8b198b72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074d7b", + "_tpl": "5c12620d86f7743f8b198b72", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -13176,12 +12717,12 @@ "id": "5b48a61586f774036c1b7b35", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a10", + "target": "6812400b0c5cf2cf75074d7f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a0e", + "_id": "6812400b0c5cf2cf75074d7d", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -13189,7 +12730,7 @@ } }, { - "_id": "68010065f81036801d0b1a0f", + "_id": "6812400b0c5cf2cf75074d7e", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -13197,7 +12738,7 @@ } }, { - "_id": "68010065f81036801d0b1a10", + "_id": "6812400b0c5cf2cf75074d7f", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -13212,12 +12753,12 @@ "id": "5ec1a1452d5b8510d548af03", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a15", + "target": "6812400b0c5cf2cf75074d84", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a15", + "_id": "6812400b0c5cf2cf75074d84", "_tpl": "5ca20ee186f774799474abc2", "upd": { "StackObjectsCount": 1, @@ -13225,30 +12766,30 @@ } }, { - "_id": "68010065f81036801d0b1a16", + "_id": "6812400b0c5cf2cf75074d85", "_tpl": "657bbe73a1c61ee0c303632b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a15", + "parentId": "6812400b0c5cf2cf75074d84", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b1a17", + "_id": "6812400b0c5cf2cf75074d86", "_tpl": "657bbed0aab96fccee08be96", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a15", + "parentId": "6812400b0c5cf2cf75074d84", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b1a18", + "_id": "6812400b0c5cf2cf75074d87", "_tpl": "657bbefeb30eca9763051189", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a15", + "parentId": "6812400b0c5cf2cf75074d84", "slotId": "Helmet_ears" } ] @@ -13264,999 +12805,6 @@ "arenaLocations": [], "status": 0 }, - "5ae327c886f7745c7b3f2f3f": { - "QuestName": "Gunsmith - Part 10", - "_id": "5ae327c886f7745c7b3f2f3f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae327c886f7745c7b3f2f3f acceptPlayerMessage", - "changeQuestMessageText": "5ae327c886f7745c7b3f2f3f changeQuestMessageText", - "completePlayerMessage": "5ae327c886f7745c7b3f2f3f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5ae445f386f7744e87761331", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5ac66d9b5acfc4001633997a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 800.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 38.0, - "compareMethod": ">=" - }, - "height": { - "value": 2, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 60, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 500.0, - "compareMethod": "<=" - }, - "weight": { - "value": 4.8, - "compareMethod": "<=" - }, - "width": { - "value": 4, - "compareMethod": ">=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af413e486f774522e3438df", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af413ce86f774522e3438ae", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639872fa9b4fb827b200d8e5", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae327c886f7745c7b3f2f3f description", - "failMessageText": "5ae327c886f7745c7b3f2f3f failMessageText", - "declinePlayerMessage": "5ae327c886f7745c7b3f2f3f declinePlayerMessage", - "name": "5ae327c886f7745c7b3f2f3f name", - "note": "5ae327c886f7745c7b3f2f3f note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ae327e086f7742a4135935e.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae327c886f7745c7b3f2f3f startedMessageText", - "successMessageText": "5ae327c886f7745c7b3f2f3f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10400, - "id": "60cc7828f09d61072d6d00bf", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc782a7c496e588343a6db", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "6398afbac8f8cc12a47b02a9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a1e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1a1a", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a1b", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a1c", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a1d", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a1e", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6398afc5e11ec11ff550403b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a21", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1a20", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a21", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19c1ed6d4651e53602aeb", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1a22", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1a22", - "_tpl": "5aafbde786f774389d0cbc0f" - } - ], - "loyaltyLevel": 2, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0bdb5286f774166e38eed4": { - "QuestName": "Flint", - "_id": "5c0bdb5286f774166e38eed4", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0bdb5286f774166e38eed4 acceptPlayerMessage", - "changeQuestMessageText": "5c0bdb5286f774166e38eed4 changeQuestMessageText", - "completePlayerMessage": "5c0bdb5286f774166e38eed4 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5c0bdbb586f774166e38eed5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "StressResistance", - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1faac986f77410894b63f5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 35, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5c1faac086f7740ebd348c76", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b4795fb86f7745876267770", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c0bdb5286f774166e38eed4 description", - "failMessageText": "5c0bdb5286f774166e38eed4 failMessageText", - "declinePlayerMessage": "5c0bdb5286f774166e38eed4 declinePlayerMessage", - "name": "5c0bdb5286f774166e38eed4 name", - "note": "5c0bdb5286f774166e38eed4 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", - "type": "Skill", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0bdb5286f774166e38eed4 startedMessageText", - "successMessageText": "5c0bdb5286f774166e38eed4 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25100, - "id": "60c8c0dd9bdefb3130121b11", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "60c8c0e22238043a5267864a", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 150000, - "id": "5c17c12786f77430a70d197d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a24", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1a24", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 150000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cb62e7179f8541b8469226", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a28", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1a26", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a27", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a28", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "62a7042e0da185500f06093e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a2e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1a2a", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a2b", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a2c", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a2d", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1a2e", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5c17c1a986f77418e53fc52f", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1a2f", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1a2f", - "_tpl": "5bffdd7e0db834001b734a1a" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "676529af9c90953d090882e7": { - "QuestName": "Gunsmith - Old Friends Request", - "_id": "676529af9c90953d090882e7", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "676529af9c90953d090882e7 acceptPlayerMessage", - "changeQuestMessageText": "676529af9c90953d090882e7 changeQuestMessageText", - "completePlayerMessage": "676529af9c90953d090882e7 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "676529e759261ce07bc47b62", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5df24cf80dee1b22f862e9bc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 18.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 5, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 500.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5aa66be6e5b5b0214e506e97", - "5888961624597754281f93f3" - ], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - }, - { - "conditionType": "WeaponAssembly", - "id": "676529af9c90953d090882ea", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": [ - "59984ab886f7743e98271174" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 57.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 30, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 400.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "58d399e486f77442e0016fe7", - "58d39b0386f77443380bf13c", - "5c1bc7752e221602b1779b34", - "5649ae4a4bdc2d1b2b8b4588", - "544909bb4bdc2d6f028b4577", - "59bfc5c886f7743bf6794e62", - "59ecc3dd86f7746dc827481c", - "560d657b4bdc2da74d8b4572" - ], - "hasItemFromCategory": [] - }, - { - "conditionType": "WeaponAssembly", - "id": "67652a2f4f75e1a9543289ed", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5a7ae0c351dfba0017554310" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 90.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 21, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 0.0, - "compareMethod": ">=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "560d657b4bdc2da74d8b4572", - "5a7b4960e899ef197b331a2d", - "5a6b5e468dc32e001207faf5", - "5a6b592c8dc32e00094b97bf", - "5a718da68dc32e000d46d264" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "676529af9c90953d090882e9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af413ae86f774522e3438a5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac244eb86f7741356335af1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "676529af9c90953d090882e7 description", - "failMessageText": "676529af9c90953d090882e7 failMessageText", - "declinePlayerMessage": "676529af9c90953d090882e7 declinePlayerMessage", - "name": "676529af9c90953d090882e7 name", - "note": "676529af9c90953d090882e7 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "676529af9c90953d090882e7 startedMessageText", - "successMessageText": "676529af9c90953d090882e7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 21930, - "id": "676529af9c90953d090882eb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "676529af9c90953d090882ec", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 155000, - "id": "676529af9c90953d090882ed", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a31", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1a31", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 155000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "676d5b242401767e2bd05b3d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1a32", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b1a32", - "_tpl": "67600929bd0a0549d70993f6" - } - ], - "loyaltyLevel": 2, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60e71d6d7fcf9c556f325055": { - "QuestName": "The Courier", - "_id": "60e71d6d7fcf9c556f325055", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71d6d7fcf9c556f325055 acceptPlayerMessage", - "changeQuestMessageText": "60e71d6d7fcf9c556f325055 changeQuestMessageText", - "completePlayerMessage": "60e71d6d7fcf9c556f325055 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "60e84ba726b88043510e0ad8", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "mech_41_1", - "target": [ - "5a1eaa87fcdbcb001865f75e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "60e85b2a26b88043510e0ada", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "mech_41_2", - "target": [ - "5a1eaa87fcdbcb001865f75e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6101491e6c85b961071d75fd", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "60e71d23c1bfa3050473b8e6", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "6101492343d55d251d68e4fc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 52, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71d6d7fcf9c556f325055 description", - "failMessageText": "60e71d6d7fcf9c556f325055 failMessageText", - "declinePlayerMessage": "60e71d6d7fcf9c556f325055 declinePlayerMessage", - "name": "60e71d6d7fcf9c556f325055 name", - "note": "60e71d6d7fcf9c556f325055 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", - "type": "Multi", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71d6d7fcf9c556f325055 startedMessageText", - "successMessageText": "60e71d6d7fcf9c556f325055 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 115000, - "id": "60f03773c2a5085cc109674a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "61029298e5b13723fc7609b6", - "type": "Skill", - "index": 0, - "target": "Crafting", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "61029397e5b13723fc7609b7", - "type": "Skill", - "index": 0, - "target": "Intellect", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "610293a660307362d01d8c77", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a33", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1a33", - "_tpl": "5fc22d7c187fea44d52eda44", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1a34", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "68010065f81036801d0b1a33", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1a35", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "68010065f81036801d0b1a33", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1a36", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b1a33", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b1a37", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "68010065f81036801d0b1a36", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b1a38", - "_tpl": "5fc278107283c4046c581489", - "parentId": "68010065f81036801d0b1a33", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1a39", - "_tpl": "5fc23678ab884124df0cd590", - "parentId": "68010065f81036801d0b1a38", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1a3a", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "68010065f81036801d0b1a39", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1a3b", - "_tpl": "5fc2360f900b1d5091531e19", - "parentId": "68010065f81036801d0b1a39", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1a3c", - "_tpl": "5fc235db2770a0045c59c683", - "parentId": "68010065f81036801d0b1a38", - "slotId": "mod_handguard" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "673f2cd5d3346c2167020484": { "QuestName": "Shipping Delay - Part 2", "_id": "673f2cd5d3346c2167020484", @@ -14423,12 +12971,12 @@ "id": "67580d4eba52fa5c7e14e7d4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a3e", + "target": "6812400b0c5cf2cf75074d89", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1a3e", + "_id": "6812400b0c5cf2cf75074d89", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 84000 @@ -14451,12 +12999,12 @@ "id": "67580d6c10196ddb04ffbfad", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a40", + "target": "6812400b0c5cf2cf75074d8b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a40", + "_id": "6812400b0c5cf2cf75074d8b", "_tpl": "66d98233302686954b0c6f81", "upd": { "StackObjectsCount": 1, @@ -14471,12 +13019,12 @@ "id": "67580d7340ba148fb6f7c146", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a42", + "target": "6812400b0c5cf2cf75074d8d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a42", + "_id": "6812400b0c5cf2cf75074d8d", "_tpl": "5c12620d86f7743f8b198b72", "upd": { "StackObjectsCount": 1, @@ -14578,12 +13126,12 @@ "id": "5ae9c43086f7747d4c148abe", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a44", + "target": "6812400b0c5cf2cf75074d8f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1a44", + "_id": "6812400b0c5cf2cf75074d8f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 32000 @@ -14597,12 +13145,12 @@ "id": "5ae9c44e86f7746cd451db9d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a49", + "target": "6812400b0c5cf2cf75074d94", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a49", + "_id": "6812400b0c5cf2cf75074d94", "_tpl": "5aa7e276e5b5b000171d0647", "upd": { "StackObjectsCount": 1, @@ -14610,30 +13158,30 @@ } }, { - "_id": "68010065f81036801d0b1a4a", + "_id": "6812400b0c5cf2cf75074d95", "_tpl": "657bc06daab96fccee08be9b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a49", + "parentId": "6812400b0c5cf2cf75074d94", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b1a4b", + "_id": "6812400b0c5cf2cf75074d96", "_tpl": "657bc0d8a1c61ee0c303632f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a49", + "parentId": "6812400b0c5cf2cf75074d94", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b1a4c", + "_id": "6812400b0c5cf2cf75074d97", "_tpl": "657bc107aab96fccee08be9f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a49", + "parentId": "6812400b0c5cf2cf75074d94", "slotId": "Helmet_ears" } ] @@ -14803,12 +13351,12 @@ "id": "5a280a2c86f77458182b5bd0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a4e", + "target": "6812400b0c5cf2cf75074d99", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1a4e", + "_id": "6812400b0c5cf2cf75074d99", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 800 @@ -14822,12 +13370,12 @@ "id": "60cc6c907c496e588343a6c0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a4f", + "target": "6812400b0c5cf2cf75074d9a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a4f", + "_id": "6812400b0c5cf2cf75074d9a", "_tpl": "5fc3f2d5900b1d5091531e57", "upd": { "StackObjectsCount": 1, @@ -14840,57 +13388,57 @@ } }, { - "_id": "68010065f81036801d0b1a50", + "_id": "6812400b0c5cf2cf75074d9b", "_tpl": "5a718b548dc32e000d46d262", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1a51", + "_id": "6812400b0c5cf2cf75074d9c", "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b1a52", + "_id": "6812400b0c5cf2cf75074d9d", "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1a53", + "_id": "6812400b0c5cf2cf75074d9e", "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1a54", + "_id": "6812400b0c5cf2cf75074d9f", "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1a55", + "_id": "6812400b0c5cf2cf75074da0", "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "68010065f81036801d0b1a54", + "parentId": "6812400b0c5cf2cf75074d9f", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1a56", + "_id": "6812400b0c5cf2cf75074da1", "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b1a57", + "_id": "6812400b0c5cf2cf75074da2", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b1a58", + "_id": "6812400b0c5cf2cf75074da3", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b1a4f", + "parentId": "6812400b0c5cf2cf75074d9a", "slotId": "mod_mount_002" } ] @@ -14901,12 +13449,12 @@ "id": "60cc6cb17c496e588343a6c3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a5d", + "target": "6812400b0c5cf2cf75074da8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a5a", + "_id": "6812400b0c5cf2cf75074da5", "_tpl": "5a7ad2e851dfba0016153692", "upd": { "StackObjectsCount": 1, @@ -14914,7 +13462,7 @@ } }, { - "_id": "68010065f81036801d0b1a5b", + "_id": "6812400b0c5cf2cf75074da6", "_tpl": "5a7ad2e851dfba0016153692", "upd": { "StackObjectsCount": 1, @@ -14922,7 +13470,7 @@ } }, { - "_id": "68010065f81036801d0b1a5c", + "_id": "6812400b0c5cf2cf75074da7", "_tpl": "5a7ad2e851dfba0016153692", "upd": { "StackObjectsCount": 1, @@ -14930,7 +13478,7 @@ } }, { - "_id": "68010065f81036801d0b1a5d", + "_id": "6812400b0c5cf2cf75074da8", "_tpl": "5a7ad2e851dfba0016153692", "upd": { "StackObjectsCount": 1, @@ -14945,12 +13493,12 @@ "id": "5a280a8686f7741b16366329", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a63", + "target": "6812400b0c5cf2cf75074dae", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a5f", + "_id": "6812400b0c5cf2cf75074daa", "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, @@ -14958,7 +13506,7 @@ } }, { - "_id": "68010065f81036801d0b1a60", + "_id": "6812400b0c5cf2cf75074dab", "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, @@ -14966,7 +13514,7 @@ } }, { - "_id": "68010065f81036801d0b1a61", + "_id": "6812400b0c5cf2cf75074dac", "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, @@ -14974,7 +13522,7 @@ } }, { - "_id": "68010065f81036801d0b1a62", + "_id": "6812400b0c5cf2cf75074dad", "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, @@ -14982,7 +13530,7 @@ } }, { - "_id": "68010065f81036801d0b1a63", + "_id": "6812400b0c5cf2cf75074dae", "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, @@ -14997,12 +13545,12 @@ "id": "60cc6c6a6a2a1958fc5231e6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a66", + "target": "6812400b0c5cf2cf75074db1", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a65", + "_id": "6812400b0c5cf2cf75074db0", "_tpl": "590c2e1186f77425357b6124", "upd": { "StackObjectsCount": 1, @@ -15010,7 +13558,7 @@ } }, { - "_id": "68010065f81036801d0b1a66", + "_id": "6812400b0c5cf2cf75074db1", "_tpl": "590c2e1186f77425357b6124", "upd": { "StackObjectsCount": 1, @@ -15030,62 +13578,96 @@ "arenaLocations": [], "status": 0 }, - "5ae4496986f774459e77beb6": { - "QuestName": "Sew it Good - Part 3", - "_id": "5ae4496986f774459e77beb6", + "5ae327c886f7745c7b3f2f3f": { + "QuestName": "Gunsmith - Part 10", + "_id": "5ae327c886f7745c7b3f2f3f", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4496986f774459e77beb6 acceptPlayerMessage", - "changeQuestMessageText": "5ae4496986f774459e77beb6 changeQuestMessageText", - "completePlayerMessage": "5ae4496986f774459e77beb6 completePlayerMessage", + "acceptPlayerMessage": "5ae327c886f7745c7b3f2f3f acceptPlayerMessage", + "changeQuestMessageText": "5ae327c886f7745c7b3f2f3f changeQuestMessageText", + "completePlayerMessage": "5ae327c886f7745c7b3f2f3f completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9bc6e86f7746e0026222c", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, + "conditionType": "WeaponAssembly", + "id": "5ae445f386f7744e87761331", + "index": 0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "5c0e53c886f7747fa54205c7", - "5c0e51be86f774598e797894" + "5ac66d9b5acfc4001633997a" ], "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9bea886f77468ab400e64", - "index": 3, - "maxDurability": 100.0, - "minDurability": 50.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c0e53c886f7747fa54205c7", - "5c0e51be86f774598e797894" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 800.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 38.0, + "compareMethod": ">=" + }, + "height": { + "value": 2, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 60, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 500.0, + "compareMethod": "<=" + }, + "weight": { + "value": 4.8, + "compareMethod": "<=" + }, + "width": { + "value": 4, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "5af4166d86f7745b5e2aca96", + "conditionType": "Level", + "id": "5af413e486f774522e3438df", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ae4495c86f7744e87761355", + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af413ce86f774522e3438ae", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639872fa9b4fb827b200d8e5", "status": [ 4 ], @@ -15097,212 +13679,136 @@ ], "Fail": [] }, - "description": "5ae4496986f774459e77beb6 description", - "failMessageText": "5ae4496986f774459e77beb6 failMessageText", - "declinePlayerMessage": "5ae4496986f774459e77beb6 declinePlayerMessage", - "name": "5ae4496986f774459e77beb6 name", - "note": "5ae4496986f774459e77beb6 note", - "traderId": "5ac3b934156ae10c4430e83c", + "description": "5ae327c886f7745c7b3f2f3f description", + "failMessageText": "5ae327c886f7745c7b3f2f3f failMessageText", + "declinePlayerMessage": "5ae327c886f7745c7b3f2f3f declinePlayerMessage", + "name": "5ae327c886f7745c7b3f2f3f name", + "note": "5ae327c886f7745c7b3f2f3f note", + "traderId": "5a7c2eca46aef81a7ca2145d", "location": "any", - "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", - "type": "PickUp", + "image": "/files/quest/icon/5ae327e086f7742a4135935e.jpg", + "type": "WeaponAssembly", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5ae4496986f774459e77beb6 startedMessageText", - "successMessageText": "5ae4496986f774459e77beb6 successMessageText", + "startedMessageText": "5ae327c886f7745c7b3f2f3f startedMessageText", + "successMessageText": "5ae327c886f7745c7b3f2f3f successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 18200, - "id": "60cc8475f09d61072d6d0122", + "value": 10400, + "id": "60cc7828f09d61072d6d00bf", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "60cc847b65e4664318606b56", + "value": 0.02, + "id": "60cc782a7c496e588343a6db", "type": "TraderStanding", "index": 0, - "target": "5ac3b934156ae10c4430e83c", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 65000, - "id": "5ae9bede86f77415a869b41b", + "value": 5, + "id": "6398afbac8f8cc12a47b02a9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a68", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1a68", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 65000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc8489af2e5506c37822dd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1a77", + "target": "6812400b0c5cf2cf75074db7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a77", - "_tpl": "5ca21c6986f77479963115a7", + "_id": "6812400b0c5cf2cf75074db3", + "_tpl": "5c06779c86f77426e00dd782", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1a78", - "_tpl": "6575d9a79e27f4a85e08112d", + "_id": "6812400b0c5cf2cf75074db4", + "_tpl": "5c06779c86f77426e00dd782", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Soft_armor_front" + } }, { - "_id": "68010065f81036801d0b1a79", - "_tpl": "6575d9b8945bf78edd04c427", + "_id": "6812400b0c5cf2cf75074db5", + "_tpl": "5c06779c86f77426e00dd782", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Soft_armor_back" + } }, { - "_id": "68010065f81036801d0b1a7a", - "_tpl": "6575d9c40546f8b1de093dee", + "_id": "6812400b0c5cf2cf75074db6", + "_tpl": "5c06779c86f77426e00dd782", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Soft_armor_left" + } }, { - "_id": "68010065f81036801d0b1a7b", - "_tpl": "6575d9cf0546f8b1de093df2", + "_id": "6812400b0c5cf2cf75074db7", + "_tpl": "5c06779c86f77426e00dd782", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b1a7c", - "_tpl": "6575d9d8945bf78edd04c42b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b1a7d", - "_tpl": "6575da07945bf78edd04c433", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Shoulder_l" - }, - { - "_id": "68010065f81036801d0b1a7e", - "_tpl": "6575da159e27f4a85e081131", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Shoulder_r" - }, - { - "_id": "68010065f81036801d0b1a7f", - "_tpl": "6575d9e7945bf78edd04c42f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b1a80", - "_tpl": "6575d9f816c2762fba00588d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Groin_back" - }, - { - "_id": "68010065f81036801d0b1a81", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b1a82", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b1a83", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Left_side_plate" - }, - { - "_id": "68010065f81036801d0b1a84", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1a77", - "slotId": "Right_side_plate" + } } ] }, { "availableInGameEditions": [], - "id": "655b9629065b076eb02c4b51", + "value": 2, + "id": "6398afc5e11ec11ff550403b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074dba", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074db9", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074dba", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19c1ed6d4651e53602aeb", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1a85", + "target": "6812400b0c5cf2cf75074dbb", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1a85", - "_tpl": "5df8a4d786f77412672a1e3b" + "_id": "6812400b0c5cf2cf75074dbb", + "_tpl": "5aafbde786f774389d0cbc0f" } ], - "loyaltyLevel": 4, - "traderId": "54cb50c76803fa8b248b4571" + "loyaltyLevel": 2, + "traderId": "5a7c2eca46aef81a7ca2145d" } ], "Fail": [] @@ -15432,12 +13938,12 @@ "id": "675818db7fe6eb8dd0321358", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a87", + "target": "6812400b0c5cf2cf75074dbd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1a87", + "_id": "6812400b0c5cf2cf75074dbd", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 4000 @@ -15460,12 +13966,12 @@ "id": "675818f45593a8b09cfd2893", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a89", + "target": "6812400b0c5cf2cf75074dbf", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a89", + "_id": "6812400b0c5cf2cf75074dbf", "_tpl": "5c052f6886f7746b1e3db148", "upd": { "StackObjectsCount": 1, @@ -15480,12 +13986,12 @@ "id": "67581903bcf64326ad8d9708", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a8b", + "target": "6812400b0c5cf2cf75074dc1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a8b", + "_id": "6812400b0c5cf2cf75074dc1", "_tpl": "5c052fb986f7746b2101e909", "upd": { "StackObjectsCount": 1, @@ -15500,12 +14006,12 @@ "id": "6758190af0abbd941535ebf8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a8d", + "target": "6812400b0c5cf2cf75074dc3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a8d", + "_id": "6812400b0c5cf2cf75074dc3", "_tpl": "5c05308086f7746b2101e90b", "upd": { "StackObjectsCount": 1, @@ -15680,12 +14186,12 @@ "id": "5ae9b6ef86f77450fb040b24", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a8f", + "target": "6812400b0c5cf2cf75074dc5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1a8f", + "_id": "6812400b0c5cf2cf75074dc5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 25000 @@ -15699,12 +14205,12 @@ "id": "5ec1a0f7e16f6c41ee73526c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a95", + "target": "6812400b0c5cf2cf75074dcb", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a95", + "_id": "6812400b0c5cf2cf75074dcb", "_tpl": "5e4abb5086f77406975c9342", "upd": { "StackObjectsCount": 1, @@ -15712,39 +14218,39 @@ } }, { - "_id": "68010065f81036801d0b1a96", + "_id": "6812400b0c5cf2cf75074dcc", "_tpl": "6575e71760703324250610c3", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a95", + "parentId": "6812400b0c5cf2cf75074dcb", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b1a97", + "_id": "6812400b0c5cf2cf75074dcd", "_tpl": "6575e72660703324250610c7", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a95", + "parentId": "6812400b0c5cf2cf75074dcb", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b1a98", + "_id": "6812400b0c5cf2cf75074dce", "_tpl": "656fa76500d62bcd2e024080", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a95", + "parentId": "6812400b0c5cf2cf75074dcb", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b1a99", + "_id": "6812400b0c5cf2cf75074dcf", "_tpl": "656fa76500d62bcd2e024080", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1a95", + "parentId": "6812400b0c5cf2cf75074dcb", "slotId": "Back_plate" } ] @@ -15755,12 +14261,12 @@ "id": "5ae9b70686f7742291104038", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1a9b", + "target": "6812400b0c5cf2cf75074dd1", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1a9b", + "_id": "6812400b0c5cf2cf75074dd1", "_tpl": "5f60cd6cf2bcbb675b00dac6", "upd": { "StackObjectsCount": 1, @@ -15774,11 +14280,11 @@ "id": "655b87e11f2b6843ec751fdc", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1aa6", + "target": "6812400b0c5cf2cf75074ddc", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1aa6", + "_id": "6812400b0c5cf2cf75074ddc", "_tpl": "5c0e57ba86f7747fa141986d", "upd": { "StackObjectsCount": 1, @@ -15786,84 +14292,84 @@ } }, { - "_id": "68010065f81036801d0b1aa7", + "_id": "6812400b0c5cf2cf75074ddd", "_tpl": "65707fc348c7a887f2010432", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b1aa8", + "_id": "6812400b0c5cf2cf75074dde", "_tpl": "6570800612755ae0d907acf8", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b1aa9", + "_id": "6812400b0c5cf2cf75074ddf", "_tpl": "65708070f65e2491bf00972c", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b1aaa", + "_id": "6812400b0c5cf2cf75074de0", "_tpl": "657080a212755ae0d907ad04", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b1aab", + "_id": "6812400b0c5cf2cf75074de1", "_tpl": "657080ca12755ae0d907ad5e", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b1aac", + "_id": "6812400b0c5cf2cf75074de2", "_tpl": "65708122f65e2491bf009755", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Groin" }, { - "_id": "68010065f81036801d0b1aad", + "_id": "6812400b0c5cf2cf75074de3", "_tpl": "65708165696fe382cf073255", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Groin_back" }, { - "_id": "68010065f81036801d0b1aae", + "_id": "6812400b0c5cf2cf75074de4", "_tpl": "656f603f94b480b8a500c0d6", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b1aaf", + "_id": "6812400b0c5cf2cf75074de5", "_tpl": "657b22485f444d6dff0c6c2f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1aa6", + "parentId": "6812400b0c5cf2cf75074ddc", "slotId": "Back_plate" } ], @@ -15881,96 +14387,152 @@ "arenaLocations": [], "status": 0 }, - "5ac244c486f77413e12cf945": { - "QuestName": "Gunsmith - Part 13", - "_id": "5ac244c486f77413e12cf945", + "5a27bb8386f7741c770d2d0a": { + "QuestName": "Wet Job - Part 1", + "_id": "5a27bb8386f7741c770d2d0a", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac244c486f77413e12cf945 acceptPlayerMessage", - "changeQuestMessageText": "5ac244c486f77413e12cf945 changeQuestMessageText", - "completePlayerMessage": "5ac244c486f77413e12cf945 completePlayerMessage", + "acceptPlayerMessage": "5a27bb8386f7741c770d2d0a acceptPlayerMessage", + "changeQuestMessageText": "5a27bb8386f7741c770d2d0a changeQuestMessageText", + "completePlayerMessage": "5a27bb8386f7741c770d2d0a completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "5acce11786f77411ed6fa6eb", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a281d8e86f77444dc7a2844", + "conditions": [ + { + "id": "5a281d9686f7743fe44eac8b", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5c07c60e0db834002330051f", + "5447a9cd4bdc2dbd208b4567", + "5d43021ca4b9362eab4b5e25" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [ + [ + "55d614004bdc2d86028b4568" + ], + [ + "59bffbb386f77435b379b9c2" + ], + [ + "55d6190f4bdc2d87028b4567" + ], + [ + "5c7955c22e221644f31bfd5e" + ], + [ + "57da93632459771cb65bf83f" + ], + [ + "57dbb57e2459774673234890" + ], + [ + "5a9fbb84a2750c00137fa685" + ], + [ + "5a34fe59c4a282000b1521a2" + ], + [ + "5cff9e5ed7ad1a09407397d4" + ], + [ + "5ea172e498dacb342978818e" + ], + [ + "5ea17bbc09aa976f2e7a51cd" + ], + [ + "5d44064fa4b9361e4f6eb8b5" + ], + [ + "60926df0132d4d12c81fd9df" + ], + [ + "626673016f1edc06f30cf6d5" + ], + [ + "638612b607dfed1ccb7206ba" + ], + [ + "63877c99e785640d436458ea" + ], + [ + "673f0b36536d64240f01acd6" + ], + [ + "673f0a9370a3ddcf0d0ee0b8" + ], + [ + "673f0a38259f5945d70e43a6" + ] + ], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5a281d9f86f774418b7eff14", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c9de99286f7741ced54c902", "index": 0, "parentId": "", + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5a367e5dc4a282000e49738f" - ], + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 10, "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 1500.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 26.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 300.0, - "compareMethod": "<=" - }, - "weight": { - "value": 6.7, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "5acf383d86f7741bb8378000", + "id": "5a3a72c786f7745a7e19f661", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 25, + "value": 14, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5acf383686f7741bb8377fff", + "id": "5a281d5086f7743fe44eac83", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5b47799d86f7746c5d6a5fd8", + "target": "5a27bafb86f7741c73584017", "status": [ 4 ], @@ -15982,131 +14544,113 @@ ], "Fail": [] }, - "description": "5ac244c486f77413e12cf945 description", - "failMessageText": "5ac244c486f77413e12cf945 failMessageText", - "declinePlayerMessage": "5ac244c486f77413e12cf945 declinePlayerMessage", - "name": "5ac244c486f77413e12cf945 name", - "note": "5ac244c486f77413e12cf945 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4e08086f774623122ae44.jpg", - "type": "WeaponAssembly", + "description": "5a27bb8386f7741c770d2d0a description", + "failMessageText": "5a27bb8386f7741c770d2d0a failMessageText", + "declinePlayerMessage": "5a27bb8386f7741c770d2d0a declinePlayerMessage", + "name": "5a27bb8386f7741c770d2d0a name", + "note": "5a27bb8386f7741c770d2d0a note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5ac244c486f77413e12cf945 startedMessageText", - "successMessageText": "5ac244c486f77413e12cf945 successMessageText", + "startedMessageText": "5a27bb8386f7741c770d2d0a startedMessageText", + "successMessageText": "5a27bb8386f7741c770d2d0a successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 13600, - "id": "60cc7742e3d0247e625dab6d", + "value": 11400, + "id": "60cc6f40af2e5506c37822a7", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60cc775d3e4e974efa345d23", + "value": 0.04, + "id": "60cc6f4465e4664318606ade", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5935c25fb3acc3127c3d8cd9", "unknown": false }, { "availableInGameEditions": [], - "value": 500, - "id": "5acb82ca86f77456255bb07f", + "value": 1100, + "id": "60cc6f4d3e4e974efa345d0f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ab1", + "target": "6812400b0c5cf2cf75074de7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ab1", + "_id": "6812400b0c5cf2cf75074de7", "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 500 + "StackObjectsCount": 1100 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "60cc77487c496e588343a6da", - "type": "Item", + "id": "655b75adc023e22044165de9", + "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1ab4", + "target": "6812400b0c5cf2cf75074dea", "unknown": false, - "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ab3", - "_tpl": "59e35cbb86f7741778269d83", + "_id": "6812400b0c5cf2cf75074de9", + "_tpl": "619636be6db0f2477964e710", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 60 } }, { - "_id": "68010065f81036801d0b1ab4", - "_tpl": "59e35cbb86f7741778269d83", + "_id": "6812400b0c5cf2cf75074dea", + "_tpl": "619636be6db0f2477964e710", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 60 } } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6399b319e11ec11ff550403c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ab7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ab6", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ab7", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19c9d5032c67f050dd95e", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1ab8", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1ab8", - "_tpl": "5dfa3d2b0dee1b22f862eade" - } ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" + "loyaltyLevel": 2, + "traderId": 10 + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc6f5f8f570e28f148114b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ded", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074dec", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ded", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] } ], "Fail": [] @@ -16119,95 +14663,61 @@ "arenaLocations": [], "status": 0 }, - "5b478b1886f7744d1b23c57d": { - "QuestName": "Hot Delivery", - "_id": "5b478b1886f7744d1b23c57d", + "675c3582f6ddc329a90f9c6d": { + "QuestName": "Private Club", + "_id": "675c3582f6ddc329a90f9c6d", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b478b1886f7744d1b23c57d acceptPlayerMessage", - "changeQuestMessageText": "5b478b1886f7744d1b23c57d changeQuestMessageText", - "completePlayerMessage": "5b478b1886f7744d1b23c57d completePlayerMessage", + "acceptPlayerMessage": "675c3582f6ddc329a90f9c6d acceptPlayerMessage", + "changeQuestMessageText": "675c3582f6ddc329a90f9c6d changeQuestMessageText", + "completePlayerMessage": "675c3582f6ddc329a90f9c6d completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "LeaveItemAtLocation", + "conditionType": "FindItem", "dogtagLevel": 0, - "id": "5b478c4c86f7744d1a393fac", - "index": 0, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_020_1", - "target": [ - "5645bcc04bdc2d363b8b4572" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5b478c7386f7744d1a393fb1", + "id": "675c37d2da4b531ba8daaadd", "index": 1, - "maxDurability": 0.0, + "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, "onlyFoundInRaid": false, "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_020_1", "target": [ - "5a7c4850e899ef00150be885" + "675f7f224076a741a3061568" ], + "countInRaid": false, "globalQuestCounterId": "", - "value": 2, + "value": 1, "visibilityConditions": [] }, { - "conditionType": "LeaveItemAtLocation", + "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "5b478cb586f7744d1a393fb5", - "index": 2, - "maxDurability": 0.0, + "id": "675c37e07ac1a33fff170966", + "index": 1, + "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, "onlyFoundInRaid": false, "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_merch_020_2", "target": [ - "5ab8e79e86f7742d8b372e78" + "675f7f224076a741a3061568" ], "globalQuestCounterId": "", - "value": 2, + "value": 1, "visibilityConditions": [] } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0c9086f77453572f5538", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 29, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5b4f0a8086f7744e3a6b3290", + "id": "6762f76729c543414654b313", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ae449b386f77446d8741719", + "target": "5b4795fb86f7745876267770", "status": [ 4 ], @@ -16219,56 +14729,461 @@ ], "Fail": [] }, - "description": "5b478b1886f7744d1b23c57d description", - "failMessageText": "5b478b1886f7744d1b23c57d failMessageText", - "declinePlayerMessage": "5b478b1886f7744d1b23c57d declinePlayerMessage", - "name": "5b478b1886f7744d1b23c57d name", - "note": "5b478b1886f7744d1b23c57d note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Completion", + "description": "675c3582f6ddc329a90f9c6d description", + "failMessageText": "675c3582f6ddc329a90f9c6d failMessageText", + "declinePlayerMessage": "675c3582f6ddc329a90f9c6d declinePlayerMessage", + "name": "675c3582f6ddc329a90f9c6d name", + "note": "675c3582f6ddc329a90f9c6d note", + "traderId": "58330581ace78e27b8b10cee", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5b478b1886f7744d1b23c57d startedMessageText", - "successMessageText": "5b478b1886f7744d1b23c57d successMessageText", + "startedMessageText": "675c3582f6ddc329a90f9c6d startedMessageText", + "successMessageText": "675c3582f6ddc329a90f9c6d successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 20300, - "id": "60cc995c1bdece56c249cbdc", + "value": 23000, + "id": "6762f76fdbee4731a12455fe", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.04, - "id": "60cc99605f9e6175514de2c8", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 55000, - "id": "5b48a6b586f7744b1229f6e9", + "value": 104000, + "id": "6762f77d0fd827a96d2be08c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1aba", + "target": "6812400b0c5cf2cf75074def", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1aba", + "_id": "6812400b0c5cf2cf75074def", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 55000 + "StackObjectsCount": 104000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6762f785b342c60b3e7b67f4", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6762f7947fda8f287ed4ac08", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074df3", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074df1", + "_tpl": "5f60cd6cf2bcbb675b00dac6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074df2", + "_tpl": "5f60cd6cf2bcbb675b00dac6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074df3", + "_tpl": "5f60cd6cf2bcbb675b00dac6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "6765ef67924bd72c4927a919", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074df4", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074df4", + "_tpl": "674fe9a75e51f1c47c04ec23", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074df5", + "_tpl": "674fe57721a9aa6be6045b96", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074df6", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "6812400b0c5cf2cf75074df5", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400b0c5cf2cf75074df7", + "_tpl": "674fe89a4472d471fb0f07d8", + "parentId": "6812400b0c5cf2cf75074df5", + "slotId": "mod_mount" + }, + { + "_id": "6812400b0c5cf2cf75074df8", + "_tpl": "674fe8dd362ea1f88b0e2792", + "parentId": "6812400b0c5cf2cf75074df7", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75074df9", + "_tpl": "674fe8b9362ea1f88b0e278d", + "parentId": "6812400b0c5cf2cf75074df7", + "slotId": "mod_mount" + }, + { + "_id": "6812400b0c5cf2cf75074dfa", + "_tpl": "616584766ef05c2ce828ef57", + "parentId": "6812400b0c5cf2cf75074df9", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074dfb", + "_tpl": "5c7d55de2e221644f31bff68", + "parentId": "6812400b0c5cf2cf75074dfa", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074dfc", + "_tpl": "674fe8cf4472d471fb0f07df", + "parentId": "6812400b0c5cf2cf75074df9", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074dfd", + "_tpl": "59fb137a86f7740adb646af1", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074dfe", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074dff", + "_tpl": "676017fe8cfeeba9f707c8d6", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074e00", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e01", + "_tpl": "5947c73886f7747701588af5", + "parentId": "6812400b0c5cf2cf75074e00", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e02", + "_tpl": "674fe8f6f34d761ab8020cc8", + "parentId": "6812400b0c5cf2cf75074df4", + "slotId": "mod_magazine" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac346cf86f7741d63233a02": { + "QuestName": "Signal - Part 3", + "_id": "5ac346cf86f7741d63233a02", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac346cf86f7741d63233a02 acceptPlayerMessage", + "changeQuestMessageText": "5ac346cf86f7741d63233a02 changeQuestMessageText", + "completePlayerMessage": "5ac346cf86f7741d63233a02 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5ac7a7bf86f774132252a524", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "place_SIGNAL_03_1", + "target": [ + "5ac78a9b86f7741cca0bbd8d" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5ac7a83b86f774665012340b", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "place_SIGNAL_03_2", + "target": [ + "5ac78a9b86f7741cca0bbd8d" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5ac7a8d386f7741321499e3c", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "place_SIGNAL_03_3", + "target": [ + "5ac78a9b86f7741cca0bbd8d" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac7a93286f774664f4cbd8b", + "conditions": [ + { + "id": "5ac7a94086f77466515f8b7b", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ac7a95886f77466515f8b7c", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ac7a93286f774664f4cbd8c", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ac7a95e86f774665012340f", + "target": "5ac7a7bf86f774132252a524", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac7a96386f774664f4cbd8d", + "target": "5ac7a83b86f774665012340b", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac7a96886f7746c57321d67", + "target": "5ac7a8d386f7741321499e3c", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b8886f77418440390b6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b8f86f7741bb83784a1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac346a886f7744e1b083d67", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac346cf86f7741d63233a02 description", + "failMessageText": "5ac346cf86f7741d63233a02 failMessageText", + "declinePlayerMessage": "5ac346cf86f7741d63233a02 declinePlayerMessage", + "name": "5ac346cf86f7741d63233a02 name", + "note": "5ac346cf86f7741d63233a02 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5ac4d8f186f774422237860d.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac346cf86f7741d63233a02 startedMessageText", + "successMessageText": "5ac346cf86f7741d63233a02 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "id": "5ac79c4b86f7746d4764885b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074e03", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e03", + "_tpl": "5ac78a9b86f7741cca0bbd8d" + } + ], + "loyaltyLevel": 1, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5ac7a7c486f77412e95f1045", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e07", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e05", + "_tpl": "5ac78a9b86f7741cca0bbd8d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e06", + "_tpl": "5ac78a9b86f7741cca0bbd8d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e07", + "_tpl": "5ac78a9b86f7741cca0bbd8d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 8500, + "id": "60cc7e5a6a2a1958fc523210", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7e5e77dc197c774254ce", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "5acb7c8986f7740ee664142a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e09", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e09", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 } } ] @@ -16276,154 +15191,769 @@ { "availableInGameEditions": [], "value": 1, - "id": "5b48a6c486f774036c1b7b39", + "id": "5ad0ad9f86f77401ce32fdd9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ac9", + "target": "6812400b0c5cf2cf75074e0a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ac9", - "_tpl": "5b44cd8b86f774503d30cba2", + "_id": "6812400b0c5cf2cf75074e0a", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074e0b", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074e0c", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074e0d", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074e0e", + "_tpl": "6259c3387d6aab70bc23a18d", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e0f", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "6812400b0c5cf2cf75074e0e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074e10", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_mount" + }, + { + "_id": "6812400b0c5cf2cf75074e11", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074e12", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "6812400b0c5cf2cf75074e0a", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc7e6f179f8541b8469275", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e19", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e16", + "_tpl": "6570243bbfc87b3a3409321f", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1aca", - "_tpl": "6575c2adefc786cd9101a5d9", + "_id": "6812400b0c5cf2cf75074e17", + "_tpl": "5d6e6806a4b936088465b17e", "upd": { - "SpawnedInSession": true + "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Soft_armor_front" + "parentId": "6812400b0c5cf2cf75074e16", + "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1acb", - "_tpl": "6575c2be52b7f8c76a05ee25", + "_id": "6812400b0c5cf2cf75074e18", + "_tpl": "5d6e6806a4b936088465b17e", "upd": { - "SpawnedInSession": true + "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Soft_armor_back" + "parentId": "6812400b0c5cf2cf75074e16", + "slotId": "cartridges", + "location": 1 }, { - "_id": "68010065f81036801d0b1acc", - "_tpl": "6575c2cd52b7f8c76a05ee29", + "_id": "6812400b0c5cf2cf75074e19", + "_tpl": "6570243bbfc87b3a3409321f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Soft_armor_left" + } }, { - "_id": "68010065f81036801d0b1acd", - "_tpl": "6575c2d852b7f8c76a05ee2d", + "_id": "6812400b0c5cf2cf75074e1a", + "_tpl": "5d6e6806a4b936088465b17e", "upd": { - "SpawnedInSession": true + "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "soft_armor_right" + "parentId": "6812400b0c5cf2cf75074e19", + "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ace", - "_tpl": "6575c2e4efc786cd9101a5dd", + "_id": "6812400b0c5cf2cf75074e1b", + "_tpl": "5d6e6806a4b936088465b17e", "upd": { - "SpawnedInSession": true + "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Collar" + "parentId": "6812400b0c5cf2cf75074e19", + "slotId": "cartridges", + "location": 1 + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "675c03d1f7da9792a405549a": { + "QuestName": "Abandoned Cargo", + "_id": "675c03d1f7da9792a405549a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c03d1f7da9792a405549a acceptPlayerMessage", + "changeQuestMessageText": "675c03d1f7da9792a405549a changeQuestMessageText", + "completePlayerMessage": "675c03d1f7da9792a405549a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "675c0444db2b69f48942f37c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c04497439eaed82b6dfeb", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c044cc482cb252c5a92d4", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c044e3691199fe911a641", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_5", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c3fbeb402d4fa5589516f", + "index": 4, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c3fd3a2c0bad5f70af01c", + "index": 5, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_6", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "675c3fdd5af984e99db7b4e1", + "index": 6, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "TerragroupBOX_7", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6762efbd9dd6afda9061b618", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6179ad56c760af5ad2053587", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c03d1f7da9792a405549a description", + "failMessageText": "675c03d1f7da9792a405549a failMessageText", + "declinePlayerMessage": "675c03d1f7da9792a405549a declinePlayerMessage", + "name": "675c03d1f7da9792a405549a name", + "note": "675c03d1f7da9792a405549a note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/6762fe1e6470bf1c0f048b96.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c03d1f7da9792a405549a startedMessageText", + "successMessageText": "675c03d1f7da9792a405549a successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 7, + "id": "6762f00c986d8047a7120350", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e23", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e1d", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } }, { - "_id": "68010065f81036801d0b1acf", - "_tpl": "6575c2f7efc786cd9101a5e1", + "_id": "6812400b0c5cf2cf75074e1e", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Shoulder_l" + } }, { - "_id": "68010065f81036801d0b1ad0", - "_tpl": "6575c30352b7f8c76a05ee31", + "_id": "6812400b0c5cf2cf75074e1f", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Shoulder_r" + } }, { - "_id": "68010065f81036801d0b1ad1", - "_tpl": "6575c31b52b7f8c76a05ee35", + "_id": "6812400b0c5cf2cf75074e20", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Groin" + } }, { - "_id": "68010065f81036801d0b1ad2", - "_tpl": "6575c326c6700bd6b40e8a80", + "_id": "6812400b0c5cf2cf75074e21", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Groin_back" + } }, { - "_id": "68010065f81036801d0b1ad3", - "_tpl": "656fa8d700d62bcd2e024084", + "_id": "6812400b0c5cf2cf75074e22", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Front_plate" + } }, { - "_id": "68010065f81036801d0b1ad4", - "_tpl": "656fa8d700d62bcd2e024084", + "_id": "6812400b0c5cf2cf75074e23", + "_tpl": "5991b51486f77447b112d44f", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Back_plate" - }, + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 9400, + "id": "6762efcb24c9709dfacffec6", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 45000, + "id": "6762efd6601dd097ea988fca", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e25", + "unknown": false, + "findInRaid": false, + "items": [ { - "_id": "68010065f81036801d0b1ad5", - "_tpl": "6557458f83942d705f0c4962", + "_id": "6812400b0c5cf2cf75074e25", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Left_side_plate" - }, - { - "_id": "68010065f81036801d0b1ad6", - "_tpl": "6557458f83942d705f0c4962", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1ac9", - "slotId": "Right_side_plate" + "StackObjectsCount": 45000 + } } ] }, { "availableInGameEditions": [], - "id": "655b95a9b71eeb7c4168c638", - "type": "AssortmentUnlock", + "value": 0.02, + "id": "6762efe155dc4fb9583358ff", + "type": "TraderStanding", "index": 0, - "target": "68010065f81036801d0b1ad7", + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6762efecb16e11dbe145e7da", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e29", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e27", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e28", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e29", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b478d0f86f7744d190d91b5": { + "QuestName": "Minibus", + "_id": "5b478d0f86f7744d190d91b5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b478d0f86f7744d190d91b5 acceptPlayerMessage", + "changeQuestMessageText": "5b478d0f86f7744d190d91b5 changeQuestMessageText", + "completePlayerMessage": "5b478d0f86f7744d190d91b5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5b478d8986f774563c7a4809", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_21_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5b478daf86f7744d1c35339b", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_21_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5b478dca86f7744d190d91c2", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_merch_21_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5b478de086f7744d1c3533a0", + "conditions": [ + { + "id": "5b478df086f7746807461fd2", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5b478dfc86f7746807461fd3", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + } + ] + }, + "id": "5b478de086f7744d1c3533a1", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5b478e0186f7744d1a393fc9", + "target": "5b478d8986f774563c7a4809", + "conditionType": "CompleteCondition" + }, + { + "id": "5b478e0586f774563c7a4810", + "target": "5b478daf86f7744d1c35339b", + "conditionType": "CompleteCondition" + }, + { + "id": "5b478e0b86f7744d1a393fca", + "target": "5b478dca86f7744d190d91c2", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0c9d86f7744def7f3385", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 24, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f0ac386f7747a2637c4c0", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4493d86f7744b8e15aa8f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b478d0f86f7744d190d91b5 description", + "failMessageText": "5b478d0f86f7744d190d91b5 failMessageText", + "declinePlayerMessage": "5b478d0f86f7744d190d91b5 declinePlayerMessage", + "name": "5b478d0f86f7744d190d91b5 name", + "note": "5b478d0f86f7744d190d91b5 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5b478d1b86f7744d1b23c60b.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b478d0f86f7744d190d91b5 startedMessageText", + "successMessageText": "5b478d0f86f7744d190d91b5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13800, + "id": "60cc98e841fd1e14d71e22fb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc98ec9f89812e5b6aa87d", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "5b48a5c286f774036c1b7b31", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e2b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e2b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5b48a5d286f77476751f0a99", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e2d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e2d", + "_tpl": "5b44c6ae86f7742d1627baea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b88e632b0b1645e6f54ca", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75074e36", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1ad7", - "_tpl": "5c0e774286f77468413cc5b2" + "_id": "6812400b0c5cf2cf75074e36", + "_tpl": "61bcc89aef0f505f0c6cd0fc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e37", + "_tpl": "6572eb0e55beba16bc04079f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074e38", + "_tpl": "6572eb1b04ee6483ef039882", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074e39", + "_tpl": "6572eb3004ee6483ef039886", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75074e3a", + "_tpl": "6572eb3b04ee6483ef03988a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf75074e3b", + "_tpl": "6572eb865b5eac12f10a03ee", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Groin" + }, + { + "_id": "6812400b0c5cf2cf75074e3c", + "_tpl": "656fb21fa0dce000a2020f7c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074e3d", + "_tpl": "656fb21fa0dce000a2020f7c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074e36", + "slotId": "Back_plate" } ], - "loyaltyLevel": 4, + "loyaltyLevel": 2, + "traderId": 2 + }, + { + "availableInGameEditions": [], + "id": "655b88f11f2b6843ec751fdd", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074e3e", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e3e", + "_tpl": "64abd93857958b4249003418" + } + ], + "loyaltyLevel": 2, "traderId": "5ac3b934156ae10c4430e83c" } ], @@ -16437,99 +15967,105 @@ "arenaLocations": [], "status": 0 }, - "639872fc93ae507d5858c3a6": { - "QuestName": "Gunsmith - Part 11", - "_id": "639872fc93ae507d5858c3a6", + "5c0be13186f7746f016734aa": { + "QuestName": "Psycho Sniper", + "_id": "5c0be13186f7746f016734aa", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639872fc93ae507d5858c3a6 acceptPlayerMessage", - "changeQuestMessageText": "639872fc93ae507d5858c3a6 changeQuestMessageText", - "completePlayerMessage": "639872fc93ae507d5858c3a6 completePlayerMessage", + "acceptPlayerMessage": "5c0be13186f7746f016734aa acceptPlayerMessage", + "changeQuestMessageText": "5c0be13186f7746f016734aa changeQuestMessageText", + "completePlayerMessage": "5c0be13186f7746f016734aa completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "63987860c8f8cc12a47b02a6", + "conditionType": "Skill", + "id": "5c0be2b486f7747bcb347d58", "index": 0, "parentId": "", "dynamicLocale": false, - "target": [ - "5fc3f2d5900b1d5091531e57" - ], + "target": "Sniper", "globalQuestCounterId": "", - "value": 1, + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64b67c6358b5637e2d71a656", + "conditions": [ + { + "id": "64b67d16b24b672b97795056", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "627e14b21713922ded6f2c15", + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "61f7c9e189e6fb1a5e3ea78d", + "673cab3e03c6a20581028bc1" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "64b67c6358b5637e2d71a655", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 300.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 50.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 31, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 230.0, - "compareMethod": "<=" - }, - "weight": { - "value": 4.5, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5fbb978207e8a97d1f0902d3", - "5f6340d3ca442212f4047eb2" - ], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "6398b000cd51826f7a069b8a", + "id": "5c1fb5f986f7744a1929a527", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 22, + "value": 35, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "639af2cf81b99001240bbe17", - "index": 1, + "id": "5c1fb5f086f7744a184fb3c5", + "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ae327c886f7745c7b3f2f3f", + "target": "5a27bc8586f7741b543d8ea4", "status": [ 4 ], @@ -16539,38 +16075,70 @@ "visibilityConditions": [] } ], - "Fail": [] + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64b67fcd3e349c7dbd06bd17", + "conditions": [ + { + "id": "64b67fe3a857ea477002a407", + "dynamicLocale": false, + "status": [ + "Killed", + "MissingInAction", + "Left" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "64b67fcd3e349c7dbd06bd16", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] }, - "description": "639872fc93ae507d5858c3a6 description", - "failMessageText": "639872fc93ae507d5858c3a6 failMessageText", - "declinePlayerMessage": "639872fc93ae507d5858c3a6 declinePlayerMessage", - "name": "639872fc93ae507d5858c3a6 name", - "note": "639872fc93ae507d5858c3a6 note", + "description": "5c0be13186f7746f016734aa description", + "failMessageText": "5c0be13186f7746f016734aa failMessageText", + "declinePlayerMessage": "5c0be13186f7746f016734aa declinePlayerMessage", + "name": "5c0be13186f7746f016734aa name", + "note": "5c0be13186f7746f016734aa note", "traderId": "5a7c2eca46aef81a7ca2145d", "location": "any", - "image": "/files/quest/icon/63aae95961d7b024e808cc5c.jpg", - "type": "WeaponAssembly", + "image": "/files/quest/icon/5a27cafa86f77424e20615d6.jpg", + "type": "Completion", "isKey": false, - "restartable": false, + "restartable": true, "instantComplete": false, "secretQuest": false, - "startedMessageText": "639872fc93ae507d5858c3a6 startedMessageText", - "successMessageText": "639872fc93ae507d5858c3a6 successMessageText", + "startedMessageText": "5c0be13186f7746f016734aa startedMessageText", + "successMessageText": "5c0be13186f7746f016734aa successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 11600, - "id": "6398b02593ae507d5858c3ab", + "value": 26700, + "id": "60cc806e7c496e588343a6f6", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "6398b033700117662d337be8", + "value": 0.03, + "id": "60cc80803e4e974efa345d7a", "type": "TraderStanding", "index": 0, "target": "5a7c2eca46aef81a7ca2145d", @@ -16578,42 +16146,172 @@ }, { "availableInGameEditions": [], - "value": 500, - "id": "6398b03b8871e1272b10ccf9", + "value": 150000, + "id": "5c18c25286f77467bf06520f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ad9", + "target": "6812400b0c5cf2cf75074e40", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ad9", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400b0c5cf2cf75074e40", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 500 + "StackObjectsCount": 150000 } } ] }, { "availableInGameEditions": [], - "value": 1, - "id": "6398b0593693c63d86328f28", - "type": "Item", + "id": "60b90b7e81c51328c56d7716", + "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1adb", + "target": "6812400b0c5cf2cf75074e41", "unknown": false, - "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1adb", - "_tpl": "55d6190f4bdc2d87028b4567", + "_id": "6812400b0c5cf2cf75074e41", + "_tpl": "5ac66d725acfc43b321d4b60", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } } + }, + { + "_id": "6812400b0c5cf2cf75074e42", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75074e43", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "6812400b0c5cf2cf75074e42", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074e44", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "6812400b0c5cf2cf75074e43", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400b0c5cf2cf75074e45", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "6812400b0c5cf2cf75074e43", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074e46", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6812400b0c5cf2cf75074e45", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074e47", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6812400b0c5cf2cf75074e46", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074e48", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074e49", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074e4a", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074e4b", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "6812400b0c5cf2cf75074e4a", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf75074e4c", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074e4d", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e4e", + "_tpl": "5c793fde2e221601da358614", + "parentId": "6812400b0c5cf2cf75074e4d", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e4f", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074e50", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "6812400b0c5cf2cf75074e41", + "slotId": "mod_charge" } - ] + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "value": 300, + "id": "64b68107c3abf20a9660daa9", + "type": "Skill", + "index": 0, + "target": "Sniper", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "5f2480cfef1e594955237bfd", + "type": "Skill", + "index": 0, + "target": "Intellect", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "5dc15768f4ea412f68771d24", + "type": "Skill", + "index": 0, + "target": "StressResistance", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "5f2480c7f797691b9775a953", + "type": "Skill", + "index": 0, + "target": "Perception", + "unknown": false } ], "Fail": [] @@ -16626,78 +16324,121 @@ "arenaLocations": [], "status": 0 }, - "6089732b59b92115597ad789": { - "QuestName": "Surplus Goods", - "_id": "6089732b59b92115597ad789", + "5a03153686f77442d90e2171": { + "QuestName": "Spa Tour - Part 1", + "_id": "5a03153686f77442d90e2171", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6089732b59b92115597ad789 acceptPlayerMessage", - "changeQuestMessageText": "6089732b59b92115597ad789 changeQuestMessageText", - "completePlayerMessage": "6089732b59b92115597ad789 completePlayerMessage", + "acceptPlayerMessage": "5a03153686f77442d90e2171 acceptPlayerMessage", + "changeQuestMessageText": "5a03153686f77442d90e2171 changeQuestMessageText", + "completePlayerMessage": "5a03153686f77442d90e2171 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6092942fb0f07c6ea1246e3a", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a03167c86f774430d7b1e82", + "conditions": [ + { + "id": "5a03169186f77451f779ece6", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "60db29ce99594040e04c4a27", + "6259b864ebedf17603599e88", + "64748cb8de82c85eaf0a273a", + "67124dcfa3541f2a1f0e788b", + "66ffa9b66e19cc902401c5e8", + "674fe9a75e51f1c47c04ec23" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5a0316a886f77451f779ece9", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c9a17c686f7747dbe2da3c1", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "60c080eb991ac167ad1c3ad4" - ], - "countInRaid": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6092947635915c62b44fd05b", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "60c080eb991ac167ad1c3ad4" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "609294820ce4cd3a353dfc67", - "target": "6092942fb0f07c6ea1246e3a", - "conditionType": "CompleteCondition" - } - ] + "value": 7, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "60bf73682837926f405dd792", + "id": "61b8c7d776bd4b740967c1d3", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 13, + "value": 12, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "60bf7364c53a5709996b40bf", + "id": "5a0315b586f774430d7b1d5c", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "6089736efa70fc097863b8f6", + "target": "5a27d2af86f7744e1115b323", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63aac673e842787ad20fcffb", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b87686f77460de0252a8", "status": [ 4 ], @@ -16709,81 +16450,196 @@ ], "Fail": [] }, - "description": "6089732b59b92115597ad789 description", - "failMessageText": "6089732b59b92115597ad789 failMessageText", - "declinePlayerMessage": "6089732b59b92115597ad789 declinePlayerMessage", - "name": "6089732b59b92115597ad789 name", - "note": "6089732b59b92115597ad789 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c3752d78280c17952e1e69.jpg", - "type": "Exploration", + "description": "5a03153686f77442d90e2171 description", + "failMessageText": "5a03153686f77442d90e2171 failMessageText", + "declinePlayerMessage": "5a03153686f77442d90e2171 declinePlayerMessage", + "name": "5a03153686f77442d90e2171 name", + "note": "5a03153686f77442d90e2171 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6089732b59b92115597ad789 startedMessageText", - "successMessageText": "6089732b59b92115597ad789 successMessageText", + "startedMessageText": "5a03153686f77442d90e2171 startedMessageText", + "successMessageText": "5a03153686f77442d90e2171 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7500, - "id": "60bf6ffbbf90bf6b431e895d", + "value": 7400, + "id": "60cc6b7c8f570e28f148113f", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60bf70069903f107aa251f34", + "value": 0.03, + "id": "60cc6b7f7c496e588343a6ba", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5935c25fb3acc3127c3d8cd9", "unknown": false }, { "availableInGameEditions": [], - "value": 40000, - "id": "60bf7031d4526a054d42e11b", + "value": 950, + "id": "5a28081186f774567976ed33", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1add", + "target": "6812400b0c5cf2cf75074e52", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1add", - "_tpl": "5449016a4bdc2d6f028b456f", + "_id": "6812400b0c5cf2cf75074e52", + "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 40000 + "StackObjectsCount": 950 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "60bf7014d4526a054d42e11a", + "value": 1, + "id": "5a28087586f774560f1860e6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ae0", + "target": "6812400b0c5cf2cf75074e53", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1adf", - "_tpl": "590a3d9c86f774385926e510", + "_id": "6812400b0c5cf2cf75074e53", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074e54", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "6812400b0c5cf2cf75074e53", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074e55", + "_tpl": "5894a05586f774094708ef75", + "parentId": "6812400b0c5cf2cf75074e53", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074e56", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "6812400b0c5cf2cf75074e53", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074e57", + "_tpl": "58aeaaa886f7744fc1560f81", + "parentId": "6812400b0c5cf2cf75074e56", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074e58", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "6812400b0c5cf2cf75074e57", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074e59", + "_tpl": "5894a42086f77426d2590762", + "parentId": "6812400b0c5cf2cf75074e56", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074e5a", + "_tpl": "5894a73486f77426d259076c", + "parentId": "6812400b0c5cf2cf75074e59", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75074e5b", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6812400b0c5cf2cf75074e59", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400b0c5cf2cf75074e5c", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "6812400b0c5cf2cf75074e59", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400b0c5cf2cf75074e5d", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6812400b0c5cf2cf75074e59", + "slotId": "mod_mount_002" + }, + { + "_id": "6812400b0c5cf2cf75074e5e", + "_tpl": "5894a81786f77427140b8347", + "parentId": "6812400b0c5cf2cf75074e56", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074e5f", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "6812400b0c5cf2cf75074e53", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e60", + "_tpl": "57ade1442459771557167e15", + "parentId": "6812400b0c5cf2cf75074e5f", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074e61", + "_tpl": "58949fac86f77409483e16aa", + "parentId": "6812400b0c5cf2cf75074e53", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cc6ba7179f8541b846924f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e65", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e63", + "_tpl": "5894a05586f774094708ef75", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1ae0", - "_tpl": "590a3d9c86f774385926e510", + "_id": "6812400b0c5cf2cf75074e64", + "_tpl": "5894a05586f774094708ef75", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e65", + "_tpl": "5894a05586f774094708ef75", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -16793,25 +16649,114 @@ }, { "availableInGameEditions": [], - "value": 2, - "id": "60bf701fdb5461623517069b", + "value": 5, + "id": "60cc6bbd3e4e974efa345d06", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ae3", + "target": "6812400b0c5cf2cf75074e70", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ae2", - "_tpl": "590a3cd386f77436f20848cb", + "_id": "6812400b0c5cf2cf75074e68", + "_tpl": "5c1127bdd174af44217ab8b9", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1ae3", - "_tpl": "590a3cd386f77436f20848cb", + "_id": "6812400b0c5cf2cf75074e69", + "_tpl": "5c0d56a986f774449d5de529", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074e68", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074e6a", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e6b", + "_tpl": "5c0d56a986f774449d5de529", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074e6a", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074e6c", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e6d", + "_tpl": "5c0d56a986f774449d5de529", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074e6c", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074e6e", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e6f", + "_tpl": "5c0d56a986f774449d5de529", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074e6e", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074e70", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e71", + "_tpl": "5c0d56a986f774449d5de529", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074e70", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "629f07f7422dff20ff233f12", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e73", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e73", + "_tpl": "5a13f46386f7741dd7384b04", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -16954,12 +16899,12 @@ "id": "5a280eef86f7747e4b7dca8a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ae5", + "target": "6812400b0c5cf2cf75074e75", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ae5", + "_id": "6812400b0c5cf2cf75074e75", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 980 @@ -16973,12 +16918,12 @@ "id": "60cc6d457c496e588343a6c7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ae7", + "target": "6812400b0c5cf2cf75074e77", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ae7", + "_id": "6812400b0c5cf2cf75074e77", "_tpl": "5d80c66d86f774405611c7d6", "upd": { "StackObjectsCount": 1, @@ -16998,6 +16943,310 @@ "arenaLocations": [], "status": 0 }, + "5a27bb1e86f7741f27621b7e": { + "QuestName": "Cargo X - Part 1", + "_id": "5a27bb1e86f7741f27621b7e", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27bb1e86f7741f27621b7e acceptPlayerMessage", + "changeQuestMessageText": "5a27bb1e86f7741f27621b7e changeQuestMessageText", + "completePlayerMessage": "5a27bb1e86f7741f27621b7e completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5a28183186f774398675d127", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a29284f86f77463ef3db363" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a28184c86f774376e43772a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a29284f86f77463ef3db363" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a60aacb86f774590326d609", + "target": "5a28183186f774398675d127", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a729086f7745a7e19f659", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a2817b486f77434aa3d22a2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27bafb86f7741c73584017", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a27bb1e86f7741f27621b7e description", + "failMessageText": "5a27bb1e86f7741f27621b7e failMessageText", + "declinePlayerMessage": "5a27bb1e86f7741f27621b7e declinePlayerMessage", + "name": "5a27bb1e86f7741f27621b7e name", + "note": "5a27bb1e86f7741f27621b7e note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/597a172486f774799e5cd153.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a27bb1e86f7741f27621b7e startedMessageText", + "successMessageText": "5a27bb1e86f7741f27621b7e successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8200, + "id": "60cc6ddf7c496e588343a6c8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc6de277dc197c774254b1", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 700, + "id": "5a2817ec86f77434aa3d22ae", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e79", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e79", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 700 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc6e2d2b555f16df5c419f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e7a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e7a", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "StackObjectsCount": 2, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074e7b", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074e7c", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074e7d", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074e7e", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "6812400b0c5cf2cf75074e7d", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074e7f", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "6812400b0c5cf2cf75074e7d", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75074e80", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074e81", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_trigger" + }, + { + "_id": "6812400b0c5cf2cf75074e82", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_hammer" + }, + { + "_id": "6812400b0c5cf2cf75074e83", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "6812400b0c5cf2cf75074e7a", + "slotId": "mod_catch" + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "60cc6e412b555f16df5c41a0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e8a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e85", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e86", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e87", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e88", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e89", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074e8a", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5a2817f986f77433b7143ce7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074e8c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074e8c", + "_tpl": "567143bf4bdc2d1a0f8b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5c0d0f1886f77457b8210226": { "QuestName": "Lend-Lease - Part 2", "_id": "5c0d0f1886f77457b8210226", @@ -17153,12 +17402,12 @@ "id": "5c192ab286f77401b0085c98", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ae9", + "target": "6812400b0c5cf2cf75074e8e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ae9", + "_id": "6812400b0c5cf2cf75074e8e", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 2000 @@ -17172,12 +17421,12 @@ "id": "5ec19f63e16f6c41ee735268", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1aea", + "target": "6812400b0c5cf2cf75074e8f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1aea", + "_id": "6812400b0c5cf2cf75074e8f", "_tpl": "5bb2475ed4351e00853264e3", "upd": { "StackObjectsCount": 2, @@ -17187,69 +17436,69 @@ } }, { - "_id": "68010065f81036801d0b1aeb", + "_id": "6812400b0c5cf2cf75074e90", "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "68010065f81036801d0b1aea", + "parentId": "6812400b0c5cf2cf75074e8f", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1aec", + "_id": "6812400b0c5cf2cf75074e91", "_tpl": "5c05413a0db834001c390617", - "parentId": "68010065f81036801d0b1aea", + "parentId": "6812400b0c5cf2cf75074e8f", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1aed", + "_id": "6812400b0c5cf2cf75074e92", "_tpl": "5bb20d53d4351e4502010a69", - "parentId": "68010065f81036801d0b1aea", + "parentId": "6812400b0c5cf2cf75074e8f", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1aee", + "_id": "6812400b0c5cf2cf75074e93", "_tpl": "5bb20d9cd4351e00334c9d8a", - "parentId": "68010065f81036801d0b1aed", + "parentId": "6812400b0c5cf2cf75074e92", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1aef", + "_id": "6812400b0c5cf2cf75074e94", "_tpl": "544a38634bdc2d58388b4568", - "parentId": "68010065f81036801d0b1aee", + "parentId": "6812400b0c5cf2cf75074e93", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1af0", + "_id": "6812400b0c5cf2cf75074e95", "_tpl": "5bb20dcad4351e3bac1212da", - "parentId": "68010065f81036801d0b1aee", + "parentId": "6812400b0c5cf2cf75074e93", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1af1", + "_id": "6812400b0c5cf2cf75074e96", "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "68010065f81036801d0b1aed", + "parentId": "6812400b0c5cf2cf75074e92", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1af2", + "_id": "6812400b0c5cf2cf75074e97", "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "68010065f81036801d0b1aed", + "parentId": "6812400b0c5cf2cf75074e92", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1af3", + "_id": "6812400b0c5cf2cf75074e98", "_tpl": "5bb20e58d4351e00320205d7", - "parentId": "68010065f81036801d0b1aea", + "parentId": "6812400b0c5cf2cf75074e8f", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1af4", + "_id": "6812400b0c5cf2cf75074e99", "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "68010065f81036801d0b1af3", + "parentId": "6812400b0c5cf2cf75074e98", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1af5", + "_id": "6812400b0c5cf2cf75074e9a", "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "68010065f81036801d0b1aea", + "parentId": "6812400b0c5cf2cf75074e8f", "slotId": "mod_charge" } ] @@ -17260,12 +17509,12 @@ "id": "5c192afd86f77457ce5995c9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1aff", + "target": "6812400b0c5cf2cf75074ea4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1af9", + "_id": "6812400b0c5cf2cf75074e9e", "_tpl": "6570265f1419851aef03e739", "upd": { "StackObjectsCount": 1, @@ -17273,26 +17522,26 @@ } }, { - "_id": "68010065f81036801d0b1afa", + "_id": "6812400b0c5cf2cf75074e9f", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b1af9", + "parentId": "6812400b0c5cf2cf75074e9e", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1afb", + "_id": "6812400b0c5cf2cf75074ea0", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b1af9", + "parentId": "6812400b0c5cf2cf75074e9e", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b1afc", + "_id": "6812400b0c5cf2cf75074ea1", "_tpl": "6570265f1419851aef03e739", "upd": { "StackObjectsCount": 1, @@ -17300,26 +17549,26 @@ } }, { - "_id": "68010065f81036801d0b1afd", + "_id": "6812400b0c5cf2cf75074ea2", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b1afc", + "parentId": "6812400b0c5cf2cf75074ea1", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1afe", + "_id": "6812400b0c5cf2cf75074ea3", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b1afc", + "parentId": "6812400b0c5cf2cf75074ea1", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b1aff", + "_id": "6812400b0c5cf2cf75074ea4", "_tpl": "6570265f1419851aef03e739", "upd": { "StackObjectsCount": 1, @@ -17327,21 +17576,21 @@ } }, { - "_id": "68010065f81036801d0b1b00", + "_id": "6812400b0c5cf2cf75074ea5", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b1aff", + "parentId": "6812400b0c5cf2cf75074ea4", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b01", + "_id": "6812400b0c5cf2cf75074ea6", "_tpl": "59e690b686f7746c9f75e848", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b1aff", + "parentId": "6812400b0c5cf2cf75074ea4", "slotId": "cartridges", "location": 1 } @@ -17353,12 +17602,12 @@ "id": "5c1b78d086f77423947f90b3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b04", + "target": "6812400b0c5cf2cf75074ea9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b03", + "_id": "6812400b0c5cf2cf75074ea8", "_tpl": "59c1383d86f774290a37e0ca", "upd": { "StackObjectsCount": 1, @@ -17366,7 +17615,7 @@ } }, { - "_id": "68010065f81036801d0b1b04", + "_id": "6812400b0c5cf2cf75074ea9", "_tpl": "59c1383d86f774290a37e0ca", "upd": { "StackObjectsCount": 1, @@ -17381,12 +17630,12 @@ "id": "5c192b7f86f77457ce5995ce", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b07", + "target": "6812400b0c5cf2cf75074eac", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b06", + "_id": "6812400b0c5cf2cf75074eab", "_tpl": "544a37c44bdc2d25388b4567", "upd": { "StackObjectsCount": 1, @@ -17394,7 +17643,7 @@ } }, { - "_id": "68010065f81036801d0b1b07", + "_id": "6812400b0c5cf2cf75074eac", "_tpl": "544a37c44bdc2d25388b4567", "upd": { "StackObjectsCount": 1, @@ -17414,600 +17663,6 @@ "arenaLocations": [], "status": 0 }, - "5a27bb1e86f7741f27621b7e": { - "QuestName": "Cargo X - Part 1", - "_id": "5a27bb1e86f7741f27621b7e", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27bb1e86f7741f27621b7e acceptPlayerMessage", - "changeQuestMessageText": "5a27bb1e86f7741f27621b7e changeQuestMessageText", - "completePlayerMessage": "5a27bb1e86f7741f27621b7e completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5a28183186f774398675d127", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a29284f86f77463ef3db363" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a28184c86f774376e43772a", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a29284f86f77463ef3db363" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a60aacb86f774590326d609", - "target": "5a28183186f774398675d127", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a729086f7745a7e19f659", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a2817b486f77434aa3d22a2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27bafb86f7741c73584017", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27bb1e86f7741f27621b7e description", - "failMessageText": "5a27bb1e86f7741f27621b7e failMessageText", - "declinePlayerMessage": "5a27bb1e86f7741f27621b7e declinePlayerMessage", - "name": "5a27bb1e86f7741f27621b7e name", - "note": "5a27bb1e86f7741f27621b7e note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/597a172486f774799e5cd153.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27bb1e86f7741f27621b7e startedMessageText", - "successMessageText": "5a27bb1e86f7741f27621b7e successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8200, - "id": "60cc6ddf7c496e588343a6c8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc6de277dc197c774254b1", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 700, - "id": "5a2817ec86f77434aa3d22ae", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b09", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1b09", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 700 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc6e2d2b555f16df5c419f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b0a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b0a", - "_tpl": "5f36a0e5fbf956000b716b65", - "upd": { - "StackObjectsCount": 2, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1b0b", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1b0c", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1b0d", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1b0e", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "68010065f81036801d0b1b0d", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1b0f", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "68010065f81036801d0b1b0d", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b1b10", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1b11", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_trigger" - }, - { - "_id": "68010065f81036801d0b1b12", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_hammer" - }, - { - "_id": "68010065f81036801d0b1b13", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "68010065f81036801d0b1b0a", - "slotId": "mod_catch" - } - ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "60cc6e412b555f16df5c41a0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b1a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b15", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b16", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b17", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b18", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b19", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b1a", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a2817f986f77433b7143ce7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b1c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b1c", - "_tpl": "567143bf4bdc2d1a0f8b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a27bc6986f7741c7358402b": { - "QuestName": "Wet Job - Part 5", - "_id": "5a27bc6986f7741c7358402b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27bc6986f7741c7358402b acceptPlayerMessage", - "changeQuestMessageText": "5a27bc6986f7741c7358402b changeQuestMessageText", - "completePlayerMessage": "5a27bc6986f7741c7358402b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5a2e958d86f77416be092111", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a29276886f77435ed1b117c" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a2822de86f7740a245249ce", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a29276886f77435ed1b117c" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a60ae9386f7742b4659eb6d", - "target": "5a2e958d86f77416be092111", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a730586f7745aa21a06e5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 14, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a28226686f7741da250b356", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27bc3686f7741c73584026", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27bc6986f7741c7358402b description", - "failMessageText": "5a27bc6986f7741c7358402b failMessageText", - "declinePlayerMessage": "5a27bc6986f7741c7358402b declinePlayerMessage", - "name": "5a27bc6986f7741c7358402b name", - "note": "5a27bc6986f7741c7358402b note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27bc6986f7741c7358402b startedMessageText", - "successMessageText": "5a27bc6986f7741c7358402b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8400, - "id": "60cc711065e4664318606ae9", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc71136a2a1958fc5231f8", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1700, - "id": "60cc7118a7d63f18200a24d8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b1e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1b1e", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 1700 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc712ba7d63f18200a24d9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b24", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b24", - "_tpl": "5c0e655586f774045612eeb2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b25", - "_tpl": "6570e025615f54368b04fcb0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1b24", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b1b26", - "_tpl": "6570e0610b57c03ec90b96ef", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1b24", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b1b27", - "_tpl": "656fad8c498d1b7e3e071da0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1b24", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b1b28", - "_tpl": "656fad8c498d1b7e3e071da0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1b24", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac66f1c86f77405cd5462db", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1b29", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1b29", - "_tpl": "5a367e5dc4a282000e49738f", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1b2a", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "68010065f81036801d0b1b29", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1b2b", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "68010065f81036801d0b1b29", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1b2c", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "68010065f81036801d0b1b29", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1b2d", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "68010065f81036801d0b1b2c", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1b2e", - "_tpl": "5a329052c4a28200741e22d3", - "parentId": "68010065f81036801d0b1b29", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1b2f", - "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "68010065f81036801d0b1b29", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1b30", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "68010065f81036801d0b1b2f", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1b31", - "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "68010065f81036801d0b1b2f", - "slotId": "mod_gas_block" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "60b8efc547780a0bac0dba1a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1b32", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1b32", - "_tpl": "60098ad7c2240c0fe85c570a" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "59ca29fb86f77445ab465c87": { "QuestName": "The Punisher - Part 5", "_id": "59ca29fb86f77445ab465c87", @@ -18282,12 +17937,12 @@ "id": "59ca2d0b86f7740fe95c3e53", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b34", + "target": "6812400b0c5cf2cf75074eae", "unknown": true, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1b34", + "_id": "6812400b0c5cf2cf75074eae", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 5000 @@ -18301,12 +17956,12 @@ "id": "63bb367985c6f651fa2df1bf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b41", + "target": "6812400b0c5cf2cf75074ebb", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b37", + "_id": "6812400b0c5cf2cf75074eb1", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18314,16 +17969,16 @@ } }, { - "_id": "68010065f81036801d0b1b38", + "_id": "6812400b0c5cf2cf75074eb2", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b37", + "parentId": "6812400b0c5cf2cf75074eb1", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b39", + "_id": "6812400b0c5cf2cf75074eb3", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18331,16 +17986,16 @@ } }, { - "_id": "68010065f81036801d0b1b3a", + "_id": "6812400b0c5cf2cf75074eb4", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b39", + "parentId": "6812400b0c5cf2cf75074eb3", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b3b", + "_id": "6812400b0c5cf2cf75074eb5", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18348,16 +18003,16 @@ } }, { - "_id": "68010065f81036801d0b1b3c", + "_id": "6812400b0c5cf2cf75074eb6", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b3b", + "parentId": "6812400b0c5cf2cf75074eb5", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b3d", + "_id": "6812400b0c5cf2cf75074eb7", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18365,16 +18020,16 @@ } }, { - "_id": "68010065f81036801d0b1b3e", + "_id": "6812400b0c5cf2cf75074eb8", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b3d", + "parentId": "6812400b0c5cf2cf75074eb7", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b3f", + "_id": "6812400b0c5cf2cf75074eb9", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18382,16 +18037,16 @@ } }, { - "_id": "68010065f81036801d0b1b40", + "_id": "6812400b0c5cf2cf75074eba", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b3f", + "parentId": "6812400b0c5cf2cf75074eb9", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b41", + "_id": "6812400b0c5cf2cf75074ebb", "_tpl": "64acea16c4eda9354b0226b0", "upd": { "StackObjectsCount": 1, @@ -18399,12 +18054,12 @@ } }, { - "_id": "68010065f81036801d0b1b42", + "_id": "6812400b0c5cf2cf75074ebc", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b41", + "parentId": "6812400b0c5cf2cf75074ebb", "slotId": "cartridges" } ] @@ -18415,12 +18070,12 @@ "id": "59ca2d1c86f77445ac1da7bb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b44", + "target": "6812400b0c5cf2cf75074ebe", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b44", + "_id": "6812400b0c5cf2cf75074ebe", "_tpl": "567143bf4bdc2d1a0f8b4567", "upd": { "StackObjectsCount": 1, @@ -18435,12 +18090,12 @@ "id": "59ca2d3386f77445ab465c88", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b46", + "target": "6812400b0c5cf2cf75074ec0", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b46", + "_id": "6812400b0c5cf2cf75074ec0", "_tpl": "590c60fc86f77412b13fddcf", "upd": { "StackObjectsCount": 1, @@ -18460,121 +18115,106 @@ "arenaLocations": [], "status": 0 }, - "5a03153686f77442d90e2171": { - "QuestName": "Spa Tour - Part 1", - "_id": "5a03153686f77442d90e2171", + "6089736efa70fc097863b8f6": { + "QuestName": "Back Door", + "_id": "6089736efa70fc097863b8f6", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a03153686f77442d90e2171 acceptPlayerMessage", - "changeQuestMessageText": "5a03153686f77442d90e2171 changeQuestMessageText", - "completePlayerMessage": "5a03153686f77442d90e2171 completePlayerMessage", + "acceptPlayerMessage": "6089736efa70fc097863b8f6 acceptPlayerMessage", + "changeQuestMessageText": "6089736efa70fc097863b8f6 changeQuestMessageText", + "completePlayerMessage": "6089736efa70fc097863b8f6 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5a03167c86f774430d7b1e82", + "id": "608a94101a66564e74191fc2", "conditions": [ { - "id": "5a03169186f77451f779ece6", + "id": "609a3458eca522371e5725eb", "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", + "target": "mechanik_exit_area_1", "value": 1, - "weapon": [ - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "60db29ce99594040e04c4a27", - "6259b864ebedf17603599e88", - "64748cb8de82c85eaf0a273a", - "67124dcfa3541f2a1f0e788b", - "66ffa9b66e19cc902401c5e8", - "674fe9a75e51f1c47c04ec23" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5a0316a886f77451f779ece9", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" + "conditionType": "VisitPlace" } ] }, - "id": "5c9a17c686f7747dbe2da3c1", + "id": "608a94101a66564e74191fc3", "index": 0, "parentId": "", - "oneSessionOnly": false, + "oneSessionOnly": true, "dynamicLocale": false, - "type": "Elimination", + "type": "Exploration", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 7, + "value": 1, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608a94ae1a66564e74191fc5", + "conditions": [ + { + "id": "608aaf121124f748c94b8064", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "608aaf1a59b92115597ad78b", + "dynamicLocale": false, + "zoneIds": [ + "mechanik_exit_area_1" + ], + "conditionType": "InZone" + } + ] + }, + "id": "608a94ae1a66564e74191fc6", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": true, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "609a345d34103b660e791a31", + "target": "608a94101a66564e74191fc3", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "61b8c7d776bd4b740967c1d3", + "id": "60bf7353bf90bf6b431e8964", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 12, + "value": 14, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5a0315b586f774430d7b1d5c", + "id": "60bf734bb73d016d6838ad86", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27d2af86f7744e1115b323", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63aac673e842787ad20fcffb", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5a27b87686f77460de0252a8", + "target": "5ac3477486f7741d651d6885", "status": [ 4 ], @@ -18586,36 +18226,286 @@ ], "Fail": [] }, - "description": "5a03153686f77442d90e2171 description", - "failMessageText": "5a03153686f77442d90e2171 failMessageText", - "declinePlayerMessage": "5a03153686f77442d90e2171 declinePlayerMessage", - "name": "5a03153686f77442d90e2171 name", - "note": "5a03153686f77442d90e2171 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", - "type": "Elimination", + "description": "6089736efa70fc097863b8f6 description", + "failMessageText": "6089736efa70fc097863b8f6 failMessageText", + "declinePlayerMessage": "6089736efa70fc097863b8f6 declinePlayerMessage", + "name": "6089736efa70fc097863b8f6 name", + "note": "6089736efa70fc097863b8f6 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5a03153686f77442d90e2171 startedMessageText", - "successMessageText": "5a03153686f77442d90e2171 successMessageText", + "startedMessageText": "6089736efa70fc097863b8f6 startedMessageText", + "successMessageText": "6089736efa70fc097863b8f6 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7400, - "id": "60cc6b7c8f570e28f148113f", + "value": 8200, + "id": "60bf704c81c6e80e702ccc0a", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "60cc6b7f7c496e588343a6ba", + "value": 0.02, + "id": "60bf7058b73d016d6838ad82", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1000, + "id": "60bf70bb81c6e80e702ccc0b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ec2", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ec2", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60bf70ac9903f107aa251f36", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ec3", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ec3", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074ec4", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6812400b0c5cf2cf75074ec3", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074ec5", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "6812400b0c5cf2cf75074ec3", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074ec6", + "_tpl": "56083eab4bdc2d26448b456a", + "parentId": "6812400b0c5cf2cf75074ec3", + "slotId": "mod_tactical" + }, + { + "_id": "6812400b0c5cf2cf75074ec7", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "6812400b0c5cf2cf75074ec3", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074ec8", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "6812400b0c5cf2cf75074ec3", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074ec9", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "6812400b0c5cf2cf75074ec8", + "slotId": "mod_bipod" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27b9de86f77464e5044585": { + "QuestName": "The Cult - Part 1", + "_id": "5a27b9de86f77464e5044585", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27b9de86f77464e5044585 acceptPlayerMessage", + "changeQuestMessageText": "5a27b9de86f77464e5044585 changeQuestMessageText", + "completePlayerMessage": "5a27b9de86f77464e5044585 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3ba51d86f7743af1475c39", + "conditions": [ + { + "id": "5a3ba52586f77464d01fd619", + "dynamicLocale": false, + "target": "place_peacemaker_007_1_N1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3ba51d86f7743af1475c3a", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a28051286f7740eb10bac03", + "conditions": [ + { + "id": "5a28054586f7740f9e121614", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + }, + { + "id": "5a2eb6e586f7747063190763", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5a28051286f7740eb10bac04", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a60a9aa86f77455b64814e2", + "target": "5a3ba51d86f7743af1475c3a", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a71f786f7745b18478ef9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a28035486f77450e46b45f1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b87686f77460de0252a8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63aac6b6160cc610ba00a579", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5a27d2af86f7744e1115b323", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a27b9de86f77464e5044585 description", + "failMessageText": "5a27b9de86f77464e5044585 failMessageText", + "declinePlayerMessage": "5a27b9de86f77464e5044585 declinePlayerMessage", + "name": "5a27b9de86f77464e5044585 name", + "note": "5a27b9de86f77464e5044585 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5a29222486f77456f50d09e7.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a27b9de86f77464e5044585 startedMessageText", + "successMessageText": "5a27b9de86f77464e5044585 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6200, + "id": "60cc6af777dc197c774254a6", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc6afbaf2e5506c378229a", "type": "TraderStanding", "index": 0, "target": "5935c25fb3acc3127c3d8cd9", @@ -18623,19 +18513,203 @@ }, { "availableInGameEditions": [], - "value": 950, - "id": "5a28081186f774567976ed33", + "value": 700, + "id": "5a2803a286f774528903e08e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b48", + "target": "6812400b0c5cf2cf75074ecb", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1b48", + "_id": "6812400b0c5cf2cf75074ecb", "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 950 + "StackObjectsCount": 700 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5a2803c386f7740e44081674", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ecf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ecd", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ece", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ecf", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27bc6986f7741c7358402b": { + "QuestName": "Wet Job - Part 5", + "_id": "5a27bc6986f7741c7358402b", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27bc6986f7741c7358402b acceptPlayerMessage", + "changeQuestMessageText": "5a27bc6986f7741c7358402b changeQuestMessageText", + "completePlayerMessage": "5a27bc6986f7741c7358402b completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5a2e958d86f77416be092111", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a29276886f77435ed1b117c" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a2822de86f7740a245249ce", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a29276886f77435ed1b117c" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a60ae9386f7742b4659eb6d", + "target": "5a2e958d86f77416be092111", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a730586f7745aa21a06e5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 14, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a28226686f7741da250b356", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27bc3686f7741c73584026", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a27bc6986f7741c7358402b description", + "failMessageText": "5a27bc6986f7741c7358402b failMessageText", + "declinePlayerMessage": "5a27bc6986f7741c7358402b declinePlayerMessage", + "name": "5a27bc6986f7741c7358402b name", + "note": "5a27bc6986f7741c7358402b note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a27bc6986f7741c7358402b startedMessageText", + "successMessageText": "5a27bc6986f7741c7358402b successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8400, + "id": "60cc711065e4664318606ae9", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc71136a2a1958fc5231f8", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1700, + "id": "60cc7118a7d63f18200a24d8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ed1", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ed1", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1700 } } ] @@ -18643,18 +18717,71 @@ { "availableInGameEditions": [], "value": 1, - "id": "5a28087586f774560f1860e6", + "id": "60cc712ba7d63f18200a24d9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b49", + "target": "6812400b0c5cf2cf75074ed7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b49", - "_tpl": "58948c8e86f77409493f7266", + "_id": "6812400b0c5cf2cf75074ed7", + "_tpl": "5c0e655586f774045612eeb2", "upd": { "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ed8", + "_tpl": "6570e025615f54368b04fcb0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074ed7", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75074ed9", + "_tpl": "6570e0610b57c03ec90b96ef", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074ed7", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75074eda", + "_tpl": "656fad8c498d1b7e3e071da0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074ed7", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf75074edb", + "_tpl": "656fad8c498d1b7e3e071da0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75074ed7", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac66f1c86f77405cd5462db", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074edc", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074edc", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { "Repairable": { "Durability": 100, "MaxDurability": 100 @@ -18662,243 +18789,72 @@ } }, { - "_id": "68010065f81036801d0b1b4a", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "68010065f81036801d0b1b49", + "_id": "6812400b0c5cf2cf75074edd", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6812400b0c5cf2cf75074edc", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1b4b", - "_tpl": "5894a05586f774094708ef75", - "parentId": "68010065f81036801d0b1b49", + "_id": "6812400b0c5cf2cf75074ede", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "6812400b0c5cf2cf75074edc", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1b4c", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "68010065f81036801d0b1b49", - "slotId": "mod_reciever" + "_id": "6812400b0c5cf2cf75074edf", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "6812400b0c5cf2cf75074edc", + "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1b4d", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "68010065f81036801d0b1b4c", - "slotId": "mod_barrel" + "_id": "6812400b0c5cf2cf75074ee0", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "6812400b0c5cf2cf75074edf", + "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1b4e", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "68010065f81036801d0b1b4d", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1b4f", - "_tpl": "5894a42086f77426d2590762", - "parentId": "68010065f81036801d0b1b4c", + "_id": "6812400b0c5cf2cf75074ee1", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "6812400b0c5cf2cf75074edc", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1b50", - "_tpl": "5894a73486f77426d259076c", - "parentId": "68010065f81036801d0b1b4f", - "slotId": "mod_sight_front" + "_id": "6812400b0c5cf2cf75074ee2", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "6812400b0c5cf2cf75074edc", + "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1b51", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "68010065f81036801d0b1b4f", - "slotId": "mod_mount_000" + "_id": "6812400b0c5cf2cf75074ee3", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6812400b0c5cf2cf75074ee2", + "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1b52", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "68010065f81036801d0b1b4f", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b1b53", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "68010065f81036801d0b1b4f", - "slotId": "mod_mount_002" - }, - { - "_id": "68010065f81036801d0b1b54", - "_tpl": "5894a81786f77427140b8347", - "parentId": "68010065f81036801d0b1b4c", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1b55", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "68010065f81036801d0b1b49", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1b56", - "_tpl": "57ade1442459771557167e15", - "parentId": "68010065f81036801d0b1b55", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1b57", - "_tpl": "58949fac86f77409483e16aa", - "parentId": "68010065f81036801d0b1b49", - "slotId": "mod_charge" + "_id": "6812400b0c5cf2cf75074ee4", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "6812400b0c5cf2cf75074ee2", + "slotId": "mod_gas_block" } - ] + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" }, { "availableInGameEditions": [], - "value": 3, - "id": "60cc6ba7179f8541b846924f", - "type": "Item", + "id": "60b8efc547780a0bac0dba1a", + "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1b5b", + "target": "6812400b0c5cf2cf75074ee5", "unknown": false, - "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b59", - "_tpl": "5894a05586f774094708ef75", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b5a", - "_tpl": "5894a05586f774094708ef75", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b5b", - "_tpl": "5894a05586f774094708ef75", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400b0c5cf2cf75074ee5", + "_tpl": "60098ad7c2240c0fe85c570a" } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "60cc6bbd3e4e974efa345d06", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b66", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b5e", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b5f", - "_tpl": "5c0d56a986f774449d5de529", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1b5e", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1b60", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b61", - "_tpl": "5c0d56a986f774449d5de529", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1b60", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1b62", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b63", - "_tpl": "5c0d56a986f774449d5de529", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1b62", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1b64", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b65", - "_tpl": "5c0d56a986f774449d5de529", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1b64", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1b66", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b67", - "_tpl": "5c0d56a986f774449d5de529", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1b66", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "629f07f7422dff20ff233f12", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b69", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b69", - "_tpl": "5a13f46386f7741dd7384b04", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" } ], "Fail": [] @@ -19004,12 +18960,12 @@ "id": "5a36631886f7745d8c4c5f18", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b6b", + "target": "6812400b0c5cf2cf75074ee7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1b6b", + "_id": "6812400b0c5cf2cf75074ee7", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 3500 @@ -19023,51 +18979,51 @@ "id": "5a36643686f7745d8d3df63c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b6c", + "target": "6812400b0c5cf2cf75074ee8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b6c", + "_id": "6812400b0c5cf2cf75074ee8", "_tpl": "588892092459774ac91d4b11", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1b6d", + "_id": "6812400b0c5cf2cf75074ee9", "_tpl": "5888988e24597752fe43a6fa", - "parentId": "68010065f81036801d0b1b6c", + "parentId": "6812400b0c5cf2cf75074ee8", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1b6e", + "_id": "6812400b0c5cf2cf75074eea", "_tpl": "5888945a2459774bf43ba385", - "parentId": "68010065f81036801d0b1b6c", + "parentId": "6812400b0c5cf2cf75074ee8", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1b6f", + "_id": "6812400b0c5cf2cf75074eeb", "_tpl": "58889c7324597754281f9439", - "parentId": "68010065f81036801d0b1b6e", + "parentId": "6812400b0c5cf2cf75074eea", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1b70", + "_id": "6812400b0c5cf2cf75074eec", "_tpl": "5888961624597754281f93f3", - "parentId": "68010065f81036801d0b1b6e", + "parentId": "6812400b0c5cf2cf75074eea", "slotId": "mod_bipod" }, { - "_id": "68010065f81036801d0b1b71", + "_id": "6812400b0c5cf2cf75074eed", "_tpl": "57c55f172459772d27602381", - "parentId": "68010065f81036801d0b1b6c", + "parentId": "6812400b0c5cf2cf75074ee8", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1b72", + "_id": "6812400b0c5cf2cf75074eee", "_tpl": "58889d0c2459775bc215d981", - "parentId": "68010065f81036801d0b1b6c", + "parentId": "6812400b0c5cf2cf75074ee8", "slotId": "mod_stock" } ] @@ -19078,12 +19034,12 @@ "id": "60cc71fe98b49270603645cc", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b79", + "target": "6812400b0c5cf2cf75074ef5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b75", + "_id": "6812400b0c5cf2cf75074ef1", "_tpl": "6570254fcfc010a0f5006a22", "upd": { "StackObjectsCount": 1, @@ -19091,16 +19047,16 @@ } }, { - "_id": "68010065f81036801d0b1b76", + "_id": "6812400b0c5cf2cf75074ef2", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b75", + "parentId": "6812400b0c5cf2cf75074ef1", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b77", + "_id": "6812400b0c5cf2cf75074ef3", "_tpl": "6570254fcfc010a0f5006a22", "upd": { "StackObjectsCount": 1, @@ -19108,16 +19064,16 @@ } }, { - "_id": "68010065f81036801d0b1b78", + "_id": "6812400b0c5cf2cf75074ef4", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b77", + "parentId": "6812400b0c5cf2cf75074ef3", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1b79", + "_id": "6812400b0c5cf2cf75074ef5", "_tpl": "6570254fcfc010a0f5006a22", "upd": { "StackObjectsCount": 1, @@ -19125,12 +19081,12 @@ } }, { - "_id": "68010065f81036801d0b1b7a", + "_id": "6812400b0c5cf2cf75074ef6", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1b79", + "parentId": "6812400b0c5cf2cf75074ef5", "slotId": "cartridges" } ] @@ -19140,11 +19096,11 @@ "id": "60b90d760bf7804a340175a4", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1b7b", + "target": "6812400b0c5cf2cf75074ef7", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b7b", + "_id": "6812400b0c5cf2cf75074ef7", "_tpl": "5e81ebcd8e146c7080625e15", "upd": { "FireMode": { @@ -19156,9 +19112,9 @@ } }, { - "_id": "68010065f81036801d0b1b7c", + "_id": "6812400b0c5cf2cf75074ef8", "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b1b7b", + "parentId": "6812400b0c5cf2cf75074ef7", "slotId": "mod_pistol_grip" } ], @@ -19170,18 +19126,18 @@ "id": "66abac6ac84cc7141324eedc", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1b7f", + "target": "6812400b0c5cf2cf75074efb", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b7e", + "_id": "6812400b0c5cf2cf75074efa", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 40 } }, { - "_id": "68010065f81036801d0b1b7f", + "_id": "6812400b0c5cf2cf75074efb", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 40 @@ -19202,6 +19158,2132 @@ "arenaLocations": [], "status": 0 }, + "639872fe8871e1272b10ccf6": { + "QuestName": "Gunsmith - Part 14", + "_id": "639872fe8871e1272b10ccf6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639872fe8871e1272b10ccf6 acceptPlayerMessage", + "changeQuestMessageText": "639872fe8871e1272b10ccf6 changeQuestMessageText", + "completePlayerMessage": "639872fe8871e1272b10ccf6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "639879addecada40426d3449", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5bb2475ed4351e00853264e3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 80.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 300.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 60.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 30, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 300.0, + "compareMethod": "<=" + }, + "weight": { + "value": 4.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5ea17bbc09aa976f2e7a51cd", + "5fce0cf655375d18a253eff0", + "558022b54bdc2dac148b458d", + "5d15cf3bd7ad1a67e71518b2", + "5947eab886f77475961d96c5", + "5c06595c0db834001a66af6c" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "6399b45205aa481907106508", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 27, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639af496ad9d7e3216668f66", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac244c486f77413e12cf945", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639872fe8871e1272b10ccf6 description", + "failMessageText": "639872fe8871e1272b10ccf6 failMessageText", + "declinePlayerMessage": "639872fe8871e1272b10ccf6 declinePlayerMessage", + "name": "639872fe8871e1272b10ccf6 name", + "note": "639872fe8871e1272b10ccf6 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae9613606f31cf40e5a7b.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639872fe8871e1272b10ccf6 startedMessageText", + "successMessageText": "639872fe8871e1272b10ccf6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 14900, + "id": "6399b46cdecada40426d344c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6399b478cd51826f7a069b8b", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "6399b48f2b86ca1db02497f7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074efd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074efd", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6399b4cec8f8cc12a47b02aa", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074eff", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074eff", + "_tpl": "609bab8b455afd752b2e6138", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6399b4d7e5163c24b3029357", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f03", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f01", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f02", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f03", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19caf5032c67f050dd95f", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f04", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f04", + "_tpl": "5d44069ca4b9361ebd26fc37" + } + ], + "loyaltyLevel": 3, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac3462b86f7741d6118b983": { + "QuestName": "Farming - Part 3", + "_id": "5ac3462b86f7741d6118b983", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3462b86f7741d6118b983 acceptPlayerMessage", + "changeQuestMessageText": "5ac3462b86f7741d6118b983 changeQuestMessageText", + "completePlayerMessage": "5ac3462b86f7741d6118b983 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac6240786f77417204ca2b8", + "conditions": [ + { + "id": "5ac6241186f77416c41144f7", + "dynamicLocale": false, + "target": "place_SADOVOD_03", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ac6240786f77417204ca2b9", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac6248586f77416781dd3a3", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ac620eb86f7743a8e6e0da0" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac624b286f77416781dd3ac", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ac620eb86f7743a8e6e0da0" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ac624b786f7740974389b45", + "target": "5ac6248586f77416781dd3a3", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b2a86f7741cdb2f7f8c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 14, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b2586f7741cdb2f7f8b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3460c86f7742880308185", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3462b86f7741d6118b983 description", + "failMessageText": "5ac3462b86f7741d6118b983 failMessageText", + "declinePlayerMessage": "5ac3462b86f7741d6118b983 declinePlayerMessage", + "name": "5ac3462b86f7741d6118b983 name", + "note": "5ac3462b86f7741d6118b983 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3462b86f7741d6118b983 startedMessageText", + "successMessageText": "5ac3462b86f7741d6118b983 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6500, + "id": "60cc7ab1a7d63f18200a24ee", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7ab46a2a1958fc52320d", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "5acb7ec986f7740fae6a6033", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f06", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f06", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc7aca179f8541b8469272", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f08", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f08", + "_tpl": "5c052fb986f7746b2101e909", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5c139eb686f7747878361a6f": { + "QuestName": "Import", + "_id": "5c139eb686f7747878361a6f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c139eb686f7747878361a6f acceptPlayerMessage", + "changeQuestMessageText": "5c139eb686f7747878361a6f changeQuestMessageText", + "completePlayerMessage": "5c139eb686f7747878361a6f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ec14003e16f6c41ee73525f", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052fb986f7746b2101e909" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ec14080c9ffe55cca300867", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05300686f7746dce784e5d" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5c139eb686f7747878361a72", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052fb986f7746b2101e909" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5c139eb686f7747878361a73", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05300686f7746dce784e5d" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5c1fcf4086f7742b38527bde", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 35, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5c1fcf3786f7742b3b47e36f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3464c86f7741d651d6877", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c139eb686f7747878361a6f description", + "failMessageText": "5c139eb686f7747878361a6f failMessageText", + "declinePlayerMessage": "5c139eb686f7747878361a6f declinePlayerMessage", + "name": "5c139eb686f7747878361a6f name", + "note": "5c139eb686f7747878361a6f note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c139eb686f7747878361a6f startedMessageText", + "successMessageText": "5c139eb686f7747878361a6f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 29000, + "id": "60cc800698b49270603645e8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc801aaf2e5506c37822ce", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 85000, + "id": "5c18c1d286f774186730fece", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f0a", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f0a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 85000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5c18c21786f77467c1502abd", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f0c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f0c", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc803aaf2e5506c37822d0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f0e", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f0e", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc800e2b555f16df5c41d0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f11", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f10", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f11", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b82391fe356507267b2f9", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f12", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f12", + "_tpl": "5ba2678ad4351e44f824b344" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "value": -0.01, + "id": "5d6e72c186f77410d56f1ef2", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5f04886a3937dc337a6b8238": { + "QuestName": "Chemistry Closet", + "_id": "5f04886a3937dc337a6b8238", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5f04886a3937dc337a6b8238 acceptPlayerMessage", + "changeQuestMessageText": "5f04886a3937dc337a6b8238 changeQuestMessageText", + "completePlayerMessage": "5f04886a3937dc337a6b8238 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5f0488c590eea473df674001", + "conditions": [ + { + "id": "5f048aaeefefac7f7227de43", + "dynamicLocale": false, + "target": "place_meh_sanitar_room", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5f0488c590eea473df674002", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": true, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5f04983ffbed7a08077b4366", + "conditions": [ + { + "id": "5f04985a69ef785df740a8cc", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + }, + { + "id": "5f0498629b667032c8402576", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5f04983ffbed7a08077b4367", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": true, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5f0da368ee0d8b5aa14a625f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 22, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5f04a10264faea6da530ee5a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5eda19f0edce541157209cee", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5f04a1213bcb7d4bef0addb7", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5edab736cc183c769d778bc2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5f04886a3937dc337a6b8238 description", + "failMessageText": "5f04886a3937dc337a6b8238 failMessageText", + "declinePlayerMessage": "5f04886a3937dc337a6b8238 declinePlayerMessage", + "name": "5f04886a3937dc337a6b8238 name", + "note": "5f04886a3937dc337a6b8238 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5f04886a3937dc337a6b8238 startedMessageText", + "successMessageText": "5f04886a3937dc337a6b8238 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13400, + "id": "60cc80a32b555f16df5c41d2", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60cc80a865e4664318606b4a", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1000, + "id": "5f0daf7e51786b3b79461a27", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f14", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f14", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5f0dc302dc8d3538213c1223", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f17", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f16", + "_tpl": "59bffbb386f77435b379b9c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f17", + "_tpl": "59bffbb386f77435b379b9c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5f0dc33f115bb00d142caaa9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f19", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f19", + "_tpl": "57347ca924597744596b4e71", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b8f67681c51328c56d7715", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f1a", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f1a", + "_tpl": "5b6d9ce188a4501afc1b2b25" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5edac020218d181e29451446": { + "QuestName": "Samples", + "_id": "5edac020218d181e29451446", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5edac020218d181e29451446 acceptPlayerMessage", + "changeQuestMessageText": "5edac020218d181e29451446 changeQuestMessageText", + "completePlayerMessage": "5edac020218d181e29451446 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac0e02ddc9e4c802cd969", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed51652f6c34d2cc26336a1" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac1040880da21347b3845", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed51652f6c34d2cc26336a1" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac13760bdcc7ff355811f", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed5166ad380ab312177c100" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac1530880da21347b3846", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed5166ad380ab312177c100" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac190cecc0069284c0ed2", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed5160a87bb8443d10680b5" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac1b2930f5454f51dcac4", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed5160a87bb8443d10680b5" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac1e116d985118871ba24", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515f6915ec335206e4152" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac1fccc183c769d778bd3", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515f6915ec335206e4152" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac22860bdcc7ff3558124", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515ece452db0eb56fc028" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac2582ddc9e4c802cd970", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515ece452db0eb56fc028" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac2897869412e9c669c32", + "index": 10, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515e03a40a50460332579" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac2a260bdcc7ff3558127", + "index": 11, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515e03a40a50460332579" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5edac2cc16d985118871ba29", + "index": 12, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515c8d380ab312177c0fa" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac2e10bb72a50635c2bf9", + "index": 13, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5ed515c8d380ab312177c0fa" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5f0394545b57226624321af3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5eda19f0edce541157209cee", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "629f09bd274d12190d1883e1", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5a27d2af86f7744e1115b323", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63aac6ea87413d64ae07962d", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b75b86f7742e97191958", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5edac020218d181e29451446 description", + "failMessageText": "5edac020218d181e29451446 failMessageText", + "declinePlayerMessage": "5edac020218d181e29451446 declinePlayerMessage", + "name": "5edac020218d181e29451446 name", + "note": "5edac020218d181e29451446 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/5969f96786f7741dde183a4f.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5edac020218d181e29451446 startedMessageText", + "successMessageText": "5edac020218d181e29451446 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15300, + "id": "60cc73eb2b555f16df5c41ad", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60cc73f6f09d61072d6d00b6", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4000, + "id": "5f0da287153d2d2fad43e5f1", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f1c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f1c", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 4000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5f0dc6556f0aab54015c0daa", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f1e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f1e", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5f0dc66652653d5cf005849c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f1f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f1f", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf75074f20", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074f21", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074f22", + "_tpl": "5b7d671b5acfc43d82528ddd", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074f23", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074f24", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "6812400b0c5cf2cf75074f23", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074f25", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074f26", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074f27", + "_tpl": "5b7d63cf5acfc4001876c8df", + "parentId": "6812400b0c5cf2cf75074f1f", + "slotId": "mod_stock" + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b8ef7481c51328c56d7712", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f28", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f28", + "_tpl": "5a16b7e1fcdbcb00165aa6c9" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "60b8ef82634af3128020392e", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f29", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f29", + "_tpl": "5e00c1ad86f774747333222c" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60e71ce009d7c801eb0c0ec6": { + "QuestName": "Special Equipment", + "_id": "60e71ce009d7c801eb0c0ec6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage", + "changeQuestMessageText": "60e71ce009d7c801eb0c0ec6 changeQuestMessageText", + "completePlayerMessage": "60e71ce009d7c801eb0c0ec6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e7434ed1a062318d3d2260", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05300686f7746dce784e5d" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e7436675131b4e61703b7b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052fb986f7746b2101e909" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e7439975131b4e61703b7c", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05308086f7746b2101e90b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e743cd0367e10a450f780e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052f6886f7746b1e3db148" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "62a70191a9a0ea77981b57d9", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a0a16d0b9d3c46de5b6e97" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e74302d1a062318d3d225f", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05300686f7746dce784e5d" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e7432875131b4e61703b7a", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052fb986f7746b2101e909" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e7449875131b4e61703b7e", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c05308086f7746b2101e90b" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e744c9d1a062318d3d2262", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052f6886f7746b1e3db148" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "62a7019ea9a0ea77981b57da", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a0a16d0b9d3c46de5b6e97" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61014852683d6b506f258f97", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "60e71ccb5688f6424c7bfec4", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "6101485ce5b13723fc7609b0", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 60, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71ce009d7c801eb0c0ec6 description", + "failMessageText": "60e71ce009d7c801eb0c0ec6 failMessageText", + "declinePlayerMessage": "60e71ce009d7c801eb0c0ec6 declinePlayerMessage", + "name": "60e71ce009d7c801eb0c0ec6 name", + "note": "60e71ce009d7c801eb0c0ec6 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/60c3752d78280c17952e1e69.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71ce009d7c801eb0c0ec6 startedMessageText", + "successMessageText": "60e71ce009d7c801eb0c0ec6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 177000, + "id": "60f037c37ad3d529c2430edd", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 7, + "id": "61029599289a8754756b3a97", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f31", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f2b", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f2c", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f2d", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f2e", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f2f", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f30", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f31", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "610295a4d51ac54f163ffa09", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f36", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f33", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f34", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f35", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f36", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "61029d37e2795c58325bb361", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f38", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f38", + "_tpl": "59fb023c86f7746d0d4b423c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a1d61fab6bb51044344bf6", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f39", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f39", + "_tpl": "5c0a840b86f7742ffa4f2482" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "673f6027352b4da8e00322d2": { + "QuestName": "Inevitable Response", + "_id": "673f6027352b4da8e00322d2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "673f6027352b4da8e00322d2 acceptPlayerMessage", + "changeQuestMessageText": "673f6027352b4da8e00322d2 changeQuestMessageText", + "completePlayerMessage": "673f6027352b4da8e00322d2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "673f60919fd5c038018fad01", + "conditions": [ + { + "id": "673f60b64ed13ab4c46ec087", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "673f60ce7d7c2de69e59b4c0", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "673f60910aed589d887b5ea1", + "index": 3, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67499a4f704e6de4dc12ffc9", + "conditions": [ + { + "id": "67499a5b10b22f93dddb6812", + "dynamicLocale": false, + "status": [ + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "67499da4691f7b574de65d62", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "67499a4f03b8295863172dea", + "index": 4, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "67499deda20e67d80d137dd0", + "target": "673f60910aed589d887b5ea1", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67499a61c366bc4acd0dd524", + "conditions": [ + { + "id": "67499a6e93575966145b55ba", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "67499d9d9a2454d9024e721b", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" + } + ] + }, + "id": "67499a61ddf14e140a675607", + "index": 5, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [ + { + "id": "67499df440040b25228b768d", + "target": "67499a4f03b8295863172dea", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "673f60844e1132aa8ecd0e94", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "673f5a4976553f78350bdac1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "673f6027352b4da8e00322d2 description", + "failMessageText": "673f6027352b4da8e00322d2 failMessageText", + "declinePlayerMessage": "673f6027352b4da8e00322d2 declinePlayerMessage", + "name": "673f6027352b4da8e00322d2 name", + "note": "673f6027352b4da8e00322d2 note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "any", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "673f6027352b4da8e00322d2 startedMessageText", + "successMessageText": "673f6027352b4da8e00322d2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15500, + "id": "6758188da1d9d23ba316032a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 82000, + "id": "675818a2334806100922c8d1", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f3b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f3b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 82000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "675818a90cde43bc0f9785aa", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5c0d4e61d09282029f53920e": { "QuestName": "The Guide", "_id": "5c0d4e61d09282029f53920e", @@ -19716,12 +21798,12 @@ "id": "5c1cfe7e86f7743db8758cfd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b81", + "target": "6812400b0c5cf2cf75074f3d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1b81", + "_id": "6812400b0c5cf2cf75074f3d", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 25000 @@ -19735,12 +21817,12 @@ "id": "5c1ce80a86f774716e34081d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b83", + "target": "6812400b0c5cf2cf75074f3f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b83", + "_id": "6812400b0c5cf2cf75074f3f", "_tpl": "5c0a2cec0db834001b7ce47d", "upd": { "StackObjectsCount": 1, @@ -19755,12 +21837,12 @@ "id": "5c1ce81a86f774716e34081f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b85", + "target": "6812400b0c5cf2cf75074f41", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b85", + "_id": "6812400b0c5cf2cf75074f41", "_tpl": "5c0e66e2d174af02a96252f4", "upd": { "StackObjectsCount": 1, @@ -19775,12 +21857,12 @@ "id": "5c1ce82d86f77470b220d1d9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1b89", + "target": "6812400b0c5cf2cf75074f45", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1b87", + "_id": "6812400b0c5cf2cf75074f43", "_tpl": "59bfe68886f7746004266202", "upd": { "StackObjectsCount": 1, @@ -19788,7 +21870,7 @@ } }, { - "_id": "68010065f81036801d0b1b88", + "_id": "6812400b0c5cf2cf75074f44", "_tpl": "59bfe68886f7746004266202", "upd": { "StackObjectsCount": 1, @@ -19796,7 +21878,7 @@ } }, { - "_id": "68010065f81036801d0b1b89", + "_id": "6812400b0c5cf2cf75074f45", "_tpl": "59bfe68886f7746004266202", "upd": { "StackObjectsCount": 1, @@ -19810,11 +21892,11 @@ "id": "5c19314586f774315e7716c4", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1b8a", + "target": "6812400b0c5cf2cf75074f46", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b8a", + "_id": "6812400b0c5cf2cf75074f46", "_tpl": "5c0a2cec0db834001b7ce47d" } ], @@ -19826,11 +21908,11 @@ "id": "5c19318086f7745fa96afd4a", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1b8b", + "target": "6812400b0c5cf2cf75074f47", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b8b", + "_id": "6812400b0c5cf2cf75074f47", "_tpl": "5c0e66e2d174af02a96252f4" } ], @@ -19842,11 +21924,11 @@ "id": "5c19319686f7747ce71bcbe7", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1b8c", + "target": "6812400b0c5cf2cf75074f48", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b8c", + "_id": "6812400b0c5cf2cf75074f48", "_tpl": "59bfe68886f7746004266202" } ], @@ -19858,18 +21940,18 @@ "id": "655b82abb71eeb7c4168c632", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1b8f", + "target": "6812400b0c5cf2cf75074f4b", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1b8e", + "_id": "6812400b0c5cf2cf75074f4a", "_tpl": "5ba26835d4351e0035628ff5", "upd": { "StackObjectsCount": 70 } }, { - "_id": "68010065f81036801d0b1b8f", + "_id": "6812400b0c5cf2cf75074f4b", "_tpl": "5ba26835d4351e0035628ff5", "upd": { "StackObjectsCount": 50 @@ -19890,1889 +21972,6 @@ "arenaLocations": [], "status": 0 }, - "5ac3462b86f7741d6118b983": { - "QuestName": "Farming - Part 3", - "_id": "5ac3462b86f7741d6118b983", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3462b86f7741d6118b983 acceptPlayerMessage", - "changeQuestMessageText": "5ac3462b86f7741d6118b983 changeQuestMessageText", - "completePlayerMessage": "5ac3462b86f7741d6118b983 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac6240786f77417204ca2b8", - "conditions": [ - { - "id": "5ac6241186f77416c41144f7", - "dynamicLocale": false, - "target": "place_SADOVOD_03", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ac6240786f77417204ca2b9", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac6248586f77416781dd3a3", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ac620eb86f7743a8e6e0da0" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac624b286f77416781dd3ac", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ac620eb86f7743a8e6e0da0" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ac624b786f7740974389b45", - "target": "5ac6248586f77416781dd3a3", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b2a86f7741cdb2f7f8c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 14, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3b2586f7741cdb2f7f8b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3460c86f7742880308185", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac3462b86f7741d6118b983 description", - "failMessageText": "5ac3462b86f7741d6118b983 failMessageText", - "declinePlayerMessage": "5ac3462b86f7741d6118b983 declinePlayerMessage", - "name": "5ac3462b86f7741d6118b983 name", - "note": "5ac3462b86f7741d6118b983 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac3462b86f7741d6118b983 startedMessageText", - "successMessageText": "5ac3462b86f7741d6118b983 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6500, - "id": "60cc7ab1a7d63f18200a24ee", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7ab46a2a1958fc52320d", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "5acb7ec986f7740fae6a6033", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b91", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1b91", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc7aca179f8541b8469272", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b93", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b93", - "_tpl": "5c052fb986f7746b2101e909", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c139eb686f7747878361a6f": { - "QuestName": "Import", - "_id": "5c139eb686f7747878361a6f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c139eb686f7747878361a6f acceptPlayerMessage", - "changeQuestMessageText": "5c139eb686f7747878361a6f changeQuestMessageText", - "completePlayerMessage": "5c139eb686f7747878361a6f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ec14003e16f6c41ee73525f", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052fb986f7746b2101e909" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ec14080c9ffe55cca300867", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05300686f7746dce784e5d" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5c139eb686f7747878361a72", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052fb986f7746b2101e909" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5c139eb686f7747878361a73", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05300686f7746dce784e5d" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1fcf4086f7742b38527bde", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 35, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5c1fcf3786f7742b3b47e36f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3464c86f7741d651d6877", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c139eb686f7747878361a6f description", - "failMessageText": "5c139eb686f7747878361a6f failMessageText", - "declinePlayerMessage": "5c139eb686f7747878361a6f declinePlayerMessage", - "name": "5c139eb686f7747878361a6f name", - "note": "5c139eb686f7747878361a6f note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c139eb686f7747878361a6f startedMessageText", - "successMessageText": "5c139eb686f7747878361a6f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 29000, - "id": "60cc800698b49270603645e8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc801aaf2e5506c37822ce", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 85000, - "id": "5c18c1d286f774186730fece", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b95", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1b95", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 85000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5c18c21786f77467c1502abd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b97", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b97", - "_tpl": "5a1eaa87fcdbcb001865f75e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc803aaf2e5506c37822d0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b99", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b99", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc800e2b555f16df5c41d0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b9c", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1b9b", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1b9c", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b82391fe356507267b2f9", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1b9d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1b9d", - "_tpl": "5ba2678ad4351e44f824b344" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "value": -0.01, - "id": "5d6e72c186f77410d56f1ef2", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5f04886a3937dc337a6b8238": { - "QuestName": "Chemistry Closet", - "_id": "5f04886a3937dc337a6b8238", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5f04886a3937dc337a6b8238 acceptPlayerMessage", - "changeQuestMessageText": "5f04886a3937dc337a6b8238 changeQuestMessageText", - "completePlayerMessage": "5f04886a3937dc337a6b8238 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5f0488c590eea473df674001", - "conditions": [ - { - "id": "5f048aaeefefac7f7227de43", - "dynamicLocale": false, - "target": "place_meh_sanitar_room", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5f0488c590eea473df674002", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": true, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5f04983ffbed7a08077b4366", - "conditions": [ - { - "id": "5f04985a69ef785df740a8cc", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5f0498629b667032c8402576", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5f04983ffbed7a08077b4367", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": true, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5f0da368ee0d8b5aa14a625f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 22, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5f04a10264faea6da530ee5a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5eda19f0edce541157209cee", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5f04a1213bcb7d4bef0addb7", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5edab736cc183c769d778bc2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5f04886a3937dc337a6b8238 description", - "failMessageText": "5f04886a3937dc337a6b8238 failMessageText", - "declinePlayerMessage": "5f04886a3937dc337a6b8238 declinePlayerMessage", - "name": "5f04886a3937dc337a6b8238 name", - "note": "5f04886a3937dc337a6b8238 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5f04886a3937dc337a6b8238 startedMessageText", - "successMessageText": "5f04886a3937dc337a6b8238 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13400, - "id": "60cc80a32b555f16df5c41d2", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "60cc80a865e4664318606b4a", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1000, - "id": "5f0daf7e51786b3b79461a27", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1b9f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1b9f", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5f0dc302dc8d3538213c1223", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ba2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ba1", - "_tpl": "59bffbb386f77435b379b9c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ba2", - "_tpl": "59bffbb386f77435b379b9c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5f0dc33f115bb00d142caaa9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ba4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ba4", - "_tpl": "57347ca924597744596b4e71", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b8f67681c51328c56d7715", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1ba5", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1ba5", - "_tpl": "5b6d9ce188a4501afc1b2b25" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5edac020218d181e29451446": { - "QuestName": "Samples", - "_id": "5edac020218d181e29451446", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5edac020218d181e29451446 acceptPlayerMessage", - "changeQuestMessageText": "5edac020218d181e29451446 changeQuestMessageText", - "completePlayerMessage": "5edac020218d181e29451446 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac0e02ddc9e4c802cd969", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed51652f6c34d2cc26336a1" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac1040880da21347b3845", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed51652f6c34d2cc26336a1" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac13760bdcc7ff355811f", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed5166ad380ab312177c100" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac1530880da21347b3846", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed5166ad380ab312177c100" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac190cecc0069284c0ed2", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed5160a87bb8443d10680b5" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac1b2930f5454f51dcac4", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed5160a87bb8443d10680b5" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac1e116d985118871ba24", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515f6915ec335206e4152" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac1fccc183c769d778bd3", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515f6915ec335206e4152" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac22860bdcc7ff3558124", - "index": 8, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515ece452db0eb56fc028" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac2582ddc9e4c802cd970", - "index": 9, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515ece452db0eb56fc028" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac2897869412e9c669c32", - "index": 10, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515e03a40a50460332579" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac2a260bdcc7ff3558127", - "index": 11, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515e03a40a50460332579" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5edac2cc16d985118871ba29", - "index": 12, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515c8d380ab312177c0fa" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac2e10bb72a50635c2bf9", - "index": 13, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5ed515c8d380ab312177c0fa" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5f0394545b57226624321af3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5eda19f0edce541157209cee", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "629f09bd274d12190d1883e1", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5a27d2af86f7744e1115b323", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63aac6ea87413d64ae07962d", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5a27b75b86f7742e97191958", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5edac020218d181e29451446 description", - "failMessageText": "5edac020218d181e29451446 failMessageText", - "declinePlayerMessage": "5edac020218d181e29451446 declinePlayerMessage", - "name": "5edac020218d181e29451446 name", - "note": "5edac020218d181e29451446 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/5969f96786f7741dde183a4f.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5edac020218d181e29451446 startedMessageText", - "successMessageText": "5edac020218d181e29451446 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15300, - "id": "60cc73eb2b555f16df5c41ad", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60cc73f6f09d61072d6d00b6", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4000, - "id": "5f0da287153d2d2fad43e5f1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ba7", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1ba7", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 4000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5f0dc6556f0aab54015c0daa", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ba9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ba9", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5f0dc66652653d5cf005849c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1baa", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1baa", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b1bab", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1bac", - "_tpl": "5b7bef5d5acfc43bca7067a3", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1bad", - "_tpl": "5b7d671b5acfc43d82528ddd", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1bae", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1baf", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "68010065f81036801d0b1bae", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1bb0", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1bb1", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1bb2", - "_tpl": "5b7d63cf5acfc4001876c8df", - "parentId": "68010065f81036801d0b1baa", - "slotId": "mod_stock" - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b8ef7481c51328c56d7712", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1bb3", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1bb3", - "_tpl": "5a16b7e1fcdbcb00165aa6c9" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "60b8ef82634af3128020392e", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1bb4", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1bb4", - "_tpl": "5e00c1ad86f774747333222c" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60e71ce009d7c801eb0c0ec6": { - "QuestName": "Special Equipment", - "_id": "60e71ce009d7c801eb0c0ec6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage", - "changeQuestMessageText": "60e71ce009d7c801eb0c0ec6 changeQuestMessageText", - "completePlayerMessage": "60e71ce009d7c801eb0c0ec6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e7434ed1a062318d3d2260", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05300686f7746dce784e5d" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e7436675131b4e61703b7b", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052fb986f7746b2101e909" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e7439975131b4e61703b7c", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05308086f7746b2101e90b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e743cd0367e10a450f780e", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052f6886f7746b1e3db148" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "62a70191a9a0ea77981b57d9", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a0a16d0b9d3c46de5b6e97" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e74302d1a062318d3d225f", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05300686f7746dce784e5d" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e7432875131b4e61703b7a", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052fb986f7746b2101e909" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e7449875131b4e61703b7e", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c05308086f7746b2101e90b" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e744c9d1a062318d3d2262", - "index": 8, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052f6886f7746b1e3db148" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "62a7019ea9a0ea77981b57da", - "index": 9, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a0a16d0b9d3c46de5b6e97" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61014852683d6b506f258f97", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "60e71ccb5688f6424c7bfec4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "6101485ce5b13723fc7609b0", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 60, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71ce009d7c801eb0c0ec6 description", - "failMessageText": "60e71ce009d7c801eb0c0ec6 failMessageText", - "declinePlayerMessage": "60e71ce009d7c801eb0c0ec6 declinePlayerMessage", - "name": "60e71ce009d7c801eb0c0ec6 name", - "note": "60e71ce009d7c801eb0c0ec6 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/60c3752d78280c17952e1e69.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71ce009d7c801eb0c0ec6 startedMessageText", - "successMessageText": "60e71ce009d7c801eb0c0ec6 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 177000, - "id": "60f037c37ad3d529c2430edd", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 7, - "id": "61029599289a8754756b3a97", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1bbc", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1bb6", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bb7", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bb8", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bb9", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bba", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bbb", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bbc", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "610295a4d51ac54f163ffa09", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1bc1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1bbe", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bbf", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bc0", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1bc1", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "61029d37e2795c58325bb361", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1bc3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1bc3", - "_tpl": "59fb023c86f7746d0d4b423c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a1d61fab6bb51044344bf6", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1bc4", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b1bc4", - "_tpl": "5c0a840b86f7742ffa4f2482" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "673f6027352b4da8e00322d2": { - "QuestName": "Inevitable Response", - "_id": "673f6027352b4da8e00322d2", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "673f6027352b4da8e00322d2 acceptPlayerMessage", - "changeQuestMessageText": "673f6027352b4da8e00322d2 changeQuestMessageText", - "completePlayerMessage": "673f6027352b4da8e00322d2 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "673f60919fd5c038018fad01", - "conditions": [ - { - "id": "673f60b64ed13ab4c46ec087", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "673f60ce7d7c2de69e59b4c0", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "673f60910aed589d887b5ea1", - "index": 3, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67499a4f704e6de4dc12ffc9", - "conditions": [ - { - "id": "67499a5b10b22f93dddb6812", - "dynamicLocale": false, - "status": [ - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "67499da4691f7b574de65d62", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "67499a4f03b8295863172dea", - "index": 4, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "67499deda20e67d80d137dd0", - "target": "673f60910aed589d887b5ea1", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67499a61c366bc4acd0dd524", - "conditions": [ - { - "id": "67499a6e93575966145b55ba", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "67499d9d9a2454d9024e721b", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - } - ] - }, - "id": "67499a61ddf14e140a675607", - "index": 5, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [ - { - "id": "67499df440040b25228b768d", - "target": "67499a4f03b8295863172dea", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "673f60844e1132aa8ecd0e94", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "673f5a4976553f78350bdac1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "673f6027352b4da8e00322d2 description", - "failMessageText": "673f6027352b4da8e00322d2 failMessageText", - "declinePlayerMessage": "673f6027352b4da8e00322d2 declinePlayerMessage", - "name": "673f6027352b4da8e00322d2 name", - "note": "673f6027352b4da8e00322d2 note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "any", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "673f6027352b4da8e00322d2 startedMessageText", - "successMessageText": "673f6027352b4da8e00322d2 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15500, - "id": "6758188da1d9d23ba316032a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 82000, - "id": "675818a2334806100922c8d1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1bc6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1bc6", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 82000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "675818a90cde43bc0f9785aa", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "673f348dd3346c21670217e7": { "QuestName": "Shipping Delay - Part 1", "_id": "673f348dd3346c21670217e7", @@ -21852,12 +22051,12 @@ "id": "67580dd7b1da8d5c57f47f9e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bc8", + "target": "6812400b0c5cf2cf75074f4d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1bc8", + "_id": "6812400b0c5cf2cf75074f4d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 57000 @@ -21880,56 +22079,56 @@ "id": "67580e021a333c07bfb0c7ec", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bcf", + "target": "6812400b0c5cf2cf75074f54", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1bcb", + "_id": "6812400b0c5cf2cf75074f50", "_tpl": "6570257cc5d7d4cb4d078579", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bcc", + "_id": "6812400b0c5cf2cf75074f51", "_tpl": "59e77a2386f7742ee578960a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bcb", + "parentId": "6812400b0c5cf2cf75074f50", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bcd", + "_id": "6812400b0c5cf2cf75074f52", "_tpl": "6570257cc5d7d4cb4d078579", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bce", + "_id": "6812400b0c5cf2cf75074f53", "_tpl": "59e77a2386f7742ee578960a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bcd", + "parentId": "6812400b0c5cf2cf75074f52", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bcf", + "_id": "6812400b0c5cf2cf75074f54", "_tpl": "6570257cc5d7d4cb4d078579", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bd0", + "_id": "6812400b0c5cf2cf75074f55", "_tpl": "59e77a2386f7742ee578960a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bcf", + "parentId": "6812400b0c5cf2cf75074f54", "slotId": "cartridges" } ] @@ -21940,56 +22139,56 @@ "id": "67580e1908a265e4646e9548", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bd7", + "target": "6812400b0c5cf2cf75074f5c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1bd3", + "_id": "6812400b0c5cf2cf75074f58", "_tpl": "64898602f09d032aa9399d56", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bd4", + "_id": "6812400b0c5cf2cf75074f59", "_tpl": "61962b617c6c7b169525f168", "upd": { "StackObjectsCount": 30 }, - "parentId": "68010065f81036801d0b1bd3", + "parentId": "6812400b0c5cf2cf75074f58", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bd5", + "_id": "6812400b0c5cf2cf75074f5a", "_tpl": "64898602f09d032aa9399d56", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bd6", + "_id": "6812400b0c5cf2cf75074f5b", "_tpl": "61962b617c6c7b169525f168", "upd": { "StackObjectsCount": 30 }, - "parentId": "68010065f81036801d0b1bd5", + "parentId": "6812400b0c5cf2cf75074f5a", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bd7", + "_id": "6812400b0c5cf2cf75074f5c", "_tpl": "64898602f09d032aa9399d56", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bd8", + "_id": "6812400b0c5cf2cf75074f5d", "_tpl": "61962b617c6c7b169525f168", "upd": { "StackObjectsCount": 30 }, - "parentId": "68010065f81036801d0b1bd7", + "parentId": "6812400b0c5cf2cf75074f5c", "slotId": "cartridges" } ] @@ -22005,6 +22204,750 @@ "arenaLocations": [], "status": 0 }, + "6179b4d1bca27a099552e04e": { + "QuestName": "Revision - Lighthouse", + "_id": "6179b4d1bca27a099552e04e", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6179b4d1bca27a099552e04e acceptPlayerMessage", + "changeQuestMessageText": "6179b4d1bca27a099552e04e changeQuestMessageText", + "completePlayerMessage": "6179b4d1bca27a099552e04e completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "61952308aa0f643f9a0ae20f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_mark_vech1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6195231dd07bdc6de57b40a5", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_mark_vech2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "61952325aa0f643f9a0ae212", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_mark_vech3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6195232a1e972a652931edb6", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_mark_vech4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61ad4e3e6f98b853434714e6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6086c852c945025d41566124", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179b4d1bca27a099552e04e description", + "failMessageText": "6179b4d1bca27a099552e04e failMessageText", + "declinePlayerMessage": "6179b4d1bca27a099552e04e declinePlayerMessage", + "name": "6179b4d1bca27a099552e04e name", + "note": "6179b4d1bca27a099552e04e note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab40a7edd0787ea26a69a6.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179b4d1bca27a099552e04e startedMessageText", + "successMessageText": "6179b4d1bca27a099552e04e successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7800, + "id": "6197a4b8e2372948f80393ea", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "61ad4ec5b1c41a4ac83ca967", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 850, + "id": "61ad4eaa78d2361409060865", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f5f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f5f", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 850 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b7a314343a16d2e04766d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f60", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f60", + "_tpl": "58dd3ad986f77403051cba8f" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "61ad4eea6f98b853434714e7", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f61", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f61", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074f62", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "parentId": "6812400b0c5cf2cf75074f61", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75074f63", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "6812400b0c5cf2cf75074f62", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074f64", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "6812400b0c5cf2cf75074f61", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074f65", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "6812400b0c5cf2cf75074f64", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074f66", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "6812400b0c5cf2cf75074f64", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75074f67", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "6812400b0c5cf2cf75074f61", + "slotId": "mod_magazine" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27ba9586f7741b543d8e85": { + "QuestName": "Spa Tour - Part 6", + "_id": "5a27ba9586f7741b543d8e85", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27ba9586f7741b543d8e85 acceptPlayerMessage", + "changeQuestMessageText": "5a27ba9586f7741b543d8e85 changeQuestMessageText", + "completePlayerMessage": "5a27ba9586f7741b543d8e85 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a28127b86f7743808504ecc", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5696686a4bdc2da3298b456a" + ], + "globalQuestCounterId": "", + "value": 8000, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a726a86f7745b18478f10", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a28120686f77442ef017f51", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a0449d586f77474e66227b7", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a27ba9586f7741b543d8e85 description", + "failMessageText": "5a27ba9586f7741b543d8e85 failMessageText", + "declinePlayerMessage": "5a27ba9586f7741b543d8e85 declinePlayerMessage", + "name": "5a27ba9586f7741b543d8e85 name", + "note": "5a27ba9586f7741b543d8e85 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a27ba9586f7741b543d8e85 startedMessageText", + "successMessageText": "5a27ba9586f7741b543d8e85 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9500, + "id": "60cc6d77a7d63f18200a24cb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60cc6d7b3e4e974efa345d0d", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27b7d686f77460d847e6a6": { + "QuestName": "Scrap Metal", + "_id": "5a27b7d686f77460d847e6a6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27b7d686f77460d847e6a6 acceptPlayerMessage", + "changeQuestMessageText": "5a27b7d686f77460d847e6a6 changeQuestMessageText", + "completePlayerMessage": "5a27b7d686f77460d847e6a6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5a37e8ae86f77415076b401d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_peacemaker_003_N1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5a27fc8186f7746371546243", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_peacemaker_003_N2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5a27fc9686f774675744bb60", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_peacemaker_003_N3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c939d0e86f774185203c4c2", + "conditions": [ + { + "id": "5c939d1886f7741229301dc2", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5c939d2586f774122b6e7852", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c939d0e86f774185203c4c3", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5c9a166586f77438c80164e8", + "target": "5a37e8ae86f77415076b401d", + "conditionType": "CompleteCondition" + }, + { + "id": "5c9a166a86f7741da4659f71", + "target": "5a27fc8186f7746371546243", + "conditionType": "CompleteCondition" + }, + { + "id": "5c9a166f86f7747dbe2da3be", + "target": "5a27fc9686f774675744bb60", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a71c686f7745a9d6892e6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a27f95686f774268504c959", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b7a786f774579c3eb376", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a27b7d686f77460d847e6a6 description", + "failMessageText": "5a27b7d686f77460d847e6a6 failMessageText", + "declinePlayerMessage": "5a27b7d686f77460d847e6a6 declinePlayerMessage", + "name": "5a27b7d686f77460d847e6a6 name", + "note": "5a27b7d686f77460d847e6a6 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5a29221d86f77457303da9fa.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a27b7d686f77460d847e6a6 startedMessageText", + "successMessageText": "5a27b7d686f77460d847e6a6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60cc6963179f8541b8469249", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc69663e4e974efa345d00", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 900, + "id": "60cc696faf2e5506c3782296", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f69", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f69", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 900 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc697d7c496e588343a6b7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f6a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f6a", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75074f6b", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "6812400b0c5cf2cf75074f6a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074f6c", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "6812400b0c5cf2cf75074f6a", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074f6d", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "6812400b0c5cf2cf75074f6c", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074f6e", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6812400b0c5cf2cf75074f6c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074f6f", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "6812400b0c5cf2cf75074f6c", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074f70", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "6812400b0c5cf2cf75074f6c", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074f71", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6812400b0c5cf2cf75074f6a", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cc699198b49270603645b4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074f78", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f74", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f75", + "_tpl": "56d59d3ad2720bdb418b4577", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074f74", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074f76", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f77", + "_tpl": "56d59d3ad2720bdb418b4577", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074f76", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074f78", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074f79", + "_tpl": "56d59d3ad2720bdb418b4577", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75074f78", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5b42250e86f774370c7284a9", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f7a", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f7a", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074f7b", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "6812400b0c5cf2cf75074f7a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074f7c", + "_tpl": "5926f2e086f7745aae644231", + "parentId": "6812400b0c5cf2cf75074f7a", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074f7d", + "_tpl": "5926f34786f77469195bfe92", + "parentId": "6812400b0c5cf2cf75074f7c", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75074f7e", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6812400b0c5cf2cf75074f7c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074f7f", + "_tpl": "5926d40686f7740f152b6b7e", + "parentId": "6812400b0c5cf2cf75074f7c", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074f80", + "_tpl": "5926d33d86f77410de68ebc0", + "parentId": "6812400b0c5cf2cf75074f7c", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074f81", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6812400b0c5cf2cf75074f7a", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "655b82ec1f2b6843ec751fdb", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074f82", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074f82", + "_tpl": "5cc80f8fe4a949033b0224a2" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5c1234c286f77406fa13baeb": { "QuestName": "Setup", "_id": "5c1234c286f77406fa13baeb", @@ -22161,12 +23104,12 @@ "id": "60cb62b32b555f16df5c4161", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bda", + "target": "6812400b0c5cf2cf75074f84", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1bda", + "_id": "6812400b0c5cf2cf75074f84", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -22180,12 +23123,12 @@ "id": "60cb626d77dc197c77424fb8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bdb", + "target": "6812400b0c5cf2cf75074f85", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1bdb", + "_id": "6812400b0c5cf2cf75074f85", "_tpl": "5f2a9575926fd9352339381f", "upd": { "StackObjectsCount": 1, @@ -22196,51 +23139,51 @@ } }, { - "_id": "68010065f81036801d0b1bdc", + "_id": "6812400b0c5cf2cf75074f86", "_tpl": "5b099ac65acfc400186331e1", - "parentId": "68010065f81036801d0b1bdb", + "parentId": "6812400b0c5cf2cf75074f85", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1bdd", + "_id": "6812400b0c5cf2cf75074f87", "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "68010065f81036801d0b1bdb", + "parentId": "6812400b0c5cf2cf75074f85", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1bde", + "_id": "6812400b0c5cf2cf75074f88", "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "68010065f81036801d0b1bdd", + "parentId": "6812400b0c5cf2cf75074f87", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1bdf", + "_id": "6812400b0c5cf2cf75074f89", "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "68010065f81036801d0b1bdb", + "parentId": "6812400b0c5cf2cf75074f85", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1be0", + "_id": "6812400b0c5cf2cf75074f8a", "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "68010065f81036801d0b1bdf", + "parentId": "6812400b0c5cf2cf75074f89", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b1be1", + "_id": "6812400b0c5cf2cf75074f8b", "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "68010065f81036801d0b1bdb", + "parentId": "6812400b0c5cf2cf75074f85", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b1be2", + "_id": "6812400b0c5cf2cf75074f8c", "_tpl": "5c1780312e221602b66cc189", - "parentId": "68010065f81036801d0b1be1", + "parentId": "6812400b0c5cf2cf75074f8b", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1be3", + "_id": "6812400b0c5cf2cf75074f8d", "_tpl": "5c17804b2e2216152006c02f", - "parentId": "68010065f81036801d0b1be1", + "parentId": "6812400b0c5cf2cf75074f8b", "slotId": "mod_sight_front" } ] @@ -22251,111 +23194,111 @@ "id": "63baf3780a8e157c7217438c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bf0", + "target": "6812400b0c5cf2cf75074f9a", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1be7", + "_id": "6812400b0c5cf2cf75074f91", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1be8", + "_id": "6812400b0c5cf2cf75074f92", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1be7", + "parentId": "6812400b0c5cf2cf75074f91", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1be9", + "_id": "6812400b0c5cf2cf75074f93", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1be7", + "parentId": "6812400b0c5cf2cf75074f91", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b1bea", + "_id": "6812400b0c5cf2cf75074f94", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1beb", + "_id": "6812400b0c5cf2cf75074f95", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bea", + "parentId": "6812400b0c5cf2cf75074f94", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bec", + "_id": "6812400b0c5cf2cf75074f96", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1bea", + "parentId": "6812400b0c5cf2cf75074f94", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b1bed", + "_id": "6812400b0c5cf2cf75074f97", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bee", + "_id": "6812400b0c5cf2cf75074f98", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bed", + "parentId": "6812400b0c5cf2cf75074f97", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bef", + "_id": "6812400b0c5cf2cf75074f99", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1bed", + "parentId": "6812400b0c5cf2cf75074f97", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b1bf0", + "_id": "6812400b0c5cf2cf75074f9a", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1bf1", + "_id": "6812400b0c5cf2cf75074f9b", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bf0", + "parentId": "6812400b0c5cf2cf75074f9a", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bf2", + "_id": "6812400b0c5cf2cf75074f9c", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b1bf0", + "parentId": "6812400b0c5cf2cf75074f9a", "slotId": "cartridges", "location": 1 } @@ -22498,12 +23441,12 @@ "id": "5c139cff86f774276b24ae3a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1bf3", + "target": "6812400b0c5cf2cf75074f9d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1bf3", + "_id": "6812400b0c5cf2cf75074f9d", "_tpl": "5aafa857e5b5b00018480968", "upd": { "StackObjectsCount": 1, @@ -22514,96 +23457,96 @@ } }, { - "_id": "68010065f81036801d0b1bf4", + "_id": "6812400b0c5cf2cf75074f9e", "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "68010065f81036801d0b1bf3", + "parentId": "6812400b0c5cf2cf75074f9d", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1bf5", + "_id": "6812400b0c5cf2cf75074f9f", "_tpl": "5a608bf24f39f98ffc77720e", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1bf4", + "parentId": "6812400b0c5cf2cf75074f9e", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1bf6", + "_id": "6812400b0c5cf2cf75074fa0", "_tpl": "5addbf175acfc408fb13965b", - "parentId": "68010065f81036801d0b1bf3", + "parentId": "6812400b0c5cf2cf75074f9d", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1bf7", + "_id": "6812400b0c5cf2cf75074fa1", "_tpl": "5addbfbb5acfc400194dbcf7", - "parentId": "68010065f81036801d0b1bf6", + "parentId": "6812400b0c5cf2cf75074fa0", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b1bf8", + "_id": "6812400b0c5cf2cf75074fa2", "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "68010065f81036801d0b1bf7", + "parentId": "6812400b0c5cf2cf75074fa1", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1bf9", + "_id": "6812400b0c5cf2cf75074fa3", "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "68010065f81036801d0b1bf8", + "parentId": "6812400b0c5cf2cf75074fa2", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1bfa", + "_id": "6812400b0c5cf2cf75074fa4", "_tpl": "58d268fc86f774111273f8c2", - "parentId": "68010065f81036801d0b1bf9", + "parentId": "6812400b0c5cf2cf75074fa3", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1bfb", + "_id": "6812400b0c5cf2cf75074fa5", "_tpl": "626becf9582c3e319310b837", - "parentId": "68010065f81036801d0b1bf6", + "parentId": "6812400b0c5cf2cf75074fa0", "slotId": "mod_tactical" }, { - "_id": "68010065f81036801d0b1bfc", + "_id": "6812400b0c5cf2cf75074fa6", "_tpl": "5addbac75acfc400194dbc56", - "parentId": "68010065f81036801d0b1bf3", + "parentId": "6812400b0c5cf2cf75074f9d", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1bfd", + "_id": "6812400b0c5cf2cf75074fa7", "_tpl": "59bffc1f86f77435b128b872", - "parentId": "68010065f81036801d0b1bfc", + "parentId": "6812400b0c5cf2cf75074fa6", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1bfe", + "_id": "6812400b0c5cf2cf75074fa8", "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "68010065f81036801d0b1bfd", + "parentId": "6812400b0c5cf2cf75074fa7", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1bff", + "_id": "6812400b0c5cf2cf75074fa9", "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "68010065f81036801d0b1bf3", + "parentId": "6812400b0c5cf2cf75074f9d", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1c00", + "_id": "6812400b0c5cf2cf75074faa", "_tpl": "5addbfef5acfc400185c2857", - "parentId": "68010065f81036801d0b1bf3", + "parentId": "6812400b0c5cf2cf75074f9d", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b1c01", + "_id": "6812400b0c5cf2cf75074fab", "_tpl": "57c69dd424597774c03b7bbc", - "parentId": "68010065f81036801d0b1c00", + "parentId": "6812400b0c5cf2cf75074faa", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1c02", + "_id": "6812400b0c5cf2cf75074fac", "_tpl": "617151c1d92c473c770214ab", - "parentId": "68010065f81036801d0b1c01", + "parentId": "6812400b0c5cf2cf75074fab", "slotId": "mod_scope" } ] @@ -22633,12 +23576,12 @@ "id": "64dc9a330fdfde7a3f082da9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c03", + "target": "6812400b0c5cf2cf75074fad", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c03", + "_id": "6812400b0c5cf2cf75074fad", "_tpl": "57838ad32459774a17445cd2", "upd": { "StackObjectsCount": 1, @@ -22649,39 +23592,39 @@ } }, { - "_id": "68010065f81036801d0b1c04", + "_id": "6812400b0c5cf2cf75074fae", "_tpl": "57838f0b2459774a256959b2", - "parentId": "68010065f81036801d0b1c03", + "parentId": "6812400b0c5cf2cf75074fad", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1c05", + "_id": "6812400b0c5cf2cf75074faf", "_tpl": "57838c962459774a1651ec63", - "parentId": "68010065f81036801d0b1c03", + "parentId": "6812400b0c5cf2cf75074fad", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1c06", + "_id": "6812400b0c5cf2cf75074fb0", "_tpl": "57838e1b2459774a256959b1", - "parentId": "68010065f81036801d0b1c05", + "parentId": "6812400b0c5cf2cf75074faf", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1c07", + "_id": "6812400b0c5cf2cf75074fb1", "_tpl": "578395402459774a256959b5", - "parentId": "68010065f81036801d0b1c03", + "parentId": "6812400b0c5cf2cf75074fad", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1c08", + "_id": "6812400b0c5cf2cf75074fb2", "_tpl": "578395e82459774a0e553c7b", - "parentId": "68010065f81036801d0b1c03", + "parentId": "6812400b0c5cf2cf75074fad", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1c09", + "_id": "6812400b0c5cf2cf75074fb3", "_tpl": "6565bb7eb4b12a56eb04b084", - "parentId": "68010065f81036801d0b1c03", + "parentId": "6812400b0c5cf2cf75074fad", "slotId": "mod_handguard" } ] @@ -22692,12 +23635,12 @@ "id": "64b7b1e1c8a5031fd14d5b57", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c16", + "target": "6812400b0c5cf2cf75074fc0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c0c", + "_id": "6812400b0c5cf2cf75074fb6", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22705,16 +23648,16 @@ } }, { - "_id": "68010065f81036801d0b1c0d", + "_id": "6812400b0c5cf2cf75074fb7", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c0c", + "parentId": "6812400b0c5cf2cf75074fb6", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1c0e", + "_id": "6812400b0c5cf2cf75074fb8", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22722,16 +23665,16 @@ } }, { - "_id": "68010065f81036801d0b1c0f", + "_id": "6812400b0c5cf2cf75074fb9", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c0e", + "parentId": "6812400b0c5cf2cf75074fb8", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1c10", + "_id": "6812400b0c5cf2cf75074fba", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22739,16 +23682,16 @@ } }, { - "_id": "68010065f81036801d0b1c11", + "_id": "6812400b0c5cf2cf75074fbb", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c10", + "parentId": "6812400b0c5cf2cf75074fba", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1c12", + "_id": "6812400b0c5cf2cf75074fbc", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22756,16 +23699,16 @@ } }, { - "_id": "68010065f81036801d0b1c13", + "_id": "6812400b0c5cf2cf75074fbd", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c12", + "parentId": "6812400b0c5cf2cf75074fbc", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1c14", + "_id": "6812400b0c5cf2cf75074fbe", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22773,16 +23716,16 @@ } }, { - "_id": "68010065f81036801d0b1c15", + "_id": "6812400b0c5cf2cf75074fbf", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c14", + "parentId": "6812400b0c5cf2cf75074fbe", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1c16", + "_id": "6812400b0c5cf2cf75074fc0", "_tpl": "657025cfbfc87b3a34093253", "upd": { "StackObjectsCount": 1, @@ -22790,12 +23733,12 @@ } }, { - "_id": "68010065f81036801d0b1c17", + "_id": "6812400b0c5cf2cf75074fc1", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1c16", + "parentId": "6812400b0c5cf2cf75074fc0", "slotId": "cartridges" } ] @@ -22806,12 +23749,12 @@ "id": "64b7b1d0cfa71d4afc33fad6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c1a", + "target": "6812400b0c5cf2cf75074fc4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c19", + "_id": "6812400b0c5cf2cf75074fc3", "_tpl": "65118f531b90b4fc77015083", "upd": { "StackObjectsCount": 1, @@ -22819,7 +23762,7 @@ } }, { - "_id": "68010065f81036801d0b1c1a", + "_id": "6812400b0c5cf2cf75074fc4", "_tpl": "65118f531b90b4fc77015083", "upd": { "StackObjectsCount": 1, @@ -22833,25 +23776,25 @@ "id": "655b76f2975a7f3c734661a9", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1c1e", + "target": "6812400b0c5cf2cf75074fc8", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1c1c", + "_id": "6812400b0c5cf2cf75074fc6", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 50 } }, { - "_id": "68010065f81036801d0b1c1d", + "_id": "6812400b0c5cf2cf75074fc7", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 50 } }, { - "_id": "68010065f81036801d0b1c1e", + "_id": "6812400b0c5cf2cf75074fc8", "_tpl": "61962d879bb3d20b0946d385", "upd": { "StackObjectsCount": 50 @@ -22992,18 +23935,18 @@ "id": "655b79377f92d5105c6f7b78", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1c21", + "target": "6812400b0c5cf2cf75074fcb", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1c20", + "_id": "6812400b0c5cf2cf75074fca", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 60 } }, { - "_id": "68010065f81036801d0b1c21", + "_id": "6812400b0c5cf2cf75074fcb", "_tpl": "59e0d99486f7744a32234762", "upd": { "StackObjectsCount": 30 @@ -23042,1486 +23985,6 @@ "arenaLocations": [], "status": 0 }, - "5a27bc1586f7741f6d40fa2f": { - "QuestName": "Wet Job - Part 3", - "_id": "5a27bc1586f7741f6d40fa2f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27bc1586f7741f6d40fa2f acceptPlayerMessage", - "changeQuestMessageText": "5a27bc1586f7741f6d40fa2f changeQuestMessageText", - "completePlayerMessage": "5a27bc1586f7741f6d40fa2f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3baa2586f7745b791b72f9", - "conditions": [ - { - "id": "5a3baa3886f7743c452c8896", - "dynamicLocale": false, - "target": "place_peacemaker_010_3", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3baa2586f7745b791b72fa", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a37db0c86f7745b8f4be689", - "conditions": [ - { - "id": "5a37db4a86f7745cdd0f7a8a", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5a37db5386f7743b3d3fcfdf", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5a37db0c86f7745b8f4be68a", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a60a8aa86f77455b416fb76", - "target": "5a3baa2586f7745b791b72fa", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a72e886f7745b18478f1d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 14, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a28210586f7740a2452494b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27bbf886f774333a418eeb", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27bc1586f7741f6d40fa2f description", - "failMessageText": "5a27bc1586f7741f6d40fa2f failMessageText", - "declinePlayerMessage": "5a27bc1586f7741f6d40fa2f declinePlayerMessage", - "name": "5a27bc1586f7741f6d40fa2f name", - "note": "5a27bc1586f7741f6d40fa2f note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27bc1586f7741f6d40fa2f startedMessageText", - "successMessageText": "5a27bc1586f7741f6d40fa2f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8200, - "id": "60cc702ff09d61072d6d00af", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc7032e3d0247e625dab5c", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1500, - "id": "5a28245e86f77459775b38b2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c23", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c23", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 1500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc704b6a2a1958fc5231f4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c25", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c25", - "_tpl": "5dfe6104585a0c3e995c7b82", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b90dac79848521a743acd4", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1c26", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1c26", - "_tpl": "5bb2475ed4351e00853264e3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1c27", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "68010065f81036801d0b1c26", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1c28", - "_tpl": "5c05413a0db834001c390617", - "parentId": "68010065f81036801d0b1c26", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1c29", - "_tpl": "5bb20d53d4351e4502010a69", - "parentId": "68010065f81036801d0b1c26", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1c2a", - "_tpl": "5bb20d9cd4351e00334c9d8a", - "parentId": "68010065f81036801d0b1c29", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1c2b", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "68010065f81036801d0b1c2a", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1c2c", - "_tpl": "5bb20dcad4351e3bac1212da", - "parentId": "68010065f81036801d0b1c2a", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1c2d", - "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "68010065f81036801d0b1c29", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1c2e", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "68010065f81036801d0b1c29", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1c2f", - "_tpl": "5bb20e58d4351e00320205d7", - "parentId": "68010065f81036801d0b1c26", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1c30", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "68010065f81036801d0b1c2f", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b1c31", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "68010065f81036801d0b1c26", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5936da9e86f7742d65037edf": { - "QuestName": "Background Check", - "_id": "5936da9e86f7742d65037edf", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5936da9e86f7742d65037edf acceptPlayerMessage", - "changeQuestMessageText": "5936da9e86f7742d65037edf changeQuestMessageText", - "completePlayerMessage": "5936da9e86f7742d65037edf completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5968ec9986f7741ddd6c1012", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5937fd0086f7742bf33fc198" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5967920f86f77468d219d632", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5937fd0086f7742bf33fc198" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a5778c986f7740ad83cd652", - "target": "5968ec9986f7741ddd6c1012", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5975de1f86f7744ca53b7c82", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "5968ec9986f7741ddd6c1012", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5937ee6486f77408994ba448" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "658471c42a07aacbef54d5f5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "657315e1dccd301f1301416a", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "59a9269486f7747aab09a77c", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 2, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5936da9e86f7742d65037edf description", - "failMessageText": "5936da9e86f7742d65037edf failMessageText", - "declinePlayerMessage": "5936da9e86f7742d65037edf declinePlayerMessage", - "name": "5936da9e86f7742d65037edf name", - "note": "5936da9e86f7742d65037edf note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/59c26dd986f77427033c3e83.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5936da9e86f7742d65037edf startedMessageText", - "successMessageText": "5936da9e86f7742d65037edf successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 1800, - "id": "60c8a6318dfbfc09882efd1e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60dc294fc9aa3c36c947f736", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 15000, - "id": "60d08f11401d874962160b0f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c33", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c33", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 15000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb46c9f09d61072d6cf21b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c34", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c34", - "_tpl": "574d967124597745970e7c94", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1c35", - "_tpl": "574dad8024597745964bf05c", - "parentId": "68010065f81036801d0b1c34", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1c36", - "_tpl": "634f02331f9f536910079b51", - "parentId": "68010065f81036801d0b1c34", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1c37", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "68010065f81036801d0b1c36", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b1c38", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "68010065f81036801d0b1c37", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1c39", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "68010065f81036801d0b1c38", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b1c3a", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "68010065f81036801d0b1c37", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1c3b", - "_tpl": "587df3a12459772c28142567", - "parentId": "68010065f81036801d0b1c34", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1c3c", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "68010065f81036801d0b1c34", - "slotId": "mod_reciever" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cb46de6a2a1958fc522cb5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c43", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c3f", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c40", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1c3f", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c41", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c42", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1c41", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c43", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c44", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1c43", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63966ff54c3ef01b6f3ffad8": { - "QuestName": "Provocation", - "_id": "63966ff54c3ef01b6f3ffad8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63966ff54c3ef01b6f3ffad8 acceptPlayerMessage", - "changeQuestMessageText": "63966ff54c3ef01b6f3ffad8 changeQuestMessageText", - "completePlayerMessage": "63966ff54c3ef01b6f3ffad8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639a76e3e4aa7349085cb6e4", - "conditions": [ - { - "id": "639a76ebdbf1d842d260cda5", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [ - "5cadfbf7ae92152ac412eeef" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "639a77086402c537c15d012e", - "dynamicLocale": false, - "zoneIds": [ - "quest_zone_keeper6_kiba_kill" - ], - "conditionType": "InZone" - } - ] - }, - "id": "639a76e3e4aa7349085cb6e3", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639a77b97cb1a8023d49f683", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 25, - "zoneId": "quest_zone_keeper6_kiba_hide", - "target": [ - "635a758bfefc88a93f021b8a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639a794be4aa7349085cb6e5", - "target": "639a76e3e4aa7349085cb6e3", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639a78046402c537c15d012f", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 25, - "zoneId": "quest_zone_keeper6_safe_hide", - "target": [ - "5d1b376e86f774252519444e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639a7952e4aa7349085cb6e6", - "target": "639a76e3e4aa7349085cb6e3", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639a78c27cb1a8023d49f684", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 25, - "zoneId": "quest_zone_keeper6_cont_hide", - "target": [ - "5c13cef886f774072e618e82" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639a795d6402c537c15d0130", - "target": "639a76e3e4aa7349085cb6e3", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639a79785e3c9b787264d673", - "conditions": [ - { - "id": "639a7986da859817035a33d5", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "639a79967cb1a8023d49f685", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "id": "639a79785e3c9b787264d672", - "index": 4, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639a79a93174277743234bb0", - "target": "639a77b97cb1a8023d49f683", - "conditionType": "CompleteCondition" - }, - { - "id": "639a79b0e4aa7349085cb6e7", - "target": "639a78046402c537c15d012f", - "conditionType": "CompleteCondition" - }, - { - "id": "639a79b63174277743234bb1", - "target": "639a78c27cb1a8023d49f684", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "639afd1e5b201a534f438041", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63966fd9ea19ac7ed845db30", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 36000, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "63966ff54c3ef01b6f3ffad8 description", - "failMessageText": "63966ff54c3ef01b6f3ffad8 failMessageText", - "declinePlayerMessage": "63966ff54c3ef01b6f3ffad8 declinePlayerMessage", - "name": "63966ff54c3ef01b6f3ffad8 name", - "note": "63966ff54c3ef01b6f3ffad8 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "63966ff54c3ef01b6f3ffad8 startedMessageText", - "successMessageText": "63966ff54c3ef01b6f3ffad8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "63a23649fcae11642e50f9ca", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c46", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c46", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66422de2ecb13e080d43ec57", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c48", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c48", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a234f0151bfb591645c105", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b1c4a", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b1c4a", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "63a6cebf08f1f30563550381", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6179b4d1bca27a099552e04e": { - "QuestName": "Revision - Lighthouse", - "_id": "6179b4d1bca27a099552e04e", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179b4d1bca27a099552e04e acceptPlayerMessage", - "changeQuestMessageText": "6179b4d1bca27a099552e04e changeQuestMessageText", - "completePlayerMessage": "6179b4d1bca27a099552e04e completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "61952308aa0f643f9a0ae20f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_mark_vech1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6195231dd07bdc6de57b40a5", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_mark_vech2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "61952325aa0f643f9a0ae212", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_mark_vech3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6195232a1e972a652931edb6", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_mark_vech4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61ad4e3e6f98b853434714e6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6086c852c945025d41566124", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6179b4d1bca27a099552e04e description", - "failMessageText": "6179b4d1bca27a099552e04e failMessageText", - "declinePlayerMessage": "6179b4d1bca27a099552e04e declinePlayerMessage", - "name": "6179b4d1bca27a099552e04e name", - "note": "6179b4d1bca27a099552e04e note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab40a7edd0787ea26a69a6.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6179b4d1bca27a099552e04e startedMessageText", - "successMessageText": "6179b4d1bca27a099552e04e successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 7800, - "id": "6197a4b8e2372948f80393ea", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "61ad4ec5b1c41a4ac83ca967", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 850, - "id": "61ad4eaa78d2361409060865", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c4c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c4c", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 850 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b7a314343a16d2e04766d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1c4d", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b1c4d", - "_tpl": "58dd3ad986f77403051cba8f" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "61ad4eea6f98b853434714e7", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1c4e", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1c4e", - "_tpl": "5d67abc1a4b93614ec50137f", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1c4f", - "_tpl": "5d3eb59ea4b9361c284bb4b2", - "parentId": "68010065f81036801d0b1c4e", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1c50", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "68010065f81036801d0b1c4f", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1c51", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "68010065f81036801d0b1c4e", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1c52", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "68010065f81036801d0b1c51", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1c53", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "68010065f81036801d0b1c51", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b1c54", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "68010065f81036801d0b1c4e", - "slotId": "mod_magazine" - } - ], - "loyaltyLevel": 2, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a27ba9586f7741b543d8e85": { - "QuestName": "Spa Tour - Part 6", - "_id": "5a27ba9586f7741b543d8e85", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27ba9586f7741b543d8e85 acceptPlayerMessage", - "changeQuestMessageText": "5a27ba9586f7741b543d8e85 changeQuestMessageText", - "completePlayerMessage": "5a27ba9586f7741b543d8e85 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a28127b86f7743808504ecc", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5696686a4bdc2da3298b456a" - ], - "globalQuestCounterId": "", - "value": 8000, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a726a86f7745b18478f10", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a28120686f77442ef017f51", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a0449d586f77474e66227b7", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27ba9586f7741b543d8e85 description", - "failMessageText": "5a27ba9586f7741b543d8e85 failMessageText", - "declinePlayerMessage": "5a27ba9586f7741b543d8e85 declinePlayerMessage", - "name": "5a27ba9586f7741b543d8e85 name", - "note": "5a27ba9586f7741b543d8e85 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", - "type": "Loyalty", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27ba9586f7741b543d8e85 startedMessageText", - "successMessageText": "5a27ba9586f7741b543d8e85 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9500, - "id": "60cc6d77a7d63f18200a24cb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60cc6d7b3e4e974efa345d0d", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639872fe8871e1272b10ccf6": { - "QuestName": "Gunsmith - Part 14", - "_id": "639872fe8871e1272b10ccf6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639872fe8871e1272b10ccf6 acceptPlayerMessage", - "changeQuestMessageText": "639872fe8871e1272b10ccf6 changeQuestMessageText", - "completePlayerMessage": "639872fe8871e1272b10ccf6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "639879addecada40426d3449", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5bb2475ed4351e00853264e3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 80.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 300.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 60.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 30, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 300.0, - "compareMethod": "<=" - }, - "weight": { - "value": 4.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5ea17bbc09aa976f2e7a51cd", - "5fce0cf655375d18a253eff0", - "558022b54bdc2dac148b458d", - "5d15cf3bd7ad1a67e71518b2", - "5947eab886f77475961d96c5", - "5c06595c0db834001a66af6c" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "6399b45205aa481907106508", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 27, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "639af496ad9d7e3216668f66", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac244c486f77413e12cf945", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639872fe8871e1272b10ccf6 description", - "failMessageText": "639872fe8871e1272b10ccf6 failMessageText", - "declinePlayerMessage": "639872fe8871e1272b10ccf6 declinePlayerMessage", - "name": "639872fe8871e1272b10ccf6 name", - "note": "639872fe8871e1272b10ccf6 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/63aae9613606f31cf40e5a7b.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639872fe8871e1272b10ccf6 startedMessageText", - "successMessageText": "639872fe8871e1272b10ccf6 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 14900, - "id": "6399b46cdecada40426d344c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6399b478cd51826f7a069b8b", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 500, - "id": "6399b48f2b86ca1db02497f7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c56", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c56", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6399b4cec8f8cc12a47b02aa", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c58", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c58", - "_tpl": "609bab8b455afd752b2e6138", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6399b4d7e5163c24b3029357", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c5c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c5a", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c5b", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c5c", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19caf5032c67f050dd95f", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1c5d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1c5d", - "_tpl": "5d44069ca4b9361ebd26fc37" - } - ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5d6fbc2886f77449d825f9d3": { "QuestName": "Mentor", "_id": "5d6fbc2886f77449d825f9d3", @@ -24790,12 +24253,12 @@ "id": "59c1296686f77415077de0d9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c62", + "target": "6812400b0c5cf2cf75074fd0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c5f", + "_id": "6812400b0c5cf2cf75074fcd", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -24803,7 +24266,7 @@ } }, { - "_id": "68010065f81036801d0b1c60", + "_id": "6812400b0c5cf2cf75074fce", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -24811,7 +24274,7 @@ } }, { - "_id": "68010065f81036801d0b1c61", + "_id": "6812400b0c5cf2cf75074fcf", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -24819,7 +24282,7 @@ } }, { - "_id": "68010065f81036801d0b1c62", + "_id": "6812400b0c5cf2cf75074fd0", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -24853,12 +24316,12 @@ "id": "5fe3063764942071c54bc12b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c64", + "target": "6812400b0c5cf2cf75074fd2", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1c64", + "_id": "6812400b0c5cf2cf75074fd2", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 30000 @@ -24872,12 +24335,12 @@ "id": "60cb47d3e3d0247e625da16f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c67", + "target": "6812400b0c5cf2cf75074fd5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c66", + "_id": "6812400b0c5cf2cf75074fd4", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -24885,7 +24348,7 @@ } }, { - "_id": "68010065f81036801d0b1c67", + "_id": "6812400b0c5cf2cf75074fd5", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -24899,23 +24362,23 @@ "id": "63a19f65d6d4651e53602aed", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1c68", + "target": "6812400b0c5cf2cf75074fd6", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1c68", + "_id": "6812400b0c5cf2cf75074fd6", "_tpl": "57f4c844245977379d5c14d1" }, { - "_id": "68010065f81036801d0b1c69", + "_id": "6812400b0c5cf2cf75074fd7", "_tpl": "57d152ec245977144076ccdf", - "parentId": "68010065f81036801d0b1c68", + "parentId": "6812400b0c5cf2cf75074fd6", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1c6a", + "_id": "6812400b0c5cf2cf75074fd8", "_tpl": "57d1519e24597714373db79d", - "parentId": "68010065f81036801d0b1c68", + "parentId": "6812400b0c5cf2cf75074fd6", "slotId": "mod_magazine" } ], @@ -24942,34 +24405,503 @@ "arenaLocations": [], "status": 0 }, - "6089736efa70fc097863b8f6": { - "QuestName": "Back Door", - "_id": "6089736efa70fc097863b8f6", + "5eda19f0edce541157209cee": { + "QuestName": "Anesthesia", + "_id": "5eda19f0edce541157209cee", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6089736efa70fc097863b8f6 acceptPlayerMessage", - "changeQuestMessageText": "6089736efa70fc097863b8f6 changeQuestMessageText", - "completePlayerMessage": "6089736efa70fc097863b8f6 completePlayerMessage", + "acceptPlayerMessage": "5eda19f0edce541157209cee acceptPlayerMessage", + "changeQuestMessageText": "5eda19f0edce541157209cee changeQuestMessageText", + "completePlayerMessage": "5eda19f0edce541157209cee completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5eda1d6ec586607c09662d54", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "prapor_022_area_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5eda1da9a58a4c49c74165ee", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "prapor_022_area_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5eda1dd3317f6066993c1744", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "prapor_022_area_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5f0389268580cc37797e0025", + "conditions": [ + { + "id": "5f03899abb4e27377c090cdc", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5f0389b036cb1c7f496f9942", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5f0389268580cc37797e0026", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5f06e52d4ab52901d036b505", + "target": "5eda1d6ec586607c09662d54", + "conditionType": "CompleteCondition" + }, + { + "id": "5f06e532d57aeb6e0925300c", + "target": "5eda1da9a58a4c49c74165ee", + "conditionType": "CompleteCondition" + }, + { + "id": "5f06e536fdc0320a0850e310", + "target": "5eda1dd3317f6066993c1744", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5f1049d7aa82db0e8f75cb7b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5967725e86f774601a446662", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "5eda1a67ef0ad2643e73af31", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 21, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5eda19f0edce541157209cee description", + "failMessageText": "5eda19f0edce541157209cee failMessageText", + "declinePlayerMessage": "5eda19f0edce541157209cee declinePlayerMessage", + "name": "5eda19f0edce541157209cee name", + "note": "5eda19f0edce541157209cee note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5f0f202de269d61a4b5cf6ec.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5eda19f0edce541157209cee startedMessageText", + "successMessageText": "5eda19f0edce541157209cee successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18100, + "id": "60c8a4e483161b326c471106", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8a4d7919c14709f49738d", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "5eda1b27ed4d216c284f5522", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074fda", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074fda", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5f0dc03de1176c3119660cd7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074fdb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074fdb", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75074fdc", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75074fdd", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "6812400b0c5cf2cf75074fdc", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75074fde", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75074fdf", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75074fe0", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75074fe1", + "_tpl": "57c450252459772d28133253", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75074fe2", + "_tpl": "651178336cad06c37c049eb4", + "parentId": "6812400b0c5cf2cf75074fdb", + "slotId": "mod_handguard" + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "5f0dc05a8199b37bf4752c23", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074fed", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074fe5", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074fe6", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074fe5", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074fe7", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074fe8", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074fe7", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074fe9", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074fea", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074fe9", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074feb", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074fec", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074feb", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074fed", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074fee", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074fed", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "5f0dc06c0553f172ce0a1ff4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75074ff9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75074ff1", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ff2", + "_tpl": "57a0e5022459774d1673f889", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074ff1", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074ff3", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ff4", + "_tpl": "57a0e5022459774d1673f889", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074ff3", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074ff5", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ff6", + "_tpl": "57a0e5022459774d1673f889", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074ff5", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074ff7", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ff8", + "_tpl": "57a0e5022459774d1673f889", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074ff7", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75074ff9", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75074ffa", + "_tpl": "57a0e5022459774d1673f889", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75074ff9", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27bc1586f7741f6d40fa2f": { + "QuestName": "Wet Job - Part 3", + "_id": "5a27bc1586f7741f6d40fa2f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27bc1586f7741f6d40fa2f acceptPlayerMessage", + "changeQuestMessageText": "5a27bc1586f7741f6d40fa2f changeQuestMessageText", + "completePlayerMessage": "5a27bc1586f7741f6d40fa2f completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "608a94101a66564e74191fc2", + "id": "5a3baa2586f7745b791b72f9", "conditions": [ { - "id": "609a3458eca522371e5725eb", + "id": "5a3baa3886f7743c452c8896", "dynamicLocale": false, - "target": "mechanik_exit_area_1", + "target": "place_peacemaker_010_3", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "608a94101a66564e74191fc3", - "index": 0, + "id": "5a3baa2586f7745b791b72fa", + "index": 1, "parentId": "", - "oneSessionOnly": true, + "oneSessionOnly": false, "dynamicLocale": false, "type": "Exploration", "doNotResetIfCounterCompleted": false, @@ -24983,39 +24915,40 @@ "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "608a94ae1a66564e74191fc5", + "id": "5a37db0c86f7745b8f4be689", "conditions": [ { - "id": "608aaf121124f748c94b8064", + "id": "5a37db4a86f7745cdd0f7a8a", "dynamicLocale": false, - "status": [ - "Survived" + "target": [ + "Shoreline" ], - "conditionType": "ExitStatus" + "conditionType": "Location" }, { - "id": "608aaf1a59b92115597ad78b", + "id": "5a37db5386f7743b3d3fcfdf", "dynamicLocale": false, - "zoneIds": [ - "mechanik_exit_area_1" + "status": [ + "Survived", + "Runner" ], - "conditionType": "InZone" + "conditionType": "ExitStatus" } ] }, - "id": "608a94ae1a66564e74191fc6", - "index": 1, + "id": "5a37db0c86f7745b8f4be68a", + "index": 2, "parentId": "", - "oneSessionOnly": true, + "oneSessionOnly": false, "dynamicLocale": false, "type": "Completion", - "doNotResetIfCounterCompleted": true, + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "609a345d34103b660e791a31", - "target": "608a94101a66564e74191fc3", + "id": "5a60a8aa86f77455b416fb76", + "target": "5a3baa2586f7745b791b72fa", "conditionType": "CompleteCondition" } ], @@ -25026,7 +24959,7 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "60bf7353bf90bf6b431e8964", + "id": "5a3a72e886f7745b18478f1d", "index": 0, "parentId": "", "dynamicLocale": false, @@ -25037,11 +24970,11 @@ }, { "conditionType": "Quest", - "id": "60bf734bb73d016d6838ad86", + "id": "5a28210586f7740a2452494b", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac3477486f7741d651d6885", + "target": "5a27bbf886f774333a418eeb", "status": [ 4 ], @@ -25053,56 +24986,56 @@ ], "Fail": [] }, - "description": "6089736efa70fc097863b8f6 description", - "failMessageText": "6089736efa70fc097863b8f6 failMessageText", - "declinePlayerMessage": "6089736efa70fc097863b8f6 declinePlayerMessage", - "name": "6089736efa70fc097863b8f6 name", - "note": "6089736efa70fc097863b8f6 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", - "type": "Completion", + "description": "5a27bc1586f7741f6d40fa2f description", + "failMessageText": "5a27bc1586f7741f6d40fa2f failMessageText", + "declinePlayerMessage": "5a27bc1586f7741f6d40fa2f declinePlayerMessage", + "name": "5a27bc1586f7741f6d40fa2f name", + "note": "5a27bc1586f7741f6d40fa2f note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5967532b86f77461fb2f333a.jpg", + "type": "Exploration", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6089736efa70fc097863b8f6 startedMessageText", - "successMessageText": "6089736efa70fc097863b8f6 successMessageText", + "startedMessageText": "5a27bc1586f7741f6d40fa2f startedMessageText", + "successMessageText": "5a27bc1586f7741f6d40fa2f successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], "value": 8200, - "id": "60bf704c81c6e80e702ccc0a", + "id": "60cc702ff09d61072d6d00af", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60bf7058b73d016d6838ad82", + "value": 0.03, + "id": "60cc7032e3d0247e625dab5c", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5935c25fb3acc3127c3d8cd9", "unknown": false }, { "availableInGameEditions": [], - "value": 1000, - "id": "60bf70bb81c6e80e702ccc0b", + "value": 1500, + "id": "5a28245e86f77459775b38b2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c6c", + "target": "6812400b0c5cf2cf75074ffc", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1c6c", - "_tpl": "569668774bdc2da2298b4568", + "_id": "6812400b0c5cf2cf75074ffc", + "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 1000 + "StackObjectsCount": 1500 } } ] @@ -25110,58 +25043,412 @@ { "availableInGameEditions": [], "value": 1, - "id": "60bf70ac9903f107aa251f36", + "id": "60cc704b6a2a1958fc5231f4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c6d", - "unknown": true, + "target": "6812400b0c5cf2cf75074ffe", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c6d", - "_tpl": "55801eed4bdc2d89578b4588", + "_id": "6812400b0c5cf2cf75074ffe", + "_tpl": "5dfe6104585a0c3e995c7b82", "upd": { "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b90dac79848521a743acd4", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75074fff", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75074fff", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { "FireMode": { "FireMode": "single" } } }, { - "_id": "68010065f81036801d0b1c6e", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "68010065f81036801d0b1c6d", + "_id": "6812400b0c5cf2cf75075000", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "6812400b0c5cf2cf75074fff", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075001", + "_tpl": "5c05413a0db834001c390617", + "parentId": "6812400b0c5cf2cf75074fff", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1c6f", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "68010065f81036801d0b1c6d", - "slotId": "mod_sight_rear" + "_id": "6812400b0c5cf2cf75075002", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "6812400b0c5cf2cf75074fff", + "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1c70", - "_tpl": "56083eab4bdc2d26448b456a", - "parentId": "68010065f81036801d0b1c6d", - "slotId": "mod_tactical" + "_id": "6812400b0c5cf2cf75075003", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "parentId": "6812400b0c5cf2cf75075002", + "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1c71", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "68010065f81036801d0b1c6d", + "_id": "6812400b0c5cf2cf75075004", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6812400b0c5cf2cf75075003", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1c72", - "_tpl": "61faa91878830f069b6b7967", - "parentId": "68010065f81036801d0b1c6d", + "_id": "6812400b0c5cf2cf75075005", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "6812400b0c5cf2cf75075003", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075006", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "6812400b0c5cf2cf75075002", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75075007", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "6812400b0c5cf2cf75075002", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075008", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "6812400b0c5cf2cf75074fff", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1c73", - "_tpl": "56ea8222d2720b69698b4567", - "parentId": "68010065f81036801d0b1c72", - "slotId": "mod_bipod" + "_id": "6812400b0c5cf2cf75075009", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "6812400b0c5cf2cf75075008", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf7507500a", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "6812400b0c5cf2cf75074fff", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 3, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5936da9e86f7742d65037edf": { + "QuestName": "Background Check", + "_id": "5936da9e86f7742d65037edf", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5936da9e86f7742d65037edf acceptPlayerMessage", + "changeQuestMessageText": "5936da9e86f7742d65037edf changeQuestMessageText", + "completePlayerMessage": "5936da9e86f7742d65037edf completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5968ec9986f7741ddd6c1012", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5937fd0086f7742bf33fc198" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5967920f86f77468d219d632", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5937fd0086f7742bf33fc198" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a5778c986f7740ad83cd652", + "target": "5968ec9986f7741ddd6c1012", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5975de1f86f7744ca53b7c82", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "5968ec9986f7741ddd6c1012", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5937ee6486f77408994ba448" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "658471c42a07aacbef54d5f5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "657315e1dccd301f1301416a", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "59a9269486f7747aab09a77c", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 2, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5936da9e86f7742d65037edf description", + "failMessageText": "5936da9e86f7742d65037edf failMessageText", + "declinePlayerMessage": "5936da9e86f7742d65037edf declinePlayerMessage", + "name": "5936da9e86f7742d65037edf name", + "note": "5936da9e86f7742d65037edf note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/59c26dd986f77427033c3e83.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5936da9e86f7742d65037edf startedMessageText", + "successMessageText": "5936da9e86f7742d65037edf successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 1800, + "id": "60c8a6318dfbfc09882efd1e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60dc294fc9aa3c36c947f736", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 15000, + "id": "60d08f11401d874962160b0f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507500c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507500c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 15000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb46c9f09d61072d6cf21b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507500d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507500d", + "_tpl": "574d967124597745970e7c94", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf7507500e", + "_tpl": "574dad8024597745964bf05c", + "parentId": "6812400b0c5cf2cf7507500d", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507500f", + "_tpl": "634f02331f9f536910079b51", + "parentId": "6812400b0c5cf2cf7507500d", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75075010", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "6812400b0c5cf2cf7507500f", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400b0c5cf2cf75075011", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "6812400b0c5cf2cf75075010", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075012", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "6812400b0c5cf2cf75075011", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400b0c5cf2cf75075013", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "6812400b0c5cf2cf75075010", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075014", + "_tpl": "587df3a12459772c28142567", + "parentId": "6812400b0c5cf2cf7507500d", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075015", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "6812400b0c5cf2cf7507500d", + "slotId": "mod_reciever" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb46de6a2a1958fc522cb5", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507501c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075018", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075019", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75075018", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507501a", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507501b", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507501a", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507501c", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507501d", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507501c", + "slotId": "cartridges" } ] } @@ -25176,70 +25463,176 @@ "arenaLocations": [], "status": 0 }, - "5a27b9de86f77464e5044585": { - "QuestName": "The Cult - Part 1", - "_id": "5a27b9de86f77464e5044585", + "63966ff54c3ef01b6f3ffad8": { + "QuestName": "Provocation", + "_id": "63966ff54c3ef01b6f3ffad8", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27b9de86f77464e5044585 acceptPlayerMessage", - "changeQuestMessageText": "5a27b9de86f77464e5044585 changeQuestMessageText", - "completePlayerMessage": "5a27b9de86f77464e5044585 completePlayerMessage", + "acceptPlayerMessage": "63966ff54c3ef01b6f3ffad8 acceptPlayerMessage", + "changeQuestMessageText": "63966ff54c3ef01b6f3ffad8 changeQuestMessageText", + "completePlayerMessage": "63966ff54c3ef01b6f3ffad8 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5a3ba51d86f7743af1475c39", + "id": "639a76e3e4aa7349085cb6e4", "conditions": [ { - "id": "5a3ba52586f77464d01fd619", + "id": "639a76ebdbf1d842d260cda5", "dynamicLocale": false, - "target": "place_peacemaker_007_1_N1", - "value": 1, - "conditionType": "VisitPlace" + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "5cadfbf7ae92152ac412eeef" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "639a77086402c537c15d012e", + "dynamicLocale": false, + "zoneIds": [ + "quest_zone_keeper6_kiba_kill" + ], + "conditionType": "InZone" } ] }, - "id": "5a3ba51d86f7743af1475c3a", + "id": "639a76e3e4aa7349085cb6e3", "index": 0, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 20, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639a77b97cb1a8023d49f683", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 25, + "zoneId": "quest_zone_keeper6_kiba_hide", + "target": [ + "635a758bfefc88a93f021b8a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "639a794be4aa7349085cb6e5", + "target": "639a76e3e4aa7349085cb6e3", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639a78046402c537c15d012f", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 25, + "zoneId": "quest_zone_keeper6_safe_hide", + "target": [ + "5d1b376e86f774252519444e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "639a7952e4aa7349085cb6e6", + "target": "639a76e3e4aa7349085cb6e3", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639a78c27cb1a8023d49f684", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 25, + "zoneId": "quest_zone_keeper6_cont_hide", + "target": [ + "5c13cef886f774072e618e82" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "639a795d6402c537c15d0130", + "target": "639a76e3e4aa7349085cb6e3", + "conditionType": "CompleteCondition" + } + ] + }, { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5a28051286f7740eb10bac03", + "id": "639a79785e3c9b787264d673", "conditions": [ { - "id": "5a28054586f7740f9e121614", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5a2eb6e586f7747063190763", + "id": "639a7986da859817035a33d5", "dynamicLocale": false, "status": [ - "Survived", - "Runner" + "Survived" ], "conditionType": "ExitStatus" + }, + { + "id": "639a79967cb1a8023d49f685", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" } ] }, - "id": "5a28051286f7740eb10bac04", - "index": 1, + "id": "639a79785e3c9b787264d672", + "index": 4, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, @@ -25249,8 +25642,18 @@ "value": 1, "visibilityConditions": [ { - "id": "5a60a9aa86f77455b64814e2", - "target": "5a3ba51d86f7743af1475c3a", + "id": "639a79a93174277743234bb0", + "target": "639a77b97cb1a8023d49f683", + "conditionType": "CompleteCondition" + }, + { + "id": "639a79b0e4aa7349085cb6e7", + "target": "639a78046402c537c15d012f", + "conditionType": "CompleteCondition" + }, + { + "id": "639a79b63174277743234bb1", + "target": "639a78c27cb1a8023d49f684", "conditionType": "CompleteCondition" } ], @@ -25259,139 +25662,110 @@ } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a71f786f7745b18478ef9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5a28035486f77450e46b45f1", + "id": "639afd1e5b201a534f438041", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27b87686f77460de0252a8", + "target": "63966fd9ea19ac7ed845db30", "status": [ 4 ], "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63aac6b6160cc610ba00a579", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5a27d2af86f7744e1115b323", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, + "availableAfter": 36000, "dispersion": 0, "visibilityConditions": [] } ], "Fail": [] }, - "description": "5a27b9de86f77464e5044585 description", - "failMessageText": "5a27b9de86f77464e5044585 failMessageText", - "declinePlayerMessage": "5a27b9de86f77464e5044585 declinePlayerMessage", - "name": "5a27b9de86f77464e5044585 name", - "note": "5a27b9de86f77464e5044585 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5a29222486f77456f50d09e7.jpg", - "type": "Exploration", + "description": "63966ff54c3ef01b6f3ffad8 description", + "failMessageText": "63966ff54c3ef01b6f3ffad8 failMessageText", + "declinePlayerMessage": "63966ff54c3ef01b6f3ffad8 declinePlayerMessage", + "name": "63966ff54c3ef01b6f3ffad8 name", + "note": "63966ff54c3ef01b6f3ffad8 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5a27b9de86f77464e5044585 startedMessageText", - "successMessageText": "5a27b9de86f77464e5044585 successMessageText", + "startedMessageText": "63966ff54c3ef01b6f3ffad8 startedMessageText", + "successMessageText": "63966ff54c3ef01b6f3ffad8 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 6200, - "id": "60cc6af777dc197c774254a6", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc6afbaf2e5506c378229a", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 700, - "id": "5a2803a286f774528903e08e", + "value": 1, + "id": "63a23649fcae11642e50f9ca", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c75", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c75", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 700 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5a2803c386f7740e44081674", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c79", + "target": "6812400b0c5cf2cf7507501f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c77", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c78", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c79", - "_tpl": "5734758f24597738025ee253", + "_id": "6812400b0c5cf2cf7507501f", + "_tpl": "5c05308086f7746b2101e90b", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66422de2ecb13e080d43ec57", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075021", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075021", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a234f0151bfb591645c105", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75075023", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075023", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "63a6cebf08f1f30563550381", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false } ], "Fail": [] @@ -25404,23 +25778,23 @@ "arenaLocations": [], "status": 0 }, - "5a27b7d686f77460d847e6a6": { - "QuestName": "Scrap Metal", - "_id": "5a27b7d686f77460d847e6a6", + "5a27b7a786f774579c3eb376": { + "QuestName": "Tigr Safari", + "_id": "5a27b7a786f774579c3eb376", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27b7d686f77460d847e6a6 acceptPlayerMessage", - "changeQuestMessageText": "5a27b7d686f77460d847e6a6 changeQuestMessageText", - "completePlayerMessage": "5a27b7d686f77460d847e6a6 completePlayerMessage", + "acceptPlayerMessage": "5a27b7a786f774579c3eb376 acceptPlayerMessage", + "changeQuestMessageText": "5a27b7a786f774579c3eb376 changeQuestMessageText", + "completePlayerMessage": "5a27b7a786f774579c3eb376 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "PlaceBeacon", - "id": "5a37e8ae86f77415076b401d", + "id": "66698a9eddc21e9441645819", "index": 0, "parentId": "", "dynamicLocale": false, "plantTime": 30, - "zoneId": "place_peacemaker_003_N1", + "zoneId": "place_peacemaker_002_N1", "target": [ "5991b51486f77447b112d44f" ], @@ -25430,12 +25804,12 @@ }, { "conditionType": "PlaceBeacon", - "id": "5a27fc8186f7746371546243", + "id": "5a27e75886f7740aef4a9157", "index": 1, "parentId": "", "dynamicLocale": false, "plantTime": 30, - "zoneId": "place_peacemaker_003_N2", + "zoneId": "place_peacemaker_002_N2", "target": [ "5991b51486f77447b112d44f" ], @@ -25445,12 +25819,12 @@ }, { "conditionType": "PlaceBeacon", - "id": "5a27fc9686f774675744bb60", + "id": "5a29653986f77406a3435b26", "index": 2, "parentId": "", "dynamicLocale": false, "plantTime": 30, - "zoneId": "place_peacemaker_003_N3", + "zoneId": "place_peacemaker_002_N3", "target": [ "5991b51486f77447b112d44f" ], @@ -25462,10 +25836,10 @@ "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5c939d0e86f774185203c4c2", + "id": "5c9394a986f7741228714be2", "conditions": [ { - "id": "5c939d1886f7741229301dc2", + "id": "5c9394ba86f774122a7ac1a2", "dynamicLocale": false, "status": [ "Survived", @@ -25474,16 +25848,16 @@ "conditionType": "ExitStatus" }, { - "id": "5c939d2586f774122b6e7852", + "id": "5c9394de86f774122c346f82", "dynamicLocale": false, "target": [ - "Shoreline" + "bigmap" ], "conditionType": "Location" } ] }, - "id": "5c939d0e86f774185203c4c3", + "id": "5c9394a986f7741228714be3", "index": 3, "parentId": "", "oneSessionOnly": false, @@ -25494,18 +25868,18 @@ "value": 1, "visibilityConditions": [ { - "id": "5c9a166586f77438c80164e8", - "target": "5a37e8ae86f77415076b401d", + "id": "5c9395be86f774122a7ac1a3", + "target": "5a27e75886f7740aef4a9157", "conditionType": "CompleteCondition" }, { - "id": "5c9a166a86f7741da4659f71", - "target": "5a27fc8186f7746371546243", + "id": "5c9395cd86f774122c346f84", + "target": "5a29653986f77406a3435b26", "conditionType": "CompleteCondition" }, { - "id": "5c9a166f86f7747dbe2da3be", - "target": "5a27fc9686f774675744bb60", + "id": "66698b0c361faf66b8ade1dd", + "target": "66698a9eddc21e9441645819", "conditionType": "CompleteCondition" } ], @@ -25516,7 +25890,7 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "5a3a71c686f7745a9d6892e6", + "id": "5a3a71b286f7745a7e19f642", "index": 0, "parentId": "", "dynamicLocale": false, @@ -25527,13 +25901,14 @@ }, { "conditionType": "Quest", - "id": "5a27f95686f774268504c959", + "id": "5a27e86386f7743c2a3a1086", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27b7a786f774579c3eb376", + "target": "5a27b75b86f7742e97191958", "status": [ - 4 + 4, + 5 ], "globalQuestCounterId": "", "availableAfter": 0, @@ -25543,28 +25918,28 @@ ], "Fail": [] }, - "description": "5a27b7d686f77460d847e6a6 description", - "failMessageText": "5a27b7d686f77460d847e6a6 failMessageText", - "declinePlayerMessage": "5a27b7d686f77460d847e6a6 declinePlayerMessage", - "name": "5a27b7d686f77460d847e6a6 name", - "note": "5a27b7d686f77460d847e6a6 note", + "description": "5a27b7a786f774579c3eb376 description", + "failMessageText": "5a27b7a786f774579c3eb376 failMessageText", + "declinePlayerMessage": "5a27b7a786f774579c3eb376 declinePlayerMessage", + "name": "5a27b7a786f774579c3eb376 name", + "note": "5a27b7a786f774579c3eb376 note", "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5a29221d86f77457303da9fa.jpg", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/57e4f1852459772a15635633.jpg", "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5a27b7d686f77460d847e6a6 startedMessageText", - "successMessageText": "5a27b7d686f77460d847e6a6 successMessageText", + "startedMessageText": "5a27b7a786f774579c3eb376 startedMessageText", + "successMessageText": "5a27b7a786f774579c3eb376 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], "value": 5900, - "id": "60cc6963179f8541b8469249", + "id": "60cc68787c496e588343a6b3", "type": "Experience", "index": 0, "unknown": false @@ -25572,7 +25947,7 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "60cc69663e4e974efa345d00", + "id": "60cc687d2b555f16df5c418d", "type": "TraderStanding", "index": 0, "target": "5935c25fb3acc3127c3d8cd9", @@ -25581,15 +25956,15 @@ { "availableInGameEditions": [], "value": 900, - "id": "60cc696faf2e5506c3782296", + "id": "5a27d94f86f77448d97fe86d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c7b", + "target": "6812400b0c5cf2cf75075025", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1c7b", + "_id": "6812400b0c5cf2cf75075025", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 900 @@ -25600,189 +25975,62 @@ { "availableInGameEditions": [], "value": 1, - "id": "60cc697d7c496e588343a6b7", + "id": "60cc68ada7d63f18200a24bb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c7c", + "target": "6812400b0c5cf2cf75075027", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c7c", - "_tpl": "5926bb2186f7744b1c6c6e60", + "_id": "6812400b0c5cf2cf75075027", + "_tpl": "5f5f41f56760b4138443b352", "upd": { "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } + "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b1c7d", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "68010065f81036801d0b1c7c", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1c7e", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "68010065f81036801d0b1c7c", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1c7f", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "68010065f81036801d0b1c7e", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1c80", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "68010065f81036801d0b1c7e", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1c81", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "68010065f81036801d0b1c7e", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1c82", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "68010065f81036801d0b1c7e", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1c83", - "_tpl": "5926c32286f774616e42de99", - "parentId": "68010065f81036801d0b1c7c", - "slotId": "mod_charge" } ] }, { "availableInGameEditions": [], - "value": 3, - "id": "60cc699198b49270603645b4", + "value": 2, + "id": "60cc68c12b555f16df5c4192", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1c8a", + "target": "6812400b0c5cf2cf7507502a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1c86", - "_tpl": "657025a81419851aef03e724", + "_id": "6812400b0c5cf2cf75075029", + "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1c87", - "_tpl": "56d59d3ad2720bdb418b4577", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b1c86", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c88", - "_tpl": "657025a81419851aef03e724", + "_id": "6812400b0c5cf2cf7507502a", + "_tpl": "58d3db5386f77426186285a0", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b1c89", - "_tpl": "56d59d3ad2720bdb418b4577", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b1c88", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c8a", - "_tpl": "657025a81419851aef03e724", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c8b", - "_tpl": "56d59d3ad2720bdb418b4577", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b1c8a", - "slotId": "cartridges" } ] }, { "availableInGameEditions": [], - "id": "5b42250e86f774370c7284a9", + "id": "655b74411273611d2462ab79", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1c8c", + "target": "6812400b0c5cf2cf7507502b", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1c8c", - "_tpl": "5926bb2186f7744b1c6c6e60", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1c8d", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "68010065f81036801d0b1c8c", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1c8e", - "_tpl": "5926f2e086f7745aae644231", - "parentId": "68010065f81036801d0b1c8c", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1c8f", - "_tpl": "5926f34786f77469195bfe92", - "parentId": "68010065f81036801d0b1c8e", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1c90", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "68010065f81036801d0b1c8e", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1c91", - "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "68010065f81036801d0b1c8e", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1c92", - "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "68010065f81036801d0b1c8e", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1c93", - "_tpl": "5926c32286f774616e42de99", - "parentId": "68010065f81036801d0b1c8c", - "slotId": "mod_charge" + "_id": "6812400b0c5cf2cf7507502b", + "_tpl": "59e6920f86f77411d82aa167" } ], "loyaltyLevel": 2, @@ -25790,18 +26038,62 @@ }, { "availableInGameEditions": [], - "id": "655b82ec1f2b6843ec751fdb", + "id": "63a19fc1d6d4651e53602aee", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1c94", + "target": "6812400b0c5cf2cf7507502c", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1c94", - "_tpl": "5cc80f8fe4a949033b0224a2" + "_id": "6812400b0c5cf2cf7507502c", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400b0c5cf2cf7507502d", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "6812400b0c5cf2cf7507502c", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507502e", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "6812400b0c5cf2cf7507502c", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507502f", + "_tpl": "5e0090f7e9dc277128008b93", + "parentId": "6812400b0c5cf2cf7507502c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075030", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "6812400b0c5cf2cf7507502f", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075031", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "6812400b0c5cf2cf7507502c", + "slotId": "mod_charge" + }, + { + "_id": "6812400b0c5cf2cf75075032", + "_tpl": "5de8fbf2b74cd90030650c79", + "parentId": "6812400b0c5cf2cf7507502c", + "slotId": "mod_mount_000" } ], - "loyaltyLevel": 2, + "loyaltyLevel": 1, "traderId": "5935c25fb3acc3127c3d8cd9" } ], @@ -25919,583 +26211,6 @@ "arenaLocations": [], "status": 0 }, - "5c0d190cd09282029f5390d8": { - "QuestName": "Grenadier", - "_id": "5c0d190cd09282029f5390d8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0d190cd09282029f5390d8 acceptPlayerMessage", - "changeQuestMessageText": "5c0d190cd09282029f5390d8 changeQuestMessageText", - "completePlayerMessage": "5c0d190cd09282029f5390d8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c0d1961d0928202b25db5d0", - "conditions": [ - { - "id": "5c0d1a47d09282029e2fffb7", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5a2a57cfc4a2826c6e06d44a", - "5a0c27731526d80618476ac4", - "58d3db5386f77426186285a0", - "5e340dcdcb6d5863cc5e5efb", - "5e32f56fcb6d5863cc5e5ee4", - "5448be9a4bdc2dfd2f8b456a", - "5710c24ad2720bc3458b45a3", - "618a431df1eb8e24b8741deb", - "617fd91e5539a84ec44ce155", - "639c3fbbd0446708ee622ee9", - "639af924d0446708ee62294e", - "5648b62b4bdc2d9d488b4585", - "66dae7cbeb28f0f96809f325" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head", - "Chest", - "Stomach", - "LeftArm", - "RightArm", - "LeftLeg", - "RightLeg" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5c1b760686f77412780211a3", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 8, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1fab4186f77431f74f0de5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c0d190cd09282029f5390d8 description", - "failMessageText": "5c0d190cd09282029f5390d8 failMessageText", - "declinePlayerMessage": "5c0d190cd09282029f5390d8 declinePlayerMessage", - "name": "5c0d190cd09282029f5390d8 name", - "note": "5c0d190cd09282029f5390d8 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/5c1e35cf86f7743b6242fe05.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0d190cd09282029f5390d8 startedMessageText", - "successMessageText": "5c0d190cd09282029f5390d8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18000, - "id": "60c8ad732238043a52678631", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c8a1a79339363e8f0c6acf", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 75000, - "id": "60cb50e32b555f16df5c4103", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1c96", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1c96", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 75000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 10, - "id": "5c17c39386f77430a56d12a2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cab", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1c99", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c9a", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1c99", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c9b", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c9c", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1c9b", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c9d", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1c9e", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1c9d", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1c9f", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ca0", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1c9f", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ca1", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ca2", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1ca1", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ca3", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ca4", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1ca3", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ca5", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ca6", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1ca5", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ca7", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ca8", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1ca7", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ca9", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1caa", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1ca9", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1cab", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cac", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1cab", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "60cb50f33e4e974efa3452bd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cb2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cae", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1caf", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb0", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb1", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb2", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "64b6aaa525251516d768542b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cb8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cb4", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb5", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb6", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb7", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cb8", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "64b6aaaf58b5637e2d71a65d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cbe", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cba", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cbb", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cbc", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cbd", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cbe", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64b6aab73e349c7dbd06bd1a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cc1", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cc0", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cc1", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "64b6afe68faf110b68375e35", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b1cc7", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1cc3", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cc4", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cc5", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cc6", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cc7", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 2, - "traderId": 10 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "59ca2eb686f77445a80ed049": { "QuestName": "The Punisher - Part 6", "_id": "59ca2eb686f77445a80ed049", @@ -26686,12 +26401,12 @@ "id": "5a2fb3bd86f774769635db16", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1cc9", + "target": "6812400b0c5cf2cf75075034", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1cc9", + "_id": "6812400b0c5cf2cf75075034", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 250000 @@ -26705,12 +26420,12 @@ "id": "59db7f1e86f77448bf51a967", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ccb", + "target": "6812400b0c5cf2cf75075036", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ccb", + "_id": "6812400b0c5cf2cf75075036", "_tpl": "59db794186f77448bc595262", "upd": { "StackObjectsCount": 1, @@ -26742,11 +26457,11 @@ "id": "655b7fd21f2b6843ec751fda", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1ccc", + "target": "6812400b0c5cf2cf75075037", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1ccc", + "_id": "6812400b0c5cf2cf75075037", "_tpl": "59e77a2386f7742ee578960a" } ], @@ -26764,631 +26479,6 @@ "arenaLocations": [], "status": 0 }, - "60e71dc67fcf9c556f325056": { - "QuestName": "Booze", - "_id": "60e71dc67fcf9c556f325056", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71dc67fcf9c556f325056 acceptPlayerMessage", - "changeQuestMessageText": "60e71dc67fcf9c556f325056 changeQuestMessageText", - "completePlayerMessage": "60e71dc67fcf9c556f325056 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e73333465ea8368012cc5b", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d40407c86f774318526545a" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e733590367e10a450f7805", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d403f9186f7743cac3f229b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60f028268b669d08a35bfad8", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b33a686f7742523398398" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "62a700fb7230237f257cac2e", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a09f32621468534a797acb" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e73397479eef59b01b0bd5", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d40407c86f774318526545a" - ], - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e733b80367e10a450f7807", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d403f9186f7743cac3f229b" - ], - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60f0284e8b669d08a35bfada", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b33a686f7742523398398" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "62a70110eb3cb46d9a0bba78", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a09f32621468534a797acb" - ], - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "610149d34a065318776a1e78", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 50, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "61b8724524fb6113620c8585", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "60e71dc0a94be721b065bbfc", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71dc67fcf9c556f325056 description", - "failMessageText": "60e71dc67fcf9c556f325056 failMessageText", - "declinePlayerMessage": "60e71dc67fcf9c556f325056 declinePlayerMessage", - "name": "60e71dc67fcf9c556f325056 name", - "note": "60e71dc67fcf9c556f325056 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/59c1285d86f77415042983dd.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71dc67fcf9c556f325056 startedMessageText", - "successMessageText": "60e71dc67fcf9c556f325056 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 107000, - "id": "60f0379e7ad3d529c2430edc", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "61029062d51ac54f163ffa08", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cd0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cce", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ccf", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd0", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 10, - "id": "61029e8a4617d376021dd1af", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cdb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1cd2", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd3", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd4", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd5", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd6", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd7", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd8", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cd9", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cda", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1cdb", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "676496aabd47bc01fc2a5056", - "type": "CustomizationDirect", - "index": 0, - "target": "67585d161840a37ff10ebdd1", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6089743983426423753cd58a": { - "QuestName": "Safe Corridor", - "_id": "6089743983426423753cd58a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6089743983426423753cd58a acceptPlayerMessage", - "changeQuestMessageText": "6089743983426423753cd58a changeQuestMessageText", - "completePlayerMessage": "6089743983426423753cd58a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608ab22755f4ac386d7e7fdb", - "conditions": [ - { - "id": "608ac394c61c4b541b381da1", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "608ac7095e0ef91ab810f983", - "dynamicLocale": false, - "zoneIds": [ - "lijnik_storage_area_1" - ], - "conditionType": "InZone" - }, - { - "id": "609e3666606b9826eb3c6074", - "dynamicLocale": false, - "target": [ - "RezervBase", - "develop" - ], - "conditionType": "Location" - } - ] - }, - "id": "608ab22755f4ac386d7e7fdc", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "60bf72dda2ae0728ec716f32", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a0f5686f774273b74f676", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "60bf72e04c8a3800da06e716", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6089743983426423753cd58a description", - "failMessageText": "6089743983426423753cd58a failMessageText", - "declinePlayerMessage": "6089743983426423753cd58a declinePlayerMessage", - "name": "6089743983426423753cd58a name", - "note": "6089743983426423753cd58a note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c37450de6b0b44cc320e9a.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6089743983426423753cd58a startedMessageText", - "successMessageText": "6089743983426423753cd58a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9000, - "id": "60bf70fcbf90bf6b431e8960", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60bf710e9903f107aa251f37", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 35000, - "id": "60bf719f9903f107aa251f3a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1cdd", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1cdd", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 35000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb5c956a2a1958fc522cd4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ce4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ce1", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ce2", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b1ce1", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ce3", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b1ce1", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "68010065f81036801d0b1ce4", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ce5", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b1ce4", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ce6", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b1ce4", - "slotId": "cartridges", - "location": 1 - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb5ca47c496e588343a1b0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ce9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ce8", - "_tpl": "5d1b371186f774253763a656", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ce9", - "_tpl": "5d1b371186f774253763a656", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5c0bde0986f77479cf22c2f8": { "QuestName": "A Shooter Born in Heaven", "_id": "5c0bde0986f77479cf22c2f8", @@ -28004,12 +27094,12 @@ "id": "5c18c08186f77467bf06520a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ceb", + "target": "6812400b0c5cf2cf75075039", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ceb", + "_id": "6812400b0c5cf2cf75075039", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -28023,12 +27113,12 @@ "id": "64b697ebc3abf20a9660daaa", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1cec", + "target": "6812400b0c5cf2cf7507503a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1cec", + "_id": "6812400b0c5cf2cf7507503a", "_tpl": "6176aca650224f204c1da3fb", "upd": { "StackObjectsCount": 1, @@ -28038,111 +27128,111 @@ } }, { - "_id": "68010065f81036801d0b1ced", + "_id": "6812400b0c5cf2cf7507503b", "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "68010065f81036801d0b1cec", + "parentId": "6812400b0c5cf2cf7507503a", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1cee", + "_id": "6812400b0c5cf2cf7507503c", "_tpl": "617131a4568c120fdd29482d", - "parentId": "68010065f81036801d0b1cec", + "parentId": "6812400b0c5cf2cf7507503a", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1cef", + "_id": "6812400b0c5cf2cf7507503d", "_tpl": "617153016c780c1e710c9a2f", - "parentId": "68010065f81036801d0b1cec", + "parentId": "6812400b0c5cf2cf7507503a", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1cf0", + "_id": "6812400b0c5cf2cf7507503e", "_tpl": "617155ee50224f204c1da3cd", - "parentId": "68010065f81036801d0b1cef", + "parentId": "6812400b0c5cf2cf7507503d", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1cf1", + "_id": "6812400b0c5cf2cf7507503f", "_tpl": "61715e7e67085e45ef140b33", - "parentId": "68010065f81036801d0b1cf0", + "parentId": "6812400b0c5cf2cf7507503e", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1cf2", + "_id": "6812400b0c5cf2cf75075040", "_tpl": "61713a8fd92c473c770214a4", - "parentId": "68010065f81036801d0b1cec", + "parentId": "6812400b0c5cf2cf7507503a", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1cf3", + "_id": "6812400b0c5cf2cf75075041", "_tpl": "61713cc4d8e3106d9806c109", - "parentId": "68010065f81036801d0b1cf2", + "parentId": "6812400b0c5cf2cf75075040", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1cf4", + "_id": "6812400b0c5cf2cf75075042", "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "68010065f81036801d0b1cf3", + "parentId": "6812400b0c5cf2cf75075041", "slotId": "mod_scope_000" }, { - "_id": "68010065f81036801d0b1cf5", + "_id": "6812400b0c5cf2cf75075043", "_tpl": "61714b2467085e45ef140b2c", - "parentId": "68010065f81036801d0b1cf3", + "parentId": "6812400b0c5cf2cf75075041", "slotId": "mod_scope_001" }, { - "_id": "68010065f81036801d0b1cf6", + "_id": "6812400b0c5cf2cf75075044", "_tpl": "58d399e486f77442e0016fe7", - "parentId": "68010065f81036801d0b1cf5", + "parentId": "6812400b0c5cf2cf75075043", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1cf7", + "_id": "6812400b0c5cf2cf75075045", "_tpl": "61702be9faa1272e431522c3", - "parentId": "68010065f81036801d0b1cf2", + "parentId": "6812400b0c5cf2cf75075040", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1cf8", + "_id": "6812400b0c5cf2cf75075046", "_tpl": "61713308d92c473c770214a0", - "parentId": "68010065f81036801d0b1cf7", + "parentId": "6812400b0c5cf2cf75075045", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1cf9", + "_id": "6812400b0c5cf2cf75075047", "_tpl": "6171367e1cb55961fa0fdb36", - "parentId": "68010065f81036801d0b1cf8", + "parentId": "6812400b0c5cf2cf75075046", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1cfa", + "_id": "6812400b0c5cf2cf75075048", "_tpl": "61702f1b67085e45ef140b26", - "parentId": "68010065f81036801d0b1cf7", + "parentId": "6812400b0c5cf2cf75075045", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1cfb", + "_id": "6812400b0c5cf2cf75075049", "_tpl": "61703001d92c473c77021497", - "parentId": "68010065f81036801d0b1cf2", + "parentId": "6812400b0c5cf2cf75075040", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1cfc", + "_id": "6812400b0c5cf2cf7507504a", "_tpl": "619386379fb0c665d5490dbe", - "parentId": "68010065f81036801d0b1cfb", + "parentId": "6812400b0c5cf2cf75075049", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b1cfd", + "_id": "6812400b0c5cf2cf7507504b", "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "68010065f81036801d0b1cf2", + "parentId": "6812400b0c5cf2cf75075040", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1cfe", + "_id": "6812400b0c5cf2cf7507504c", "_tpl": "61702d8a67085e45ef140b24", - "parentId": "68010065f81036801d0b1cec", + "parentId": "6812400b0c5cf2cf7507503a", "slotId": "mod_charge" } ] @@ -28153,12 +27243,12 @@ "id": "64b697fd3e349c7dbd06bd18", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d01", + "target": "6812400b0c5cf2cf7507504f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d00", + "_id": "6812400b0c5cf2cf7507504e", "_tpl": "617131a4568c120fdd29482d", "upd": { "StackObjectsCount": 1, @@ -28166,7 +27256,7 @@ } }, { - "_id": "68010065f81036801d0b1d01", + "_id": "6812400b0c5cf2cf7507504f", "_tpl": "617131a4568c120fdd29482d", "upd": { "StackObjectsCount": 1, @@ -28181,12 +27271,12 @@ "id": "64b6980ed5dd0711c53a8157", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d06", + "target": "6812400b0c5cf2cf75075054", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d04", + "_id": "6812400b0c5cf2cf75075052", "_tpl": "648984e3f09d032aa9399d53", "upd": { "StackObjectsCount": 1, @@ -28194,16 +27284,16 @@ } }, { - "_id": "68010065f81036801d0b1d05", + "_id": "6812400b0c5cf2cf75075053", "_tpl": "5efb0c1bd79ff02a1f5e68d9", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d04", + "parentId": "6812400b0c5cf2cf75075052", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d06", + "_id": "6812400b0c5cf2cf75075054", "_tpl": "648984e3f09d032aa9399d53", "upd": { "StackObjectsCount": 1, @@ -28211,12 +27301,12 @@ } }, { - "_id": "68010065f81036801d0b1d07", + "_id": "6812400b0c5cf2cf75075055", "_tpl": "5efb0c1bd79ff02a1f5e68d9", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d06", + "parentId": "6812400b0c5cf2cf75075054", "slotId": "cartridges" } ] @@ -28227,12 +27317,12 @@ "id": "64b69820b24b672b97795057", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d09", + "target": "6812400b0c5cf2cf75075057", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d09", + "_id": "6812400b0c5cf2cf75075057", "_tpl": "5d235b4d86f7742e017bc88a", "upd": { "StackObjectsCount": 3 @@ -28245,11 +27335,11 @@ "id": "64b69a71d5887c2ce956115a", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d0a", + "target": "6812400b0c5cf2cf75075058", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1d0a", + "_id": "6812400b0c5cf2cf75075058", "_tpl": "6176aca650224f204c1da3fb", "upd": { "FireMode": { @@ -28258,111 +27348,111 @@ } }, { - "_id": "68010065f81036801d0b1d0b", + "_id": "6812400b0c5cf2cf75075059", "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "68010065f81036801d0b1d0a", + "parentId": "6812400b0c5cf2cf75075058", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1d0c", + "_id": "6812400b0c5cf2cf7507505a", "_tpl": "617131a4568c120fdd29482d", - "parentId": "68010065f81036801d0b1d0a", + "parentId": "6812400b0c5cf2cf75075058", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d0d", + "_id": "6812400b0c5cf2cf7507505b", "_tpl": "617153016c780c1e710c9a2f", - "parentId": "68010065f81036801d0b1d0a", + "parentId": "6812400b0c5cf2cf75075058", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d0e", + "_id": "6812400b0c5cf2cf7507505c", "_tpl": "617155ee50224f204c1da3cd", - "parentId": "68010065f81036801d0b1d0d", + "parentId": "6812400b0c5cf2cf7507505b", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1d0f", + "_id": "6812400b0c5cf2cf7507505d", "_tpl": "61715e7e67085e45ef140b33", - "parentId": "68010065f81036801d0b1d0e", + "parentId": "6812400b0c5cf2cf7507505c", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1d10", + "_id": "6812400b0c5cf2cf7507505e", "_tpl": "61713a8fd92c473c770214a4", - "parentId": "68010065f81036801d0b1d0a", + "parentId": "6812400b0c5cf2cf75075058", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1d11", + "_id": "6812400b0c5cf2cf7507505f", "_tpl": "61713cc4d8e3106d9806c109", - "parentId": "68010065f81036801d0b1d10", + "parentId": "6812400b0c5cf2cf7507505e", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1d12", + "_id": "6812400b0c5cf2cf75075060", "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "68010065f81036801d0b1d11", + "parentId": "6812400b0c5cf2cf7507505f", "slotId": "mod_scope_000" }, { - "_id": "68010065f81036801d0b1d13", + "_id": "6812400b0c5cf2cf75075061", "_tpl": "61714b2467085e45ef140b2c", - "parentId": "68010065f81036801d0b1d11", + "parentId": "6812400b0c5cf2cf7507505f", "slotId": "mod_scope_001" }, { - "_id": "68010065f81036801d0b1d14", + "_id": "6812400b0c5cf2cf75075062", "_tpl": "58d399e486f77442e0016fe7", - "parentId": "68010065f81036801d0b1d13", + "parentId": "6812400b0c5cf2cf75075061", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1d15", + "_id": "6812400b0c5cf2cf75075063", "_tpl": "61702be9faa1272e431522c3", - "parentId": "68010065f81036801d0b1d10", + "parentId": "6812400b0c5cf2cf7507505e", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1d16", + "_id": "6812400b0c5cf2cf75075064", "_tpl": "61713308d92c473c770214a0", - "parentId": "68010065f81036801d0b1d15", + "parentId": "6812400b0c5cf2cf75075063", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d17", + "_id": "6812400b0c5cf2cf75075065", "_tpl": "6171367e1cb55961fa0fdb36", - "parentId": "68010065f81036801d0b1d16", + "parentId": "6812400b0c5cf2cf75075064", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d18", + "_id": "6812400b0c5cf2cf75075066", "_tpl": "61702f1b67085e45ef140b26", - "parentId": "68010065f81036801d0b1d15", + "parentId": "6812400b0c5cf2cf75075063", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1d19", + "_id": "6812400b0c5cf2cf75075067", "_tpl": "61703001d92c473c77021497", - "parentId": "68010065f81036801d0b1d10", + "parentId": "6812400b0c5cf2cf7507505e", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1d1a", + "_id": "6812400b0c5cf2cf75075068", "_tpl": "619386379fb0c665d5490dbe", - "parentId": "68010065f81036801d0b1d19", + "parentId": "6812400b0c5cf2cf75075067", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b1d1b", + "_id": "6812400b0c5cf2cf75075069", "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "68010065f81036801d0b1d10", + "parentId": "6812400b0c5cf2cf7507505e", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1d1c", + "_id": "6812400b0c5cf2cf7507506a", "_tpl": "61702d8a67085e45ef140b24", - "parentId": "68010065f81036801d0b1d0a", + "parentId": "6812400b0c5cf2cf75075058", "slotId": "mod_charge" } ], @@ -28374,11 +27464,11 @@ "id": "5c20cc1086f7740cfb37b111", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d1d", + "target": "6812400b0c5cf2cf7507506b", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1d1d", + "_id": "6812400b0c5cf2cf7507506b", "_tpl": "5c127c4486f7745625356c13" } ], @@ -28405,6 +27495,367 @@ "arenaLocations": [], "status": 0 }, + "60e71dc67fcf9c556f325056": { + "QuestName": "Booze", + "_id": "60e71dc67fcf9c556f325056", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71dc67fcf9c556f325056 acceptPlayerMessage", + "changeQuestMessageText": "60e71dc67fcf9c556f325056 changeQuestMessageText", + "completePlayerMessage": "60e71dc67fcf9c556f325056 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e73333465ea8368012cc5b", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d40407c86f774318526545a" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e733590367e10a450f7805", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d403f9186f7743cac3f229b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60f028268b669d08a35bfad8", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b33a686f7742523398398" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "62a700fb7230237f257cac2e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a09f32621468534a797acb" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e73397479eef59b01b0bd5", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d40407c86f774318526545a" + ], + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e733b80367e10a450f7807", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d403f9186f7743cac3f229b" + ], + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60f0284e8b669d08a35bfada", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b33a686f7742523398398" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "62a70110eb3cb46d9a0bba78", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a09f32621468534a797acb" + ], + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "610149d34a065318776a1e78", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 50, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "61b8724524fb6113620c8585", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "60e71dc0a94be721b065bbfc", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71dc67fcf9c556f325056 description", + "failMessageText": "60e71dc67fcf9c556f325056 failMessageText", + "declinePlayerMessage": "60e71dc67fcf9c556f325056 declinePlayerMessage", + "name": "60e71dc67fcf9c556f325056 name", + "note": "60e71dc67fcf9c556f325056 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/59c1285d86f77415042983dd.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71dc67fcf9c556f325056 startedMessageText", + "successMessageText": "60e71dc67fcf9c556f325056 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 107000, + "id": "60f0379e7ad3d529c2430edc", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "61029062d51ac54f163ffa08", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507506f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507506d", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507506e", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507506f", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 10, + "id": "61029e8a4617d376021dd1af", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507507a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075071", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075072", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075073", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075074", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075075", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075076", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075077", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075078", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075079", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507507a", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "676496aabd47bc01fc2a5056", + "type": "CustomizationDirect", + "index": 0, + "target": "67585d161840a37ff10ebdd1", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5a27b75b86f7742e97191958": { "QuestName": "Fishing Gear", "_id": "5a27b75b86f7742e97191958", @@ -28585,12 +28036,12 @@ "id": "629f7c9b5bb57779c4036cf4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d1e", + "target": "6812400b0c5cf2cf7507507b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d1e", + "_id": "6812400b0c5cf2cf7507507b", "_tpl": "55801eed4bdc2d89578b4588", "upd": { "StackObjectsCount": 1, @@ -28600,39 +28051,39 @@ } }, { - "_id": "68010065f81036801d0b1d1f", + "_id": "6812400b0c5cf2cf7507507c", "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "68010065f81036801d0b1d1e", + "parentId": "6812400b0c5cf2cf7507507b", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d20", + "_id": "6812400b0c5cf2cf7507507d", "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "68010065f81036801d0b1d1e", + "parentId": "6812400b0c5cf2cf7507507b", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1d21", + "_id": "6812400b0c5cf2cf7507507e", "_tpl": "56083eab4bdc2d26448b456a", - "parentId": "68010065f81036801d0b1d1e", + "parentId": "6812400b0c5cf2cf7507507b", "slotId": "mod_tactical" }, { - "_id": "68010065f81036801d0b1d22", + "_id": "6812400b0c5cf2cf7507507f", "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "68010065f81036801d0b1d1e", + "parentId": "6812400b0c5cf2cf7507507b", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d23", + "_id": "6812400b0c5cf2cf75075080", "_tpl": "61faa91878830f069b6b7967", - "parentId": "68010065f81036801d0b1d1e", + "parentId": "6812400b0c5cf2cf7507507b", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d24", + "_id": "6812400b0c5cf2cf75075081", "_tpl": "56ea8222d2720b69698b4567", - "parentId": "68010065f81036801d0b1d23", + "parentId": "6812400b0c5cf2cf75075080", "slotId": "mod_bipod" } ] @@ -28643,12 +28094,12 @@ "id": "5a295d4886f77450df330e04", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d26", + "target": "6812400b0c5cf2cf75075083", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d26", + "_id": "6812400b0c5cf2cf75075083", "_tpl": "544fb5454bdc2df8738b456a", "upd": { "StackObjectsCount": 1, @@ -28682,12 +28133,12 @@ "id": "60cc6836f09d61072d6d0097", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d28", + "target": "6812400b0c5cf2cf75075085", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d28", + "_id": "6812400b0c5cf2cf75075085", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 700 @@ -28701,12 +28152,12 @@ "id": "60cc684c2b555f16df5c418c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d2d", + "target": "6812400b0c5cf2cf7507508a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d2d", + "_id": "6812400b0c5cf2cf7507508a", "_tpl": "5aa7d03ae5b5b00016327db5", "upd": { "StackObjectsCount": 1, @@ -28714,30 +28165,30 @@ } }, { - "_id": "68010065f81036801d0b1d2e", + "_id": "6812400b0c5cf2cf7507508b", "_tpl": "654a90aff4f81a421b0a7c86", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1d2d", + "parentId": "6812400b0c5cf2cf7507508a", "slotId": "helmet_top" }, { - "_id": "68010065f81036801d0b1d2f", + "_id": "6812400b0c5cf2cf7507508c", "_tpl": "654a91068e1ce698150fd1e2", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1d2d", + "parentId": "6812400b0c5cf2cf7507508a", "slotId": "helmet_back" }, { - "_id": "68010065f81036801d0b1d30", + "_id": "6812400b0c5cf2cf7507508d", "_tpl": "654a9189bcc67a392b056c79", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1d2d", + "parentId": "6812400b0c5cf2cf7507508a", "slotId": "helmet_ears" } ] @@ -28747,11 +28198,11 @@ "id": "60cf41125f9e6175514de2e0", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d31", + "target": "6812400b0c5cf2cf7507508e", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1d31", + "_id": "6812400b0c5cf2cf7507508e", "_tpl": "5b3116595acfc40019476364" } ], @@ -28763,11 +28214,11 @@ "id": "62a6516c1c307729c3264ef9", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d32", + "target": "6812400b0c5cf2cf7507508f", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b1d32", + "_id": "6812400b0c5cf2cf7507508f", "_tpl": "5aafa857e5b5b00018480968", "upd": { "Repairable": { @@ -28777,45 +28228,45 @@ } }, { - "_id": "68010065f81036801d0b1d33", + "_id": "6812400b0c5cf2cf75075090", "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "68010065f81036801d0b1d32", + "parentId": "6812400b0c5cf2cf7507508f", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d34", + "_id": "6812400b0c5cf2cf75075091", "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "68010065f81036801d0b1d32", + "parentId": "6812400b0c5cf2cf7507508f", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d35", + "_id": "6812400b0c5cf2cf75075092", "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "68010065f81036801d0b1d34", + "parentId": "6812400b0c5cf2cf75075091", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b1d36", + "_id": "6812400b0c5cf2cf75075093", "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "68010065f81036801d0b1d32", + "parentId": "6812400b0c5cf2cf7507508f", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1d37", + "_id": "6812400b0c5cf2cf75075094", "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "68010065f81036801d0b1d36", + "parentId": "6812400b0c5cf2cf75075093", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d38", + "_id": "6812400b0c5cf2cf75075095", "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "68010065f81036801d0b1d37", + "parentId": "6812400b0c5cf2cf75075094", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b1d39", + "_id": "6812400b0c5cf2cf75075096", "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "68010065f81036801d0b1d32", + "parentId": "6812400b0c5cf2cf7507508f", "slotId": "mod_sight_rear" } ], @@ -28833,6 +28284,270 @@ "arenaLocations": [], "status": 0 }, + "6089743983426423753cd58a": { + "QuestName": "Safe Corridor", + "_id": "6089743983426423753cd58a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6089743983426423753cd58a acceptPlayerMessage", + "changeQuestMessageText": "6089743983426423753cd58a changeQuestMessageText", + "completePlayerMessage": "6089743983426423753cd58a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608ab22755f4ac386d7e7fdb", + "conditions": [ + { + "id": "608ac394c61c4b541b381da1", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "608ac7095e0ef91ab810f983", + "dynamicLocale": false, + "zoneIds": [ + "lijnik_storage_area_1" + ], + "conditionType": "InZone" + }, + { + "id": "609e3666606b9826eb3c6074", + "dynamicLocale": false, + "target": [ + "RezervBase", + "develop" + ], + "conditionType": "Location" + } + ] + }, + "id": "608ab22755f4ac386d7e7fdc", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "60bf72dda2ae0728ec716f32", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a0f5686f774273b74f676", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "60bf72e04c8a3800da06e716", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6089743983426423753cd58a description", + "failMessageText": "6089743983426423753cd58a failMessageText", + "declinePlayerMessage": "6089743983426423753cd58a declinePlayerMessage", + "name": "6089743983426423753cd58a name", + "note": "6089743983426423753cd58a note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c37450de6b0b44cc320e9a.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6089743983426423753cd58a startedMessageText", + "successMessageText": "6089743983426423753cd58a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9000, + "id": "60bf70fcbf90bf6b431e8960", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60bf710e9903f107aa251f37", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 35000, + "id": "60bf719f9903f107aa251f3a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075098", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075098", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 35000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb5c956a2a1958fc522cd4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507509f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507509c", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507509d", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf7507509c", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507509e", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf7507509c", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "6812400b0c5cf2cf7507509f", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750750a0", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf7507509f", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750750a1", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf7507509f", + "slotId": "cartridges", + "location": 1 + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb5ca47c496e588343a1b0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750750a4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750750a3", + "_tpl": "5d1b371186f774253763a656", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750750a4", + "_tpl": "5d1b371186f774253763a656", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5a27bb5986f7741dfb660900": { "QuestName": "Cargo X - Part 3", "_id": "5a27bb5986f7741dfb660900", @@ -28986,12 +28701,12 @@ "id": "5a281ab686f77460d76ef746", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d3b", + "target": "6812400b0c5cf2cf750750a6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d3b", + "_id": "6812400b0c5cf2cf750750a6", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 900 @@ -29005,45 +28720,45 @@ "id": "60cc6f1877dc197c774254b4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d3c", + "target": "6812400b0c5cf2cf750750a7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d3c", + "_id": "6812400b0c5cf2cf750750a7", "_tpl": "5ba26383d4351e00334c93d9", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1d3d", + "_id": "6812400b0c5cf2cf750750a8", "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "68010065f81036801d0b1d3c", + "parentId": "6812400b0c5cf2cf750750a7", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d3e", + "_id": "6812400b0c5cf2cf750750a9", "_tpl": "5ba26acdd4351e003562908e", - "parentId": "68010065f81036801d0b1d3c", + "parentId": "6812400b0c5cf2cf750750a7", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d3f", + "_id": "6812400b0c5cf2cf750750aa", "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "68010065f81036801d0b1d3c", + "parentId": "6812400b0c5cf2cf750750a7", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b1d40", + "_id": "6812400b0c5cf2cf750750ab", "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "68010065f81036801d0b1d3c", + "parentId": "6812400b0c5cf2cf750750a7", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1d41", + "_id": "6812400b0c5cf2cf750750ac", "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "68010065f81036801d0b1d3c", + "parentId": "6812400b0c5cf2cf750750a7", "slotId": "mod_stock" } ] @@ -29211,12 +28926,12 @@ "id": "5a2818be86f77435c7390043", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d43", + "target": "6812400b0c5cf2cf750750ae", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d43", + "_id": "6812400b0c5cf2cf750750ae", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 850 @@ -29230,12 +28945,12 @@ "id": "60cc6eac2b555f16df5c41a1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d44", + "target": "6812400b0c5cf2cf750750af", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d44", + "_id": "6812400b0c5cf2cf750750af", "_tpl": "5447a9cd4bdc2dbd208b4567", "upd": { "StackObjectsCount": 1, @@ -29246,81 +28961,81 @@ } }, { - "_id": "68010065f81036801d0b1d45", + "_id": "6812400b0c5cf2cf750750b0", "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "68010065f81036801d0b1d44", + "parentId": "6812400b0c5cf2cf750750af", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1d46", + "_id": "6812400b0c5cf2cf750750b1", "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "68010065f81036801d0b1d44", + "parentId": "6812400b0c5cf2cf750750af", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d47", + "_id": "6812400b0c5cf2cf750750b2", "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "68010065f81036801d0b1d44", + "parentId": "6812400b0c5cf2cf750750af", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1d48", + "_id": "6812400b0c5cf2cf750750b3", "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "68010065f81036801d0b1d47", + "parentId": "6812400b0c5cf2cf750750b2", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1d49", + "_id": "6812400b0c5cf2cf750750b4", "_tpl": "544a38634bdc2d58388b4568", - "parentId": "68010065f81036801d0b1d48", + "parentId": "6812400b0c5cf2cf750750b3", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d4a", + "_id": "6812400b0c5cf2cf750750b5", "_tpl": "56ea8d2fd2720b7c698b4570", - "parentId": "68010065f81036801d0b1d48", + "parentId": "6812400b0c5cf2cf750750b3", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1d4b", + "_id": "6812400b0c5cf2cf750750b6", "_tpl": "55d4af3a4bdc2d972f8b456f", - "parentId": "68010065f81036801d0b1d4a", + "parentId": "6812400b0c5cf2cf750750b5", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b1d4c", + "_id": "6812400b0c5cf2cf750750b7", "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "68010065f81036801d0b1d47", + "parentId": "6812400b0c5cf2cf750750b2", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1d4d", + "_id": "6812400b0c5cf2cf750750b8", "_tpl": "637f57b78d137b27f70c496a", - "parentId": "68010065f81036801d0b1d4c", + "parentId": "6812400b0c5cf2cf750750b7", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1d4e", + "_id": "6812400b0c5cf2cf750750b9", "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "68010065f81036801d0b1d47", + "parentId": "6812400b0c5cf2cf750750b2", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1d4f", + "_id": "6812400b0c5cf2cf750750ba", "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b1d44", + "parentId": "6812400b0c5cf2cf750750af", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d50", + "_id": "6812400b0c5cf2cf750750bb", "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "68010065f81036801d0b1d4f", + "parentId": "6812400b0c5cf2cf750750ba", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1d51", + "_id": "6812400b0c5cf2cf750750bc", "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "68010065f81036801d0b1d44", + "parentId": "6812400b0c5cf2cf750750af", "slotId": "mod_charge" } ] @@ -29331,12 +29046,12 @@ "id": "60cc6ebce3d0247e625dab55", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d55", + "target": "6812400b0c5cf2cf750750c0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d53", + "_id": "6812400b0c5cf2cf750750be", "_tpl": "55802d5f4bdc2dac148b458e", "upd": { "StackObjectsCount": 1, @@ -29344,7 +29059,7 @@ } }, { - "_id": "68010065f81036801d0b1d54", + "_id": "6812400b0c5cf2cf750750bf", "_tpl": "55802d5f4bdc2dac148b458e", "upd": { "StackObjectsCount": 1, @@ -29352,7 +29067,7 @@ } }, { - "_id": "68010065f81036801d0b1d55", + "_id": "6812400b0c5cf2cf750750c0", "_tpl": "55802d5f4bdc2dac148b458e", "upd": { "StackObjectsCount": 1, @@ -29366,11 +29081,11 @@ "id": "5ac66e5a86f774044a31c215", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d56", + "target": "6812400b0c5cf2cf750750c1", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1d56", + "_id": "6812400b0c5cf2cf750750c1", "_tpl": "57da93632459771cb65bf83f" } ], @@ -29388,6 +29103,220 @@ "arenaLocations": [], "status": 0 }, + "6744aca8d3346c216702c583": { + "QuestName": "Discombobulate", + "_id": "6744aca8d3346c216702c583", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6744aca8d3346c216702c583 acceptPlayerMessage", + "changeQuestMessageText": "6744aca8d3346c216702c583 changeQuestMessageText", + "completePlayerMessage": "6744aca8d3346c216702c583 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6744ae5cc771515803d615ec", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Zone_for_RPG_1", + "target": [ + "5e340dcdcb6d5863cc5e5efb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6744ae63b3b4be24ffc607a4", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Zone_for_RPG_2", + "target": [ + "5e340dcdcb6d5863cc5e5efb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6744ae65f8c1438fb9374575", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Zone_for_RPG_3", + "target": [ + "5e340dcdcb6d5863cc5e5efb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6744aca8d3346c216702c585", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6744ab1def61d56e020b5c56", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6744aca8d3346c216702c583 description", + "failMessageText": "6744aca8d3346c216702c583 failMessageText", + "declinePlayerMessage": "6744aca8d3346c216702c583 declinePlayerMessage", + "name": "6744aca8d3346c216702c583 name", + "note": "6744aca8d3346c216702c583 note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6744aca8d3346c216702c583 startedMessageText", + "successMessageText": "6744aca8d3346c216702c583 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 23400, + "id": "675851404791b70c6fe5ff22", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 175000, + "id": "6758514cf6922623306e9f4e", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750750c3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750750c3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 175000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "675851532f9979e353cd2ac2", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758515df1fae842bc4ec190", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750750c5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750750c5", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758516764e4d7eeaf85f3c7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750750c7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750750c7", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758516d2b120ac3594334c9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750750c9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750750c9", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5ae449b386f77446d8741719": { "QuestName": "Gratitude", "_id": "5ae449b386f77446d8741719", @@ -29553,12 +29482,12 @@ "id": "60cc975d646f74055e276527", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d58", + "target": "6812400b0c5cf2cf750750cb", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d58", + "_id": "6812400b0c5cf2cf750750cb", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 120000 @@ -29572,12 +29501,12 @@ "id": "60cc97b1646f74055e27652a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d5b", + "target": "6812400b0c5cf2cf750750ce", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d5a", + "_id": "6812400b0c5cf2cf750750cd", "_tpl": "60b52e5bc7d8103275739d67", "upd": { "StackObjectsCount": 1, @@ -29585,7 +29514,7 @@ } }, { - "_id": "68010065f81036801d0b1d5b", + "_id": "6812400b0c5cf2cf750750ce", "_tpl": "60b52e5bc7d8103275739d67", "upd": { "StackObjectsCount": 1, @@ -29600,12 +29529,12 @@ "id": "60cc97a5b2736c24b2118b99", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d5e", + "target": "6812400b0c5cf2cf750750d1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d5d", + "_id": "6812400b0c5cf2cf750750d0", "_tpl": "618aef6d0a5a59657e5f55ee", "upd": { "StackObjectsCount": 1, @@ -29613,7 +29542,7 @@ } }, { - "_id": "68010065f81036801d0b1d5e", + "_id": "6812400b0c5cf2cf750750d1", "_tpl": "618aef6d0a5a59657e5f55ee", "upd": { "StackObjectsCount": 1, @@ -29628,12 +29557,12 @@ "id": "60cc97c0f81cc57f47171897", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d61", + "target": "6812400b0c5cf2cf750750d4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d60", + "_id": "6812400b0c5cf2cf750750d3", "_tpl": "5d96141523f0ea1b7f2aacab", "upd": { "StackObjectsCount": 1, @@ -29641,7 +29570,7 @@ } }, { - "_id": "68010065f81036801d0b1d61", + "_id": "6812400b0c5cf2cf750750d4", "_tpl": "5d96141523f0ea1b7f2aacab", "upd": { "StackObjectsCount": 1, @@ -29656,12 +29585,12 @@ "id": "60cc97cfa7d63f18200a250c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d64", + "target": "6812400b0c5cf2cf750750d7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d63", + "_id": "6812400b0c5cf2cf750750d6", "_tpl": "5b4327aa5acfc400175496e0", "upd": { "StackObjectsCount": 1, @@ -29669,7 +29598,7 @@ } }, { - "_id": "68010065f81036801d0b1d64", + "_id": "6812400b0c5cf2cf750750d7", "_tpl": "5b4327aa5acfc400175496e0", "upd": { "StackObjectsCount": 1, @@ -29875,12 +29804,12 @@ "id": "5a280d8386f77456a46b8b5f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d66", + "target": "6812400b0c5cf2cf750750d9", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d66", + "_id": "6812400b0c5cf2cf750750d9", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 1100 @@ -29894,12 +29823,12 @@ "id": "60cc6d088f570e28f1481146", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d68", + "target": "6812400b0c5cf2cf750750db", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d68", + "_id": "6812400b0c5cf2cf750750db", "_tpl": "5733279d245977289b77ec24", "upd": { "StackObjectsCount": 1, @@ -30129,12 +30058,12 @@ "id": "60bf6e6ddb54616235170696", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d6a", + "target": "6812400b0c5cf2cf750750dd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d6a", + "_id": "6812400b0c5cf2cf750750dd", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 45000 @@ -30148,12 +30077,12 @@ "id": "60bf6e40d4526a054d42e113", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d6c", + "target": "6812400b0c5cf2cf750750df", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d6c", + "_id": "6812400b0c5cf2cf750750df", "_tpl": "5a7c74b3e899ef0014332c29", "upd": { "StackObjectsCount": 1, @@ -30168,12 +30097,12 @@ "id": "60bf6e4fb73d016d6838ad7c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d6e", + "target": "6812400b0c5cf2cf750750e1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d6e", + "_id": "6812400b0c5cf2cf750750e1", "_tpl": "560d657b4bdc2da74d8b4572", "upd": { "StackObjectsCount": 1, @@ -30188,12 +30117,12 @@ "id": "60bf6e5c2837926f405dd787", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d70", + "target": "6812400b0c5cf2cf750750e3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d70", + "_id": "6812400b0c5cf2cf750750e3", "_tpl": "5a0d63621526d8dba31fe3bf", "upd": { "StackObjectsCount": 1, @@ -30368,12 +30297,12 @@ "id": "60bf6f4a8bb401472c1a37f0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d72", + "target": "6812400b0c5cf2cf750750e5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d72", + "_id": "6812400b0c5cf2cf750750e5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -30387,63 +30316,63 @@ "id": "60bf6ed84c8a3800da06e70d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d73", + "target": "6812400b0c5cf2cf750750e6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d73", + "_id": "6812400b0c5cf2cf750750e6", "_tpl": "5ac66d2e5acfc43b321d4b53", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1d74", + "_id": "6812400b0c5cf2cf750750e7", "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1d75", + "_id": "6812400b0c5cf2cf750750e8", "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "68010065f81036801d0b1d74", + "parentId": "6812400b0c5cf2cf750750e7", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1d76", + "_id": "6812400b0c5cf2cf750750e9", "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1d77", + "_id": "6812400b0c5cf2cf750750ea", "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1d78", + "_id": "6812400b0c5cf2cf750750eb", "_tpl": "5ac50da15acfc4001718d287", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1d79", + "_id": "6812400b0c5cf2cf750750ec", "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1d7a", + "_id": "6812400b0c5cf2cf750750ed", "_tpl": "5ac50c185acfc400163398d4", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d7b", + "_id": "6812400b0c5cf2cf750750ee", "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "68010065f81036801d0b1d73", + "parentId": "6812400b0c5cf2cf750750e6", "slotId": "mod_magazine" } ] @@ -30454,12 +30383,12 @@ "id": "60cb4ddd77dc197c77424f8b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d7f", + "target": "6812400b0c5cf2cf750750f2", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d7d", + "_id": "6812400b0c5cf2cf750750f0", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -30467,7 +30396,7 @@ } }, { - "_id": "68010065f81036801d0b1d7e", + "_id": "6812400b0c5cf2cf750750f1", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -30475,7 +30404,7 @@ } }, { - "_id": "68010065f81036801d0b1d7f", + "_id": "6812400b0c5cf2cf750750f2", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -30490,12 +30419,12 @@ "id": "60bf6f29fd95cb3dfc368417", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d8e", + "target": "6812400b0c5cf2cf75075101", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d82", + "_id": "6812400b0c5cf2cf750750f5", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30503,16 +30432,16 @@ } }, { - "_id": "68010065f81036801d0b1d83", + "_id": "6812400b0c5cf2cf750750f6", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d82", + "parentId": "6812400b0c5cf2cf750750f5", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d84", + "_id": "6812400b0c5cf2cf750750f7", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30520,16 +30449,16 @@ } }, { - "_id": "68010065f81036801d0b1d85", + "_id": "6812400b0c5cf2cf750750f8", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d84", + "parentId": "6812400b0c5cf2cf750750f7", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d86", + "_id": "6812400b0c5cf2cf750750f9", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30537,16 +30466,16 @@ } }, { - "_id": "68010065f81036801d0b1d87", + "_id": "6812400b0c5cf2cf750750fa", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d86", + "parentId": "6812400b0c5cf2cf750750f9", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d88", + "_id": "6812400b0c5cf2cf750750fb", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30554,16 +30483,16 @@ } }, { - "_id": "68010065f81036801d0b1d89", + "_id": "6812400b0c5cf2cf750750fc", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d88", + "parentId": "6812400b0c5cf2cf750750fb", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d8a", + "_id": "6812400b0c5cf2cf750750fd", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30571,16 +30500,16 @@ } }, { - "_id": "68010065f81036801d0b1d8b", + "_id": "6812400b0c5cf2cf750750fe", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d8a", + "parentId": "6812400b0c5cf2cf750750fd", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d8c", + "_id": "6812400b0c5cf2cf750750ff", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30588,16 +30517,16 @@ } }, { - "_id": "68010065f81036801d0b1d8d", + "_id": "6812400b0c5cf2cf75075100", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d8c", + "parentId": "6812400b0c5cf2cf750750ff", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1d8e", + "_id": "6812400b0c5cf2cf75075101", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -30605,12 +30534,12 @@ } }, { - "_id": "68010065f81036801d0b1d8f", + "_id": "6812400b0c5cf2cf75075102", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1d8e", + "parentId": "6812400b0c5cf2cf75075101", "slotId": "cartridges" } ] @@ -30791,12 +30720,12 @@ "id": "5c22472088a45016ea6b71a3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d91", + "target": "6812400b0c5cf2cf75075104", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1d91", + "_id": "6812400b0c5cf2cf75075104", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 55000 @@ -30810,12 +30739,12 @@ "id": "5ef1a87e697e1e704d23597b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1d93", + "target": "6812400b0c5cf2cf75075106", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1d93", + "_id": "6812400b0c5cf2cf75075106", "_tpl": "5b6d9ce188a4501afc1b2b25", "upd": { "StackObjectsCount": 1, @@ -30829,11 +30758,11 @@ "id": "66bb14021a47be227a5e8df2", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1d94", + "target": "6812400b0c5cf2cf75075107", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1d94", + "_id": "6812400b0c5cf2cf75075107", "_tpl": "651450ce0e00edc794068371", "upd": { "Repairable": { @@ -30843,39 +30772,39 @@ } }, { - "_id": "68010065f81036801d0b1d95", + "_id": "6812400b0c5cf2cf75075108", "_tpl": "57c44f4f2459772d2c627113", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1d96", + "_id": "6812400b0c5cf2cf75075109", "_tpl": "5a9e81fba2750c00164f6b11", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1d97", + "_id": "6812400b0c5cf2cf7507510a", "_tpl": "57c44fa82459772d2d75e415", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1d98", + "_id": "6812400b0c5cf2cf7507510b", "_tpl": "57c450252459772d28133253", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1d99", + "_id": "6812400b0c5cf2cf7507510c", "_tpl": "6565c3ab977bcc2dbb01c2e7", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1d9a", + "_id": "6812400b0c5cf2cf7507510d", "_tpl": "6565c0c2ff7eb7070409084c", - "parentId": "68010065f81036801d0b1d94", + "parentId": "6812400b0c5cf2cf75075107", "slotId": "mod_foregrip" } ], @@ -30893,2054 +30822,6 @@ "arenaLocations": [], "status": 0 }, - "6744aca8d3346c216702c583": { - "QuestName": "Discombobulate", - "_id": "6744aca8d3346c216702c583", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6744aca8d3346c216702c583 acceptPlayerMessage", - "changeQuestMessageText": "6744aca8d3346c216702c583 changeQuestMessageText", - "completePlayerMessage": "6744aca8d3346c216702c583 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6744ae5cc771515803d615ec", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Zone_for_RPG_1", - "target": [ - "5e340dcdcb6d5863cc5e5efb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6744ae63b3b4be24ffc607a4", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Zone_for_RPG_2", - "target": [ - "5e340dcdcb6d5863cc5e5efb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6744ae65f8c1438fb9374575", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Zone_for_RPG_3", - "target": [ - "5e340dcdcb6d5863cc5e5efb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6744aca8d3346c216702c585", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6744ab1def61d56e020b5c56", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6744aca8d3346c216702c583 description", - "failMessageText": "6744aca8d3346c216702c583 failMessageText", - "declinePlayerMessage": "6744aca8d3346c216702c583 declinePlayerMessage", - "name": "6744aca8d3346c216702c583 name", - "note": "6744aca8d3346c216702c583 note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6744aca8d3346c216702c583 startedMessageText", - "successMessageText": "6744aca8d3346c216702c583 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 23400, - "id": "675851404791b70c6fe5ff22", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 175000, - "id": "6758514cf6922623306e9f4e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1d9c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1d9c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 175000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "675851532f9979e353cd2ac2", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758515df1fae842bc4ec190", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1d9e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1d9e", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758516764e4d7eeaf85f3c7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1da0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1da0", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758516d2b120ac3594334c9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1da2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1da2", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5eda19f0edce541157209cee": { - "QuestName": "Anesthesia", - "_id": "5eda19f0edce541157209cee", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5eda19f0edce541157209cee acceptPlayerMessage", - "changeQuestMessageText": "5eda19f0edce541157209cee changeQuestMessageText", - "completePlayerMessage": "5eda19f0edce541157209cee completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5eda1d6ec586607c09662d54", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "prapor_022_area_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5eda1da9a58a4c49c74165ee", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "prapor_022_area_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5eda1dd3317f6066993c1744", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "prapor_022_area_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5f0389268580cc37797e0025", - "conditions": [ - { - "id": "5f03899abb4e27377c090cdc", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5f0389b036cb1c7f496f9942", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "5f0389268580cc37797e0026", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5f06e52d4ab52901d036b505", - "target": "5eda1d6ec586607c09662d54", - "conditionType": "CompleteCondition" - }, - { - "id": "5f06e532d57aeb6e0925300c", - "target": "5eda1da9a58a4c49c74165ee", - "conditionType": "CompleteCondition" - }, - { - "id": "5f06e536fdc0320a0850e310", - "target": "5eda1dd3317f6066993c1744", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5f1049d7aa82db0e8f75cb7b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5967725e86f774601a446662", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "5eda1a67ef0ad2643e73af31", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 21, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5eda19f0edce541157209cee description", - "failMessageText": "5eda19f0edce541157209cee failMessageText", - "declinePlayerMessage": "5eda19f0edce541157209cee declinePlayerMessage", - "name": "5eda19f0edce541157209cee name", - "note": "5eda19f0edce541157209cee note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5f0f202de269d61a4b5cf6ec.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5eda19f0edce541157209cee startedMessageText", - "successMessageText": "5eda19f0edce541157209cee successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18100, - "id": "60c8a4e483161b326c471106", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8a4d7919c14709f49738d", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "5eda1b27ed4d216c284f5522", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1da4", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1da4", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5f0dc03de1176c3119660cd7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1da5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1da5", - "_tpl": "57c44b372459772d2b39b8ce", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1da6", - "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1da7", - "_tpl": "57c44e7b2459772d28133248", - "parentId": "68010065f81036801d0b1da6", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1da8", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1da9", - "_tpl": "57838f9f2459774a150289a0", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1daa", - "_tpl": "57c44fa82459772d2d75e415", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1dab", - "_tpl": "57c450252459772d28133253", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1dac", - "_tpl": "651178336cad06c37c049eb4", - "parentId": "68010065f81036801d0b1da5", - "slotId": "mod_handguard" - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "5f0dc05a8199b37bf4752c23", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1db7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1daf", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1db0", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1daf", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1db1", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1db2", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1db1", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1db3", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1db4", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1db3", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1db5", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1db6", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1db5", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1db7", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1db8", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1db7", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "5f0dc06c0553f172ce0a1ff4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dc3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dbb", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dbc", - "_tpl": "57a0e5022459774d1673f889", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dbb", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dbd", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dbe", - "_tpl": "57a0e5022459774d1673f889", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dbd", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dbf", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dc0", - "_tpl": "57a0e5022459774d1673f889", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dbf", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dc1", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dc2", - "_tpl": "57a0e5022459774d1673f889", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dc1", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dc3", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dc4", - "_tpl": "57a0e5022459774d1673f889", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dc3", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5edac63b930f5454f51e128b": { - "QuestName": "TerraGroup Employee", - "_id": "5edac63b930f5454f51e128b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5edac63b930f5454f51e128b acceptPlayerMessage", - "changeQuestMessageText": "5edac63b930f5454f51e128b changeQuestMessageText", - "completePlayerMessage": "5edac63b930f5454f51e128b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5eec9d054110547f1f545c98", - "conditions": [ - { - "id": "5eec9d170a023b6de04d4bc4", - "dynamicLocale": false, - "target": "peace_027_area", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5eec9d054110547f1f545c99", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5eff5674befb6436ce3bbaf7", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5eff135be0d3331e9d282b7b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5edac8483c809a44ef12b4d2", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5eff135be0d3331e9d282b7b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5eff599565987f2a9e661f04", - "target": "5eff5674befb6436ce3bbaf7", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5edac657cc183c769d778bdc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 23, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5f039e9f9235612be11c1f09", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5edac020218d181e29451446", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5f039ecba26f2a317b0972d4", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5edac34d0bb72a50635c2bfa", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5edac63b930f5454f51e128b description", - "failMessageText": "5edac63b930f5454f51e128b failMessageText", - "declinePlayerMessage": "5edac63b930f5454f51e128b declinePlayerMessage", - "name": "5edac63b930f5454f51e128b name", - "note": "5edac63b930f5454f51e128b note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5b0fc42d86f7744a585f9105", - "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5edac63b930f5454f51e128b startedMessageText", - "successMessageText": "5edac63b930f5454f51e128b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 17000, - "id": "60cc7431e3d0247e625dab62", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60cc74362b555f16df5c41ae", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 5000, - "id": "5f0da5bf6f25345edd40dc11", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dc6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1dc6", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 5000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cc744fa7d63f18200a24dc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dc7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dc7", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "upd": { - "StackObjectsCount": 4, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1dc8", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "68010065f81036801d0b1dc7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1dc9", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "68010065f81036801d0b1dc7", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1dca", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "68010065f81036801d0b1dc7", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1dcb", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "68010065f81036801d0b1dc7", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1dcc", - "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "68010065f81036801d0b1dcb", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cc7479a7d63f18200a24dd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dd0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dce", - "_tpl": "5a3501acc4a282000d72293a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dcf", - "_tpl": "5a3501acc4a282000d72293a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dd0", - "_tpl": "5a3501acc4a282000d72293a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cc74687c496e588343a6d3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dd9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dd3", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dd4", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dd3", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dd5", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dd6", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dd5", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dd7", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dd8", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dd7", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1dd9", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dda", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1dd9", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b8efa281c51328c56d7713", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1ddb", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1ddb", - "_tpl": "5ef1ba28c64c5d0dfc0571a5" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a27b7a786f774579c3eb376": { - "QuestName": "Tigr Safari", - "_id": "5a27b7a786f774579c3eb376", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27b7a786f774579c3eb376 acceptPlayerMessage", - "changeQuestMessageText": "5a27b7a786f774579c3eb376 changeQuestMessageText", - "completePlayerMessage": "5a27b7a786f774579c3eb376 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "66698a9eddc21e9441645819", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_peacemaker_002_N1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5a27e75886f7740aef4a9157", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_peacemaker_002_N2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5a29653986f77406a3435b26", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_peacemaker_002_N3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c9394a986f7741228714be2", - "conditions": [ - { - "id": "5c9394ba86f774122a7ac1a2", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5c9394de86f774122c346f82", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "5c9394a986f7741228714be3", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5c9395be86f774122a7ac1a3", - "target": "5a27e75886f7740aef4a9157", - "conditionType": "CompleteCondition" - }, - { - "id": "5c9395cd86f774122c346f84", - "target": "5a29653986f77406a3435b26", - "conditionType": "CompleteCondition" - }, - { - "id": "66698b0c361faf66b8ade1dd", - "target": "66698a9eddc21e9441645819", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a71b286f7745a7e19f642", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a27e86386f7743c2a3a1086", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27b75b86f7742e97191958", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27b7a786f774579c3eb376 description", - "failMessageText": "5a27b7a786f774579c3eb376 failMessageText", - "declinePlayerMessage": "5a27b7a786f774579c3eb376 declinePlayerMessage", - "name": "5a27b7a786f774579c3eb376 name", - "note": "5a27b7a786f774579c3eb376 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/57e4f1852459772a15635633.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27b7a786f774579c3eb376 startedMessageText", - "successMessageText": "5a27b7a786f774579c3eb376 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60cc68787c496e588343a6b3", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc687d2b555f16df5c418d", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 900, - "id": "5a27d94f86f77448d97fe86d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ddd", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1ddd", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 900 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc68ada7d63f18200a24bb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ddf", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ddf", - "_tpl": "5f5f41f56760b4138443b352", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc68c12b555f16df5c4192", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1de2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1de1", - "_tpl": "58d3db5386f77426186285a0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1de2", - "_tpl": "58d3db5386f77426186285a0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b74411273611d2462ab79", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1de3", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1de3", - "_tpl": "59e6920f86f77411d82aa167" - } - ], - "loyaltyLevel": 2, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "63a19fc1d6d4651e53602aee", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1de4", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1de4", - "_tpl": "5e00903ae9dc277128008b87", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b1de5", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "68010065f81036801d0b1de4", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1de6", - "_tpl": "5de910da8b6c4240ba2651b5", - "parentId": "68010065f81036801d0b1de4", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1de7", - "_tpl": "5e0090f7e9dc277128008b93", - "parentId": "68010065f81036801d0b1de4", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1de8", - "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "68010065f81036801d0b1de7", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1de9", - "_tpl": "5de922d4b11454561e39239f", - "parentId": "68010065f81036801d0b1de4", - "slotId": "mod_charge" - }, - { - "_id": "68010065f81036801d0b1dea", - "_tpl": "5de8fbf2b74cd90030650c79", - "parentId": "68010065f81036801d0b1de4", - "slotId": "mod_mount_000" - } - ], - "loyaltyLevel": 1, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59c50c8886f7745fed3193bf": { - "QuestName": "The Punisher - Part 2", - "_id": "59c50c8886f7745fed3193bf", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59c50c8886f7745fed3193bf acceptPlayerMessage", - "changeQuestMessageText": "59c50c8886f7745fed3193bf changeQuestMessageText", - "completePlayerMessage": "59c50c8886f7745fed3193bf completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "59674d5186f22146b872d5f6", - "conditions": [ - { - "id": "59674d5586f77596b62554e7", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [ - [ - "59bffc1f86f77435b128b872" - ], - [ - "5a32a064c4a28200741e22de" - ], - [ - "59bffbb386f77435b379b9c2" - ], - [ - "54490a4d4bdc2dbc018b4573" - ], - [ - "5b363dd25acfc4001a598fd2" - ], - [ - "5b363dea5acfc4771e1c5e7e" - ], - [ - "5b363e1b5acfc4771e1c5e80" - ], - [ - "593d489686f7745c6255d58a" - ], - [ - "5a27b6bec4a282000e496f78" - ], - [ - "58aeac1b86f77457c419f475" - ], - [ - "593d490386f7745ee97a1555" - ], - [ - "55d6190f4bdc2d87028b4567" - ], - [ - "59bfc5c886f7743bf6794e62" - ], - [ - "57c44dd02459772d2e0ae249" - ], - [ - "5a0d63621526d8dba31fe3bf" - ], - [ - "5a34fe59c4a282000b1521a2" - ], - [ - "5a9fb739a2750c003215717f" - ], - [ - "5a9fbb84a2750c00137fa685" - ], - [ - "5c4eecc32e221602b412b440" - ], - [ - "57838c962459774a1651ec63" - ], - [ - "5b86a0e586f7745b600ccb23" - ], - [ - "593d493f86f7745e6b2ceb22" - ], - [ - "564caa3d4bdc2d17108b458e" - ], - [ - "57ffb0e42459777d047111c5" - ], - [ - "59fb257e86f7742981561852" - ], - [ - "5c7e8fab2e22165df16b889b" - ], - [ - "5a33a8ebc4a282000c5a950d" - ], - [ - "5a9fbb74a2750c0032157181" - ], - [ - "5a9fbacda2750c00141e080f" - ], - [ - "5c6165902e22160010261b28" - ], - [ - "5abcc328d8ce8700194394f3" - ], - [ - "5c7955c22e221644f31bfd5e" - ], - [ - "5a7ad74e51dfba0015068f45" - ], - [ - "5926d33d86f77410de68ebc0" - ], - [ - "57da93632459771cb65bf83f" - ], - [ - "57dbb57e2459774673234890" - ], - [ - "5ba26ae8d4351e00367f9bdb" - ], - [ - "56e05b06d2720bb2668b4586" - ], - [ - "57f3c8cc2459773ec4480328" - ], - [ - "55d614004bdc2d86028b4568" - ], - [ - "571a28e524597720b4066567" - ], - [ - "59c0ec5b86f77435b128bfca" - ], - [ - "5d3ef698a4b9361182109872" - ], - [ - "5caf187cae92157c28402e43" - ], - [ - "5cebec00d7f00c065c53522a" - ], - [ - "5d44064fa4b9361e4f6eb8b5" - ], - [ - "5cff9e84d7ad1a049e54ed55" - ], - [ - "5cff9e84d7ad1a049e54ed55" - ], - [ - "5a9fbacda2750c00141e080f" - ], - [ - "5a9fbb84a2750c00137fa685" - ], - [ - "593d489686f7745c6255d58a" - ], - [ - "5e208b9842457a4a7a33d074" - ], - [ - "5dfa3cd1b33c0951220c079b" - ], - [ - "5e01ea19e9dc277128008c0b" - ], - [ - "5c7fb51d2e2216001219ce11" - ], - [ - "5fbe7618d6fa9c00c571bb6c" - ], - [ - "5fbe760793164a5b6278efc8" - ], - [ - "5fc4b9b17283c4046c5814d7" - ], - [ - "5f63407e1b231926f2329f15" - ], - [ - "5ea17bbc09aa976f2e7a51cd" - ], - [ - "60926df0132d4d12c81fd9df" - ], - [ - "6171367e1cb55961fa0fdb36" - ], - [ - "6130c4d51cb55961fa0fd49f" - ], - [ - "602a97060ddce744014caf6f" - ], - [ - "5de8f2d5b74cd90030650c72" - ], - [ - "615d8f8567085e45ef1409ca" - ], - [ - "58889c7324597754281f9439" - ], - [ - "62811fa609427b40ab14e765" - ], - [ - "626673016f1edc06f30cf6d5" - ], - [ - "5dfa3d2b0dee1b22f862eade" - ], - [ - "63877c99e785640d436458ea" - ], - [ - "638612b607dfed1ccb7206ba" - ], - [ - "634eba08f69c710e0108d386" - ], - [ - "630f2982cdb9e392db0cbcc7" - ], - [ - "62e2a7138e1ac9380579c122" - ], - [ - "64c196ad26a15b84aa07132f" - ], - [ - "652911e650dc782999054b9d" - ], - [ - "64527a3a7da7133e5a09ca99" - ], - [ - "66993733f74fef4dfd0b04ff" - ], - [ - "65144ff50e00edc79406836f" - ], - [ - "673f0b36536d64240f01acd6" - ], - [ - "673f0a9370a3ddcf0d0ee0b8" - ], - [ - "673f0a38259f5945d70e43a6" - ], - [ - "674d5e287075e056160e0176" - ], - [ - "676149c5062e6212f5058c36" - ], - [ - "676149d8e889e1972605d6be" - ] - ], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "59c50b8e86f1742fed319382", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - } - ] - }, - "id": "59624d5386f77446b872d5f7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb5e2ff86f7746ef64c979b", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "572b7fa524597762b747ce82" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 7, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59c50f1686f77412ef2c01e7", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "572b7fa524597762b747ce82" - ], - "globalQuestCounterId": "", - "value": 7, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926b186f774753c5479a2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 18, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "596a1f7586f1741ddd6c10c8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59c50a9e86f7745fef66f4ff", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59c50c8886f7745fed3193bf description", - "failMessageText": "59c50c8886f7745fed3193bf failMessageText", - "declinePlayerMessage": "59c50c8886f7745fed3193bf declinePlayerMessage", - "name": "59c50c8886f7745fed3193bf name", - "note": "59c50c8886f7745fed3193bf note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/5981c96e86f77477920d1a04.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59c50c8886f7745fed3193bf startedMessageText", - "successMessageText": "59c50c8886f7745fed3193bf successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "59c5101a86f7741f0d09de28", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1def", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1def", - "_tpl": "5a7c4850e899ef00150be885", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1df0", - "_tpl": "657baaf0b7e9ca9a02045c02", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1def", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b1df1", - "_tpl": "657bab6ec6f689d3a205b85f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1def", - "slotId": "Helmet_back" - }, - { - "_id": "68010065f81036801d0b1df2", - "_tpl": "657babc6f58ba5a6250107a2", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1def", - "slotId": "Helmet_ears" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "59c5101586f7741f0c5a8697", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1df4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1df4", - "_tpl": "5b432b965acfc47a8774094e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a417e2586f77469bc2979ba", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1df5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1df5", - "_tpl": "56e0598dd2720bb5668b45a6", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1df6", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "68010065f81036801d0b1df5", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1df7", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "68010065f81036801d0b1df5", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1df8", - "_tpl": "56e05a6ed2720bd0748b4567", - "parentId": "68010065f81036801d0b1df5", - "slotId": "mod_pistolgrip" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 13100, - "id": "60c8acb78dfbfc09882efd1f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8a02e9339363e8f0c6ace", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "60cb4f16179f8541b84691c2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dfa", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1dfa", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ec19b0c83b69d213d3c2eec", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dfd", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dfc", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1dfd", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb4f016a2a1958fc522cc0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1dfe", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1dfe", - "_tpl": "5ac66d725acfc43b321d4b60", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b1dff", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1e00", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "68010065f81036801d0b1dff", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1e01", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1e02", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1e03", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1e04", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1e05", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1e06", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "68010065f81036801d0b1dfe", - "slotId": "mod_magazine" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5967530a86f77462ba22226b": { "QuestName": "Bad Rep Evidence", "_id": "5967530a86f77462ba22226b", @@ -33156,12 +31037,12 @@ "id": "5fe3064f7756c41536769d35", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e08", + "target": "6812400b0c5cf2cf7507510f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1e08", + "_id": "6812400b0c5cf2cf7507510f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -33175,39 +31056,39 @@ "id": "60cb4adc7c496e588343a198", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e09", + "target": "6812400b0c5cf2cf75075110", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e09", + "_id": "6812400b0c5cf2cf75075110", "_tpl": "57f3c6bd24597738e730fa2f", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1e0a", + "_id": "6812400b0c5cf2cf75075111", "_tpl": "57d152ec245977144076ccdf", - "parentId": "68010065f81036801d0b1e09", + "parentId": "6812400b0c5cf2cf75075110", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1e0b", + "_id": "6812400b0c5cf2cf75075112", "_tpl": "57f3c7e024597738ea4ba286", - "parentId": "68010065f81036801d0b1e09", + "parentId": "6812400b0c5cf2cf75075110", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1e0c", + "_id": "6812400b0c5cf2cf75075113", "_tpl": "57f3c8cc2459773ec4480328", - "parentId": "68010065f81036801d0b1e0b", + "parentId": "6812400b0c5cf2cf75075112", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1e0d", + "_id": "6812400b0c5cf2cf75075114", "_tpl": "57d1519e24597714373db79d", - "parentId": "68010065f81036801d0b1e09", + "parentId": "6812400b0c5cf2cf75075110", "slotId": "mod_magazine" } ] @@ -33218,12 +31099,12 @@ "id": "5a2e860886f77406357faa77", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e11", + "target": "6812400b0c5cf2cf75075118", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e0f", + "_id": "6812400b0c5cf2cf75075116", "_tpl": "57d1519e24597714373db79d", "upd": { "StackObjectsCount": 1, @@ -33231,7 +31112,7 @@ } }, { - "_id": "68010065f81036801d0b1e10", + "_id": "6812400b0c5cf2cf75075117", "_tpl": "57d1519e24597714373db79d", "upd": { "StackObjectsCount": 1, @@ -33239,7 +31120,7 @@ } }, { - "_id": "68010065f81036801d0b1e11", + "_id": "6812400b0c5cf2cf75075118", "_tpl": "57d1519e24597714373db79d", "upd": { "StackObjectsCount": 1, @@ -33254,12 +31135,12 @@ "id": "60e04ed0aebd35217f7df4fe", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e18", + "target": "6812400b0c5cf2cf7507511f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e14", + "_id": "6812400b0c5cf2cf7507511b", "_tpl": "65702621cfc010a0f5006a44", "upd": { "StackObjectsCount": 1, @@ -33267,16 +31148,16 @@ } }, { - "_id": "68010065f81036801d0b1e15", + "_id": "6812400b0c5cf2cf7507511c", "_tpl": "57371f2b24597761224311f1", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1e14", + "parentId": "6812400b0c5cf2cf7507511b", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1e16", + "_id": "6812400b0c5cf2cf7507511d", "_tpl": "65702621cfc010a0f5006a44", "upd": { "StackObjectsCount": 1, @@ -33284,16 +31165,16 @@ } }, { - "_id": "68010065f81036801d0b1e17", + "_id": "6812400b0c5cf2cf7507511e", "_tpl": "57371f2b24597761224311f1", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1e16", + "parentId": "6812400b0c5cf2cf7507511d", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1e18", + "_id": "6812400b0c5cf2cf7507511f", "_tpl": "65702621cfc010a0f5006a44", "upd": { "StackObjectsCount": 1, @@ -33301,12 +31182,12 @@ } }, { - "_id": "68010065f81036801d0b1e19", + "_id": "6812400b0c5cf2cf75075120", "_tpl": "57371f2b24597761224311f1", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1e18", + "parentId": "6812400b0c5cf2cf7507511f", "slotId": "cartridges" } ] @@ -33316,11 +31197,11 @@ "id": "5ac6517b86f7740575506e66", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1e1a", + "target": "6812400b0c5cf2cf75075121", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1e1a", + "_id": "6812400b0c5cf2cf75075121", "_tpl": "576fd4ec2459777f0b518431" } ], @@ -33332,11 +31213,11 @@ "id": "655b8fc8065b076eb02c4b4e", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1e1b", + "target": "6812400b0c5cf2cf75075122", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1e1b", + "_id": "6812400b0c5cf2cf75075122", "_tpl": "5aa7d193e5b5b000171d063f" } ], @@ -33354,6 +31235,1472 @@ "arenaLocations": [], "status": 0 }, + "5c0d4c12d09282029f539173": { + "QuestName": "Peacekeeping Mission", + "_id": "5c0d4c12d09282029f539173", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c0d4c12d09282029f539173 acceptPlayerMessage", + "changeQuestMessageText": "5c0d4c12d09282029f539173 changeQuestMessageText", + "completePlayerMessage": "5c0d4c12d09282029f539173 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c0d4c62d09282029d76ad28", + "conditions": [ + { + "id": "5c0d4c6ed0928202a62f4f20", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5c0d4c88d09282029f539179", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + }, + { + "id": "5c0d4cf2d0928202b25db712", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c1fd66286f7743c7b261f7b", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c0d4d0bd09282029e2fffc9", + "conditions": [ + { + "id": "5c0d4d67d09282029d76ad2b", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5c0d4d72d0928202a62f4f23", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + }, + { + "id": "5c0d4dc3d0928202a62f4f26", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "5c1b713486f77413bc250406", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c13949686f774210563eccc", + "conditions": [ + { + "id": "5c1394d886f77430a665d2f1", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5c13951786f774276a650530", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + }, + { + "id": "5c1a71cc86f77456661eaa5c", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "5c1b713986f77470d8650910", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c13957986f77430a665d2fe", + "conditions": [ + { + "id": "5c1395b386f774276b24ae2b", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5c1395d486f774276a650535", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + }, + { + "id": "5c1a725486f7744c2a78e8b3", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "5c1b713f86f774719c22e8a0", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63aec4fe6d6c3377e64b9f3a", + "conditions": [ + { + "id": "63aec50a3c65bf56b11b9da8", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "63aec55c237b04479f5948cb", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + }, + { + "id": "63aec597fe01cd749c5e799b", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "63aec4fe6d6c3377e64b9f39", + "index": 4, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65e08aa97319265b006ffe9f", + "conditions": [ + { + "id": "65e08ae0774b0ee8b00a8483", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "65e08af37c857becefdb3a48", + "dynamicLocale": false, + "target": [ + "Sandbox", + "Sandbox_high" + ], + "conditionType": "Location" + }, + { + "id": "65e08b1d3d5898cdd34da72b", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa7d03ae5b5b00016327db5", + "5ab8e4ed86f7742d8e50c7fa" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "65e08aa9f5879b2586d5fd4c", + "index": 5, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5c20ce2c86f774337f427599", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5c0d0f1886f77457b8210226", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c0d4c12d09282029f539173 description", + "failMessageText": "5c0d4c12d09282029f539173 failMessageText", + "declinePlayerMessage": "5c0d4c12d09282029f539173 declinePlayerMessage", + "name": "5c0d4c12d09282029f539173 name", + "note": "5c0d4c12d09282029f539173 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/5a27c44386f7744237421af0.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0d4c12d09282029f539173 startedMessageText", + "successMessageText": "5c0d4c12d09282029f539173 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "5c18bf1386f77467c00e1342", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075127", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075127", + "_tpl": "5aa7d03ae5b5b00016327db5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075128", + "_tpl": "654a90aff4f81a421b0a7c86", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075127", + "slotId": "helmet_top" + }, + { + "_id": "6812400b0c5cf2cf75075129", + "_tpl": "654a91068e1ce698150fd1e2", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075127", + "slotId": "helmet_back" + }, + { + "_id": "6812400b0c5cf2cf7507512a", + "_tpl": "654a9189bcc67a392b056c79", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075127", + "slotId": "helmet_ears" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5c18bf1786f77467bf065204", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075130", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075130", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075131", + "_tpl": "657044e971369562b300ce9b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075130", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf75075132", + "_tpl": "657045741bd9beedc40b7299", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075130", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf75075133", + "_tpl": "657045b97e80617cee095bda", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075130", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf75075134", + "_tpl": "6570460471369562b300ce9f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075130", + "slotId": "soft_armor_right" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5c1a60bf86f7747954540e3c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075135", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075135", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75075136", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6812400b0c5cf2cf75075135", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075137", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6812400b0c5cf2cf75075135", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075138", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6812400b0c5cf2cf75075135", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075139", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6812400b0c5cf2cf75075138", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf7507513a", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6812400b0c5cf2cf75075139", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507513b", + "_tpl": "56ea8d2fd2720b7c698b4570", + "parentId": "6812400b0c5cf2cf75075139", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf7507513c", + "_tpl": "55d4af3a4bdc2d972f8b456f", + "parentId": "6812400b0c5cf2cf7507513b", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf7507513d", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "6812400b0c5cf2cf75075138", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507513e", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "6812400b0c5cf2cf7507513d", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507513f", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "6812400b0c5cf2cf75075138", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075140", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf75075135", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75075141", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6812400b0c5cf2cf75075140", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf75075142", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6812400b0c5cf2cf75075135", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5c1a617e86f77442c47f3602", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075146", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075144", + "_tpl": "5aaa5dfee5b5b000140293d3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075145", + "_tpl": "5aaa5dfee5b5b000140293d3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075146", + "_tpl": "5aaa5dfee5b5b000140293d3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 25500, + "id": "60cc730da7d63f18200a24db", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60cc732f6a2a1958fc5231fb", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5c1a271286f7741bb5336ccf", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075147", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075147", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75075148", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "6812400b0c5cf2cf75075147", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075149", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6812400b0c5cf2cf75075147", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507514a", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400b0c5cf2cf75075147", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf7507514b", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6812400b0c5cf2cf7507514a", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507514c", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "6812400b0c5cf2cf7507514b", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507514d", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "6812400b0c5cf2cf75075147", + "slotId": "mod_mount" + }, + { + "_id": "6812400b0c5cf2cf7507514e", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "6812400b0c5cf2cf7507514d", + "slotId": "mod_scope" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc731a8f570e28f1481156", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075153", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075151", + "_tpl": "6570254fcfc010a0f5006a22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075152", + "_tpl": "5a6086ea4f39f99cd479502f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75075151", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075153", + "_tpl": "6570254fcfc010a0f5006a22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075154", + "_tpl": "5a6086ea4f39f99cd479502f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75075153", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5c1a274586f774382929219e", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075157", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075156", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075157", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "657fc218fd86b9d9680c4a1a", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075158", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075158", + "_tpl": "656fa8d700d62bcd2e024084" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5edac63b930f5454f51e128b": { + "QuestName": "TerraGroup Employee", + "_id": "5edac63b930f5454f51e128b", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5edac63b930f5454f51e128b acceptPlayerMessage", + "changeQuestMessageText": "5edac63b930f5454f51e128b changeQuestMessageText", + "completePlayerMessage": "5edac63b930f5454f51e128b completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5eec9d054110547f1f545c98", + "conditions": [ + { + "id": "5eec9d170a023b6de04d4bc4", + "dynamicLocale": false, + "target": "peace_027_area", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5eec9d054110547f1f545c99", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5eff5674befb6436ce3bbaf7", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5eff135be0d3331e9d282b7b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5edac8483c809a44ef12b4d2", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5eff135be0d3331e9d282b7b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5eff599565987f2a9e661f04", + "target": "5eff5674befb6436ce3bbaf7", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5edac657cc183c769d778bdc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 23, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5f039e9f9235612be11c1f09", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5edac020218d181e29451446", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5f039ecba26f2a317b0972d4", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5edac34d0bb72a50635c2bfa", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5edac63b930f5454f51e128b description", + "failMessageText": "5edac63b930f5454f51e128b failMessageText", + "declinePlayerMessage": "5edac63b930f5454f51e128b declinePlayerMessage", + "name": "5edac63b930f5454f51e128b name", + "note": "5edac63b930f5454f51e128b note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5b0fc42d86f7744a585f9105", + "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5edac63b930f5454f51e128b startedMessageText", + "successMessageText": "5edac63b930f5454f51e128b successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 17000, + "id": "60cc7431e3d0247e625dab62", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60cc74362b555f16df5c41ae", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 5000, + "id": "5f0da5bf6f25345edd40dc11", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507515a", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507515a", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 5000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60cc744fa7d63f18200a24dc", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507515b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507515b", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "StackObjectsCount": 4, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf7507515c", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "6812400b0c5cf2cf7507515b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf7507515d", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "6812400b0c5cf2cf7507515b", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507515e", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "6812400b0c5cf2cf7507515b", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507515f", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "6812400b0c5cf2cf7507515b", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75075160", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "6812400b0c5cf2cf7507515f", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cc7479a7d63f18200a24dd", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075164", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075162", + "_tpl": "5a3501acc4a282000d72293a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075163", + "_tpl": "5a3501acc4a282000d72293a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075164", + "_tpl": "5a3501acc4a282000d72293a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60cc74687c496e588343a6d3", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507516d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075167", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075168", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75075167", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075169", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507516a", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf75075169", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507516b", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507516c", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507516b", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507516d", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507516e", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507516d", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b8efa281c51328c56d7713", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507516f", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507516f", + "_tpl": "5ef1ba28c64c5d0dfc0571a5" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6179b3a12153c15e937d52bc": { + "QuestName": "Energy Crisis", + "_id": "6179b3a12153c15e937d52bc", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6179b3a12153c15e937d52bc acceptPlayerMessage", + "changeQuestMessageText": "6179b3a12153c15e937d52bc changeQuestMessageText", + "completePlayerMessage": "6179b3a12153c15e937d52bc completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "617bf5860cf4a041de5b396b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_fuel_blood", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "61926522b0295324b5484459", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_fuel_blood_bezovoz1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6192653d80c326298126aee1", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_fuel_blood_bezovoz2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "61926544bb0c712ed42d583c", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight_fuel_blood_bezovoz3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61ae0a5cf17da97ae5105546", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3464c86f7741d651d6877", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61ae0a7540869119390a7bc9", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179b3a12153c15e937d52bc description", + "failMessageText": "6179b3a12153c15e937d52bc failMessageText", + "declinePlayerMessage": "6179b3a12153c15e937d52bc declinePlayerMessage", + "name": "6179b3a12153c15e937d52bc name", + "note": "6179b3a12153c15e937d52bc note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/60c373e753bc0f18316351fe.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179b3a12153c15e937d52bc startedMessageText", + "successMessageText": "6179b3a12153c15e937d52bc successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13000, + "id": "617bf5c0037eb267e41f3e2f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ae0aaed3ac1d27f25298b7", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "61950d66d14ece31007e264c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075171", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075171", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a1a3714ebcff1c995dc342", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075172", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075172", + "_tpl": "59fb137a86f7740adb646af1" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "657fc9c3fd86b9d9680c4a26", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075173", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075173", + "_tpl": "656f611f94b480b8a500c0db" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "60e71b9bbd90872cb85440f3": { "QuestName": "Capturing Outposts", "_id": "60e71b9bbd90872cb85440f3", @@ -33590,11 +32937,11 @@ "id": "655b773f1f2b6843ec751fd9", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1e1c", + "target": "6812400b0c5cf2cf75075174", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1e1c", + "_id": "6812400b0c5cf2cf75075174", "_tpl": "57a0e5022459774d1673f889" } ], @@ -33607,12 +32954,12 @@ "id": "619d053a592f3b2dae1a5418", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e1e", + "target": "6812400b0c5cf2cf75075176", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e1e", + "_id": "6812400b0c5cf2cf75075176", "_tpl": "619bdeb986e01e16f839a99e", "upd": { "StackObjectsCount": 1, @@ -33627,12 +32974,12 @@ "id": "64b6a7f85335da4dfe4644e5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e20", + "target": "6812400b0c5cf2cf75075178", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e20", + "_id": "6812400b0c5cf2cf75075178", "_tpl": "619bdfd4c9546643a67df6fa", "upd": { "StackObjectsCount": 1, @@ -33647,12 +32994,12 @@ "id": "64b6a85ed5887c2ce956115c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e25", + "target": "6812400b0c5cf2cf7507517d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e25", + "_id": "6812400b0c5cf2cf7507517d", "_tpl": "5f60c74e3b85f6263c145586", "upd": { "StackObjectsCount": 1, @@ -33660,30 +33007,30 @@ } }, { - "_id": "68010065f81036801d0b1e26", + "_id": "6812400b0c5cf2cf7507517e", "_tpl": "657bc285aab96fccee08bea3", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e25", + "parentId": "6812400b0c5cf2cf7507517d", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b1e27", + "_id": "6812400b0c5cf2cf7507517f", "_tpl": "657bc2c5a1c61ee0c3036333", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e25", + "parentId": "6812400b0c5cf2cf7507517d", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b1e28", + "_id": "6812400b0c5cf2cf75075180", "_tpl": "657bc2e7b30eca976305118d", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e25", + "parentId": "6812400b0c5cf2cf7507517d", "slotId": "Helmet_ears" } ] @@ -33694,12 +33041,12 @@ "id": "64b6a86b3e349c7dbd06bd19", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e2b", + "target": "6812400b0c5cf2cf75075183", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e2a", + "_id": "6812400b0c5cf2cf75075182", "_tpl": "5f60c85b58eff926626a60f7", "upd": { "StackObjectsCount": 1, @@ -33707,7 +33054,7 @@ } }, { - "_id": "68010065f81036801d0b1e2b", + "_id": "6812400b0c5cf2cf75075183", "_tpl": "5f60c85b58eff926626a60f7", "upd": { "StackObjectsCount": 1, @@ -33722,12 +33069,12 @@ "id": "64b6a877c3abf20a9660daac", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e39", + "target": "6812400b0c5cf2cf75075191", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e39", + "_id": "6812400b0c5cf2cf75075191", "_tpl": "545cdb794bdc2d3a198b456a", "upd": { "StackObjectsCount": 1, @@ -33735,111 +33082,111 @@ } }, { - "_id": "68010065f81036801d0b1e3a", + "_id": "6812400b0c5cf2cf75075192", "_tpl": "6575ce3716c2762fba0057fd", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b1e3b", + "_id": "6812400b0c5cf2cf75075193", "_tpl": "6575ce45dc9932aed601c616", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b1e3c", + "_id": "6812400b0c5cf2cf75075194", "_tpl": "6575ce5016c2762fba005802", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b1e3d", + "_id": "6812400b0c5cf2cf75075195", "_tpl": "6575ce5befc786cd9101a671", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b1e3e", + "_id": "6812400b0c5cf2cf75075196", "_tpl": "6575ce6f16c2762fba005806", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b1e3f", + "_id": "6812400b0c5cf2cf75075197", "_tpl": "6575ce9db15fef3dd4051628", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Shoulder_l" }, { - "_id": "68010065f81036801d0b1e40", + "_id": "6812400b0c5cf2cf75075198", "_tpl": "6575cea8b15fef3dd405162c", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Shoulder_r" }, { - "_id": "68010065f81036801d0b1e41", + "_id": "6812400b0c5cf2cf75075199", "_tpl": "6575ce8bdc9932aed601c61e", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Groin" }, { - "_id": "68010065f81036801d0b1e42", + "_id": "6812400b0c5cf2cf7507519a", "_tpl": "64afc71497cf3a403c01ff38", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b1e43", + "_id": "6812400b0c5cf2cf7507519b", "_tpl": "64afc71497cf3a403c01ff38", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Back_plate" }, { - "_id": "68010065f81036801d0b1e44", + "_id": "6812400b0c5cf2cf7507519c", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Left_side_plate" }, { - "_id": "68010065f81036801d0b1e45", + "_id": "6812400b0c5cf2cf7507519d", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1e39", + "parentId": "6812400b0c5cf2cf75075191", "slotId": "Right_side_plate" } ] @@ -33855,396 +33202,27 @@ "arenaLocations": [], "status": 0 }, - "59c50a9e86f7745fef66f4ff": { - "QuestName": "The Punisher - Part 1", - "_id": "59c50a9e86f7745fef66f4ff", + "60e71c9ad54b755a3b53eb66": { + "QuestName": "The Cleaner", + "_id": "60e71c9ad54b755a3b53eb66", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59c50a9e86f7745fef66f4ff acceptPlayerMessage", - "changeQuestMessageText": "59c50a9e86f7745fef66f4ff changeQuestMessageText", - "completePlayerMessage": "59c50a9e86f7745fef66f4ff completePlayerMessage", + "acceptPlayerMessage": "60e71c9ad54b755a3b53eb66 acceptPlayerMessage", + "changeQuestMessageText": "60e71c9ad54b755a3b53eb66 changeQuestMessageText", + "completePlayerMessage": "60e71c9ad54b755a3b53eb66 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "59674d5186f77446b032d2f1", + "id": "60e745d6479eef59b01b0bdb", "conditions": [ { - "id": "59674d5586f72226b62554e7", + "id": "60e745f3d1a062318d3d2264", "dynamicLocale": false, "target": "Savage", "compareMethod": ">=", "value": 1, - "weapon": [ - "5abcbc27d8ce8700182eceeb", - "59d6088586f774275f37482f", - "59ff346386f77477562ff5e2", - "5a0ec13bfcdbcb00165aa685", - "59e6152586f77473dc057aa1", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "59c52b3e86f7745fed319382", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "59674d5186f00443b872d5f7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926b186f774753c5479a2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "596a1f7586f2741ddd6c10c8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5967725e86f774601a446662", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59c50a9e86f7745fef66f4ff description", - "failMessageText": "59c50a9e86f7745fef66f4ff failMessageText", - "declinePlayerMessage": "59c50a9e86f7745fef66f4ff declinePlayerMessage", - "name": "59c50a9e86f7745fef66f4ff name", - "note": "59c50a9e86f7745fef66f4ff note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5968ec2986f7741ddf17db83.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59c50a9e86f7745fef66f4ff startedMessageText", - "successMessageText": "59c50a9e86f7745fef66f4ff successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10200, - "id": "60c8aca91f21c1669a48c325", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c8a019a0b5c924fc6e9d4e", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 40000, - "id": "5a2fb0db86f7747694379ad2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1e47", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1e47", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 40000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b78e3975a7f3c734661aa", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1e48", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1e48", - "_tpl": "5656d7c34bdc2d9d198b4587" - } - ], - "loyaltyLevel": 3, - "traderId": "54cb50c76803fa8b248b4571" - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a2fb0f286f774769732daa4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1e56", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1e56", - "_tpl": "545cdb794bdc2d3a198b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e57", - "_tpl": "6575ce3716c2762fba0057fd", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b1e58", - "_tpl": "6575ce45dc9932aed601c616", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b1e59", - "_tpl": "6575ce5016c2762fba005802", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b1e5a", - "_tpl": "6575ce5befc786cd9101a671", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b1e5b", - "_tpl": "6575ce6f16c2762fba005806", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b1e5c", - "_tpl": "6575ce9db15fef3dd4051628", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Shoulder_l" - }, - { - "_id": "68010065f81036801d0b1e5d", - "_tpl": "6575cea8b15fef3dd405162c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Shoulder_r" - }, - { - "_id": "68010065f81036801d0b1e5e", - "_tpl": "6575ce8bdc9932aed601c61e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b1e5f", - "_tpl": "64afc71497cf3a403c01ff38", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b1e60", - "_tpl": "64afc71497cf3a403c01ff38", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b1e61", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Left_side_plate" - }, - { - "_id": "68010065f81036801d0b1e62", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1e56", - "slotId": "Right_side_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac65e0c86f77403dd390d1a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1e63", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1e63", - "_tpl": "55801eed4bdc2d89578b4588", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1e64", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "68010065f81036801d0b1e63", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1e65", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "68010065f81036801d0b1e63", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1e66", - "_tpl": "56083eab4bdc2d26448b456a", - "parentId": "68010065f81036801d0b1e63", - "slotId": "mod_tactical" - }, - { - "_id": "68010065f81036801d0b1e67", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "68010065f81036801d0b1e63", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1e68", - "_tpl": "61faa91878830f069b6b7967", - "parentId": "68010065f81036801d0b1e63", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1e69", - "_tpl": "56ea8222d2720b69698b4567", - "parentId": "68010065f81036801d0b1e68", - "slotId": "mod_bipod" - } - ], - "loyaltyLevel": 3, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639670029113f06a7c3b2377": { - "QuestName": "Following the Bread Crumbs", - "_id": "639670029113f06a7c3b2377", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639670029113f06a7c3b2377 acceptPlayerMessage", - "changeQuestMessageText": "639670029113f06a7c3b2377 changeQuestMessageText", - "completePlayerMessage": "639670029113f06a7c3b2377 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639adf3edbf1d842d260cda7", - "conditions": [ - { - "id": "639adf867cb1a8023d49f686", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, "weapon": [], "distance": { "value": 0, @@ -34266,10 +33244,18 @@ "enemyHealthEffects": [], "resetOnSessionEnd": false, "conditionType": "Kills" + }, + { + "id": "60e745fa5698ee7b05057459", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" } ] }, - "id": "639adf3edbf1d842d260cda6", + "id": "60e745d6479eef59b01b0bdc", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -34277,129 +33263,451 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 20, + "value": 40, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "610147ac43d55d251d68e4fb", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5c0d4e61d09282029f53920e", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "610147b0683d6b506f258f96", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 45, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71c9ad54b755a3b53eb66 description", + "failMessageText": "60e71c9ad54b755a3b53eb66 failMessageText", + "declinePlayerMessage": "60e71c9ad54b755a3b53eb66 declinePlayerMessage", + "name": "60e71c9ad54b755a3b53eb66 name", + "note": "60e71c9ad54b755a3b53eb66 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/5d69483686f77414077d1cca.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71c9ad54b755a3b53eb66 startedMessageText", + "successMessageText": "60e71c9ad54b755a3b53eb66 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 84000, + "id": "6102782550bb44526c34c81e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "id": "655b76689db22d43ab42b70b", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf750751a0", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507519f", + "_tpl": "5fd20ff893a8961fc660a954", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "6812400b0c5cf2cf750751a0", + "_tpl": "5fd20ff893a8961fc660a954", + "upd": { + "StackObjectsCount": 30 + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "6102969b9386cf6f25373c49", + "type": "Skill", + "index": 0, + "target": "Assault", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "610296a7e0211147291533d9", + "type": "Skill", + "index": 0, + "target": "SMG", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "64145a1ee2a21acb9008dd90", + "type": "Skill", + "index": 0, + "target": "DMR", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3000, + "id": "610296bde10c48364e47a920", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751a2", + "unknown": true, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751a2", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 3000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b477f7686f7744d1b23c4d2": { + "QuestName": "Gunsmith - Part 20", + "_id": "5b477f7686f7744d1b23c4d2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b477f7686f7744d1b23c4d2 acceptPlayerMessage", + "changeQuestMessageText": "5b477f7686f7744d1b23c4d2 changeQuestMessageText", + "completePlayerMessage": "5b477f7686f7744d1b23c4d2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5b47824386f7744d190d8dd1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5aafa857e5b5b00018480968" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 20.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 20, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 400.0, + "compareMethod": "<=" + }, + "weight": { + "value": 7.3, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5addbfbb5acfc400194dbcf7", + "5aa66be6e5b5b0214e506e97", + "58d399e486f77442e0016fe7", + "57fd23e32459772d0805bcf1" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0d7186f77412bc326997", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 37, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f094886f7747b127d9d7f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639873003693c63d86328f25", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b477f7686f7744d1b23c4d2 description", + "failMessageText": "5b477f7686f7744d1b23c4d2 failMessageText", + "declinePlayerMessage": "5b477f7686f7744d1b23c4d2 declinePlayerMessage", + "name": "5b477f7686f7744d1b23c4d2 name", + "note": "5b477f7686f7744d1b23c4d2 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5b47867286f7744d1a393de9.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b477f7686f7744d1b23c4d2 startedMessageText", + "successMessageText": "5b477f7686f7744d1b23c4d2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 26600, + "id": "60cc79a365e4664318606afb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc79a6af2e5506c37822bc", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "5b48772b86f7744d06237e61", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751a4", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751a4", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639afa1e92e27b60a1074095", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751a6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751a6", + "_tpl": "5a33e75ac4a2826c6e06d759", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639afa2bdae1800a3e135959", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751a8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751a8", + "_tpl": "5a7dbfc1159bd40016548fde", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19d5b5032c67f050dd963", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751a9", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751a9", + "_tpl": "6130c43c67085e45ef1405a1" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19d62151bfb591645c0f4", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751aa", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751aa", + "_tpl": "58d2912286f7744e27117493" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "626bd75e47ea7f506e5493c5": { + "QuestName": "Broadcast - Part 1", + "_id": "626bd75e47ea7f506e5493c5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "626bd75e47ea7f506e5493c5 acceptPlayerMessage", + "changeQuestMessageText": "626bd75e47ea7f506e5493c5 changeQuestMessageText", + "completePlayerMessage": "626bd75e47ea7f506e5493c5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ac232087413d64ae0ac23d", + "conditions": [ + { + "id": "63ac2332dd6923311c7d1828", + "dynamicLocale": false, + "target": "qlight_extension_mechanik1_exploration1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63ac232087413d64ae0ac23c", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false }, { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7cf9f04d3dc28a52a20fb", - "conditions": [ - { - "id": "63a7cfbcf32fa1316250c3d1", - "dynamicLocale": false, - "target": "quest_zone_keeper7_saferoom", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7cf9f04d3dc28a52a20fa", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d0841943b749b5021eba", - "target": "639adf3edbf1d842d260cda6", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7cfe104d3dc28a52a20fd", - "conditions": [ - { - "id": "63a7cffbcc389e31a64596db", - "dynamicLocale": false, - "target": "quest_zone_keeper7_test", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7cfe104d3dc28a52a20fc", + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "626c3158a371ee3a7a3514cc", "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d08acc389e31a64596dc", - "target": "639adf3edbf1d842d260cda6", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "639ae49a5e3c9b787264d675", - "index": 4, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, "onlyFoundInRaid": false, "dynamicLocale": false, + "plantTime": 10, + "zoneId": "qlight_extension_mechanik1_hide1", "target": [ - "6398a4cfb5992f573c6562b3" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d0b627a4ff476e6dd0cd", - "target": "63a7cf9f04d3dc28a52a20fa", - "conditionType": "CompleteCondition" - }, - { - "id": "63a7d0c8cc389e31a64596dd", - "target": "63a7cfe104d3dc28a52a20fc", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "639ae5445b201a534f436ef3", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "6398a4cfb5992f573c6562b3" + "5ac78a9b86f7741cca0bbd8d" ], "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "639ae5ab28d8a21b593a348e", - "target": "639ae49a5e3c9b787264d675", + "id": "63ac235c87413d64ae0ac24d", + "target": "63ac232087413d64ae0ac23c", "conditionType": "CompleteCondition" } ] @@ -34408,11 +33716,2849 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "639afd5c20668603de1597c9", + "id": "62a0872f4f842e1bd12d9d53", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "63966ff54c3ef01b6f3ffad8", + "target": "5ac3460c86f7742880308185", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "626bd75e47ea7f506e5493c5 description", + "failMessageText": "626bd75e47ea7f506e5493c5 failMessageText", + "declinePlayerMessage": "626bd75e47ea7f506e5493c5 declinePlayerMessage", + "name": "626bd75e47ea7f506e5493c5 name", + "note": "626bd75e47ea7f506e5493c5 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/628b805544430c635d52a888.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "626bd75e47ea7f506e5493c5 startedMessageText", + "successMessageText": "626bd75e47ea7f506e5493c5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6700, + "id": "629a264a55d6b6603224edd4", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "62b0433f4fe91b6f8628068c", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 650, + "id": "628b84ade43d1600542c97e9", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751ac", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751ac", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 650 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "629a290955d6b6603224edd7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751ae", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751ae", + "_tpl": "60391a8b3364dc22b04d0ce5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "629a29124dec5d194e450345", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751b0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751b0", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5979f8bb86f7743ec214c7a6": { + "QuestName": "Polikhim Hobo", + "_id": "5979f8bb86f7743ec214c7a6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5979f8bb86f7743ec214c7a6 acceptPlayerMessage", + "changeQuestMessageText": "5979f8bb86f7743ec214c7a6 changeQuestMessageText", + "completePlayerMessage": "5979f8bb86f7743ec214c7a6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "598f0c6386f7746c837802cb", + "conditions": [ + { + "id": "598f0c6986f77468ba349ed5", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "598f0c6e86f7746eec40ad7a", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "5b0e766b86f7746bfa618964", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 25, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "597a0a9d86f77426d66c0632", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5979f9ba86f7740f6c3fe9f2", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5979f8bb86f7743ec214c7a6 description", + "failMessageText": "5979f8bb86f7743ec214c7a6 failMessageText", + "declinePlayerMessage": "5979f8bb86f7743ec214c7a6 declinePlayerMessage", + "name": "5979f8bb86f7743ec214c7a6 name", + "note": "5979f8bb86f7743ec214c7a6 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5979f91c86f77402996bf9c2.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5979f8bb86f7743ec214c7a6 startedMessageText", + "successMessageText": "5979f8bb86f7743ec214c7a6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60c8abd283161b326c471109", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60c89f1383161b326c471103", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "60cb4b6eaf2e5506c3781d80", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751b2", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751b2", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb4b3f8f570e28f1480be6", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751b6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751b4", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751b5", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751b6", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb4b51e3d0247e625da173", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751ba", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751b8", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751b9", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751ba", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb4b62f09d61072d6cf21f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751bc", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751bc", + "_tpl": "5a0c27731526d80618476ac4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "629f028bd285f377953b2412", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59674cd986f7744ab26e32f2": { + "QuestName": "Shootout Picnic", + "_id": "59674cd986f7744ab26e32f2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59674cd986f7744ab26e32f2 acceptPlayerMessage", + "changeQuestMessageText": "59674cd986f7744ab26e32f2 changeQuestMessageText", + "completePlayerMessage": "59674cd986f7744ab26e32f2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "59674d5186f77446b872d5f6", + "conditions": [ + { + "id": "59674d5586f77446b62554e7", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "59674d5a86f77446b872d5fa", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5cb31b6188a450159d330a18", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a926b186f774753c5479a2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 3, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "596a1f7226f7741ddd6c10c8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5936da9e86f7742d65037edf", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59674cd986f7744ab26e32f2 description", + "failMessageText": "59674cd986f7744ab26e32f2 failMessageText", + "declinePlayerMessage": "59674cd986f7744ab26e32f2 declinePlayerMessage", + "name": "59674cd986f7744ab26e32f2 name", + "note": "59674cd986f7744ab26e32f2 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5967505886f774590730dadc.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59674cd986f7744ab26e32f2 startedMessageText", + "successMessageText": "59674cd986f7744ab26e32f2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 2000, + "id": "60c8a6a49339363e8f0c6ad3", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c89e2980b2027f403dd993", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "5fe3061164942071c54bc12a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751be", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751be", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb473877dc197c77424f82", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751bf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751bf", + "_tpl": "583990e32459771419544dd2", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400b0c5cf2cf750751c0", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf750751c1", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750751c2", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750751c3", + "_tpl": "57dc324a24597759501edc20", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf750751c4", + "_tpl": "57dc334d245977597164366f", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf750751c5", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "6812400b0c5cf2cf750751bf", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf750751c6", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "6812400b0c5cf2cf750751c5", + "slotId": "mod_handguard" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5a2e7ff386f7741a972d4ee5", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751ca", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751c8", + "_tpl": "564ca99c4bdc2d16268b4589", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751c9", + "_tpl": "564ca99c4bdc2d16268b4589", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751ca", + "_tpl": "564ca99c4bdc2d16268b4589", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "629f025214061f307437fbe3", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751d1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751cd", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751ce", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf750751cd", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750751cf", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751d0", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf750751cf", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750751d1", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751d2", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf750751d1", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19e6f4ebcff1c995dc33e", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751d3", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751d3", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf750751d4", + "_tpl": "602a95edda11d6478d5a06da", + "parentId": "6812400b0c5cf2cf750751d3", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf750751d5", + "_tpl": "60228924961b8d75ee233c32", + "parentId": "6812400b0c5cf2cf750751d3", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf750751d6", + "_tpl": "60229948cacb6b0506369e27", + "parentId": "6812400b0c5cf2cf750751d5", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750751d7", + "_tpl": "60228a76d62c9b14ed777a66", + "parentId": "6812400b0c5cf2cf750751d5", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf750751d8", + "_tpl": "602286df23506e50807090c6", + "parentId": "6812400b0c5cf2cf750751d3", + "slotId": "mod_magazine" + } + ], + "loyaltyLevel": 1, + "traderId": "54cb50c76803fa8b248b4571" + }, + { + "availableInGameEditions": [], + "id": "655b87127f92d5105c6f7b7b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751d9", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751d9", + "_tpl": "5c0e3eb886f7742015526062" + } + ], + "loyaltyLevel": 2, + "traderId": "54cb50c76803fa8b248b4571" + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "629f023950f43060015c52dc", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "id": "6764977cd6c9dfff4d9d185d", + "type": "CustomizationDirect", + "index": 0, + "target": "67585d6ab032beb9b5097e96", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac242ab86f77412464f68b4": { + "QuestName": "Gunsmith - Part 16", + "_id": "5ac242ab86f77412464f68b4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac242ab86f77412464f68b4 acceptPlayerMessage", + "changeQuestMessageText": "5ac242ab86f77412464f68b4 changeQuestMessageText", + "completePlayerMessage": "5ac242ab86f77412464f68b4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5acce08b86f7745f8521fa64", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "588892092459774ac91d4b11" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 2000.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 40.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 450.0, + "compareMethod": "<=" + }, + "weight": { + "value": 6.7, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [ + "55818b164bdc2ddc698b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf381a86f7741ce21f9aee", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 30, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf382686f7741cdb2f7ef6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae3280386f7742a41359364", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac242ab86f77412464f68b4 description", + "failMessageText": "5ac242ab86f77412464f68b4 failMessageText", + "declinePlayerMessage": "5ac242ab86f77412464f68b4 declinePlayerMessage", + "name": "5ac242ab86f77412464f68b4 name", + "note": "5ac242ab86f77412464f68b4 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4e06086f774623122ae42.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac242ab86f77412464f68b4 startedMessageText", + "successMessageText": "5ac242ab86f77412464f68b4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 20400, + "id": "60cc768f65e4664318606af1", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc7707a7d63f18200a24e3", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200000, + "id": "5acb826b86f77456255bad89", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751db", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751db", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 200000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc76cb7c496e588343a6d8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751de", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751dd", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751de", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc76e4e3d0247e625dab6c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751e0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751e0", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc76f93e4e974efa345d21", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751e2", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751e2", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19cda5032c67f050dd961", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751e3", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751e3", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf750751e4", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "6812400b0c5cf2cf750751e3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf750751e5", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "6812400b0c5cf2cf750751e3", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750751e6", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "6812400b0c5cf2cf750751e3", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf750751e7", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "6812400b0c5cf2cf750751e6", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf750751e8", + "_tpl": "5d440625a4b9361eec4ae6c5", + "parentId": "6812400b0c5cf2cf750751e7", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf750751e9", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "parentId": "6812400b0c5cf2cf750751e8", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf750751ea", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6812400b0c5cf2cf750751e7", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf750751eb", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "parentId": "6812400b0c5cf2cf750751e6", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf750751ec", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6812400b0c5cf2cf750751eb", + "slotId": "mod_mount_004" + }, + { + "_id": "6812400b0c5cf2cf750751ed", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6812400b0c5cf2cf750751eb", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400b0c5cf2cf750751ee", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf750751e3", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750751ef", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "6812400b0c5cf2cf750751ee", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf750751f0", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "6812400b0c5cf2cf750751e3", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6179b4f16e9dd54ac275e407": { + "QuestName": "Missing Cargo", + "_id": "6179b4f16e9dd54ac275e407", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6179b4f16e9dd54ac275e407 acceptPlayerMessage", + "changeQuestMessageText": "6179b4f16e9dd54ac275e407 changeQuestMessageText", + "completePlayerMessage": "6179b4f16e9dd54ac275e407 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ac1a941b5c95746621ddb3", + "conditions": [ + { + "id": "63ac1ac3f627f540861d1b1c", + "dynamicLocale": false, + "target": "qlight_find_crushed_heli", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63ac1a941b5c95746621ddb2", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "61a00eff2d708d41a34f19b4", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "61a00bcb177fb945751bbe6a" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "61a00f3f177fb945751bbe92", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "61a00bcb177fb945751bbe6a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63ac1d2add6923311c7d181a", + "target": "61a00eff2d708d41a34f19b4", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61ae0c513979ec0a22045939", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6193850f60b34236ee0483de", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61ae0c6f45758a76ab08ab06", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 30, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179b4f16e9dd54ac275e407 description", + "failMessageText": "6179b4f16e9dd54ac275e407 failMessageText", + "declinePlayerMessage": "6179b4f16e9dd54ac275e407 declinePlayerMessage", + "name": "6179b4f16e9dd54ac275e407 name", + "note": "6179b4f16e9dd54ac275e407 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab41d128f39305480d0916.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179b4f16e9dd54ac275e407 startedMessageText", + "successMessageText": "6179b4f16e9dd54ac275e407 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 14000, + "id": "619528fc020725046c77c713", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "61ae0c0345758a76ab08ab05", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 68000, + "id": "61ae0bda40869119390a7bcb", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751f2", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751f2", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 68000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "61ae0c18cfead502c8012883", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751f3", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751f3", + "_tpl": "56eabf3bd2720b75698b4569" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "id": "61ae0c2b3979ec0a22045938", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751f4", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751f4", + "_tpl": "5649ae4a4bdc2d1b2b8b4588" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "id": "63a028994a2920130a4d77e2", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750751f5", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751f5", + "_tpl": "58d2912286f7744e27117493" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "597a171586f77405ba6887d3": { + "QuestName": "Big Customer", + "_id": "597a171586f77405ba6887d3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "597a171586f77405ba6887d3 acceptPlayerMessage", + "changeQuestMessageText": "597a171586f77405ba6887d3 changeQuestMessageText", + "completePlayerMessage": "597a171586f77405ba6887d3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fbec386f77413bd5fc209", + "conditions": [ + { + "id": "5a3fbee386f77414433f8c8e", + "dynamicLocale": false, + "target": "gazel", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fbec386f77413bd5fc20a", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "PlaceBeacon", + "id": "5998360886f77456936817f3", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "gazel", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "597a178786f774799e5cd154", + "conditions": [ + { + "id": "597a178e86f77477531d39d6", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + }, + { + "id": "5a577e7686f7742f6130009c", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "597a178786f774799e5cd155", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a577e9e86f7742f600a7045", + "target": "5998360886f77456936817f3", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61b7a8d9e5100e01df74ed8b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a0f5686f774273b74f676", + "status": [ + 2 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "597a198586f77405ba6887d5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a0f5686f774273b74f676", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "597a199486f774799e5cd156", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "597a160786f77477531d39d2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "597a171586f77405ba6887d3 description", + "failMessageText": "597a171586f77405ba6887d3 failMessageText", + "declinePlayerMessage": "597a171586f77405ba6887d3 declinePlayerMessage", + "name": "597a171586f77405ba6887d3 name", + "note": "597a171586f77405ba6887d3 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "597a171586f77405ba6887d3 startedMessageText", + "successMessageText": "597a171586f77405ba6887d3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8100, + "id": "60c8ac8a83161b326c47110a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c89fef919c14709f49738b", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200000, + "id": "5a577fe586f77432572473b4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751f7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750751f7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 200000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb4e737c496e588343a19e", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750751fb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751fb", + "_tpl": "5df8a2ca86f7740bfe6df777", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750751fc", + "_tpl": "656fd7c32668ef0402028fb9", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750751fb", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf750751fd", + "_tpl": "656fd89bf5a9631d4e042575", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750751fb", + "slotId": "Soft_armor_back" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ebfbfd80135590512408dba", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075200", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750751ff", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075200", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [ + { + "availableInGameEditions": [], + "value": -0.25, + "id": "60c8be8680b2027f403dd99a", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + } + ] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a03173786f77451cb427172": { + "QuestName": "Spa Tour - Part 2", + "_id": "5a03173786f77451cb427172", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a03173786f77451cb427172 acceptPlayerMessage", + "changeQuestMessageText": "5a03173786f77451cb427172 changeQuestMessageText", + "completePlayerMessage": "5a03173786f77451cb427172 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5a0317da86f77451cb427295", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_peacemaker_008_2_N1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5a0325f286f7744384509230", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_peacemaker_008_2_N2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a37d80986f774245c063b68", + "conditions": [ + { + "id": "5a37d81686f774245c063b6b", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + }, + { + "id": "5a37d85486f774245b1a0818", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5a37d80986f774245c063b69", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a60a99386f774590326d5cc", + "target": "5a0325f286f7744384509230", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5a3a722986f7745a9e0647dc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a03177586f77451f06f6c33", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a03153686f77442d90e2171", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a03173786f77451cb427172 description", + "failMessageText": "5a03173786f77451cb427172 failMessageText", + "declinePlayerMessage": "5a03173786f77451cb427172 declinePlayerMessage", + "name": "5a03173786f77451cb427172 name", + "note": "5a03173786f77451cb427172 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a03173786f77451cb427172 startedMessageText", + "successMessageText": "5a03173786f77451cb427172 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6300, + "id": "60cc6bf53e4e974efa345d07", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc6bf8af2e5506c378229e", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 900, + "id": "5a28094086f77456b45b88fa", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075202", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075202", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 900 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc6c092b555f16df5c4199", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075204", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075204", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac66d1286f77405d47293be", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075205", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075205", + "_tpl": "58d3db5386f77426186285a0" + } + ], + "loyaltyLevel": 3, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5bc479e586f7747f376c7da3": { + "QuestName": "The Tarkov Shooter - Part 2", + "_id": "5bc479e586f7747f376c7da3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5bc479e586f7747f376c7da3 acceptPlayerMessage", + "changeQuestMessageText": "5bc479e586f7747f376c7da3 changeQuestMessageText", + "completePlayerMessage": "5bc479e586f7747f376c7da3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5bd983d886f7747ba73fc245", + "conditions": [ + { + "id": "5bd983f286f7740ab2382707", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "55801eed4bdc2d89578b4588", + "5de652c31b7e3716273428be", + "588892092459774ac91d4b11", + "5ae08f0a5acfc408fb1398a1", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "5bfd297f0db834001a669119", + "61f7c9e189e6fb1a5e3ea78d", + "627e14b21713922ded6f2c15" + ], + "distance": { + "value": 40, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "LeftLeg", + "RightLeg" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Shots" + } + ] + }, + "id": "5bd983d886f7747ba73fc246", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5bd9944f86f774035c4877f2", + "conditions": [ + { + "id": "5bd9948586f774035c4877f4", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "55801eed4bdc2d89578b4588", + "5de652c31b7e3716273428be", + "588892092459774ac91d4b11", + "5ae08f0a5acfc408fb1398a1", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "5bfd297f0db834001a669119", + "61f7c9e189e6fb1a5e3ea78d", + "627e14b21713922ded6f2c15" + ], + "distance": { + "value": 40, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Shots" + } + ] + }, + "id": "5bd9944f86f774035c4877f3", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5bdabf0586f7743e1809c555", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5bc4776586f774512d07cf05", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5bc479e586f7747f376c7da3 description", + "failMessageText": "5bc479e586f7747f376c7da3 failMessageText", + "declinePlayerMessage": "5bc479e586f7747f376c7da3 declinePlayerMessage", + "name": "5bc479e586f7747f376c7da3 name", + "note": "5bc479e586f7747f376c7da3 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5bc9fab686f7742a90020769.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5bc479e586f7747f376c7da3 startedMessageText", + "successMessageText": "5bc479e586f7747f376c7da3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 12400, + "id": "60cc9b33ac6eb02bc726de5a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc9b3ef81cc57f4717189d", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 65000, + "id": "5bcf21cc86f7746a45695a71", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075207", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075207", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 65000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5bcf2c4686f774722e666716", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075209", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075209", + "_tpl": "5bc5a372d4351e44f824d17f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc9b5720a6283a506aeb3d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507520c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507520b", + "_tpl": "6034cf5fffd42c541047f72e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507520c", + "_tpl": "6034cf5fffd42c541047f72e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf222b86f774378e26691b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507520d", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507520d", + "_tpl": "5bc5a372d4351e44f824d17f" + } + ], + "loyaltyLevel": 1, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5969f9e986f7741dde183a50": { + "QuestName": "Pharmacist", + "_id": "5969f9e986f7741dde183a50", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5969f9e986f7741dde183a50 acceptPlayerMessage", + "changeQuestMessageText": "5969f9e986f7741dde183a50 changeQuestMessageText", + "completePlayerMessage": "5969f9e986f7741dde183a50 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5969fa4886f7741ddb481544", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5910922b86f7747d96753483" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5969fa8986f7741ddc2d3154", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5910922b86f7747d96753483" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57770d86f7740d2014e5b2", + "target": "5969fa4886f7741ddb481544", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fb8f686f7742384533f0f", + "conditions": [ + { + "id": "5a3fb91186f7742384533f14", + "dynamicLocale": false, + "target": "vaz_feld", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fb8f686f7742384533f10", + "index": 1, + "parentId": "5969fa4886f7741ddb481544", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fb92286f77422b46cdb17", + "conditions": [ + { + "id": "5a3fb93286f77421ef22a42a", + "dynamicLocale": false, + "target": "room114", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fb92286f77422b46cdb18", + "index": 2, + "parentId": "5969fa4886f7741ddb481544", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a9291086f7747b856b7c5e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5979e77f86f77431185415c2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5969f90786f77420d2328015", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5969f9e986f7741dde183a50 description", + "failMessageText": "5969f9e986f7741dde183a50 failMessageText", + "declinePlayerMessage": "5969f9e986f7741dde183a50 declinePlayerMessage", + "name": "5969f9e986f7741dde183a50 name", + "note": "5969f9e986f7741dde183a50 note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5979d36d86f7746d093ddd7a.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5969f9e986f7741dde183a50 startedMessageText", + "successMessageText": "5969f9e986f7741dde183a50 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5700, + "id": "60c8c2c083161b326c471115", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c2c3919c14709f49739b", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 25000, + "id": "5a2fb8ed86f7742eb03f362a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507520f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507520f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 25000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb68ae7c496e588343a1d7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075211", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075211", + "_tpl": "60098ad7c2240c0fe85c570a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb68e42b555f16df5c416f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075215", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075213", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075214", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075215", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "596b36c586f77450d6045ad2": { + "QuestName": "Supplier", + "_id": "596b36c586f77450d6045ad2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "596b36c586f77450d6045ad2 acceptPlayerMessage", + "changeQuestMessageText": "596b36c586f77450d6045ad2 changeQuestMessageText", + "completePlayerMessage": "596b36c586f77450d6045ad2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "597867e986f7741b265c6bd3", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7635f86f7742cbf2c1095" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ab8d44c86f7745b2325bd0c", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5a38e6bac4a2826c6e06d79b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "658471e481d440d61cb18548", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "658471e0e482af3e0bd16b0c", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "657315e270bb0b8dba00cc48", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "596b36c586f77450d6045ad2 description", + "failMessageText": "596b36c586f77450d6045ad2 failMessageText", + "declinePlayerMessage": "596b36c586f77450d6045ad2 declinePlayerMessage", + "name": "596b36c586f77450d6045ad2 name", + "note": "596b36c586f77450d6045ad2 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "596b36c586f77450d6045ad2 startedMessageText", + "successMessageText": "596b36c586f77450d6045ad2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 3300, + "id": "5c94fe4d86f77455192fa42a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60c8af839339363e8f0c6ad9", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 60000, + "id": "5ab8d47586f7745c5f49d558", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075217", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075217", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 60000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60d062e01bdece56c249cc0b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075218", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075218", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf75075219", + "_tpl": "5998517986f7746017232f7e", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf7507521a", + "_tpl": "599851db86f77467372f0a18", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507521b", + "_tpl": "5998529a86f774647f44f421", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507521c", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507521d", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf7507521e", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf7507521f", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "6812400b0c5cf2cf75075218", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075220", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6812400b0c5cf2cf7507521f", + "slotId": "mod_handguard" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac6666c86f774056634a229", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075221", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075221", + "_tpl": "59f9cabd86f7743a10721f46" + }, + { + "_id": "6812400b0c5cf2cf75075222", + "_tpl": "5998517986f7746017232f7e", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075223", + "_tpl": "599851db86f77467372f0a18", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75075224", + "_tpl": "5998529a86f774647f44f421", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075225", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075226", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075227", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075228", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "6812400b0c5cf2cf75075221", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075229", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6812400b0c5cf2cf75075228", + "slotId": "mod_handguard" + } + ], + "loyaltyLevel": 1, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "id": "655b7f4d065b076eb02c4b49", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507522a", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507522a", + "_tpl": "64b8f7b5389d7ffd620ccba2" + } + ], + "loyaltyLevel": 1, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6396700fea19ac7ed845db32": { + "QuestName": "Spotter", + "_id": "6396700fea19ac7ed845db32", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6396700fea19ac7ed845db32 acceptPlayerMessage", + "changeQuestMessageText": "6396700fea19ac7ed845db32 changeQuestMessageText", + "completePlayerMessage": "6396700fea19ac7ed845db32 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7d2acee7b4d0d5507baf3", + "conditions": [ + { + "id": "63a7d2deee7b4d0d5507baf4", + "dynamicLocale": false, + "target": "quest_zone_keeper8_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7d2acee7b4d0d5507baf2", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639c359f0a20a7001f00c7a8", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "quest_zone_keeper8_1_hide1", + "target": [ + "62811fa609427b40ab14e765" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d3dc10b7a13eb015961d", + "target": "63a7d2acee7b4d0d5507baf2", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7d315f32fa1316250c3d3", + "conditions": [ + { + "id": "63a7d3323e491955e65fb885", + "dynamicLocale": false, + "target": "quest_zone_keeper8_2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7d315f32fa1316250c3d2", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639c39807c1532d85b0162a9", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "quest_zone_keeper8_1_hide2", + "target": [ + "5a1eaa87fcdbcb001865f75e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d3e75199ab1f7d4a7746", + "target": "63a7d315f32fa1316250c3d2", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639c3e21a1c5f814670c35e9", + "conditions": [ + { + "id": "639c3e2c0a20a7001f00c7a9", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + }, + { + "id": "639c3e37ffadd8b532003319", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "639c3e21a1c5f814670c35e8", + "index": 7, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "639c3e49313b0824700c92c7", + "target": "639c359f0a20a7001f00c7a8", + "conditionType": "CompleteCondition" + }, + { + "id": "639c3e5379d86f66070507d9", + "target": "639c39807c1532d85b0162a9", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "639afde8e4aa7349085cb750", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639670029113f06a7c3b2377", "status": [ 4 ], @@ -34424,11 +36570,11 @@ ], "Fail": [] }, - "description": "639670029113f06a7c3b2377 description", - "failMessageText": "639670029113f06a7c3b2377 failMessageText", - "declinePlayerMessage": "639670029113f06a7c3b2377 declinePlayerMessage", - "name": "639670029113f06a7c3b2377 name", - "note": "639670029113f06a7c3b2377 note", + "description": "6396700fea19ac7ed845db32 description", + "failMessageText": "6396700fea19ac7ed845db32 failMessageText", + "declinePlayerMessage": "6396700fea19ac7ed845db32 declinePlayerMessage", + "name": "6396700fea19ac7ed845db32 name", + "note": "6396700fea19ac7ed845db32 note", "traderId": "638f541a29ffd1183d187f57", "location": "any", "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", @@ -34437,15 +36583,15 @@ "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "639670029113f06a7c3b2377 startedMessageText", - "successMessageText": "639670029113f06a7c3b2377 successMessageText", + "startedMessageText": "6396700fea19ac7ed845db32 startedMessageText", + "successMessageText": "6396700fea19ac7ed845db32 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], "value": 0.04, - "id": "63a6cec40530a47cb93185ba", + "id": "63a6ceca4610fa47416d90e8", "type": "TraderStanding", "index": 0, "target": "638f541a29ffd1183d187f57", @@ -34454,16 +36600,16 @@ { "availableInGameEditions": [], "value": 1, - "id": "63a2351f5032c67f050dd974", + "id": "63a23542151bfb591645c106", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e6b", - "unknown": true, + "target": "6812400b0c5cf2cf7507522c", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e6b", - "_tpl": "6389c7f115805221fb410466", + "_id": "6812400b0c5cf2cf7507522c", + "_tpl": "6389c7750ef44505c87f5996", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -34473,181 +36619,47 @@ }, { "availableInGameEditions": [], - "id": "63a2350cd6d4651e53602b02", - "type": "AssortmentUnlock", + "id": "63a23488423c8970de419830", + "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1e6c", + "target": "6812400b0c5cf2cf75075231", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b1e6c", - "_tpl": "6389c7f115805221fb410466" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60e71c11d54b755a3b53eb65": { - "QuestName": "Night Sweep", - "_id": "60e71c11d54b755a3b53eb65", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71c11d54b755a3b53eb65 acceptPlayerMessage", - "changeQuestMessageText": "60e71c11d54b755a3b53eb65 changeQuestMessageText", - "completePlayerMessage": "60e71c11d54b755a3b53eb65 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e82c12fd1bf4491c4e4547", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e82c5926b88043510e0ad7", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "6101464fe5b13723fc7609ae", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 50, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6101464accda1c5f7b1dd08f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5edabd13218d181e29451442", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71c11d54b755a3b53eb65 description", - "failMessageText": "60e71c11d54b755a3b53eb65 failMessageText", - "declinePlayerMessage": "60e71c11d54b755a3b53eb65 declinePlayerMessage", - "name": "60e71c11d54b755a3b53eb65 name", - "note": "60e71c11d54b755a3b53eb65 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/5d67b5ca86f7744dcc5e2f88.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71c11d54b755a3b53eb65 startedMessageText", - "successMessageText": "60e71c11d54b755a3b53eb65 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 107000, - "id": "60f037339417a95e1c42086d", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 6000, - "id": "610298b160307362d01d8c80", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1e6e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1e6e", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400b0c5cf2cf7507522e", + "_tpl": "6389c7750ef44505c87f5996", "upd": { - "StackObjectsCount": 6000 + "StackObjectsCount": 1, + "SpawnedInSession": true } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a1da0aab6bb51044344bfe", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b1e70", - "unknown": false, - "items": [ + }, { - "_id": "68010065f81036801d0b1e70", - "_tpl": "5fca138c2a7b221b2852a5c6", + "_id": "6812400b0c5cf2cf7507522f", + "_tpl": "6389c7750ef44505c87f5996", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075230", + "_tpl": "6389c7750ef44505c87f5996", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075231", + "_tpl": "6389c7750ef44505c87f5996", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ], - "loyaltyLevel": 2, - "traderId": 7 - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "610298da9386cf6f25373c4d", - "type": "Skill", - "index": 0, - "target": "Shotgun", - "unknown": true + "loyaltyLevel": 3, + "traderId": 10 } ], "Fail": [] @@ -34660,98 +36672,95 @@ "arenaLocations": [], "status": 0 }, - "5d4bec3486f7743cac246665": { - "QuestName": "Regulated Materials", - "_id": "5d4bec3486f7743cac246665", + "59c512ad86f7741f0d09de9b": { + "QuestName": "The Punisher - Part 3", + "_id": "59c512ad86f7741f0d09de9b", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d4bec3486f7743cac246665 acceptPlayerMessage", - "changeQuestMessageText": "5d4bec3486f7743cac246665 changeQuestMessageText", - "completePlayerMessage": "5d4bec3486f7743cac246665 completePlayerMessage", + "acceptPlayerMessage": "59c512ad86f7741f0d09de9b acceptPlayerMessage", + "changeQuestMessageText": "59c512ad86f7741f0d09de9b changeQuestMessageText", + "completePlayerMessage": "59c512ad86f7741f0d09de9b completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5d4bfe4b86f7744a9d4fe032", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "59674d5186f27446b872d5f6", + "conditions": [ + { + "id": "59674d5586f27446b62554e2", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "583990e32459771419544dd2", + "5839a40f24597726f856b511", + "57dc2fa62459775949412633", + "628b9c37a733087d0d7fe84b" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "59ca27a486f77445a90e6958", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "59674d5186f77446b852d5f7", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5d03794386f77420415576f5" - ], - "countInRaid": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d4bfe7c86f7744a9c66b316", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d03794386f77420415576f5" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5d4c020a86f77449c463ced6", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d0379a886f77420407aa271" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d4c028c86f774389001e027", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d0379a886f77420407aa271" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] + "value": 25, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "5d77db2186f7745041358b57", + "conditionType": "Level", + "id": "59a926b186f774753c5479a2", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5979f8bb86f7743ec214c7a6", + "globalQuestCounterId": "", + "value": 19, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59c63abd36f7745e601a0a57", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59c50c8886f7745fed3193bf", "status": [ 4 ], @@ -34759,51 +36768,40 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "5d761f6886f7744521734218", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "5d4bec3486f7743cac246665 description", - "failMessageText": "5d4bec3486f7743cac246665 failMessageText", - "declinePlayerMessage": "5d4bec3486f7743cac246665 declinePlayerMessage", - "name": "5d4bec3486f7743cac246665 name", - "note": "5d4bec3486f7743cac246665 note", + "description": "59c512ad86f7741f0d09de9b description", + "failMessageText": "59c512ad86f7741f0d09de9b failMessageText", + "declinePlayerMessage": "59c512ad86f7741f0d09de9b declinePlayerMessage", + "name": "59c512ad86f7741f0d09de9b name", + "note": "59c512ad86f7741f0d09de9b note", "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/5d6e860186f774460f1f0602.jpg", - "type": "PickUp", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/57e4f1852459772a15635633.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5d4bec3486f7743cac246665 startedMessageText", - "successMessageText": "5d4bec3486f7743cac246665 successMessageText", + "startedMessageText": "59c512ad86f7741f0d09de9b startedMessageText", + "successMessageText": "59c512ad86f7741f0d09de9b successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 14800, - "id": "60c8a4b1919c14709f49738c", + "value": 11700, + "id": "60c8acd68dfbfc09882efd20", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60c8a4348dfbfc09882efd1d", + "value": 0.04, + "id": "60dc2974ef7d58779755fb25", "type": "TraderStanding", "index": 0, "target": "54cb50c76803fa8b248b4571", @@ -34811,261 +36809,119 @@ }, { "availableInGameEditions": [], - "value": 150000, - "id": "5d761fc086f774454d58840c", + "value": 2500, + "id": "59c5171a86f774443b4896f0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e72", + "target": "6812400b0c5cf2cf75075233", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1e72", - "_tpl": "5449016a4bdc2d6f028b456f", + "_id": "6812400b0c5cf2cf75075233", + "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 150000 + "StackObjectsCount": 2500 } } ] }, { "availableInGameEditions": [], - "id": "5d761fa486f774452073df6d", - "type": "AssortmentUnlock", + "id": "655b71861fe356507267b2f7", + "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1e73", + "target": "6812400b0c5cf2cf75075237", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1e73", - "_tpl": "5cadfbf7ae92152ac412eeef", + "_id": "6812400b0c5cf2cf75075235", + "_tpl": "56dff2ced2720bb4668b4567", "upd": { - "FireMode": { - "FireMode": "single" - } + "StackObjectsCount": 60 } }, { - "_id": "68010065f81036801d0b1e74", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "68010065f81036801d0b1e73", - "slotId": "mod_muzzle" + "_id": "6812400b0c5cf2cf75075236", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 60 + } }, { - "_id": "68010065f81036801d0b1e75", - "_tpl": "5caf1041ae92157c28402e3f", - "parentId": "68010065f81036801d0b1e73", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1e76", - "_tpl": "5caf16a2ae92152ac412efbc", - "parentId": "68010065f81036801d0b1e73", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b1e77", - "_tpl": "5cdaa99dd7f00c002412d0b2", - "parentId": "68010065f81036801d0b1e73", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1e78", - "_tpl": "5cda9bcfd7f00c0c0b53e900", - "parentId": "68010065f81036801d0b1e77", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b1e79", - "_tpl": "5caf1691ae92152ac412efb9", - "parentId": "68010065f81036801d0b1e73", - "slotId": "mod_scope" + "_id": "6812400b0c5cf2cf75075237", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 60 + } } ], - "loyaltyLevel": 4, - "traderId": "54cb50c76803fa8b248b4571" + "loyaltyLevel": 2, + "traderId": 10 }, { "availableInGameEditions": [], - "value": 10, - "id": "63baf332301d5256f738175d", + "value": 1, + "id": "59c62ae086f7745d8d52e20e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e8e", - "unknown": false, + "target": "6812400b0c5cf2cf75075238", + "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e7c", - "_tpl": "648983d6b5a2df1c815a04ec", + "_id": "6812400b0c5cf2cf75075238", + "_tpl": "588892092459774ac91d4b11", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1e7d", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e7c", - "slotId": "cartridges" + "_id": "6812400b0c5cf2cf75075239", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6812400b0c5cf2cf75075238", + "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1e7e", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400b0c5cf2cf7507523a", + "_tpl": "5888956924597752983e182d", + "parentId": "6812400b0c5cf2cf75075238", + "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1e7f", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e7e", - "slotId": "cartridges" + "_id": "6812400b0c5cf2cf7507523b", + "_tpl": "5888996c24597754281f9419", + "parentId": "6812400b0c5cf2cf7507523a", + "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1e80", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400b0c5cf2cf7507523c", + "_tpl": "5888976c24597754281f93f5", + "parentId": "6812400b0c5cf2cf7507523a", + "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1e81", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e80", - "slotId": "cartridges" + "_id": "6812400b0c5cf2cf7507523d", + "_tpl": "57c55f172459772d27602381", + "parentId": "6812400b0c5cf2cf75075238", + "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1e82", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e83", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e82", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e84", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e85", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e84", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e86", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e87", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e86", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e88", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e89", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e88", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e8a", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e8b", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e8a", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e8c", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e8d", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e8c", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1e8e", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1e8f", - "_tpl": "5cadf6eeae921500134b2799", - "upd": { - "StackObjectsCount": 10 - }, - "parentId": "68010065f81036801d0b1e8e", - "slotId": "cartridges" + "_id": "6812400b0c5cf2cf7507523e", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "6812400b0c5cf2cf75075238", + "slotId": "mod_stock" } ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60c8a0e01f21c1669a48c321", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false } ], "Fail": [] @@ -35078,84 +36934,42 @@ "arenaLocations": [], "status": 0 }, - "6179b3a12153c15e937d52bc": { - "QuestName": "Energy Crisis", - "_id": "6179b3a12153c15e937d52bc", + "5d6fb2c086f77449da599c24": { + "QuestName": "An Apple a Day Keeps the Doctor Away", + "_id": "5d6fb2c086f77449da599c24", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179b3a12153c15e937d52bc acceptPlayerMessage", - "changeQuestMessageText": "6179b3a12153c15e937d52bc changeQuestMessageText", - "completePlayerMessage": "6179b3a12153c15e937d52bc completePlayerMessage", + "acceptPlayerMessage": "5d6fb2c086f77449da599c24 acceptPlayerMessage", + "changeQuestMessageText": "5d6fb2c086f77449da599c24 changeQuestMessageText", + "completePlayerMessage": "5d6fb2c086f77449da599c24 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "PlaceBeacon", - "id": "617bf5860cf4a041de5b396b", + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5d6fb8a886f77449db3db8b6", "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_fuel_blood", "target": [ - "5991b51486f77447b112d44f" + "5449016a4bdc2d6f028b456f" ], "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "61926522b0295324b5484459", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_fuel_blood_bezovoz1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6192653d80c326298126aee1", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_fuel_blood_bezovoz2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "61926544bb0c712ed42d583c", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight_fuel_blood_bezovoz3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, + "value": 400000, "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "61ae0a5cf17da97ae5105546", + "id": "5d77c61786f7742fa732bf12", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac3464c86f7741d651d6877", + "target": "5a68667486f7742607157d28", "status": [ 2, 4 @@ -35164,43 +36978,176 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ae0a7540869119390a7bc9", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "6179b3a12153c15e937d52bc description", - "failMessageText": "6179b3a12153c15e937d52bc failMessageText", - "declinePlayerMessage": "6179b3a12153c15e937d52bc declinePlayerMessage", - "name": "6179b3a12153c15e937d52bc name", - "note": "6179b3a12153c15e937d52bc note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/60c373e753bc0f18316351fe.jpg", - "type": "Exploration", + "description": "5d6fb2c086f77449da599c24 description", + "failMessageText": "5d6fb2c086f77449da599c24 failMessageText", + "declinePlayerMessage": "5d6fb2c086f77449da599c24 declinePlayerMessage", + "name": "5d6fb2c086f77449da599c24 name", + "note": "5d6fb2c086f77449da599c24 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6179b3a12153c15e937d52bc startedMessageText", - "successMessageText": "6179b3a12153c15e937d52bc successMessageText", + "startedMessageText": "5d6fb2c086f77449da599c24 startedMessageText", + "successMessageText": "5d6fb2c086f77449da599c24 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 13000, - "id": "617bf5c0037eb267e41f3e2f", + "value": 200, + "id": "5d78cd7a86f77408b7023d42", + "type": "Skill", + "index": 0, + "target": "Health", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5936d90786f7742b1420ba5b": { + "QuestName": "Debut", + "_id": "5936d90786f7742b1420ba5b", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5936d90786f7742b1420ba5b acceptPlayerMessage", + "changeQuestMessageText": "5936d90786f7742b1420ba5b changeQuestMessageText", + "completePlayerMessage": "5936d90786f7742b1420ba5b completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5967379186f77463860dadd5", + "conditions": [ + { + "id": "5967379786f774620e763ea8", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5967379186f77463860dadd6", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "596737cb86f77463a8115efd", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "54491c4f4bdc2db1078b4568" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "658471a72957dfa0e01552d1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 1, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "658471a35740d10d154dac8f", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "657315df034d76585f032e01", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5936d90786f7742b1420ba5b description", + "failMessageText": "5936d90786f7742b1420ba5b failMessageText", + "declinePlayerMessage": "5936d90786f7742b1420ba5b declinePlayerMessage", + "name": "5936d90786f7742b1420ba5b name", + "note": "5936d90786f7742b1420ba5b note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/596b465486f77457ca186188.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5936d90786f7742b1420ba5b startedMessageText", + "successMessageText": "5936d90786f7742b1420ba5b successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 1700, + "id": "5fe305df8a67d12f5f24c8aa", "type": "Experience", "index": 0, "unknown": false @@ -35208,62 +37155,182 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "61ae0aaed3ac1d27f25298b7", + "id": "60c89c0c80b2027f403dd992", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "value": 75000, - "id": "61950d66d14ece31007e264c", + "value": 15000, + "id": "5fe305d9c646836c3b6fc562", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e91", + "target": "6812400b0c5cf2cf75075240", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1e91", + "_id": "6812400b0c5cf2cf75075240", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 75000 + "StackObjectsCount": 15000 } } ] }, { "availableInGameEditions": [], - "id": "63a1a3714ebcff1c995dc342", - "type": "AssortmentUnlock", + "value": 1, + "id": "60cb4643f09d61072d6cf21a", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e92", + "target": "6812400b0c5cf2cf75075241", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e92", - "_tpl": "59fb137a86f7740adb646af1" + "_id": "6812400b0c5cf2cf75075241", + "_tpl": "57d14d2524597714373db789", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf75075242", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "6812400b0c5cf2cf75075241", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075243", + "_tpl": "57d1519e24597714373db79d", + "parentId": "6812400b0c5cf2cf75075241", + "slotId": "mod_magazine" } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" + ] }, { "availableInGameEditions": [], - "id": "657fc9c3fd86b9d9680c4a26", + "value": 2, + "id": "60cb467f7c496e588343a193", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075248", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075246", + "_tpl": "65702606cfc010a0f5006a3e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075247", + "_tpl": "573718ba2459775a75491131", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75075246", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075248", + "_tpl": "65702606cfc010a0f5006a3e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075249", + "_tpl": "573718ba2459775a75491131", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400b0c5cf2cf75075248", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac64f3786f774056634a1cb", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1e93", + "target": "6812400b0c5cf2cf7507524a", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1e93", - "_tpl": "656f611f94b480b8a500c0db" + "_id": "6812400b0c5cf2cf7507524a", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400b0c5cf2cf7507524b", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf7507524c", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507524d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507524e", + "_tpl": "57ffb0e42459777d047111c5", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507524f", + "_tpl": "5839a7742459773cf9693481", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075250", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "6812400b0c5cf2cf7507524a", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075251", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "6812400b0c5cf2cf75075250", + "slotId": "mod_handguard" } ], - "loyaltyLevel": 4, + "loyaltyLevel": 1, "traderId": "54cb50c76803fa8b248b4571" + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "629f016390948017ee17bb3b", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false } ], "Fail": [] @@ -35535,12 +37602,12 @@ "id": "5ef09545f12be47a8d1af49f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e95", + "target": "6812400b0c5cf2cf75075253", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1e95", + "_id": "6812400b0c5cf2cf75075253", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 25000 @@ -35554,12 +37621,12 @@ "id": "5ee75425c226ea55a345b559", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1e96", + "target": "6812400b0c5cf2cf75075254", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1e96", + "_id": "6812400b0c5cf2cf75075254", "_tpl": "5839a40f24597726f856b511", "upd": { "StackObjectsCount": 1, @@ -35572,45 +37639,45 @@ } }, { - "_id": "68010065f81036801d0b1e97", + "_id": "6812400b0c5cf2cf75075255", "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1e98", + "_id": "6812400b0c5cf2cf75075256", "_tpl": "57dc347d245977596754e7a1", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1e99", + "_id": "6812400b0c5cf2cf75075257", "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1e9a", + "_id": "6812400b0c5cf2cf75075258", "_tpl": "57ffb0e42459777d047111c5", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1e9b", + "_id": "6812400b0c5cf2cf75075259", "_tpl": "5839a7742459773cf9693481", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1e9c", + "_id": "6812400b0c5cf2cf7507525a", "_tpl": "59d36a0086f7747e673f3946", - "parentId": "68010065f81036801d0b1e96", + "parentId": "6812400b0c5cf2cf75075254", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1e9d", + "_id": "6812400b0c5cf2cf7507525b", "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "68010065f81036801d0b1e9c", + "parentId": "6812400b0c5cf2cf7507525a", "slotId": "mod_handguard" } ] @@ -35621,12 +37688,12 @@ "id": "5ee75c74cab4c209e92d2409", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ea1", + "target": "6812400b0c5cf2cf7507525f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ea1", + "_id": "6812400b0c5cf2cf7507525f", "_tpl": "57372b832459776701014e41", "upd": { "StackObjectsCount": 1, @@ -35634,21 +37701,21 @@ } }, { - "_id": "68010065f81036801d0b1ea2", + "_id": "6812400b0c5cf2cf75075260", "_tpl": "56dff026d2720bb8668b4567", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b1ea1", + "parentId": "6812400b0c5cf2cf7507525f", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ea3", + "_id": "6812400b0c5cf2cf75075261", "_tpl": "56dff026d2720bb8668b4567", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b1ea1", + "parentId": "6812400b0c5cf2cf7507525f", "slotId": "cartridges", "location": 1 } @@ -35660,12 +37727,12 @@ "id": "60cb5889e3d0247e625da17c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ea5", + "target": "6812400b0c5cf2cf75075263", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ea5", + "_id": "6812400b0c5cf2cf75075263", "_tpl": "5648ae314bdc2d3d1c8b457f", "upd": { "StackObjectsCount": 1, @@ -35680,12 +37747,12 @@ "id": "60cb589a3e4e974efa3452c1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ea7", + "target": "6812400b0c5cf2cf75075265", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ea7", + "_id": "6812400b0c5cf2cf75075265", "_tpl": "5cf50fc5d7f00c056c53f83c", "upd": { "StackObjectsCount": 1, @@ -35705,81 +37772,162 @@ "arenaLocations": [], "status": 0 }, - "60e71c9ad54b755a3b53eb66": { - "QuestName": "The Cleaner", - "_id": "60e71c9ad54b755a3b53eb66", + "63987301e11ec11ff5504036": { + "QuestName": "Gunsmith - Part 21", + "_id": "63987301e11ec11ff5504036", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71c9ad54b755a3b53eb66 acceptPlayerMessage", - "changeQuestMessageText": "60e71c9ad54b755a3b53eb66 changeQuestMessageText", - "completePlayerMessage": "60e71c9ad54b755a3b53eb66 completePlayerMessage", + "acceptPlayerMessage": "63987301e11ec11ff5504036 acceptPlayerMessage", + "changeQuestMessageText": "63987301e11ec11ff5504036 changeQuestMessageText", + "completePlayerMessage": "63987301e11ec11ff5504036 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "60e745d6479eef59b01b0bdb", - "conditions": [ - { - "id": "60e745f3d1a062318d3d2264", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "pmcBot" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "60e745fa5698ee7b05057459", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - } - ] - }, - "id": "60e745d6479eef59b01b0bdc", + "conditionType": "WeaponAssembly", + "id": "63987b49cd51826f7a069b85", "index": 0, "parentId": "", - "oneSessionOnly": false, "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, + "target": [ + "5bfea6e90db834001b7347f3" + ], "globalQuestCounterId": "", - "value": 40, + "value": 1, "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 1500.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 35.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 5, + "compareMethod": "<=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 500.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5cde739cd7f00c0010373bd3", + "5cde7afdd7f00c000d36b89d", + "5cde7b43d7f00c000d36b93e" + ], + "hasItemFromCategory": [] + }, + { + "conditionType": "WeaponAssembly", + "id": "63987b9c05aa481907106505", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5e81c3cbac2bb513793cdc75" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 200.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 75.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 7, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 750.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5ef366938cef260c0642acad", + "5ef61964ec7f42238c31e0c1" + ], + "hasItemFromCategory": [ + "55818b164bdc2ddc698b456c" + ] } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "610147ac43d55d251d68e4fb", + "conditionType": "Level", + "id": "639afa5592e27b60a1074096", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5c0d4e61d09282029f53920e", + "globalQuestCounterId": "", + "value": 38, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639afa4981b99001240bbe18", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b477f7686f7744d1b23c4d2", "status": [ 4 ], @@ -35787,118 +37935,159 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "610147b0683d6b506f258f96", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 45, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "60e71c9ad54b755a3b53eb66 description", - "failMessageText": "60e71c9ad54b755a3b53eb66 failMessageText", - "declinePlayerMessage": "60e71c9ad54b755a3b53eb66 declinePlayerMessage", - "name": "60e71c9ad54b755a3b53eb66 name", - "note": "60e71c9ad54b755a3b53eb66 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/5d69483686f77414077d1cca.jpg", - "type": "Elimination", + "description": "63987301e11ec11ff5504036 description", + "failMessageText": "63987301e11ec11ff5504036 failMessageText", + "declinePlayerMessage": "63987301e11ec11ff5504036 declinePlayerMessage", + "name": "63987301e11ec11ff5504036 name", + "note": "63987301e11ec11ff5504036 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae9481287ef0b827d0bef.jpg", + "type": "WeaponAssembly", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "60e71c9ad54b755a3b53eb66 startedMessageText", - "successMessageText": "60e71c9ad54b755a3b53eb66 successMessageText", + "startedMessageText": "63987301e11ec11ff5504036 startedMessageText", + "successMessageText": "63987301e11ec11ff5504036 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 84000, - "id": "6102782550bb44526c34c81e", + "value": 27700, + "id": "639afa5d2a994a11600df098", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "id": "655b76689db22d43ab42b70b", - "type": "ProductionScheme", + "value": 0.03, + "id": "639afa6a5b759c65a34764e8", + "type": "TraderStanding", "index": 0, - "target": "68010065f81036801d0b1eaa", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1ea9", - "_tpl": "5fd20ff893a8961fc660a954", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "68010065f81036801d0b1eaa", - "_tpl": "5fd20ff893a8961fc660a954", - "upd": { - "StackObjectsCount": 30 - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "6102969b9386cf6f25373c49", - "type": "Skill", - "index": 0, - "target": "Assault", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 200, - "id": "610296a7e0211147291533d9", - "type": "Skill", - "index": 0, - "target": "SMG", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "64145a1ee2a21acb9008dd90", - "type": "Skill", - "index": 0, - "target": "DMR", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 3000, - "id": "610296bde10c48364e47a920", + "value": 1, + "id": "639afa8e92e27b60a1074097", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1eac", + "target": "6812400b0c5cf2cf75075267", "unknown": true, - "findInRaid": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1eac", - "_tpl": "569668774bdc2da2298b4568", + "_id": "6812400b0c5cf2cf75075267", + "_tpl": "567143bf4bdc2d1a0f8b4567", "upd": { - "StackObjectsCount": 3000 + "StackObjectsCount": 1, + "SpawnedInSession": true } } ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "639afa8381b99001240bbe19", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507526e", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507526a", + "_tpl": "648984e3f09d032aa9399d53", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507526b", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507526a", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507526c", + "_tpl": "648984e3f09d032aa9399d53", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507526d", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507526c", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507526e", + "_tpl": "648984e3f09d032aa9399d53", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507526f", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507526e", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19d79f194393ecf632f8d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075270", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075270", + "_tpl": "5d025cc1d7ad1a53845279ef" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19d815032c67f050dd964", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075271", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075271", + "_tpl": "5c793fb92e221644f31bfb64" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" } ], "Fail": [] @@ -36308,12 +38497,12 @@ "id": "60bf6d8dc53a5709996b40b0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1eae", + "target": "6812400b0c5cf2cf75075273", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1eae", + "_id": "6812400b0c5cf2cf75075273", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 800 @@ -36327,12 +38516,12 @@ "id": "60cc6a46179f8541b846924c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ecd", + "target": "6812400b0c5cf2cf75075292", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1eb1", + "_id": "6812400b0c5cf2cf75075276", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36340,16 +38529,16 @@ } }, { - "_id": "68010065f81036801d0b1eb2", + "_id": "6812400b0c5cf2cf75075277", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1eb1", + "parentId": "6812400b0c5cf2cf75075276", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1eb3", + "_id": "6812400b0c5cf2cf75075278", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36357,16 +38546,16 @@ } }, { - "_id": "68010065f81036801d0b1eb4", + "_id": "6812400b0c5cf2cf75075279", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1eb3", + "parentId": "6812400b0c5cf2cf75075278", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1eb5", + "_id": "6812400b0c5cf2cf7507527a", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36374,16 +38563,16 @@ } }, { - "_id": "68010065f81036801d0b1eb6", + "_id": "6812400b0c5cf2cf7507527b", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1eb5", + "parentId": "6812400b0c5cf2cf7507527a", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1eb7", + "_id": "6812400b0c5cf2cf7507527c", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36391,16 +38580,16 @@ } }, { - "_id": "68010065f81036801d0b1eb8", + "_id": "6812400b0c5cf2cf7507527d", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1eb7", + "parentId": "6812400b0c5cf2cf7507527c", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1eb9", + "_id": "6812400b0c5cf2cf7507527e", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36408,16 +38597,16 @@ } }, { - "_id": "68010065f81036801d0b1eba", + "_id": "6812400b0c5cf2cf7507527f", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1eb9", + "parentId": "6812400b0c5cf2cf7507527e", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ebb", + "_id": "6812400b0c5cf2cf75075280", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36425,16 +38614,16 @@ } }, { - "_id": "68010065f81036801d0b1ebc", + "_id": "6812400b0c5cf2cf75075281", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ebb", + "parentId": "6812400b0c5cf2cf75075280", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ebd", + "_id": "6812400b0c5cf2cf75075282", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36442,16 +38631,16 @@ } }, { - "_id": "68010065f81036801d0b1ebe", + "_id": "6812400b0c5cf2cf75075283", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ebd", + "parentId": "6812400b0c5cf2cf75075282", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ebf", + "_id": "6812400b0c5cf2cf75075284", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36459,16 +38648,16 @@ } }, { - "_id": "68010065f81036801d0b1ec0", + "_id": "6812400b0c5cf2cf75075285", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ebf", + "parentId": "6812400b0c5cf2cf75075284", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ec1", + "_id": "6812400b0c5cf2cf75075286", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36476,16 +38665,16 @@ } }, { - "_id": "68010065f81036801d0b1ec2", + "_id": "6812400b0c5cf2cf75075287", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ec1", + "parentId": "6812400b0c5cf2cf75075286", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ec3", + "_id": "6812400b0c5cf2cf75075288", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36493,16 +38682,16 @@ } }, { - "_id": "68010065f81036801d0b1ec4", + "_id": "6812400b0c5cf2cf75075289", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ec3", + "parentId": "6812400b0c5cf2cf75075288", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ec5", + "_id": "6812400b0c5cf2cf7507528a", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36510,16 +38699,16 @@ } }, { - "_id": "68010065f81036801d0b1ec6", + "_id": "6812400b0c5cf2cf7507528b", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ec5", + "parentId": "6812400b0c5cf2cf7507528a", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ec7", + "_id": "6812400b0c5cf2cf7507528c", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36527,16 +38716,16 @@ } }, { - "_id": "68010065f81036801d0b1ec8", + "_id": "6812400b0c5cf2cf7507528d", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ec7", + "parentId": "6812400b0c5cf2cf7507528c", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ec9", + "_id": "6812400b0c5cf2cf7507528e", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36544,16 +38733,16 @@ } }, { - "_id": "68010065f81036801d0b1eca", + "_id": "6812400b0c5cf2cf7507528f", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ec9", + "parentId": "6812400b0c5cf2cf7507528e", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ecb", + "_id": "6812400b0c5cf2cf75075290", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36561,16 +38750,16 @@ } }, { - "_id": "68010065f81036801d0b1ecc", + "_id": "6812400b0c5cf2cf75075291", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ecb", + "parentId": "6812400b0c5cf2cf75075290", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1ecd", + "_id": "6812400b0c5cf2cf75075292", "_tpl": "5c11279ad174af029d64592b", "upd": { "StackObjectsCount": 1, @@ -36578,12 +38767,12 @@ } }, { - "_id": "68010065f81036801d0b1ece", + "_id": "6812400b0c5cf2cf75075293", "_tpl": "5c0d5ae286f7741e46554302", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b1ecd", + "parentId": "6812400b0c5cf2cf75075292", "slotId": "cartridges" } ] @@ -36758,12 +38947,12 @@ "id": "6179b8d2c7560e13d23eeba2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ed0", + "target": "6812400b0c5cf2cf75075295", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ed0", + "_id": "6812400b0c5cf2cf75075295", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 120000 @@ -36777,12 +38966,12 @@ "id": "655b95da1fe356507267b2fd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ed2", + "target": "6812400b0c5cf2cf75075297", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ed2", + "_id": "6812400b0c5cf2cf75075297", "_tpl": "5df8a4d786f77412672a1e3b", "upd": { "StackObjectsCount": 1 @@ -36796,12 +38985,12 @@ "id": "655b95f01273611d2462ab7d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ed3", + "target": "6812400b0c5cf2cf75075298", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ed3", + "_id": "6812400b0c5cf2cf75075298", "_tpl": "6499849fc93611967b034949", "upd": { "StackObjectsCount": 1, @@ -36812,69 +39001,69 @@ } }, { - "_id": "68010065f81036801d0b1ed4", + "_id": "6812400b0c5cf2cf75075299", "_tpl": "649ec107961514b22506b10c", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1ed5", + "_id": "6812400b0c5cf2cf7507529a", "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1ed6", + "_id": "6812400b0c5cf2cf7507529b", "_tpl": "649ec127c93611967b034957", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1ed7", + "_id": "6812400b0c5cf2cf7507529c", "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b1ed6", + "parentId": "6812400b0c5cf2cf7507529b", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b1ed8", + "_id": "6812400b0c5cf2cf7507529d", "_tpl": "649ec2af961514b22506b10f", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1ed9", + "_id": "6812400b0c5cf2cf7507529e", "_tpl": "649ec2f3961514b22506b111", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1eda", + "_id": "6812400b0c5cf2cf7507529f", "_tpl": "649ec2da59cbb3c813042dca", - "parentId": "68010065f81036801d0b1ed9", + "parentId": "6812400b0c5cf2cf7507529e", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1edb", + "_id": "6812400b0c5cf2cf750752a0", "_tpl": "649ec2cec93611967b03495e", - "parentId": "68010065f81036801d0b1eda", + "parentId": "6812400b0c5cf2cf7507529f", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b1edc", + "_id": "6812400b0c5cf2cf750752a1", "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1edd", + "_id": "6812400b0c5cf2cf750752a2", "_tpl": "649ec87d8007560a9001ab36", - "parentId": "68010065f81036801d0b1ed3", + "parentId": "6812400b0c5cf2cf75075298", "slotId": "mod_stock_001" }, { - "_id": "68010065f81036801d0b1ede", + "_id": "6812400b0c5cf2cf750752a3", "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b1edd", + "parentId": "6812400b0c5cf2cf750752a2", "slotId": "mod_stock" } ] @@ -37048,12 +39237,12 @@ "id": "5c1fd55086f7743c7b261edc", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ee0", + "target": "6812400b0c5cf2cf750752a5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ee0", + "_id": "6812400b0c5cf2cf750752a5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 300000 @@ -37067,12 +39256,12 @@ "id": "5c1928b086f77401b1301f42", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ee4", + "target": "6812400b0c5cf2cf750752a9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ee2", + "_id": "6812400b0c5cf2cf750752a7", "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, @@ -37080,7 +39269,7 @@ } }, { - "_id": "68010065f81036801d0b1ee3", + "_id": "6812400b0c5cf2cf750752a8", "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, @@ -37088,7 +39277,7 @@ } }, { - "_id": "68010065f81036801d0b1ee4", + "_id": "6812400b0c5cf2cf750752a9", "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, @@ -37103,12 +39292,12 @@ "id": "5c19294286f77401b46e25a3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ee8", + "target": "6812400b0c5cf2cf750752ad", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1ee6", + "_id": "6812400b0c5cf2cf750752ab", "_tpl": "590c678286f77426c9660122", "upd": { "StackObjectsCount": 1, @@ -37116,7 +39305,7 @@ } }, { - "_id": "68010065f81036801d0b1ee7", + "_id": "6812400b0c5cf2cf750752ac", "_tpl": "590c678286f77426c9660122", "upd": { "StackObjectsCount": 1, @@ -37124,7 +39313,7 @@ } }, { - "_id": "68010065f81036801d0b1ee8", + "_id": "6812400b0c5cf2cf750752ad", "_tpl": "590c678286f77426c9660122", "upd": { "StackObjectsCount": 1, @@ -37139,12 +39328,12 @@ "id": "60cb71df98b4927060364562", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1eec", + "target": "6812400b0c5cf2cf750752b1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1eea", + "_id": "6812400b0c5cf2cf750752af", "_tpl": "60363c0c92ec1c31037959f5", "upd": { "StackObjectsCount": 1, @@ -37152,7 +39341,7 @@ } }, { - "_id": "68010065f81036801d0b1eeb", + "_id": "6812400b0c5cf2cf750752b0", "_tpl": "60363c0c92ec1c31037959f5", "upd": { "StackObjectsCount": 1, @@ -37160,7 +39349,7 @@ } }, { - "_id": "68010065f81036801d0b1eec", + "_id": "6812400b0c5cf2cf750752b1", "_tpl": "60363c0c92ec1c31037959f5", "upd": { "StackObjectsCount": 1, @@ -37761,33 +39950,33 @@ "id": "655b93b07f92d5105c6f7b7e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ef1", + "target": "6812400b0c5cf2cf750752b6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ef1", + "_id": "6812400b0c5cf2cf750752b6", "_tpl": "5f60c74e3b85f6263c145586", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b1ef2", + "_id": "6812400b0c5cf2cf750752b7", "_tpl": "657bc285aab96fccee08bea3", - "parentId": "68010065f81036801d0b1ef1", + "parentId": "6812400b0c5cf2cf750752b6", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b1ef3", + "_id": "6812400b0c5cf2cf750752b8", "_tpl": "657bc2c5a1c61ee0c3036333", - "parentId": "68010065f81036801d0b1ef1", + "parentId": "6812400b0c5cf2cf750752b6", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b1ef4", + "_id": "6812400b0c5cf2cf750752b9", "_tpl": "657bc2e7b30eca976305118d", - "parentId": "68010065f81036801d0b1ef1", + "parentId": "6812400b0c5cf2cf750752b6", "slotId": "Helmet_ears" } ] @@ -37798,12 +39987,12 @@ "id": "655b93c2065b076eb02c4b50", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1ef6", + "target": "6812400b0c5cf2cf750752bb", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1ef6", + "_id": "6812400b0c5cf2cf750752bb", "_tpl": "5f60c85b58eff926626a60f7", "upd": { "StackObjectsCount": 1 @@ -37817,12 +40006,12 @@ "id": "61029c1ce0211147291533e0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f04", + "target": "6812400b0c5cf2cf750752c9", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f04", + "_id": "6812400b0c5cf2cf750752c9", "_tpl": "545cdb794bdc2d3a198b456a", "upd": { "StackObjectsCount": 1, @@ -37830,111 +40019,111 @@ } }, { - "_id": "68010065f81036801d0b1f05", + "_id": "6812400b0c5cf2cf750752ca", "_tpl": "6575ce3716c2762fba0057fd", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b1f06", + "_id": "6812400b0c5cf2cf750752cb", "_tpl": "6575ce45dc9932aed601c616", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b1f07", + "_id": "6812400b0c5cf2cf750752cc", "_tpl": "6575ce5016c2762fba005802", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b1f08", + "_id": "6812400b0c5cf2cf750752cd", "_tpl": "6575ce5befc786cd9101a671", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b1f09", + "_id": "6812400b0c5cf2cf750752ce", "_tpl": "6575ce6f16c2762fba005806", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b1f0a", + "_id": "6812400b0c5cf2cf750752cf", "_tpl": "6575ce9db15fef3dd4051628", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Shoulder_l" }, { - "_id": "68010065f81036801d0b1f0b", + "_id": "6812400b0c5cf2cf750752d0", "_tpl": "6575cea8b15fef3dd405162c", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Shoulder_r" }, { - "_id": "68010065f81036801d0b1f0c", + "_id": "6812400b0c5cf2cf750752d1", "_tpl": "6575ce8bdc9932aed601c61e", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Groin" }, { - "_id": "68010065f81036801d0b1f0d", + "_id": "6812400b0c5cf2cf750752d2", "_tpl": "64afc71497cf3a403c01ff38", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b1f0e", + "_id": "6812400b0c5cf2cf750752d3", "_tpl": "64afc71497cf3a403c01ff38", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Back_plate" }, { - "_id": "68010065f81036801d0b1f0f", + "_id": "6812400b0c5cf2cf750752d4", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Left_side_plate" }, { - "_id": "68010065f81036801d0b1f10", + "_id": "6812400b0c5cf2cf750752d5", "_tpl": "64afd81707e2cf40e903a316", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f04", + "parentId": "6812400b0c5cf2cf750752c9", "slotId": "Right_side_plate" } ] @@ -37944,11 +40133,11 @@ "id": "655b939e1273611d2462ab7c", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b1f15", + "target": "6812400b0c5cf2cf750752da", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1f15", + "_id": "6812400b0c5cf2cf750752da", "_tpl": "5f60c74e3b85f6263c145586", "upd": { "StackObjectsCount": 1, @@ -37956,30 +40145,30 @@ } }, { - "_id": "68010065f81036801d0b1f16", + "_id": "6812400b0c5cf2cf750752db", "_tpl": "657bc285aab96fccee08bea3", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f15", + "parentId": "6812400b0c5cf2cf750752da", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b1f17", + "_id": "6812400b0c5cf2cf750752dc", "_tpl": "657bc2c5a1c61ee0c3036333", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f15", + "parentId": "6812400b0c5cf2cf750752da", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b1f18", + "_id": "6812400b0c5cf2cf750752dd", "_tpl": "657bc2e7b30eca976305118d", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b1f15", + "parentId": "6812400b0c5cf2cf750752da", "slotId": "Helmet_ears" } ], @@ -37997,512 +40186,19 @@ "arenaLocations": [], "status": 0 }, - "5a03173786f77451cb427172": { - "QuestName": "Spa Tour - Part 2", - "_id": "5a03173786f77451cb427172", + "596b43fb86f77457ca186186": { + "QuestName": "The Extortionist", + "_id": "596b43fb86f77457ca186186", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a03173786f77451cb427172 acceptPlayerMessage", - "changeQuestMessageText": "5a03173786f77451cb427172 changeQuestMessageText", - "completePlayerMessage": "5a03173786f77451cb427172 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5a0317da86f77451cb427295", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_peacemaker_008_2_N1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5a0325f286f7744384509230", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_peacemaker_008_2_N2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a37d80986f774245c063b68", - "conditions": [ - { - "id": "5a37d81686f774245c063b6b", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5a37d85486f774245b1a0818", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5a37d80986f774245c063b69", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a60a99386f774590326d5cc", - "target": "5a0325f286f7744384509230", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a722986f7745a9e0647dc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a03177586f77451f06f6c33", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a03153686f77442d90e2171", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a03173786f77451cb427172 description", - "failMessageText": "5a03173786f77451cb427172 failMessageText", - "declinePlayerMessage": "5a03173786f77451cb427172 declinePlayerMessage", - "name": "5a03173786f77451cb427172 name", - "note": "5a03173786f77451cb427172 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a03173786f77451cb427172 startedMessageText", - "successMessageText": "5a03173786f77451cb427172 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6300, - "id": "60cc6bf53e4e974efa345d07", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc6bf8af2e5506c378229e", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 900, - "id": "5a28094086f77456b45b88fa", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f1a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1f1a", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 900 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc6c092b555f16df5c4199", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f1c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f1c", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac66d1286f77405d47293be", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1f1d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1f1d", - "_tpl": "58d3db5386f77426186285a0" - } - ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5bc479e586f7747f376c7da3": { - "QuestName": "The Tarkov Shooter - Part 2", - "_id": "5bc479e586f7747f376c7da3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc479e586f7747f376c7da3 acceptPlayerMessage", - "changeQuestMessageText": "5bc479e586f7747f376c7da3 changeQuestMessageText", - "completePlayerMessage": "5bc479e586f7747f376c7da3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bd983d886f7747ba73fc245", - "conditions": [ - { - "id": "5bd983f286f7740ab2382707", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "55801eed4bdc2d89578b4588", - "5de652c31b7e3716273428be", - "588892092459774ac91d4b11", - "5ae08f0a5acfc408fb1398a1", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "5bfd297f0db834001a669119", - "61f7c9e189e6fb1a5e3ea78d", - "627e14b21713922ded6f2c15" - ], - "distance": { - "value": 40, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "LeftLeg", - "RightLeg" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Shots" - } - ] - }, - "id": "5bd983d886f7747ba73fc246", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bd9944f86f774035c4877f2", - "conditions": [ - { - "id": "5bd9948586f774035c4877f4", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "55801eed4bdc2d89578b4588", - "5de652c31b7e3716273428be", - "588892092459774ac91d4b11", - "5ae08f0a5acfc408fb1398a1", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "5bfd297f0db834001a669119", - "61f7c9e189e6fb1a5e3ea78d", - "627e14b21713922ded6f2c15" - ], - "distance": { - "value": 40, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Shots" - } - ] - }, - "id": "5bd9944f86f774035c4877f3", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5bdabf0586f7743e1809c555", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5bc4776586f774512d07cf05", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5bc479e586f7747f376c7da3 description", - "failMessageText": "5bc479e586f7747f376c7da3 failMessageText", - "declinePlayerMessage": "5bc479e586f7747f376c7da3 declinePlayerMessage", - "name": "5bc479e586f7747f376c7da3 name", - "note": "5bc479e586f7747f376c7da3 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5bc9fab686f7742a90020769.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5bc479e586f7747f376c7da3 startedMessageText", - "successMessageText": "5bc479e586f7747f376c7da3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 12400, - "id": "60cc9b33ac6eb02bc726de5a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9b3ef81cc57f4717189d", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 65000, - "id": "5bcf21cc86f7746a45695a71", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f1f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1f1f", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 65000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf2c4686f774722e666716", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f21", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f21", - "_tpl": "5bc5a372d4351e44f824d17f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc9b5720a6283a506aeb3d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f24", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f23", - "_tpl": "6034cf5fffd42c541047f72e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1f24", - "_tpl": "6034cf5fffd42c541047f72e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf222b86f774378e26691b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1f25", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1f25", - "_tpl": "5bc5a372d4351e44f824d17f" - } - ], - "loyaltyLevel": 1, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5969f9e986f7741dde183a50": { - "QuestName": "Pharmacist", - "_id": "5969f9e986f7741dde183a50", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5969f9e986f7741dde183a50 acceptPlayerMessage", - "changeQuestMessageText": "5969f9e986f7741dde183a50 changeQuestMessageText", - "completePlayerMessage": "5969f9e986f7741dde183a50 completePlayerMessage", + "acceptPlayerMessage": "596b43fb86f77457ca186186 acceptPlayerMessage", + "changeQuestMessageText": "596b43fb86f77457ca186186 changeQuestMessageText", + "completePlayerMessage": "596b43fb86f77457ca186186 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "5969fa4886f7741ddb481544", + "id": "596b44b686f77457cb50ecca", "index": 0, "maxDurability": 100.0, "minDurability": 0.0, @@ -38511,7 +40207,7 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5910922b86f7747d96753483" + "593965cf86f774087a77e1b6" ], "countInRaid": false, "globalQuestCounterId": "", @@ -38521,7 +40217,7 @@ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "5969fa8986f7741ddc2d3154", + "id": "596b450986f7745a7e510b54", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, @@ -38530,14 +40226,14 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5910922b86f7747d96753483" + "593965cf86f774087a77e1b6" ], "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "5a57770d86f7740d2014e5b2", - "target": "5969fa4886f7741ddb481544", + "id": "5a5778a886f7740adc2f7f85", + "target": "596b44b686f77457cb50ecca", "conditionType": "CompleteCondition" } ] @@ -38546,20 +40242,20 @@ "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5a3fb8f686f7742384533f0f", + "id": "5a3fbabc86f774231d75afbd", "conditions": [ { - "id": "5a3fb91186f7742384533f14", + "id": "5a3fbb0986f77455f8544ce3", "dynamicLocale": false, - "target": "vaz_feld", + "target": "dead_posylni", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "5a3fb8f686f7742384533f10", - "index": 1, - "parentId": "5969fa4886f7741ddb481544", + "id": "5a3fbabc86f774231d75afbe", + "index": 2, + "parentId": "596b44b686f77457cb50ecca", "oneSessionOnly": false, "dynamicLocale": false, "type": "Exploration", @@ -38574,20 +40270,20 @@ "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5a3fb92286f77422b46cdb17", + "id": "5a3fbab086f77421593d9bef", "conditions": [ { - "id": "5a3fb93286f77421ef22a42a", + "id": "5a3fbb2d86f77421ef22af45", "dynamicLocale": false, - "target": "room114", + "target": "vremyan_case", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "5a3fb92286f77422b46cdb18", - "index": 2, - "parentId": "5969fa4886f7741ddb481544", + "id": "5a3fbab086f77421593d9bf0", + "index": 3, + "parentId": "596b44b686f77457cb50ecca", "oneSessionOnly": false, "dynamicLocale": false, "type": "Exploration", @@ -38602,22 +40298,22 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "59a9291086f7747b856b7c5e", + "id": "59a924fb86f7747a683e405b", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 10, + "value": 7, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5979e77f86f77431185415c2", + "id": "59819ef086f774557e174d7e", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5969f90786f77420d2328015", + "target": "596b36c586f77450d6045ad2", "status": [ 4 ], @@ -38629,28 +40325,28 @@ ], "Fail": [] }, - "description": "5969f9e986f7741dde183a50 description", - "failMessageText": "5969f9e986f7741dde183a50 failMessageText", - "declinePlayerMessage": "5969f9e986f7741dde183a50 declinePlayerMessage", - "name": "5969f9e986f7741dde183a50 name", - "note": "5969f9e986f7741dde183a50 note", - "traderId": "54cb57776803fa99248b456e", + "description": "596b43fb86f77457ca186186 description", + "failMessageText": "596b43fb86f77457ca186186 failMessageText", + "declinePlayerMessage": "596b43fb86f77457ca186186 declinePlayerMessage", + "name": "596b43fb86f77457ca186186 name", + "note": "596b43fb86f77457ca186186 note", + "traderId": "58330581ace78e27b8b10cee", "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5979d36d86f7746d093ddd7a.jpg", + "image": "/files/quest/icon/596b453b86f77457c827bf44.jpg", "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5969f9e986f7741dde183a50 startedMessageText", - "successMessageText": "5969f9e986f7741dde183a50 successMessageText", + "startedMessageText": "596b43fb86f77457ca186186 startedMessageText", + "successMessageText": "596b43fb86f77457ca186186 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 5700, - "id": "60c8c2c083161b326c471115", + "value": 3200, + "id": "5c94fe5c86f774551528dee9", "type": "Experience", "index": 0, "unknown": false @@ -38658,27 +40354,27 @@ { "availableInGameEditions": [], "value": 0.04, - "id": "60c8c2c3919c14709f49739b", + "id": "60c8af8f919c14709f497391", "type": "TraderStanding", "index": 0, - "target": "54cb57776803fa99248b456e", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 25000, - "id": "5a2fb8ed86f7742eb03f362a", + "value": 500, + "id": "5a2e5b9986f77452ef4a6252", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f27", + "target": "6812400b0c5cf2cf750752df", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f27", - "_tpl": "5449016a4bdc2d6f028b456f", + "_id": "6812400b0c5cf2cf750752df", + "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 25000 + "StackObjectsCount": 500 } } ] @@ -38686,16 +40382,103 @@ { "availableInGameEditions": [], "value": 1, - "id": "60cb68ae7c496e588343a1d7", + "id": "5a3faa9586f7745849562028", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f29", + "target": "6812400b0c5cf2cf750752e0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f29", - "_tpl": "60098ad7c2240c0fe85c570a", + "_id": "6812400b0c5cf2cf750752e0", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf750752e1", + "_tpl": "59e649f986f77411d949b246", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf750752e2", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "6812400b0c5cf2cf750752e1", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf750752e3", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf750752e4", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf750752e5", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf750752e6", + "_tpl": "59e8977386f77415a553c453", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750752e7", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750752e8", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "6812400b0c5cf2cf750752e0", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5a417d8886f77430d736fb26", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750752ec", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750752ea", + "_tpl": "59d625f086f774661516605d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750752eb", + "_tpl": "59d625f086f774661516605d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750752ec", + "_tpl": "59d625f086f774661516605d", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -38705,37 +40488,238 @@ }, { "availableInGameEditions": [], - "value": 3, - "id": "60cb68e42b555f16df5c416f", + "value": 6, + "id": "60cb597d8f570e28f1480bf5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f2d", + "target": "6812400b0c5cf2cf750752f9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f2b", - "_tpl": "5d1b3a5d86f774252167ba22", + "_id": "6812400b0c5cf2cf750752ef", + "_tpl": "657024011419851aef03e6f4", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1f2c", - "_tpl": "5d1b3a5d86f774252167ba22", + "_id": "6812400b0c5cf2cf750752f0", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752ef", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750752f1", + "_tpl": "657024011419851aef03e6f4", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1f2d", - "_tpl": "5d1b3a5d86f774252167ba22", + "_id": "6812400b0c5cf2cf750752f2", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752f1", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750752f3", + "_tpl": "657024011419851aef03e6f4", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } + }, + { + "_id": "6812400b0c5cf2cf750752f4", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752f3", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750752f5", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750752f6", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752f5", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750752f7", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750752f8", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752f7", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750752f9", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750752fa", + "_tpl": "59e655cb86f77411dc52a77b", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf750752f9", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a1a03b4ebcff1c995dc341", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750752fb", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750752fb", + "_tpl": "5a7828548dc32e5a9c28b516" + }, + { + "_id": "6812400b0c5cf2cf750752fc", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "6812400b0c5cf2cf750752fb", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf750752fd", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "6812400b0c5cf2cf750752fb", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf750752fe", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "6812400b0c5cf2cf750752fb", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750752ff", + "_tpl": "5a7880d0c5856700142fdd9d", + "parentId": "6812400b0c5cf2cf750752fb", + "slotId": "mod_stock" + } + ], + "loyaltyLevel": 1, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "629f03d77ad28b7f7c40ecb0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075308", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075308", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075309", + "_tpl": "6571dbd388ead79fcf091d71", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf7507530a", + "_tpl": "6571dbda88ead79fcf091d75", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf7507530b", + "_tpl": "6571dbe07c02ae206002502e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf7507530c", + "_tpl": "6571dbeaee8ec43d520cf89e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf7507530d", + "_tpl": "6571dbef88ead79fcf091d79", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Collar" + }, + { + "_id": "6812400b0c5cf2cf7507530e", + "_tpl": "656f57dc27aed95beb08f628", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf7507530f", + "_tpl": "656fac30c6baea13cd07e10c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf75075308", + "slotId": "Back_plate" } ] } @@ -38750,56 +40734,507 @@ "arenaLocations": [], "status": 0 }, - "596b36c586f77450d6045ad2": { - "QuestName": "Supplier", - "_id": "596b36c586f77450d6045ad2", + "5ede55112c95834b583f052a": { + "QuestName": "The Bunker - Part 1", + "_id": "5ede55112c95834b583f052a", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596b36c586f77450d6045ad2 acceptPlayerMessage", - "changeQuestMessageText": "596b36c586f77450d6045ad2 changeQuestMessageText", - "completePlayerMessage": "596b36c586f77450d6045ad2 completePlayerMessage", + "acceptPlayerMessage": "5ede55112c95834b583f052a acceptPlayerMessage", + "changeQuestMessageText": "5ede55112c95834b583f052a changeQuestMessageText", + "completePlayerMessage": "5ede55112c95834b583f052a completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "597867e986f7741b265c6bd3", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ee8eea538ca5b3b4f3c4646", + "conditions": [ + { + "id": "5ee8eeb9fb3afb33a60f0463", + "dynamicLocale": false, + "target": "prapor_024_area_2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ee8eea538ca5b3b4f3c4647", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, + "oneSessionOnly": true, "dynamicLocale": false, - "target": [ - "59e7635f86f7742cbf2c1095" - ], + "type": "Exploration", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ee8eecc0b4ef7326256c65f", + "conditions": [ + { + "id": "5ee8eed7f89fe23eae11c142", + "dynamicLocale": false, + "target": "prapor_024_area_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ee8eecc0b4ef7326256c660", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ee0e5a8c321a77fc55084d1", + "conditions": [ + { + "id": "5ee0e5c39f0b3d34a90f8009", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ee0e5d21623e85a510839ce", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ee0e5a8c321a77fc55084d2", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5ef094ac32e6cc3234361a30", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59c124d686f774189b3c843f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, "visibilityConditions": [] }, { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ab8d44c86f7745b2325bd0c", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, + "conditionType": "Level", + "id": "5ede5528bc2ff1141a199367", + "index": 0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, "dynamicLocale": false, - "target": [ - "5a38e6bac4a2826c6e06d79b" + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ede55112c95834b583f052a description", + "failMessageText": "5ede55112c95834b583f052a failMessageText", + "declinePlayerMessage": "5ede55112c95834b583f052a declinePlayerMessage", + "name": "5ede55112c95834b583f052a name", + "note": "5ede55112c95834b583f052a note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/5ee234c386f77447ee650e32.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ede55112c95834b583f052a startedMessageText", + "successMessageText": "5ede55112c95834b583f052a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5700, + "id": "60c8a506919c14709f49738e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60dc2996c11cb44c33696c66", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "5ee7577ac226ea55a345b55d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075311", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075311", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb57de2b555f16df5c4107", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075312", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075312", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75075313", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075314", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075315", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75075316", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075317", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf75075318", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "6812400b0c5cf2cf75075317", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400b0c5cf2cf75075319", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "6812400b0c5cf2cf75075312", + "slotId": "mod_pistolgrip" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "655b83709db22d43ab42b70c", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507531d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507531b", + "_tpl": "633a98eab8b0506e48497c1a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf7507531c", + "_tpl": "633a98eab8b0506e48497c1a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf7507531d", + "_tpl": "633a98eab8b0506e48497c1a", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb580a179f8541b84691c4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075324", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075320", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075321", + "_tpl": "5a26ac0ec4a28200741e1e18", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf75075320", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075322", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075323", + "_tpl": "5a26ac0ec4a28200741e1e18", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf75075322", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075324", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075325", + "_tpl": "5a26ac0ec4a28200741e1e18", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400b0c5cf2cf75075324", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b83841fe356507267b2fa", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075326", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075326", + "_tpl": "5a269f97c4a282000b151807" + } ], + "loyaltyLevel": 2, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5fd9fad9c1ce6b1a3b486d00": { + "QuestName": "Search Mission", + "_id": "5fd9fad9c1ce6b1a3b486d00", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage", + "changeQuestMessageText": "5fd9fad9c1ce6b1a3b486d00 changeQuestMessageText", + "completePlayerMessage": "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5fd9fad9c1ce6b1a3b486d04", + "conditions": [ + { + "id": "5ee8ec99de862370a5316adb", + "dynamicLocale": false, + "target": "pr_scout_col", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5fd9fad9c1ce6b1a3b486d03", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [] + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5fd9fad9c1ce6b1a3b486d06", + "conditions": [ + { + "id": "5ee8ecf8fb3afb33a60f0462", + "dynamicLocale": false, + "target": "pr_scout_base", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5fd9fad9c1ce6b1a3b486d05", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5fd9fad9c1ce6b1a3b486d0e", + "conditions": [ + { + "id": "5ee0e765a263820890521b60", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ee0e76fc3716e1fc8472969", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5fd9fad9c1ce6b1a3b486d0d", + "index": 7, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5fdc855b4a28ed5ca03b3232", + "target": "5fd9fad9c1ce6b1a3b486d03", + "conditionType": "CompleteCondition" + }, + { + "id": "5fdc85704a28ed5ca03b3233", + "target": "5fd9fad9c1ce6b1a3b486d05", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "658471e481d440d61cb18548", + "id": "5fd9fad9c1ce6b1a3b486d02", "index": 0, "parentId": "", "dynamicLocale": false, @@ -38810,14 +41245,13 @@ }, { "conditionType": "Quest", - "id": "658471e0e482af3e0bd16b0c", - "index": 1, + "id": "5fdc862eaf5a054cc9333005", + "index": 0, "parentId": "", "dynamicLocale": false, - "target": "657315e270bb0b8dba00cc48", + "target": "5936d90786f7742b1420ba5b", "status": [ - 4, - 5 + 4 ], "globalQuestCounterId": "", "availableAfter": 0, @@ -38827,56 +41261,56 @@ ], "Fail": [] }, - "description": "596b36c586f77450d6045ad2 description", - "failMessageText": "596b36c586f77450d6045ad2 failMessageText", - "declinePlayerMessage": "596b36c586f77450d6045ad2 declinePlayerMessage", - "name": "596b36c586f77450d6045ad2 name", - "note": "596b36c586f77450d6045ad2 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "PickUp", + "description": "5fd9fad9c1ce6b1a3b486d00 description", + "failMessageText": "5fd9fad9c1ce6b1a3b486d00 failMessageText", + "declinePlayerMessage": "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage", + "name": "5fd9fad9c1ce6b1a3b486d00 name", + "note": "5fd9fad9c1ce6b1a3b486d00 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", + "type": "Exploration", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "596b36c586f77450d6045ad2 startedMessageText", - "successMessageText": "596b36c586f77450d6045ad2 successMessageText", + "startedMessageText": "5fd9fad9c1ce6b1a3b486d00 startedMessageText", + "successMessageText": "5fd9fad9c1ce6b1a3b486d00 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 3300, - "id": "5c94fe4d86f77455192fa42a", + "value": 2800, + "id": "60c8a5b59bdefb3130121b09", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.05, - "id": "60c8af839339363e8f0c6ad9", + "value": 0.02, + "id": "60c8a5c39339363e8f0c6ad2", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "value": 60000, - "id": "5ab8d47586f7745c5f49d558", + "value": 22000, + "id": "5fe459f031ff9168f55eead8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f2f", + "target": "6812400b0c5cf2cf75075328", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f2f", + "_id": "6812400b0c5cf2cf75075328", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 60000 + "StackObjectsCount": 22000 } } ] @@ -38884,149 +41318,58 @@ { "availableInGameEditions": [], "value": 1, - "id": "60d062e01bdece56c249cc0b", + "id": "5fdc85c47e3ca316bd3b806d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f30", + "target": "6812400b0c5cf2cf7507532a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f30", - "_tpl": "59f9cabd86f7743a10721f46", + "_id": "6812400b0c5cf2cf7507532a", + "_tpl": "5f4f9eb969cdc30ff33f09db", "upd": { - "StackObjectsCount": 1 + "StackObjectsCount": 1, + "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b1f31", - "_tpl": "5998517986f7746017232f7e", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1f32", - "_tpl": "599851db86f77467372f0a18", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1f33", - "_tpl": "5998529a86f774647f44f421", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1f34", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1f35", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1f36", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1f37", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "68010065f81036801d0b1f30", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1f38", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "68010065f81036801d0b1f37", - "slotId": "mod_handguard" } ] }, { "availableInGameEditions": [], - "id": "5ac6666c86f774056634a229", - "type": "AssortmentUnlock", + "value": 1, + "id": "60cb58e277dc197c77424f93", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f39", + "target": "6812400b0c5cf2cf7507532c", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f39", - "_tpl": "59f9cabd86f7743a10721f46" - }, - { - "_id": "68010065f81036801d0b1f3a", - "_tpl": "5998517986f7746017232f7e", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1f3b", - "_tpl": "599851db86f77467372f0a18", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1f3c", - "_tpl": "5998529a86f774647f44f421", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1f3d", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1f3e", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1f3f", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1f40", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "68010065f81036801d0b1f39", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1f41", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "68010065f81036801d0b1f40", - "slotId": "mod_handguard" + "_id": "6812400b0c5cf2cf7507532c", + "_tpl": "5900b89686f7744e704a8747", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } } - ], - "loyaltyLevel": 1, - "traderId": "58330581ace78e27b8b10cee" + ] }, { "availableInGameEditions": [], - "id": "655b7f4d065b076eb02c4b49", + "id": "655b85d8065b076eb02c4b4c", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1f42", - "unknown": true, + "target": "6812400b0c5cf2cf7507532d", + "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1f42", - "_tpl": "64b8f7b5389d7ffd620ccba2" + "_id": "6812400b0c5cf2cf7507532d", + "_tpl": "64be79e2bf8412471d0d9bcc" } ], "loyaltyLevel": 1, - "traderId": "58330581ace78e27b8b10cee" + "traderId": "54cb50c76803fa8b248b4571" } ], "Fail": [] @@ -39039,99 +41382,121 @@ "arenaLocations": [], "status": 0 }, - "5b477f7686f7744d1b23c4d2": { - "QuestName": "Gunsmith - Part 20", - "_id": "5b477f7686f7744d1b23c4d2", + "60896e28e4a85c72ef3fa301": { + "QuestName": "Disease History", + "_id": "60896e28e4a85c72ef3fa301", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b477f7686f7744d1b23c4d2 acceptPlayerMessage", - "changeQuestMessageText": "5b477f7686f7744d1b23c4d2 changeQuestMessageText", - "completePlayerMessage": "5b477f7686f7744d1b23c4d2 completePlayerMessage", + "acceptPlayerMessage": "60896e28e4a85c72ef3fa301 acceptPlayerMessage", + "changeQuestMessageText": "60896e28e4a85c72ef3fa301 changeQuestMessageText", + "completePlayerMessage": "60896e28e4a85c72ef3fa301 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "5b47824386f7744d190d8dd1", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6091698a30bb620b3239874c", "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5aafa857e5b5b00018480968" + "608c22a003292f4ba43f8a1a" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60ae12ffb809a474875907aa", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "60a3b5b05f84d429b732e934" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "609169cfeca522371e5725c5", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "608c22a003292f4ba43f8a1a" ], "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 20.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 20, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 400.0, - "compareMethod": "<=" - }, - "weight": { - "value": 7.3, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5addbfbb5acfc400194dbcf7", - "5aa66be6e5b5b0214e506e97", - "58d399e486f77442e0016fe7", - "57fd23e32459772d0805bcf1" + "visibilityConditions": [ + { + "id": "609a342c311628516a014cf7", + "target": "6091698a30bb620b3239874c", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60ae134cabb9675f0062cf6e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "60a3b5b05f84d429b732e934" ], - "hasItemFromCategory": [] + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "60ae20f4ae5c5171bc6f7617", + "target": "60ae12ffb809a474875907aa", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "5b4f0d7186f77412bc326997", + "id": "60bf738e81c6e80e702ccc0e", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 37, + "value": 15, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5b4f094886f7747b127d9d7f", + "id": "60bf738b4c8a3800da06e717", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "639873003693c63d86328f25", + "target": "5969f9e986f7741dde183a50", "status": [ 4 ], @@ -39143,28 +41508,28 @@ ], "Fail": [] }, - "description": "5b477f7686f7744d1b23c4d2 description", - "failMessageText": "5b477f7686f7744d1b23c4d2 failMessageText", - "declinePlayerMessage": "5b477f7686f7744d1b23c4d2 declinePlayerMessage", - "name": "5b477f7686f7744d1b23c4d2 name", - "note": "5b477f7686f7744d1b23c4d2 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5b47867286f7744d1a393de9.jpg", - "type": "WeaponAssembly", + "description": "60896e28e4a85c72ef3fa301 description", + "failMessageText": "60896e28e4a85c72ef3fa301 failMessageText", + "declinePlayerMessage": "60896e28e4a85c72ef3fa301 declinePlayerMessage", + "name": "60896e28e4a85c72ef3fa301 name", + "note": "60896e28e4a85c72ef3fa301 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5b477f7686f7744d1b23c4d2 startedMessageText", - "successMessageText": "5b477f7686f7744d1b23c4d2 successMessageText", + "startedMessageText": "60896e28e4a85c72ef3fa301 startedMessageText", + "successMessageText": "60896e28e4a85c72ef3fa301 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 26600, - "id": "60cc79a365e4664318606afb", + "value": 7200, + "id": "60bf6f8bdb54616235170699", "type": "Experience", "index": 0, "unknown": false @@ -39172,27 +41537,27 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "60cc79a6af2e5506c37822bc", + "id": "60bf6f96960b6d5d274caaeb", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "54cb57776803fa99248b456e", "unknown": false }, { "availableInGameEditions": [], - "value": 500, - "id": "5b48772b86f7744d06237e61", + "value": 30000, + "id": "60bf6fd781c6e80e702ccc08", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f44", + "target": "6812400b0c5cf2cf7507532f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f44", - "_tpl": "569668774bdc2da2298b4568", + "_id": "6812400b0c5cf2cf7507532f", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 500 + "StackObjectsCount": 30000 } } ] @@ -39200,16 +41565,16 @@ { "availableInGameEditions": [], "value": 1, - "id": "639afa1e92e27b60a1074095", + "id": "60cb6cb398b492706036455a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f46", + "target": "6812400b0c5cf2cf75075331", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f46", - "_tpl": "5a33e75ac4a2826c6e06d759", + "_id": "6812400b0c5cf2cf75075331", + "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -39220,16 +41585,16 @@ { "availableInGameEditions": [], "value": 1, - "id": "639afa2bdae1800a3e135959", + "id": "60cb6ccba7d63f18200a24a7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f48", + "target": "6812400b0c5cf2cf75075333", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f48", - "_tpl": "5a7dbfc1159bd40016548fde", + "_id": "6812400b0c5cf2cf75075333", + "_tpl": "5af0548586f7743a532b7e99", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -39239,31 +41604,603 @@ }, { "availableInGameEditions": [], - "id": "63a19d5b5032c67f050dd963", - "type": "AssortmentUnlock", + "value": 5, + "id": "60cb6cd13e4e974efa345cb8", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f49", + "target": "6812400b0c5cf2cf75075339", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f49", - "_tpl": "6130c43c67085e45ef1405a1" + "_id": "6812400b0c5cf2cf75075335", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075336", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075337", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075338", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075339", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "6764488e37be0cb15b40c0d0", + "type": "CustomizationDirect", + "index": 0, + "target": "675467d8b784110b2702fe11", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59674eb386f774539f14813a": { + "QuestName": "Delivery From the Past", + "_id": "59674eb386f774539f14813a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59674eb386f774539f14813a acceptPlayerMessage", + "changeQuestMessageText": "59674eb386f774539f14813a changeQuestMessageText", + "completePlayerMessage": "59674eb386f774539f14813a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5968929e86f7740d121082d3", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "591092ef86f7747bb8703422" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "59674fe586f7744f4e358aa2", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "case_extraction", + "target": [ + "591092ef86f7747bb8703422" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5977784486f774285402cf51", + "conditions": [ + { + "id": "5a577b4186f7743e797f6f04", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5bf5393d86f77458f17c1993", + "dynamicLocale": false, + "target": [ + "factory4_day", + "factory4_night" + ], + "conditionType": "Location" + } + ] + }, + "id": "5977784486f774285402cf52", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a5779e486f774411f6c321f", + "target": "59674fe586f7744f4e358aa2", + "conditionType": "CompleteCondition" } ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a926c386f7747bbc027ac8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5978b48b86f7746ef62ef859", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5936da9e86f7742d65037edf", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59674eb386f774539f14813a description", + "failMessageText": "59674eb386f774539f14813a failMessageText", + "declinePlayerMessage": "59674eb386f774539f14813a declinePlayerMessage", + "name": "59674eb386f774539f14813a name", + "note": "59674eb386f774539f14813a note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/59bfebe686f7745ba3403da3.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59674eb386f774539f14813a startedMessageText", + "successMessageText": "59674eb386f774539f14813a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4000, + "id": "60c8a6b6e4d30047b777b316", + "type": "Experience", + "index": 0, + "unknown": false }, { "availableInGameEditions": [], - "id": "63a19d62151bfb591645c0f4", + "value": 0.03, + "id": "60c89ebb8dfbfc09882efd1b", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "60cb4763e3d0247e625da16d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507533b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507533b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5a3fa37086f7744335434f85", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507533c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507533c", + "_tpl": "576165642459773c7a400233", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf7507533d", + "_tpl": "576169e62459773c69055191", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507533e", + "_tpl": "576167ab2459773cad038c43", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507533f", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075340", + "_tpl": "57616c112459773cce774d66", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075341", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075342", + "_tpl": "57616ca52459773c69055192", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75075343", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "6812400b0c5cf2cf7507533c", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60cb4778e3d0247e625da16e", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075348", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075345", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075346", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075347", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075348", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb47917c496e588343a195", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507534f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507534c", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507534d", + "_tpl": "5d6e6806a4b936088465b17e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507534c", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507534e", + "_tpl": "5d6e6806a4b936088465b17e", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400b0c5cf2cf7507534c", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "6812400b0c5cf2cf7507534f", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075350", + "_tpl": "5d6e6806a4b936088465b17e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507534f", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075351", + "_tpl": "5d6e6806a4b936088465b17e", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400b0c5cf2cf7507534f", + "slotId": "cartridges", + "location": 1 + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac6502386f77405cd54625d", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1f4a", + "target": "6812400b0c5cf2cf75075352", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b1f4a", - "_tpl": "58d2912286f7744e27117493" + "_id": "6812400b0c5cf2cf75075352", + "_tpl": "56dff0bed2720bb0668b4567" + } + ], + "loyaltyLevel": 2, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "61958c366726521dd96828ec": { + "QuestName": "Cargo X - Part 4", + "_id": "61958c366726521dd96828ec", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "61958c366726521dd96828ec acceptPlayerMessage", + "changeQuestMessageText": "61958c366726521dd96828ec changeQuestMessageText", + "completePlayerMessage": "61958c366726521dd96828ec completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "61958d54aa0f643f9a0aed73", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "qlight16_peace_terra", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "61958d69d14ece31007e2df5", + "conditions": [ + { + "id": "61958d8f2e2805073c2d3bc1", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "61ad51da78d2361409060866", + "dynamicLocale": false, + "target": [ + "Lighthouse" + ], + "conditionType": "Location" + } + ] + }, + "id": "61958d69d14ece31007e2df4", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "61958d97ea774d183b6cc91d", + "target": "61958d54aa0f643f9a0aed73", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61ab63bf1b7da753125cfc36", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27bb5986f7741dfb660900", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "61958c366726521dd96828ec description", + "failMessageText": "61958c366726521dd96828ec failMessageText", + "declinePlayerMessage": "61958c366726521dd96828ec declinePlayerMessage", + "name": "61958c366726521dd96828ec name", + "note": "61958c366726521dd96828ec note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/597a0fad86f77426d464f995.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "61958c366726521dd96828ec startedMessageText", + "successMessageText": "61958c366726521dd96828ec successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8600, + "id": "61abc032d163df65dd55264f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ad4dbe4cce5e7e040ad757", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 800, + "id": "61abc01fce0ce5446c4bffce", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075354", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075354", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 800 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b922fc023e22044165dec", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075355", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075355", + "_tpl": "5ac8d6885acfc400180ae7b0" } ], "loyaltyLevel": 4, @@ -39280,78 +42217,98 @@ "arenaLocations": [], "status": 0 }, - "626bd75e47ea7f506e5493c5": { - "QuestName": "Broadcast - Part 1", - "_id": "626bd75e47ea7f506e5493c5", + "5d4bec3486f7743cac246665": { + "QuestName": "Regulated Materials", + "_id": "5d4bec3486f7743cac246665", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "626bd75e47ea7f506e5493c5 acceptPlayerMessage", - "changeQuestMessageText": "626bd75e47ea7f506e5493c5 changeQuestMessageText", - "completePlayerMessage": "626bd75e47ea7f506e5493c5 completePlayerMessage", + "acceptPlayerMessage": "5d4bec3486f7743cac246665 acceptPlayerMessage", + "changeQuestMessageText": "5d4bec3486f7743cac246665 changeQuestMessageText", + "completePlayerMessage": "5d4bec3486f7743cac246665 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ac232087413d64ae0ac23d", - "conditions": [ - { - "id": "63ac2332dd6923311c7d1828", - "dynamicLocale": false, - "target": "qlight_extension_mechanik1_exploration1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63ac232087413d64ae0ac23c", - "index": 1, + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5d4bfe4b86f7744a9d4fe032", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", - "oneSessionOnly": false, + "isEncoded": false, + "onlyFoundInRaid": true, "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, + "target": [ + "5d03794386f77420415576f5" + ], + "countInRaid": false, "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "visibilityConditions": [] }, { - "conditionType": "LeaveItemAtLocation", + "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "626c3158a371ee3a7a3514cc", + "id": "5d4bfe7c86f7744a9c66b316", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d03794386f77420415576f5" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5d4c020a86f77449c463ced6", "index": 2, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, - "plantTime": 10, - "zoneId": "qlight_extension_mechanik1_hide1", "target": [ - "5ac78a9b86f7741cca0bbd8d" + "5d0379a886f77420407aa271" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5d4c028c86f774389001e027", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d0379a886f77420407aa271" ], "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63ac235c87413d64ae0ac24d", - "target": "63ac232087413d64ae0ac23c", - "conditionType": "CompleteCondition" - } - ] + "value": 5, + "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "62a0872f4f842e1bd12d9d53", + "id": "5d77db2186f7745041358b57", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac3460c86f7742880308185", + "target": "5979f8bb86f7743ec214c7a6", "status": [ 4 ], @@ -39359,101 +42316,311 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "5d761f6886f7744521734218", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] } ], "Fail": [] }, - "description": "626bd75e47ea7f506e5493c5 description", - "failMessageText": "626bd75e47ea7f506e5493c5 failMessageText", - "declinePlayerMessage": "626bd75e47ea7f506e5493c5 declinePlayerMessage", - "name": "626bd75e47ea7f506e5493c5 name", - "note": "626bd75e47ea7f506e5493c5 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/628b805544430c635d52a888.jpg", + "description": "5d4bec3486f7743cac246665 description", + "failMessageText": "5d4bec3486f7743cac246665 failMessageText", + "declinePlayerMessage": "5d4bec3486f7743cac246665 declinePlayerMessage", + "name": "5d4bec3486f7743cac246665 name", + "note": "5d4bec3486f7743cac246665 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/5d6e860186f774460f1f0602.jpg", "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "626bd75e47ea7f506e5493c5 startedMessageText", - "successMessageText": "626bd75e47ea7f506e5493c5 successMessageText", + "startedMessageText": "5d4bec3486f7743cac246665 startedMessageText", + "successMessageText": "5d4bec3486f7743cac246665 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 6700, - "id": "629a264a55d6b6603224edd4", + "value": 14800, + "id": "60c8a4b1919c14709f49738c", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "62b0433f4fe91b6f8628068c", + "value": 0.02, + "id": "60c8a4348dfbfc09882efd1d", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "value": 650, - "id": "628b84ade43d1600542c97e9", + "value": 150000, + "id": "5d761fc086f774454d58840c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f4c", + "target": "6812400b0c5cf2cf75075357", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f4c", - "_tpl": "569668774bdc2da2298b4568", + "_id": "6812400b0c5cf2cf75075357", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 650 + "StackObjectsCount": 150000 } } ] }, { "availableInGameEditions": [], - "value": 1, - "id": "629a290955d6b6603224edd7", - "type": "Item", + "id": "5d761fa486f774452073df6d", + "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b1f4e", + "target": "6812400b0c5cf2cf75075358", "unknown": false, - "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f4e", - "_tpl": "60391a8b3364dc22b04d0ce5", + "_id": "6812400b0c5cf2cf75075358", + "_tpl": "5cadfbf7ae92152ac412eeef", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "FireMode": { + "FireMode": "single" + } } + }, + { + "_id": "6812400b0c5cf2cf75075359", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "6812400b0c5cf2cf75075358", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507535a", + "_tpl": "5caf1041ae92157c28402e3f", + "parentId": "6812400b0c5cf2cf75075358", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507535b", + "_tpl": "5caf16a2ae92152ac412efbc", + "parentId": "6812400b0c5cf2cf75075358", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf7507535c", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "parentId": "6812400b0c5cf2cf75075358", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507535d", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "parentId": "6812400b0c5cf2cf7507535c", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400b0c5cf2cf7507535e", + "_tpl": "5caf1691ae92152ac412efb9", + "parentId": "6812400b0c5cf2cf75075358", + "slotId": "mod_scope" } - ] + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" }, { "availableInGameEditions": [], - "value": 1, - "id": "629a29124dec5d194e450345", + "value": 10, + "id": "63baf332301d5256f738175d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f50", + "target": "6812400b0c5cf2cf75075373", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f50", - "_tpl": "590c31c586f774245e3141b2", + "_id": "6812400b0c5cf2cf75075361", + "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } + }, + { + "_id": "6812400b0c5cf2cf75075362", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075361", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075363", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075364", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075363", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075365", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075366", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075365", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075367", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075368", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075367", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075369", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507536a", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075369", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507536b", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507536c", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf7507536b", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507536d", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507536e", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf7507536d", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf7507536f", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075370", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf7507536f", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075371", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075372", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075371", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf75075373", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075374", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400b0c5cf2cf75075373", + "slotId": "cartridges" } ] } @@ -39468,23 +42635,185 @@ "arenaLocations": [], "status": 0 }, - "5979f8bb86f7743ec214c7a6": { - "QuestName": "Polikhim Hobo", - "_id": "5979f8bb86f7743ec214c7a6", + "60e71c11d54b755a3b53eb65": { + "QuestName": "Night Sweep", + "_id": "60e71c11d54b755a3b53eb65", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5979f8bb86f7743ec214c7a6 acceptPlayerMessage", - "changeQuestMessageText": "5979f8bb86f7743ec214c7a6 changeQuestMessageText", - "completePlayerMessage": "5979f8bb86f7743ec214c7a6 completePlayerMessage", + "acceptPlayerMessage": "60e71c11d54b755a3b53eb65 acceptPlayerMessage", + "changeQuestMessageText": "60e71c11d54b755a3b53eb65 changeQuestMessageText", + "completePlayerMessage": "60e71c11d54b755a3b53eb65 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e82c12fd1bf4491c4e4547", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e82c5926b88043510e0ad7", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "6101464fe5b13723fc7609ae", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 50, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "6101464accda1c5f7b1dd08f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5edabd13218d181e29451442", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71c11d54b755a3b53eb65 description", + "failMessageText": "60e71c11d54b755a3b53eb65 failMessageText", + "declinePlayerMessage": "60e71c11d54b755a3b53eb65 declinePlayerMessage", + "name": "60e71c11d54b755a3b53eb65 name", + "note": "60e71c11d54b755a3b53eb65 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/5d67b5ca86f7744dcc5e2f88.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71c11d54b755a3b53eb65 startedMessageText", + "successMessageText": "60e71c11d54b755a3b53eb65 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 107000, + "id": "60f037339417a95e1c42086d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 6000, + "id": "610298b160307362d01d8c80", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075376", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075376", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 6000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a1da0aab6bb51044344bfe", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75075378", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075378", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 7 + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "610298da9386cf6f25373c4d", + "type": "Skill", + "index": 0, + "target": "Shotgun", + "unknown": true + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59c50c8886f7745fed3193bf": { + "QuestName": "The Punisher - Part 2", + "_id": "59c50c8886f7745fed3193bf", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59c50c8886f7745fed3193bf acceptPlayerMessage", + "changeQuestMessageText": "59c50c8886f7745fed3193bf changeQuestMessageText", + "completePlayerMessage": "59c50c8886f7745fed3193bf completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "598f0c6386f7746c837802cb", + "id": "59674d5186f22146b872d5f6", "conditions": [ { - "id": "598f0c6986f77468ba349ed5", + "id": "59674d5586f77596b62554e7", "dynamicLocale": false, "target": "Savage", "compareMethod": ">=", @@ -39494,6 +42823,948 @@ "value": 0, "compareMethod": ">=" }, + "weaponModsInclusive": [ + [ + "59bffc1f86f77435b128b872" + ], + [ + "5a32a064c4a28200741e22de" + ], + [ + "59bffbb386f77435b379b9c2" + ], + [ + "54490a4d4bdc2dbc018b4573" + ], + [ + "5b363dd25acfc4001a598fd2" + ], + [ + "5b363dea5acfc4771e1c5e7e" + ], + [ + "5b363e1b5acfc4771e1c5e80" + ], + [ + "593d489686f7745c6255d58a" + ], + [ + "5a27b6bec4a282000e496f78" + ], + [ + "58aeac1b86f77457c419f475" + ], + [ + "593d490386f7745ee97a1555" + ], + [ + "55d6190f4bdc2d87028b4567" + ], + [ + "59bfc5c886f7743bf6794e62" + ], + [ + "57c44dd02459772d2e0ae249" + ], + [ + "5a0d63621526d8dba31fe3bf" + ], + [ + "5a34fe59c4a282000b1521a2" + ], + [ + "5a9fb739a2750c003215717f" + ], + [ + "5a9fbb84a2750c00137fa685" + ], + [ + "5c4eecc32e221602b412b440" + ], + [ + "57838c962459774a1651ec63" + ], + [ + "5b86a0e586f7745b600ccb23" + ], + [ + "593d493f86f7745e6b2ceb22" + ], + [ + "564caa3d4bdc2d17108b458e" + ], + [ + "57ffb0e42459777d047111c5" + ], + [ + "59fb257e86f7742981561852" + ], + [ + "5c7e8fab2e22165df16b889b" + ], + [ + "5a33a8ebc4a282000c5a950d" + ], + [ + "5a9fbb74a2750c0032157181" + ], + [ + "5a9fbacda2750c00141e080f" + ], + [ + "5c6165902e22160010261b28" + ], + [ + "5abcc328d8ce8700194394f3" + ], + [ + "5c7955c22e221644f31bfd5e" + ], + [ + "5a7ad74e51dfba0015068f45" + ], + [ + "5926d33d86f77410de68ebc0" + ], + [ + "57da93632459771cb65bf83f" + ], + [ + "57dbb57e2459774673234890" + ], + [ + "5ba26ae8d4351e00367f9bdb" + ], + [ + "56e05b06d2720bb2668b4586" + ], + [ + "57f3c8cc2459773ec4480328" + ], + [ + "55d614004bdc2d86028b4568" + ], + [ + "571a28e524597720b4066567" + ], + [ + "59c0ec5b86f77435b128bfca" + ], + [ + "5d3ef698a4b9361182109872" + ], + [ + "5caf187cae92157c28402e43" + ], + [ + "5cebec00d7f00c065c53522a" + ], + [ + "5d44064fa4b9361e4f6eb8b5" + ], + [ + "5cff9e84d7ad1a049e54ed55" + ], + [ + "5cff9e84d7ad1a049e54ed55" + ], + [ + "5a9fbacda2750c00141e080f" + ], + [ + "5a9fbb84a2750c00137fa685" + ], + [ + "593d489686f7745c6255d58a" + ], + [ + "5e208b9842457a4a7a33d074" + ], + [ + "5dfa3cd1b33c0951220c079b" + ], + [ + "5e01ea19e9dc277128008c0b" + ], + [ + "5c7fb51d2e2216001219ce11" + ], + [ + "5fbe7618d6fa9c00c571bb6c" + ], + [ + "5fbe760793164a5b6278efc8" + ], + [ + "5fc4b9b17283c4046c5814d7" + ], + [ + "5f63407e1b231926f2329f15" + ], + [ + "5ea17bbc09aa976f2e7a51cd" + ], + [ + "60926df0132d4d12c81fd9df" + ], + [ + "6171367e1cb55961fa0fdb36" + ], + [ + "6130c4d51cb55961fa0fd49f" + ], + [ + "602a97060ddce744014caf6f" + ], + [ + "5de8f2d5b74cd90030650c72" + ], + [ + "615d8f8567085e45ef1409ca" + ], + [ + "58889c7324597754281f9439" + ], + [ + "62811fa609427b40ab14e765" + ], + [ + "626673016f1edc06f30cf6d5" + ], + [ + "5dfa3d2b0dee1b22f862eade" + ], + [ + "63877c99e785640d436458ea" + ], + [ + "638612b607dfed1ccb7206ba" + ], + [ + "634eba08f69c710e0108d386" + ], + [ + "630f2982cdb9e392db0cbcc7" + ], + [ + "62e2a7138e1ac9380579c122" + ], + [ + "64c196ad26a15b84aa07132f" + ], + [ + "652911e650dc782999054b9d" + ], + [ + "64527a3a7da7133e5a09ca99" + ], + [ + "66993733f74fef4dfd0b04ff" + ], + [ + "65144ff50e00edc79406836f" + ], + [ + "673f0b36536d64240f01acd6" + ], + [ + "673f0a9370a3ddcf0d0ee0b8" + ], + [ + "673f0a38259f5945d70e43a6" + ], + [ + "674d5e287075e056160e0176" + ], + [ + "676149c5062e6212f5058c36" + ], + [ + "676149d8e889e1972605d6be" + ] + ], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "59c50b8e86f1742fed319382", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" + } + ] + }, + "id": "59624d5386f77446b872d5f7", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb5e2ff86f7746ef64c979b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "572b7fa524597762b747ce82" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 7, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59c50f1686f77412ef2c01e7", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "572b7fa524597762b747ce82" + ], + "globalQuestCounterId": "", + "value": 7, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a926b186f774753c5479a2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 18, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "596a1f7586f1741ddd6c10c8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59c50a9e86f7745fef66f4ff", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59c50c8886f7745fed3193bf description", + "failMessageText": "59c50c8886f7745fed3193bf failMessageText", + "declinePlayerMessage": "59c50c8886f7745fed3193bf declinePlayerMessage", + "name": "59c50c8886f7745fed3193bf name", + "note": "59c50c8886f7745fed3193bf note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/5981c96e86f77477920d1a04.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59c50c8886f7745fed3193bf startedMessageText", + "successMessageText": "59c50c8886f7745fed3193bf successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "59c5101a86f7741f0d09de28", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507537d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507537d", + "_tpl": "5a7c4850e899ef00150be885", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507537e", + "_tpl": "657baaf0b7e9ca9a02045c02", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf7507537d", + "slotId": "Helmet_top" + }, + { + "_id": "6812400b0c5cf2cf7507537f", + "_tpl": "657bab6ec6f689d3a205b85f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf7507537d", + "slotId": "Helmet_back" + }, + { + "_id": "6812400b0c5cf2cf75075380", + "_tpl": "657babc6f58ba5a6250107a2", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf7507537d", + "slotId": "Helmet_ears" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "59c5101586f7741f0c5a8697", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075382", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075382", + "_tpl": "5b432b965acfc47a8774094e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5a417e2586f77469bc2979ba", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075383", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075383", + "_tpl": "56e0598dd2720bb5668b45a6", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75075384", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "6812400b0c5cf2cf75075383", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075385", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "6812400b0c5cf2cf75075383", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075386", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "6812400b0c5cf2cf75075383", + "slotId": "mod_pistolgrip" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 13100, + "id": "60c8acb78dfbfc09882efd1f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c8a02e9339363e8f0c6ace", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "60cb4f16179f8541b84691c2", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075388", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075388", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ec19b0c83b69d213d3c2eec", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507538b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507538a", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507538b", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb4f016a2a1958fc522cc0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507538c", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507538c", + "_tpl": "5ac66d725acfc43b321d4b60", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400b0c5cf2cf7507538d", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf7507538e", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6812400b0c5cf2cf7507538d", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507538f", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075390", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075391", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075392", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075393", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf75075394", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "6812400b0c5cf2cf7507538c", + "slotId": "mod_magazine" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639670029113f06a7c3b2377": { + "QuestName": "Following the Bread Crumbs", + "_id": "639670029113f06a7c3b2377", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639670029113f06a7c3b2377 acceptPlayerMessage", + "changeQuestMessageText": "639670029113f06a7c3b2377 changeQuestMessageText", + "completePlayerMessage": "639670029113f06a7c3b2377 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639adf3edbf1d842d260cda7", + "conditions": [ + { + "id": "639adf867cb1a8023d49f686", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "pmcBot" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "639adf3edbf1d842d260cda6", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7cf9f04d3dc28a52a20fb", + "conditions": [ + { + "id": "63a7cfbcf32fa1316250c3d1", + "dynamicLocale": false, + "target": "quest_zone_keeper7_saferoom", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7cf9f04d3dc28a52a20fa", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d0841943b749b5021eba", + "target": "639adf3edbf1d842d260cda6", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7cfe104d3dc28a52a20fd", + "conditions": [ + { + "id": "63a7cffbcc389e31a64596db", + "dynamicLocale": false, + "target": "quest_zone_keeper7_test", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7cfe104d3dc28a52a20fc", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d08acc389e31a64596dc", + "target": "639adf3edbf1d842d260cda6", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "639ae49a5e3c9b787264d675", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "6398a4cfb5992f573c6562b3" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d0b627a4ff476e6dd0cd", + "target": "63a7cf9f04d3dc28a52a20fa", + "conditionType": "CompleteCondition" + }, + { + "id": "63a7d0c8cc389e31a64596dd", + "target": "63a7cfe104d3dc28a52a20fc", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "639ae5445b201a534f436ef3", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "6398a4cfb5992f573c6562b3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "639ae5ab28d8a21b593a348e", + "target": "639ae49a5e3c9b787264d675", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "639afd5c20668603de1597c9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "63966ff54c3ef01b6f3ffad8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 36000, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639670029113f06a7c3b2377 description", + "failMessageText": "639670029113f06a7c3b2377 failMessageText", + "declinePlayerMessage": "639670029113f06a7c3b2377 declinePlayerMessage", + "name": "639670029113f06a7c3b2377 name", + "note": "639670029113f06a7c3b2377 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "any", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639670029113f06a7c3b2377 startedMessageText", + "successMessageText": "639670029113f06a7c3b2377 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.04, + "id": "63a6cec40530a47cb93185ba", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a2351f5032c67f050dd974", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075396", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075396", + "_tpl": "6389c7f115805221fb410466", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a2350cd6d4651e53602b02", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075397", + "unknown": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075397", + "_tpl": "6389c7f115805221fb410466" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59c50a9e86f7745fef66f4ff": { + "QuestName": "The Punisher - Part 1", + "_id": "59c50a9e86f7745fef66f4ff", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59c50a9e86f7745fef66f4ff acceptPlayerMessage", + "changeQuestMessageText": "59c50a9e86f7745fef66f4ff changeQuestMessageText", + "completePlayerMessage": "59c50a9e86f7745fef66f4ff completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "59674d5186f77446b032d2f1", + "conditions": [ + { + "id": "59674d5586f72226b62554e7", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5abcbc27d8ce8700182eceeb", + "59d6088586f774275f37482f", + "59ff346386f77477562ff5e2", + "5a0ec13bfcdbcb00165aa685", + "59e6152586f77473dc057aa1", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, "weaponModsInclusive": [], "weaponModsExclusive": [], "enemyEquipmentInclusive": [], @@ -39510,16 +43781,16 @@ "conditionType": "Kills" }, { - "id": "598f0c6e86f7746eec40ad7a", + "id": "59c52b3e86f7745fed319382", "dynamicLocale": false, "target": [ - "bigmap" + "Shoreline" ], "conditionType": "Location" } ] }, - "id": "5b0e766b86f7746bfa618964", + "id": "59674d5186f00443b872d5f7", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -39527,7 +43798,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 25, + "value": 15, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -39535,14 +43806,24 @@ ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "597a0a9d86f77426d66c0632", + "conditionType": "Level", + "id": "59a926b186f774753c5479a2", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5979f9ba86f7740f6c3fe9f2", + "globalQuestCounterId": "", + "value": 17, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "596a1f7586f2741ddd6c10c8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5967725e86f774601a446662", "status": [ - 2, 4 ], "globalQuestCounterId": "", @@ -39553,28 +43834,28 @@ ], "Fail": [] }, - "description": "5979f8bb86f7743ec214c7a6 description", - "failMessageText": "5979f8bb86f7743ec214c7a6 failMessageText", - "declinePlayerMessage": "5979f8bb86f7743ec214c7a6 declinePlayerMessage", - "name": "5979f8bb86f7743ec214c7a6 name", - "note": "5979f8bb86f7743ec214c7a6 note", + "description": "59c50a9e86f7745fef66f4ff description", + "failMessageText": "59c50a9e86f7745fef66f4ff failMessageText", + "declinePlayerMessage": "59c50a9e86f7745fef66f4ff declinePlayerMessage", + "name": "59c50a9e86f7745fef66f4ff name", + "note": "59c50a9e86f7745fef66f4ff note", "traderId": "54cb50c76803fa8b248b4571", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5979f91c86f77402996bf9c2.jpg", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/5968ec2986f7741ddf17db83.jpg", "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5979f8bb86f7743ec214c7a6 startedMessageText", - "successMessageText": "5979f8bb86f7743ec214c7a6 successMessageText", + "startedMessageText": "59c50a9e86f7745fef66f4ff startedMessageText", + "successMessageText": "59c50a9e86f7745fef66f4ff successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 5900, - "id": "60c8abd283161b326c471109", + "value": 10200, + "id": "60c8aca91f21c1669a48c325", "type": "Experience", "index": 0, "unknown": false @@ -39582,7 +43863,7 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "60c89f1383161b326c471103", + "id": "60c8a019a0b5c924fc6e9d4e", "type": "TraderStanding", "index": 0, "target": "54cb50c76803fa8b248b4571", @@ -39590,108 +43871,821 @@ }, { "availableInGameEditions": [], - "value": 50000, - "id": "60cb4b6eaf2e5506c3781d80", + "value": 40000, + "id": "5a2fb0db86f7747694379ad2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f52", + "target": "6812400b0c5cf2cf75075399", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f52", + "_id": "6812400b0c5cf2cf75075399", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 50000 + "StackObjectsCount": 40000 } } ] }, { "availableInGameEditions": [], - "value": 3, - "id": "60cb4b3f8f570e28f1480be6", + "id": "655b78e3975a7f3c734661aa", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507539a", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507539a", + "_tpl": "5656d7c34bdc2d9d198b4587" + } + ], + "loyaltyLevel": 3, + "traderId": "54cb50c76803fa8b248b4571" + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5a2fb0f286f774769732daa4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f56", + "target": "6812400b0c5cf2cf750753a8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f54", - "_tpl": "5710c24ad2720bc3458b45a3", + "_id": "6812400b0c5cf2cf750753a8", + "_tpl": "545cdb794bdc2d3a198b456a", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1f55", - "_tpl": "5710c24ad2720bc3458b45a3", + "_id": "6812400b0c5cf2cf750753a9", + "_tpl": "6575ce3716c2762fba0057fd", "upd": { - "StackObjectsCount": 1, "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400b0c5cf2cf750753aa", + "_tpl": "6575ce45dc9932aed601c616", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400b0c5cf2cf750753ab", + "_tpl": "6575ce5016c2762fba005802", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400b0c5cf2cf750753ac", + "_tpl": "6575ce5befc786cd9101a671", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400b0c5cf2cf750753ad", + "_tpl": "6575ce6f16c2762fba005806", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Collar" + }, + { + "_id": "6812400b0c5cf2cf750753ae", + "_tpl": "6575ce9db15fef3dd4051628", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Shoulder_l" + }, + { + "_id": "6812400b0c5cf2cf750753af", + "_tpl": "6575cea8b15fef3dd405162c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Shoulder_r" + }, + { + "_id": "6812400b0c5cf2cf750753b0", + "_tpl": "6575ce8bdc9932aed601c61e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Groin" + }, + { + "_id": "6812400b0c5cf2cf750753b1", + "_tpl": "64afc71497cf3a403c01ff38", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Front_plate" + }, + { + "_id": "6812400b0c5cf2cf750753b2", + "_tpl": "64afc71497cf3a403c01ff38", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Back_plate" + }, + { + "_id": "6812400b0c5cf2cf750753b3", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Left_side_plate" + }, + { + "_id": "6812400b0c5cf2cf750753b4", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400b0c5cf2cf750753a8", + "slotId": "Right_side_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac65e0c86f77403dd390d1a", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750753b5", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753b5", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "FireMode": { + "FireMode": "single" + } } }, { - "_id": "68010065f81036801d0b1f56", - "_tpl": "5710c24ad2720bc3458b45a3", + "_id": "6812400b0c5cf2cf750753b6", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6812400b0c5cf2cf750753b5", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750753b7", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "6812400b0c5cf2cf750753b5", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750753b8", + "_tpl": "56083eab4bdc2d26448b456a", + "parentId": "6812400b0c5cf2cf750753b5", + "slotId": "mod_tactical" + }, + { + "_id": "6812400b0c5cf2cf750753b9", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "6812400b0c5cf2cf750753b5", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf750753ba", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "6812400b0c5cf2cf750753b5", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750753bb", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "6812400b0c5cf2cf750753ba", + "slotId": "mod_bipod" + } + ], + "loyaltyLevel": 3, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59675d6c86f7740a842fc482": { + "QuestName": "Ice Cream Cones", + "_id": "59675d6c86f7740a842fc482", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59675d6c86f7740a842fc482 acceptPlayerMessage", + "changeQuestMessageText": "59675d6c86f7740a842fc482 changeQuestMessageText", + "completePlayerMessage": "59675d6c86f7740a842fc482 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5968ed3186f77420d2328013", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "55d482194bdc2d1d4e8b456b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59675e1d86f77414b07f137d", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "55d482194bdc2d1d4e8b456b" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5967938c86f77468cf5f9f54", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "5968ed3186f77420d2328013", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "591afe0186f77431bd616a11" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fbe3a86f77414422e0d9a", + "conditions": [ + { + "id": "5a3fbe5d86f77414422e0da1", + "dynamicLocale": false, + "target": "bunker2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fbe3a86f77414422e0d9b", + "index": 2, + "parentId": "5968ed3186f77420d2328013", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a926f786f77473e85737f3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 9, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "596a1f9286f77420d232807a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5967530a86f77462ba22226b", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59675d6c86f7740a842fc482 description", + "failMessageText": "59675d6c86f7740a842fc482 failMessageText", + "declinePlayerMessage": "59675d6c86f7740a842fc482 declinePlayerMessage", + "name": "59675d6c86f7740a842fc482 name", + "note": "59675d6c86f7740a842fc482 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/59c26f2b86f7744a351903d3.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59675d6c86f7740a842fc482 startedMessageText", + "successMessageText": "59675d6c86f7740a842fc482 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5200, + "id": "60c8abe52238043a5267862f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60c89f261f21c1669a48c31f", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 17000, + "id": "5a2e86f986f7741a972d4ee8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750753bd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753bd", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 17000 } } ] }, { "availableInGameEditions": [], - "value": 3, - "id": "60cb4b51e3d0247e625da173", + "value": 2, + "id": "60cb4c146a2a1958fc522cbb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f5a", + "target": "6812400b0c5cf2cf750753c4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f58", - "_tpl": "5448be9a4bdc2dfd2f8b456a", + "_id": "6812400b0c5cf2cf750753c1", + "_tpl": "57372d4c245977685a3da2a1", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1f59", - "_tpl": "5448be9a4bdc2dfd2f8b456a", + "_id": "6812400b0c5cf2cf750753c2", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf750753c1", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750753c3", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf750753c1", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "6812400b0c5cf2cf750753c4", + "_tpl": "57372d4c245977685a3da2a1", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b1f5a", - "_tpl": "5448be9a4bdc2dfd2f8b456a", + "_id": "6812400b0c5cf2cf750753c5", + "_tpl": "56dff2ced2720bb4668b4567", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf750753c4", + "slotId": "cartridges" + }, + { + "_id": "6812400b0c5cf2cf750753c6", + "_tpl": "56dff2ced2720bb4668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400b0c5cf2cf750753c4", + "slotId": "cartridges", + "location": 1 } ] }, { "availableInGameEditions": [], "value": 1, - "id": "60cb4b62f09d61072d6cf21f", + "id": "5fd7d1a316cac650092f686b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f5c", + "target": "6812400b0c5cf2cf750753c7", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f5c", - "_tpl": "5a0c27731526d80618476ac4", + "_id": "6812400b0c5cf2cf750753c7", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400b0c5cf2cf750753c8", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf750753c9", + "_tpl": "5beec91a0db834001961942d", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf750753ca", + "_tpl": "5beec9450db83400970084fd", + "parentId": "6812400b0c5cf2cf750753c9", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750753cb", + "_tpl": "5bf3f59f0db834001a6fa060", + "parentId": "6812400b0c5cf2cf750753ca", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750753cc", + "_tpl": "5bed625c0db834001c062946", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750753cd", + "_tpl": "5beec8b20db834001961942a", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400b0c5cf2cf750753ce", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "6812400b0c5cf2cf750753cd", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750753cf", + "_tpl": "5beec3e30db8340019619424", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf750753d0", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6812400b0c5cf2cf750753cf", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400b0c5cf2cf750753d1", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6812400b0c5cf2cf750753cf", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400b0c5cf2cf750753d2", + "_tpl": "5beec1bd0db834001e6006f3", + "parentId": "6812400b0c5cf2cf750753c7", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf750753d3", + "_tpl": "5beec3420db834001b095429", + "parentId": "6812400b0c5cf2cf750753d2", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac651a986f774066f04bcf7", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750753d4", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753d4", + "_tpl": "55d482194bdc2d1d4e8b456b" + } + ], + "loyaltyLevel": 2, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a68665c86f774255929b4c7": { + "QuestName": "Health Care Privacy - Part 3", + "_id": "5a68665c86f774255929b4c7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a68665c86f774255929b4c7 acceptPlayerMessage", + "changeQuestMessageText": "5a68665c86f774255929b4c7 changeQuestMessageText", + "completePlayerMessage": "5a68665c86f774255929b4c7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a68770f86f774747d4b0d8a", + "conditions": [ + { + "id": "5a68772286f774284429b156", + "dynamicLocale": false, + "target": "ter_015_area_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a68770f86f774747d4b0d8b", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5a68776786f774759f1f55f6", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a687e7886f7740c4a5133fb" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a68777586f774747d4b0d9e", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a687e7886f7740c4a5133fb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a68777b86f77474c4269f5f", + "target": "5a68776786f774759f1f55f6", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a68778c86f77423391f38ef", + "conditions": [ + { + "id": "5a68779586f77474c4269f64", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + }, + { + "id": "5a68779d86f774284429b169", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5a68778c86f77423391f38f0", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a6877a986f774759f1f5600", + "target": "5a68776786f774759f1f55f6", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5a6876ed86f77474f4381206", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a68663e86f774501078f78a", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a68665c86f774255929b4c7 description", + "failMessageText": "5a68665c86f774255929b4c7 failMessageText", + "declinePlayerMessage": "5a68665c86f774255929b4c7 declinePlayerMessage", + "name": "5a68665c86f774255929b4c7 name", + "note": "5a68665c86f774255929b4c7 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a68665c86f774255929b4c7 startedMessageText", + "successMessageText": "5a68665c86f774255929b4c7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60c8c4832238043a5267864f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c4b89bdefb3130121b16", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 26000, + "id": "5a68869386f7745fa7410407", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750753d6", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753d6", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 26000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ac6658a86f77403df401d13", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750753d9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750753d8", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750753d9", + "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -39701,12 +44695,396 @@ }, { "availableInGameEditions": [], - "value": 0.01, - "id": "629f028bd285f377953b2412", - "type": "TraderStanding", + "value": 2, + "id": "60cb70cb65e4664318606abe", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750753dc", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750753db", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf750753dc", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac6659886f774066f04bd4d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750753dd", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753dd", + "_tpl": "544fb3f34bdc2d03748b456a" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb57776803fa99248b456e" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60e71c48c1bfa3050473b8e5": { + "QuestName": "Crisis", + "_id": "60e71c48c1bfa3050473b8e5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71c48c1bfa3050473b8e5 acceptPlayerMessage", + "changeQuestMessageText": "60e71c48c1bfa3050473b8e5 changeQuestMessageText", + "completePlayerMessage": "60e71c48c1bfa3050473b8e5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e8658571035f300c301ac6", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052e6986f7746b207bc3c9" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e865a60cef122b414a156a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5af0534a86f7743b6f354284" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60e866175d67b234af3d392a", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c0530ee86f774697952d952" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60f028ca86abc00cdc03ab89", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b3a5d86f774252167ba22" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "62a701587230237f257cac30", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a0a043cf4a99369e2624a5" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e866c50cef122b414a156c", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052e6986f7746b207bc3c9" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e866f926b88043510e0adf", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5af0534a86f7743b6f354284" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60e867265d67b234af3d392c", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c0530ee86f774697952d952" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60f028f85caf08029e0d6277", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b3a5d86f774252167ba22" + ], + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "62a70168eb3cb46d9a0bba7a", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "62a0a043cf4a99369e2624a5" + ], + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "610146bcccda1c5f7b1dd090", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5c0d0d5086f774363760aef2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "610146ea70fd3f687c1a747e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 48, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71c48c1bfa3050473b8e5 description", + "failMessageText": "60e71c48c1bfa3050473b8e5 failMessageText", + "declinePlayerMessage": "60e71c48c1bfa3050473b8e5 declinePlayerMessage", + "name": "60e71c48c1bfa3050473b8e5 name", + "note": "60e71c48c1bfa3050473b8e5 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/5d6948e186f774238a38d8a7.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71c48c1bfa3050473b8e5 startedMessageText", + "successMessageText": "60e71c48c1bfa3050473b8e5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 97000, + "id": "60f037b1b28e277560670d6a", + "type": "Experience", "index": 0, - "target": "5c0647fdd443bc2504c2d371", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "61029d624c999b1f82704bd2", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750753df", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750753df", + "_tpl": "5aafbcd986f7745e590fff23", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 400, + "id": "6102981837e8697a3e7a49eb", + "type": "Skill", + "index": 0, + "target": "Immunity", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 400, + "id": "6102981f4c999b1f82704bcc", + "type": "Skill", + "index": 0, + "target": "Vitality", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 400, + "id": "6414394559cf65ff210035ef", + "type": "Skill", + "index": 0, + "target": "Surgery", + "unknown": false + }, + { + "availableInGameEditions": [], + "id": "64c7bc7feb33c17953050fd4", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf750753e1", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753e1", + "_tpl": "5ed51652f6c34d2cc26336a1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 7 + }, + { + "availableInGameEditions": [], + "id": "64c7bc83be830e2cab48c2c9", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf750753e3", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750753e3", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 7 } ], "Fail": [] @@ -39843,12 +45221,12 @@ "id": "60bf6dfc8bb401472c1a37ec", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f5e", + "target": "6812400b0c5cf2cf750753e5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f5e", + "_id": "6812400b0c5cf2cf750753e5", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 800 @@ -39862,12 +45240,12 @@ "id": "60cc6abc179f8541b846924d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f63", + "target": "6812400b0c5cf2cf750753ea", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f61", + "_id": "6812400b0c5cf2cf750753e8", "_tpl": "6570251ccfc010a0f5006a13", "upd": { "StackObjectsCount": 1, @@ -39875,16 +45253,16 @@ } }, { - "_id": "68010065f81036801d0b1f62", + "_id": "6812400b0c5cf2cf750753e9", "_tpl": "5cc86832d7f00c000d3a6e6c", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1f61", + "parentId": "6812400b0c5cf2cf750753e8", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1f63", + "_id": "6812400b0c5cf2cf750753ea", "_tpl": "6570251ccfc010a0f5006a13", "upd": { "StackObjectsCount": 1, @@ -39892,12 +45270,12 @@ } }, { - "_id": "68010065f81036801d0b1f64", + "_id": "6812400b0c5cf2cf750753eb", "_tpl": "5cc86832d7f00c000d3a6e6c", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1f63", + "parentId": "6812400b0c5cf2cf750753ea", "slotId": "cartridges" } ] @@ -39908,12 +45286,12 @@ "id": "66e42a97984d59c0cd0157e9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f69", + "target": "6812400b0c5cf2cf750753f0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f67", + "_id": "6812400b0c5cf2cf750753ee", "_tpl": "65702520bfc87b3a3409323e", "upd": { "StackObjectsCount": 1, @@ -39921,16 +45299,16 @@ } }, { - "_id": "68010065f81036801d0b1f68", + "_id": "6812400b0c5cf2cf750753ef", "_tpl": "5cc86840d7f00c002412c56c", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1f67", + "parentId": "6812400b0c5cf2cf750753ee", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1f69", + "_id": "6812400b0c5cf2cf750753f0", "_tpl": "65702520bfc87b3a3409323e", "upd": { "StackObjectsCount": 1, @@ -39938,12 +45316,12 @@ } }, { - "_id": "68010065f81036801d0b1f6a", + "_id": "6812400b0c5cf2cf750753f1", "_tpl": "5cc86840d7f00c002412c56c", "upd": { "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b1f69", + "parentId": "6812400b0c5cf2cf750753f0", "slotId": "cartridges" } ] @@ -40314,12 +45692,12 @@ "id": "5a2fb31686f774769732daa6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f6c", + "target": "6812400b0c5cf2cf750753f3", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f6c", + "_id": "6812400b0c5cf2cf750753f3", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 100000 @@ -40333,12 +45711,12 @@ "id": "59ca28c986f77445ac1da7ba", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f6d", + "target": "6812400b0c5cf2cf750753f4", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f6d", + "_id": "6812400b0c5cf2cf750753f4", "_tpl": "5447a9cd4bdc2dbd208b4567", "upd": { "StackObjectsCount": 1, @@ -40349,138 +45727,138 @@ } }, { - "_id": "68010065f81036801d0b1f6e", + "_id": "6812400b0c5cf2cf750753f5", "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b1f6d", + "parentId": "6812400b0c5cf2cf750753f4", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b1f6f", + "_id": "6812400b0c5cf2cf750753f6", "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "68010065f81036801d0b1f6d", + "parentId": "6812400b0c5cf2cf750753f4", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b1f70", + "_id": "6812400b0c5cf2cf750753f7", "_tpl": "54527a984bdc2d4e668b4567", "upd": { "StackObjectsCount": 30 }, - "parentId": "68010065f81036801d0b1f6f", + "parentId": "6812400b0c5cf2cf750753f6", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b1f71", + "_id": "6812400b0c5cf2cf750753f8", "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "68010065f81036801d0b1f6d", + "parentId": "6812400b0c5cf2cf750753f4", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b1f72", + "_id": "6812400b0c5cf2cf750753f9", "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "68010065f81036801d0b1f71", + "parentId": "6812400b0c5cf2cf750753f8", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1f73", + "_id": "6812400b0c5cf2cf750753fa", "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "68010065f81036801d0b1f71", + "parentId": "6812400b0c5cf2cf750753f8", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b1f74", + "_id": "6812400b0c5cf2cf750753fb", "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "68010065f81036801d0b1f73", + "parentId": "6812400b0c5cf2cf750753fa", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1f75", + "_id": "6812400b0c5cf2cf750753fc", "_tpl": "57da93632459771cb65bf83f", - "parentId": "68010065f81036801d0b1f74", + "parentId": "6812400b0c5cf2cf750753fb", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b1f76", + "_id": "6812400b0c5cf2cf750753fd", "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "68010065f81036801d0b1f73", + "parentId": "6812400b0c5cf2cf750753fa", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b1f77", + "_id": "6812400b0c5cf2cf750753fe", "_tpl": "55f84c3c4bdc2d5f408b4576", - "parentId": "68010065f81036801d0b1f71", + "parentId": "6812400b0c5cf2cf750753f8", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1f78", + "_id": "6812400b0c5cf2cf750753ff", "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "68010065f81036801d0b1f77", + "parentId": "6812400b0c5cf2cf750753fe", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1f79", + "_id": "6812400b0c5cf2cf75075400", "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "68010065f81036801d0b1f78", + "parentId": "6812400b0c5cf2cf750753ff", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1f7a", + "_id": "6812400b0c5cf2cf75075401", "_tpl": "58d399e486f77442e0016fe7", - "parentId": "68010065f81036801d0b1f79", + "parentId": "6812400b0c5cf2cf75075400", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b1f7b", + "_id": "6812400b0c5cf2cf75075402", "_tpl": "57d17e212459775a1179a0f5", - "parentId": "68010065f81036801d0b1f77", + "parentId": "6812400b0c5cf2cf750753fe", "slotId": "mod_tactical002" }, { - "_id": "68010065f81036801d0b1f7c", + "_id": "6812400b0c5cf2cf75075403", "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "68010065f81036801d0b1f7b", + "parentId": "6812400b0c5cf2cf75075402", "slotId": "mod_flashlight" }, { - "_id": "68010065f81036801d0b1f7d", + "_id": "6812400b0c5cf2cf75075404", "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "68010065f81036801d0b1f77", + "parentId": "6812400b0c5cf2cf750753fe", "slotId": "mod_tactical" }, { - "_id": "68010065f81036801d0b1f7e", + "_id": "6812400b0c5cf2cf75075405", "_tpl": "638f1ff84822287cad04be9d", - "parentId": "68010065f81036801d0b1f77", + "parentId": "6812400b0c5cf2cf750753fe", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b1f7f", + "_id": "6812400b0c5cf2cf75075406", "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "68010065f81036801d0b1f7e", + "parentId": "6812400b0c5cf2cf75075405", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b1f80", + "_id": "6812400b0c5cf2cf75075407", "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b1f6d", + "parentId": "6812400b0c5cf2cf750753f4", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1f81", + "_id": "6812400b0c5cf2cf75075408", "_tpl": "58d2946386f774496974c37e", - "parentId": "68010065f81036801d0b1f80", + "parentId": "6812400b0c5cf2cf75075407", "slotId": "mod_stock_000" }, { - "_id": "68010065f81036801d0b1f82", + "_id": "6812400b0c5cf2cf75075409", "_tpl": "58d2912286f7744e27117493", - "parentId": "68010065f81036801d0b1f81", + "parentId": "6812400b0c5cf2cf75075408", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b1f83", + "_id": "6812400b0c5cf2cf7507540a", "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "68010065f81036801d0b1f6d", + "parentId": "6812400b0c5cf2cf750753f4", "slotId": "mod_charge" } ] @@ -40614,12 +45992,12 @@ "id": "60cb66173e4e974efa345ca7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f85", + "target": "6812400b0c5cf2cf7507540c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b1f85", + "_id": "6812400b0c5cf2cf7507540c", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 30000 @@ -40633,12 +46011,12 @@ "id": "60cb660d6a2a1958fc522cf8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b1f87", + "target": "6812400b0c5cf2cf7507540e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b1f87", + "_id": "6812400b0c5cf2cf7507540e", "_tpl": "5c0e530286f7747fa1419862", "upd": { "StackObjectsCount": 1, @@ -40658,5048 +46036,6 @@ "arenaLocations": [], "status": 0 }, - "6396700fea19ac7ed845db32": { - "QuestName": "Spotter", - "_id": "6396700fea19ac7ed845db32", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6396700fea19ac7ed845db32 acceptPlayerMessage", - "changeQuestMessageText": "6396700fea19ac7ed845db32 changeQuestMessageText", - "completePlayerMessage": "6396700fea19ac7ed845db32 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7d2acee7b4d0d5507baf3", - "conditions": [ - { - "id": "63a7d2deee7b4d0d5507baf4", - "dynamicLocale": false, - "target": "quest_zone_keeper8_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7d2acee7b4d0d5507baf2", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639c359f0a20a7001f00c7a8", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_keeper8_1_hide1", - "target": [ - "62811fa609427b40ab14e765" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d3dc10b7a13eb015961d", - "target": "63a7d2acee7b4d0d5507baf2", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7d315f32fa1316250c3d3", - "conditions": [ - { - "id": "63a7d3323e491955e65fb885", - "dynamicLocale": false, - "target": "quest_zone_keeper8_2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7d315f32fa1316250c3d2", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639c39807c1532d85b0162a9", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_keeper8_1_hide2", - "target": [ - "5a1eaa87fcdbcb001865f75e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d3e75199ab1f7d4a7746", - "target": "63a7d315f32fa1316250c3d2", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639c3e21a1c5f814670c35e9", - "conditions": [ - { - "id": "639c3e2c0a20a7001f00c7a9", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - }, - { - "id": "639c3e37ffadd8b532003319", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "639c3e21a1c5f814670c35e8", - "index": 7, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639c3e49313b0824700c92c7", - "target": "639c359f0a20a7001f00c7a8", - "conditionType": "CompleteCondition" - }, - { - "id": "639c3e5379d86f66070507d9", - "target": "639c39807c1532d85b0162a9", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "639afde8e4aa7349085cb750", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639670029113f06a7c3b2377", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 36000, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6396700fea19ac7ed845db32 description", - "failMessageText": "6396700fea19ac7ed845db32 failMessageText", - "declinePlayerMessage": "6396700fea19ac7ed845db32 declinePlayerMessage", - "name": "6396700fea19ac7ed845db32 name", - "note": "6396700fea19ac7ed845db32 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "any", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6396700fea19ac7ed845db32 startedMessageText", - "successMessageText": "6396700fea19ac7ed845db32 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.04, - "id": "63a6ceca4610fa47416d90e8", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a23542151bfb591645c106", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f89", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f89", - "_tpl": "6389c7750ef44505c87f5996", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a23488423c8970de419830", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b1f8e", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b1f8b", - "_tpl": "6389c7750ef44505c87f5996", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1f8c", - "_tpl": "6389c7750ef44505c87f5996", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1f8d", - "_tpl": "6389c7750ef44505c87f5996", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1f8e", - "_tpl": "6389c7750ef44505c87f5996", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59c512ad86f7741f0d09de9b": { - "QuestName": "The Punisher - Part 3", - "_id": "59c512ad86f7741f0d09de9b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59c512ad86f7741f0d09de9b acceptPlayerMessage", - "changeQuestMessageText": "59c512ad86f7741f0d09de9b changeQuestMessageText", - "completePlayerMessage": "59c512ad86f7741f0d09de9b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "59674d5186f27446b872d5f6", - "conditions": [ - { - "id": "59674d5586f27446b62554e2", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "583990e32459771419544dd2", - "5839a40f24597726f856b511", - "57dc2fa62459775949412633", - "628b9c37a733087d0d7fe84b" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "59ca27a486f77445a90e6958", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "59674d5186f77446b852d5f7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 25, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926b186f774753c5479a2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 19, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59c63abd36f7745e601a0a57", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59c50c8886f7745fed3193bf", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59c512ad86f7741f0d09de9b description", - "failMessageText": "59c512ad86f7741f0d09de9b failMessageText", - "declinePlayerMessage": "59c512ad86f7741f0d09de9b declinePlayerMessage", - "name": "59c512ad86f7741f0d09de9b name", - "note": "59c512ad86f7741f0d09de9b note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/57e4f1852459772a15635633.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59c512ad86f7741f0d09de9b startedMessageText", - "successMessageText": "59c512ad86f7741f0d09de9b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 11700, - "id": "60c8acd68dfbfc09882efd20", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60dc2974ef7d58779755fb25", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2500, - "id": "59c5171a86f774443b4896f0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f90", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1f90", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 2500 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b71861fe356507267b2f7", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b1f94", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1f92", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "68010065f81036801d0b1f93", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "68010065f81036801d0b1f94", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - } - } - ], - "loyaltyLevel": 2, - "traderId": 10 - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "59c62ae086f7745d8d52e20e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f95", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f95", - "_tpl": "588892092459774ac91d4b11", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b1f96", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "68010065f81036801d0b1f95", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1f97", - "_tpl": "5888956924597752983e182d", - "parentId": "68010065f81036801d0b1f95", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1f98", - "_tpl": "5888996c24597754281f9419", - "parentId": "68010065f81036801d0b1f97", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1f99", - "_tpl": "5888976c24597754281f93f5", - "parentId": "68010065f81036801d0b1f97", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1f9a", - "_tpl": "57c55f172459772d27602381", - "parentId": "68010065f81036801d0b1f95", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1f9b", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "68010065f81036801d0b1f95", - "slotId": "mod_stock" - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c8a0e01f21c1669a48c321", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d6fb2c086f77449da599c24": { - "QuestName": "An Apple a Day Keeps the Doctor Away", - "_id": "5d6fb2c086f77449da599c24", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d6fb2c086f77449da599c24 acceptPlayerMessage", - "changeQuestMessageText": "5d6fb2c086f77449da599c24 changeQuestMessageText", - "completePlayerMessage": "5d6fb2c086f77449da599c24 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d6fb8a886f77449db3db8b6", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5449016a4bdc2d6f028b456f" - ], - "globalQuestCounterId": "", - "value": 400000, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d77c61786f7742fa732bf12", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68667486f7742607157d28", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d6fb2c086f77449da599c24 description", - "failMessageText": "5d6fb2c086f77449da599c24 failMessageText", - "declinePlayerMessage": "5d6fb2c086f77449da599c24 declinePlayerMessage", - "name": "5d6fb2c086f77449da599c24 name", - "note": "5d6fb2c086f77449da599c24 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d6fb2c086f77449da599c24 startedMessageText", - "successMessageText": "5d6fb2c086f77449da599c24 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 200, - "id": "5d78cd7a86f77408b7023d42", - "type": "Skill", - "index": 0, - "target": "Health", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5936d90786f7742b1420ba5b": { - "QuestName": "Debut", - "_id": "5936d90786f7742b1420ba5b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5936d90786f7742b1420ba5b acceptPlayerMessage", - "changeQuestMessageText": "5936d90786f7742b1420ba5b changeQuestMessageText", - "completePlayerMessage": "5936d90786f7742b1420ba5b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5967379186f77463860dadd5", - "conditions": [ - { - "id": "5967379786f774620e763ea8", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5967379186f77463860dadd6", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596737cb86f77463a8115efd", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "54491c4f4bdc2db1078b4568" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "658471a72957dfa0e01552d1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 1, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "658471a35740d10d154dac8f", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "657315df034d76585f032e01", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5936d90786f7742b1420ba5b description", - "failMessageText": "5936d90786f7742b1420ba5b failMessageText", - "declinePlayerMessage": "5936d90786f7742b1420ba5b declinePlayerMessage", - "name": "5936d90786f7742b1420ba5b name", - "note": "5936d90786f7742b1420ba5b note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/596b465486f77457ca186188.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5936d90786f7742b1420ba5b startedMessageText", - "successMessageText": "5936d90786f7742b1420ba5b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 1700, - "id": "5fe305df8a67d12f5f24c8aa", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c89c0c80b2027f403dd992", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 15000, - "id": "5fe305d9c646836c3b6fc562", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f9d", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1f9d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 15000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb4643f09d61072d6cf21a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1f9e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1f9e", - "_tpl": "57d14d2524597714373db789", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b1f9f", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "68010065f81036801d0b1f9e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1fa0", - "_tpl": "57d1519e24597714373db79d", - "parentId": "68010065f81036801d0b1f9e", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb467f7c496e588343a193", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fa5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fa3", - "_tpl": "65702606cfc010a0f5006a3e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fa4", - "_tpl": "573718ba2459775a75491131", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b1fa3", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1fa5", - "_tpl": "65702606cfc010a0f5006a3e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fa6", - "_tpl": "573718ba2459775a75491131", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b1fa5", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac64f3786f774056634a1cb", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1fa7", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1fa7", - "_tpl": "5839a40f24597726f856b511", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b1fa8", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1fa9", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1faa", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1fab", - "_tpl": "57ffb0e42459777d047111c5", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1fac", - "_tpl": "5839a7742459773cf9693481", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1fad", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "68010065f81036801d0b1fa7", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1fae", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "68010065f81036801d0b1fad", - "slotId": "mod_handguard" - } - ], - "loyaltyLevel": 1, - "traderId": "54cb50c76803fa8b248b4571" - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "629f016390948017ee17bb3b", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0d4c12d09282029f539173": { - "QuestName": "Peacekeeping Mission", - "_id": "5c0d4c12d09282029f539173", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0d4c12d09282029f539173 acceptPlayerMessage", - "changeQuestMessageText": "5c0d4c12d09282029f539173 changeQuestMessageText", - "completePlayerMessage": "5c0d4c12d09282029f539173 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c0d4c62d09282029d76ad28", - "conditions": [ - { - "id": "5c0d4c6ed0928202a62f4f20", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5c0d4c88d09282029f539179", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - }, - { - "id": "5c0d4cf2d0928202b25db712", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5c1fd66286f7743c7b261f7b", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c0d4d0bd09282029e2fffc9", - "conditions": [ - { - "id": "5c0d4d67d09282029d76ad2b", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5c0d4d72d0928202a62f4f23", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - }, - { - "id": "5c0d4dc3d0928202a62f4f26", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "5c1b713486f77413bc250406", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c13949686f774210563eccc", - "conditions": [ - { - "id": "5c1394d886f77430a665d2f1", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5c13951786f774276a650530", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - }, - { - "id": "5c1a71cc86f77456661eaa5c", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "5c1b713986f77470d8650910", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c13957986f77430a665d2fe", - "conditions": [ - { - "id": "5c1395b386f774276b24ae2b", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5c1395d486f774276a650535", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5c1a725486f7744c2a78e8b3", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "5c1b713f86f774719c22e8a0", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63aec4fe6d6c3377e64b9f3a", - "conditions": [ - { - "id": "63aec50a3c65bf56b11b9da8", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "63aec55c237b04479f5948cb", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - }, - { - "id": "63aec597fe01cd749c5e799b", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "63aec4fe6d6c3377e64b9f39", - "index": 4, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65e08aa97319265b006ffe9f", - "conditions": [ - { - "id": "65e08ae0774b0ee8b00a8483", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "65e08af37c857becefdb3a48", - "dynamicLocale": false, - "target": [ - "Sandbox", - "Sandbox_high" - ], - "conditionType": "Location" - }, - { - "id": "65e08b1d3d5898cdd34da72b", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa7d03ae5b5b00016327db5", - "5ab8e4ed86f7742d8e50c7fa" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "65e08aa9f5879b2586d5fd4c", - "index": 5, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5c20ce2c86f774337f427599", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5c0d0f1886f77457b8210226", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c0d4c12d09282029f539173 description", - "failMessageText": "5c0d4c12d09282029f539173 failMessageText", - "declinePlayerMessage": "5c0d4c12d09282029f539173 declinePlayerMessage", - "name": "5c0d4c12d09282029f539173 name", - "note": "5c0d4c12d09282029f539173 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/5a27c44386f7744237421af0.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0d4c12d09282029f539173 startedMessageText", - "successMessageText": "5c0d4c12d09282029f539173 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "5c18bf1386f77467c00e1342", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fb3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fb3", - "_tpl": "5aa7d03ae5b5b00016327db5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fb4", - "_tpl": "654a90aff4f81a421b0a7c86", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fb3", - "slotId": "helmet_top" - }, - { - "_id": "68010065f81036801d0b1fb5", - "_tpl": "654a91068e1ce698150fd1e2", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fb3", - "slotId": "helmet_back" - }, - { - "_id": "68010065f81036801d0b1fb6", - "_tpl": "654a9189bcc67a392b056c79", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fb3", - "slotId": "helmet_ears" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5c18bf1786f77467bf065204", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fbc", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fbc", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fbd", - "_tpl": "657044e971369562b300ce9b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fbc", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b1fbe", - "_tpl": "657045741bd9beedc40b7299", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fbc", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b1fbf", - "_tpl": "657045b97e80617cee095bda", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fbc", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b1fc0", - "_tpl": "6570460471369562b300ce9f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b1fbc", - "slotId": "soft_armor_right" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5c1a60bf86f7747954540e3c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fc1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fc1", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1fc2", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "68010065f81036801d0b1fc1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1fc3", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "68010065f81036801d0b1fc1", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1fc4", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "68010065f81036801d0b1fc1", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1fc5", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "68010065f81036801d0b1fc4", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1fc6", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "68010065f81036801d0b1fc5", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1fc7", - "_tpl": "56ea8d2fd2720b7c698b4570", - "parentId": "68010065f81036801d0b1fc5", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1fc8", - "_tpl": "55d4af3a4bdc2d972f8b456f", - "parentId": "68010065f81036801d0b1fc7", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b1fc9", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "68010065f81036801d0b1fc4", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1fca", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "68010065f81036801d0b1fc9", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b1fcb", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "68010065f81036801d0b1fc4", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1fcc", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b1fc1", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1fcd", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "68010065f81036801d0b1fcc", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b1fce", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "68010065f81036801d0b1fc1", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5c1a617e86f77442c47f3602", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fd2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fd0", - "_tpl": "5aaa5dfee5b5b000140293d3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fd1", - "_tpl": "5aaa5dfee5b5b000140293d3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fd2", - "_tpl": "5aaa5dfee5b5b000140293d3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 25500, - "id": "60cc730da7d63f18200a24db", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60cc732f6a2a1958fc5231fb", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5c1a271286f7741bb5336ccf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fd3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fd3", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b1fd4", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "68010065f81036801d0b1fd3", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1fd5", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "68010065f81036801d0b1fd3", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1fd6", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b1fd3", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1fd7", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "68010065f81036801d0b1fd6", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1fd8", - "_tpl": "5a34fe59c4a282000b1521a2", - "parentId": "68010065f81036801d0b1fd7", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1fd9", - "_tpl": "5bfebc5e0db834001a6694e5", - "parentId": "68010065f81036801d0b1fd3", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b1fda", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "68010065f81036801d0b1fd9", - "slotId": "mod_scope" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc731a8f570e28f1481156", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fdf", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fdd", - "_tpl": "6570254fcfc010a0f5006a22", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fde", - "_tpl": "5a6086ea4f39f99cd479502f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1fdd", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1fdf", - "_tpl": "6570254fcfc010a0f5006a22", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fe0", - "_tpl": "5a6086ea4f39f99cd479502f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b1fdf", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5c1a274586f774382929219e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fe3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fe2", - "_tpl": "5c0558060db834001b735271", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1fe3", - "_tpl": "5c0558060db834001b735271", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "657fc218fd86b9d9680c4a1a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1fe4", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1fe4", - "_tpl": "656fa8d700d62bcd2e024084" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59674cd986f7744ab26e32f2": { - "QuestName": "Shootout Picnic", - "_id": "59674cd986f7744ab26e32f2", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59674cd986f7744ab26e32f2 acceptPlayerMessage", - "changeQuestMessageText": "59674cd986f7744ab26e32f2 changeQuestMessageText", - "completePlayerMessage": "59674cd986f7744ab26e32f2 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "59674d5186f77446b872d5f6", - "conditions": [ - { - "id": "59674d5586f77446b62554e7", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "59674d5a86f77446b872d5fa", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5cb31b6188a450159d330a18", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926b186f774753c5479a2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 3, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "596a1f7226f7741ddd6c10c8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5936da9e86f7742d65037edf", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59674cd986f7744ab26e32f2 description", - "failMessageText": "59674cd986f7744ab26e32f2 failMessageText", - "declinePlayerMessage": "59674cd986f7744ab26e32f2 declinePlayerMessage", - "name": "59674cd986f7744ab26e32f2 name", - "note": "59674cd986f7744ab26e32f2 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5967505886f774590730dadc.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59674cd986f7744ab26e32f2 startedMessageText", - "successMessageText": "59674cd986f7744ab26e32f2 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 2000, - "id": "60c8a6a49339363e8f0c6ad3", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c89e2980b2027f403dd993", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "5fe3061164942071c54bc12a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fe6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b1fe6", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb473877dc197c77424f82", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1fe7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1fe7", - "_tpl": "583990e32459771419544dd2", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b1fe8", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b1fe9", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b1fea", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b1feb", - "_tpl": "57dc324a24597759501edc20", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b1fec", - "_tpl": "57dc334d245977597164366f", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1fed", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "68010065f81036801d0b1fe7", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b1fee", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "68010065f81036801d0b1fed", - "slotId": "mod_handguard" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5a2e7ff386f7741a972d4ee5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ff2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ff0", - "_tpl": "564ca99c4bdc2d16268b4589", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ff1", - "_tpl": "564ca99c4bdc2d16268b4589", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ff2", - "_tpl": "564ca99c4bdc2d16268b4589", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "629f025214061f307437fbe3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b1ff9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b1ff5", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ff6", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b1ff5", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ff7", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ff8", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b1ff7", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b1ff9", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b1ffa", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b1ff9", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19e6f4ebcff1c995dc33e", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b1ffb", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b1ffb", - "_tpl": "602a9740da11d6478d5a06dc", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b1ffc", - "_tpl": "602a95edda11d6478d5a06da", - "parentId": "68010065f81036801d0b1ffb", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b1ffd", - "_tpl": "60228924961b8d75ee233c32", - "parentId": "68010065f81036801d0b1ffb", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b1ffe", - "_tpl": "60229948cacb6b0506369e27", - "parentId": "68010065f81036801d0b1ffd", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b1fff", - "_tpl": "60228a76d62c9b14ed777a66", - "parentId": "68010065f81036801d0b1ffd", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b2000", - "_tpl": "602286df23506e50807090c6", - "parentId": "68010065f81036801d0b1ffb", - "slotId": "mod_magazine" - } - ], - "loyaltyLevel": 1, - "traderId": "54cb50c76803fa8b248b4571" - }, - { - "availableInGameEditions": [], - "id": "655b87127f92d5105c6f7b7b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2001", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2001", - "_tpl": "5c0e3eb886f7742015526062" - } - ], - "loyaltyLevel": 2, - "traderId": "54cb50c76803fa8b248b4571" - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "629f023950f43060015c52dc", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "id": "6764977cd6c9dfff4d9d185d", - "type": "CustomizationDirect", - "index": 0, - "target": "67585d6ab032beb9b5097e96", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac242ab86f77412464f68b4": { - "QuestName": "Gunsmith - Part 16", - "_id": "5ac242ab86f77412464f68b4", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac242ab86f77412464f68b4 acceptPlayerMessage", - "changeQuestMessageText": "5ac242ab86f77412464f68b4 changeQuestMessageText", - "completePlayerMessage": "5ac242ab86f77412464f68b4 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5acce08b86f7745f8521fa64", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "588892092459774ac91d4b11" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 2000.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 40.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 450.0, - "compareMethod": "<=" - }, - "weight": { - "value": 6.7, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "55818b164bdc2ddc698b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf381a86f7741ce21f9aee", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 30, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf382686f7741cdb2f7ef6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae3280386f7742a41359364", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac242ab86f77412464f68b4 description", - "failMessageText": "5ac242ab86f77412464f68b4 failMessageText", - "declinePlayerMessage": "5ac242ab86f77412464f68b4 declinePlayerMessage", - "name": "5ac242ab86f77412464f68b4 name", - "note": "5ac242ab86f77412464f68b4 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4e06086f774623122ae42.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac242ab86f77412464f68b4 startedMessageText", - "successMessageText": "5ac242ab86f77412464f68b4 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 20400, - "id": "60cc768f65e4664318606af1", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc7707a7d63f18200a24e3", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200000, - "id": "5acb826b86f77456255bad89", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2003", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2003", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 200000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc76cb7c496e588343a6d8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2006", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2005", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2006", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc76e4e3d0247e625dab6c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2008", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2008", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc76f93e4e974efa345d21", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b200a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b200a", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19cda5032c67f050dd961", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b200b", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b200b", - "_tpl": "5d43021ca4b9362eab4b5e25", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b200c", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "68010065f81036801d0b200b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b200d", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "68010065f81036801d0b200b", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b200e", - "_tpl": "5d4405aaa4b9361e6a4e6bd3", - "parentId": "68010065f81036801d0b200b", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b200f", - "_tpl": "5d440b93a4b9364276578d4b", - "parentId": "68010065f81036801d0b200e", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2010", - "_tpl": "5d440625a4b9361eec4ae6c5", - "parentId": "68010065f81036801d0b200f", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2011", - "_tpl": "5d44064fa4b9361e4f6eb8b5", - "parentId": "68010065f81036801d0b2010", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2012", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "68010065f81036801d0b200f", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2013", - "_tpl": "5d4405f0a4b9361e6a4e6bd9", - "parentId": "68010065f81036801d0b200e", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2014", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "68010065f81036801d0b2013", - "slotId": "mod_mount_004" - }, - { - "_id": "68010065f81036801d0b2015", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "68010065f81036801d0b2013", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b2016", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b200b", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2017", - "_tpl": "5d4406a8a4b9361e4f6eb8b7", - "parentId": "68010065f81036801d0b2016", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b2018", - "_tpl": "5d44334ba4b9362b346d1948", - "parentId": "68010065f81036801d0b200b", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6179b4f16e9dd54ac275e407": { - "QuestName": "Missing Cargo", - "_id": "6179b4f16e9dd54ac275e407", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179b4f16e9dd54ac275e407 acceptPlayerMessage", - "changeQuestMessageText": "6179b4f16e9dd54ac275e407 changeQuestMessageText", - "completePlayerMessage": "6179b4f16e9dd54ac275e407 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ac1a941b5c95746621ddb3", - "conditions": [ - { - "id": "63ac1ac3f627f540861d1b1c", - "dynamicLocale": false, - "target": "qlight_find_crushed_heli", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63ac1a941b5c95746621ddb2", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "61a00eff2d708d41a34f19b4", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "61a00bcb177fb945751bbe6a" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "61a00f3f177fb945751bbe92", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "61a00bcb177fb945751bbe6a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63ac1d2add6923311c7d181a", - "target": "61a00eff2d708d41a34f19b4", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61ae0c513979ec0a22045939", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6193850f60b34236ee0483de", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ae0c6f45758a76ab08ab06", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 30, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6179b4f16e9dd54ac275e407 description", - "failMessageText": "6179b4f16e9dd54ac275e407 failMessageText", - "declinePlayerMessage": "6179b4f16e9dd54ac275e407 declinePlayerMessage", - "name": "6179b4f16e9dd54ac275e407 name", - "note": "6179b4f16e9dd54ac275e407 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab41d128f39305480d0916.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6179b4f16e9dd54ac275e407 startedMessageText", - "successMessageText": "6179b4f16e9dd54ac275e407 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 14000, - "id": "619528fc020725046c77c713", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "61ae0c0345758a76ab08ab05", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 68000, - "id": "61ae0bda40869119390a7bcb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b201a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b201a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 68000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "61ae0c18cfead502c8012883", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b201b", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b201b", - "_tpl": "56eabf3bd2720b75698b4569" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "id": "61ae0c2b3979ec0a22045938", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b201c", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b201c", - "_tpl": "5649ae4a4bdc2d1b2b8b4588" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "id": "63a028994a2920130a4d77e2", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b201d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b201d", - "_tpl": "58d2912286f7744e27117493" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "597a171586f77405ba6887d3": { - "QuestName": "Big Customer", - "_id": "597a171586f77405ba6887d3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "597a171586f77405ba6887d3 acceptPlayerMessage", - "changeQuestMessageText": "597a171586f77405ba6887d3 changeQuestMessageText", - "completePlayerMessage": "597a171586f77405ba6887d3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fbec386f77413bd5fc209", - "conditions": [ - { - "id": "5a3fbee386f77414433f8c8e", - "dynamicLocale": false, - "target": "gazel", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fbec386f77413bd5fc20a", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "PlaceBeacon", - "id": "5998360886f77456936817f3", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "gazel", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "597a178786f774799e5cd154", - "conditions": [ - { - "id": "597a178e86f77477531d39d6", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - }, - { - "id": "5a577e7686f7742f6130009c", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "597a178786f774799e5cd155", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a577e9e86f7742f600a7045", - "target": "5998360886f77456936817f3", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61b7a8d9e5100e01df74ed8b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a0f5686f774273b74f676", - "status": [ - 2 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "597a198586f77405ba6887d5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a0f5686f774273b74f676", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "597a199486f774799e5cd156", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "597a160786f77477531d39d2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "597a171586f77405ba6887d3 description", - "failMessageText": "597a171586f77405ba6887d3 failMessageText", - "declinePlayerMessage": "597a171586f77405ba6887d3 declinePlayerMessage", - "name": "597a171586f77405ba6887d3 name", - "note": "597a171586f77405ba6887d3 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "597a171586f77405ba6887d3 startedMessageText", - "successMessageText": "597a171586f77405ba6887d3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8100, - "id": "60c8ac8a83161b326c47110a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c89fef919c14709f49738b", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200000, - "id": "5a577fe586f77432572473b4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b201f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b201f", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 200000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb4e737c496e588343a19e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2023", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2023", - "_tpl": "5df8a2ca86f7740bfe6df777", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2024", - "_tpl": "656fd7c32668ef0402028fb9", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2023", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2025", - "_tpl": "656fd89bf5a9631d4e042575", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2023", - "slotId": "Soft_armor_back" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ebfbfd80135590512408dba", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2028", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2027", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2028", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [ - { - "availableInGameEditions": [], - "value": -0.25, - "id": "60c8be8680b2027f403dd99a", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - } - ] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a68661a86f774500f48afb0": { - "QuestName": "Health Care Privacy - Part 1", - "_id": "5a68661a86f774500f48afb0", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a68661a86f774500f48afb0 acceptPlayerMessage", - "changeQuestMessageText": "5a68661a86f774500f48afb0 changeQuestMessageText", - "completePlayerMessage": "5a68661a86f774500f48afb0 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5a6873bc86f7741f8d4589a3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "ter_013_area_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5a6873d786f7743ad1151d6e", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "ter_013_area_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5a6873ec86f7743cc55d8622", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "ter_013_area_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "655c910041c8b6026a6798be", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5a841a3386f7746d5f558010", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5969f9e986f7741dde183a50", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a68661a86f774500f48afb0 description", - "failMessageText": "5a68661a86f774500f48afb0 failMessageText", - "declinePlayerMessage": "5a68661a86f774500f48afb0 declinePlayerMessage", - "name": "5a68661a86f774500f48afb0 name", - "note": "5a68661a86f774500f48afb0 note", - "traderId": "54cb57776803fa99248b456e", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a68661a86f774500f48afb0 startedMessageText", - "successMessageText": "5a68661a86f774500f48afb0 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 4800, - "id": "60c8c4142238043a5267864e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8c4239bdefb3130121b13", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 22000, - "id": "5a68841f86f7745fa823f724", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b202a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b202a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 22000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ac6651486f774056c780961", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b202d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b202c", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b202d", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac6652f86f774056634a223", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b202e", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b202e", - "_tpl": "590c678286f77426c9660122" - } - ], - "loyaltyLevel": 3, - "traderId": "54cb57776803fa99248b456e" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5bc4826c86f774106d22d88b": { - "QuestName": "The Tarkov Shooter - Part 5", - "_id": "5bc4826c86f774106d22d88b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc4826c86f774106d22d88b acceptPlayerMessage", - "changeQuestMessageText": "5bc4826c86f774106d22d88b changeQuestMessageText", - "completePlayerMessage": "5bc4826c86f774106d22d88b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bc482c186f774710a789f25", - "conditions": [ - { - "id": "5bc48a0f86f7742ce94849d9", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5bfea6e90db834001b7347f3", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "627e14b21713922ded6f2c15", - "61f7c9e189e6fb1a5e3ea78d" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 21, - "to": 5 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5bc48b3d86f77452b373195e", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "5bc84f7a86f774294c2f6862", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 8, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5bdabf4486f7743e1665df6d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5bc480a686f7741af0342e29", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5bc4826c86f774106d22d88b description", - "failMessageText": "5bc4826c86f774106d22d88b failMessageText", - "declinePlayerMessage": "5bc4826c86f774106d22d88b declinePlayerMessage", - "name": "5bc4826c86f774106d22d88b name", - "note": "5bc4826c86f774106d22d88b note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5bc4826c86f774106d22d88b startedMessageText", - "successMessageText": "5bc4826c86f774106d22d88b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13000, - "id": "60cc9c96646f74055e276533", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9c9a65e4664318606b64", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 80000, - "id": "60cc9cc7f81cc57f471718a0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2030", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2030", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 80000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf241086f7746a45695afd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2032", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2032", - "_tpl": "5bc5a351d4351e003477a414", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc9cafac6eb02bc726de5f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2034", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2034", - "_tpl": "5c0696830db834001d23f5da", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf23ff86f7746a464c5678", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2035", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2035", - "_tpl": "5bc5a351d4351e003477a414" - } - ], - "loyaltyLevel": 3, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5bc47dbf86f7741ee74e93b9": { - "QuestName": "The Tarkov Shooter - Part 3", - "_id": "5bc47dbf86f7741ee74e93b9", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage", - "changeQuestMessageText": "5bc47dbf86f7741ee74e93b9 changeQuestMessageText", - "completePlayerMessage": "5bc47dbf86f7741ee74e93b9 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bc47e3e86f7741e6b2f3331", - "conditions": [ - { - "id": "5bc4800d86f774194f27ac45", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5bfea6e90db834001b7347f3", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "61f7c9e189e6fb1a5e3ea78d", - "627e14b21713922ded6f2c15" - ], - "distance": { - "value": 25, - "compareMethod": "<=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5bc47e3e86f7741e6b2f3332", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5bdabf1f86f7743e1809c556", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5bc479e586f7747f376c7da3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5bc47dbf86f7741ee74e93b9 description", - "failMessageText": "5bc47dbf86f7741ee74e93b9 failMessageText", - "declinePlayerMessage": "5bc47dbf86f7741ee74e93b9 declinePlayerMessage", - "name": "5bc47dbf86f7741ee74e93b9 name", - "note": "5bc47dbf86f7741ee74e93b9 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5bc47dbf86f7741ee74e93b9 startedMessageText", - "successMessageText": "5bc47dbf86f7741ee74e93b9 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10500, - "id": "60cc9b8f65e4664318606b61", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9bd041fd1e14d71e22fe", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 70000, - "id": "60cc9c54a7d63f18200a2516", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2037", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2037", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 70000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b70371f2b6843ec751fd8", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b203a", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2039", - "_tpl": "5f0596629e22f464da6bbdd9", - "upd": { - "StackObjectsCount": 50 - } - }, - { - "_id": "68010065f81036801d0b203a", - "_tpl": "5f0596629e22f464da6bbdd9", - "upd": { - "StackObjectsCount": 50 - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf2bbb86f774722d789e56", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b203c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b203c", - "_tpl": "5bbdb83fd4351e44f824c44b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf2bd086f774723055e996", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b203e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b203e", - "_tpl": "5bbde409d4351e003562b036", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf22a386f7746a45695afa", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b203f", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b203f", - "_tpl": "5bbdb83fd4351e44f824c44b" - } - ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "5bcf22b986f7746a45695afb", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2040", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2040", - "_tpl": "5bbde409d4351e003562b036" - } - ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "67649726432eed4a6c817a7b", - "type": "CustomizationDirect", - "index": 0, - "target": "67585d2cd7a2703986067e99", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5b47926a86f7747ccc057c15": { - "QuestName": "Informed Means Armed", - "_id": "5b47926a86f7747ccc057c15", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b47926a86f7747ccc057c15 acceptPlayerMessage", - "changeQuestMessageText": "5b47926a86f7747ccc057c15 changeQuestMessageText", - "completePlayerMessage": "5b47926a86f7747ccc057c15 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5b47932586f7747cc908b5dd", - "index": 0, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_skier_11_1", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5b47936686f77427fd044025", - "index": 1, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_skier_11_2", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5b47938086f7747ccc057c22", - "index": 2, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_skier_11_3", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0c0986f77453572f54e0", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 24, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "658318fd4638ee5e94f1e13c", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5c1234c286f77406fa13baeb", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b47926a86f7747ccc057c15 description", - "failMessageText": "5b47926a86f7747ccc057c15 failMessageText", - "declinePlayerMessage": "5b47926a86f7747ccc057c15 declinePlayerMessage", - "name": "5b47926a86f7747ccc057c15 name", - "note": "5b47926a86f7747ccc057c15 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b47926a86f7747ccc057c15 startedMessageText", - "successMessageText": "5b47926a86f7747ccc057c15 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "id": "5b48ea4a86f774496621e087", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2041", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2041", - "_tpl": "5b4391a586f7745321235ab2" - } - ], - "loyaltyLevel": 1, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 14000, - "id": "60c8c023919c14709f497396", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "60c8c0298dfbfc09882efd27", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 45000, - "id": "5b4873de86f77449bc7bc99d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2043", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2043", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 45000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5b4873f686f7741cba3d59bb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2046", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2045", - "_tpl": "5b04473a5acfc40018632f70", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2046", - "_tpl": "5b04473a5acfc40018632f70", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cb60407c496e588343a1b6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b204b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2048", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2049", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b204a", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b204b", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb605377dc197c77424fa5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b204d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b204d", - "_tpl": "5b3b99475acfc432ff4dcbee", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59675d6c86f7740a842fc482": { - "QuestName": "Ice Cream Cones", - "_id": "59675d6c86f7740a842fc482", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59675d6c86f7740a842fc482 acceptPlayerMessage", - "changeQuestMessageText": "59675d6c86f7740a842fc482 changeQuestMessageText", - "completePlayerMessage": "59675d6c86f7740a842fc482 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5968ed3186f77420d2328013", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "55d482194bdc2d1d4e8b456b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59675e1d86f77414b07f137d", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "55d482194bdc2d1d4e8b456b" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5967938c86f77468cf5f9f54", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "5968ed3186f77420d2328013", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "591afe0186f77431bd616a11" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fbe3a86f77414422e0d9a", - "conditions": [ - { - "id": "5a3fbe5d86f77414422e0da1", - "dynamicLocale": false, - "target": "bunker2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fbe3a86f77414422e0d9b", - "index": 2, - "parentId": "5968ed3186f77420d2328013", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926f786f77473e85737f3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 9, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "596a1f9286f77420d232807a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5967530a86f77462ba22226b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59675d6c86f7740a842fc482 description", - "failMessageText": "59675d6c86f7740a842fc482 failMessageText", - "declinePlayerMessage": "59675d6c86f7740a842fc482 declinePlayerMessage", - "name": "59675d6c86f7740a842fc482 name", - "note": "59675d6c86f7740a842fc482 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/59c26f2b86f7744a351903d3.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59675d6c86f7740a842fc482 startedMessageText", - "successMessageText": "59675d6c86f7740a842fc482 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5200, - "id": "60c8abe52238043a5267862f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c89f261f21c1669a48c31f", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 17000, - "id": "5a2e86f986f7741a972d4ee8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b204f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b204f", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 17000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb4c146a2a1958fc522cbb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2056", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2053", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2054", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2053", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2055", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2053", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "68010065f81036801d0b2056", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2057", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2056", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2058", - "_tpl": "56dff2ced2720bb4668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2056", - "slotId": "cartridges", - "location": 1 - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5fd7d1a316cac650092f686b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2059", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2059", - "_tpl": "5beed0f50db834001c062b12", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b205a", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b205b", - "_tpl": "5beec91a0db834001961942d", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b205c", - "_tpl": "5beec9450db83400970084fd", - "parentId": "68010065f81036801d0b205b", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b205d", - "_tpl": "5bf3f59f0db834001a6fa060", - "parentId": "68010065f81036801d0b205c", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b205e", - "_tpl": "5bed625c0db834001c062946", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b205f", - "_tpl": "5beec8b20db834001961942a", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b2060", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b205f", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2061", - "_tpl": "5beec3e30db8340019619424", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2062", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2061", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2063", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2061", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2064", - "_tpl": "5beec1bd0db834001e6006f3", - "parentId": "68010065f81036801d0b2059", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2065", - "_tpl": "5beec3420db834001b095429", - "parentId": "68010065f81036801d0b2064", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac651a986f774066f04bcf7", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2066", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2066", - "_tpl": "55d482194bdc2d1d4e8b456b" - } - ], - "loyaltyLevel": 2, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a68665c86f774255929b4c7": { - "QuestName": "Health Care Privacy - Part 3", - "_id": "5a68665c86f774255929b4c7", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a68665c86f774255929b4c7 acceptPlayerMessage", - "changeQuestMessageText": "5a68665c86f774255929b4c7 changeQuestMessageText", - "completePlayerMessage": "5a68665c86f774255929b4c7 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a68770f86f774747d4b0d8a", - "conditions": [ - { - "id": "5a68772286f774284429b156", - "dynamicLocale": false, - "target": "ter_015_area_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a68770f86f774747d4b0d8b", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5a68776786f774759f1f55f6", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a687e7886f7740c4a5133fb" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a68777586f774747d4b0d9e", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a687e7886f7740c4a5133fb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a68777b86f77474c4269f5f", - "target": "5a68776786f774759f1f55f6", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a68778c86f77423391f38ef", - "conditions": [ - { - "id": "5a68779586f77474c4269f64", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - }, - { - "id": "5a68779d86f774284429b169", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5a68778c86f77423391f38f0", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a6877a986f774759f1f5600", - "target": "5a68776786f774759f1f55f6", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5a6876ed86f77474f4381206", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68663e86f774501078f78a", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a68665c86f774255929b4c7 description", - "failMessageText": "5a68665c86f774255929b4c7 failMessageText", - "declinePlayerMessage": "5a68665c86f774255929b4c7 declinePlayerMessage", - "name": "5a68665c86f774255929b4c7 name", - "note": "5a68665c86f774255929b4c7 note", - "traderId": "54cb57776803fa99248b456e", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a68665c86f774255929b4c7 startedMessageText", - "successMessageText": "5a68665c86f774255929b4c7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60c8c4832238043a5267864f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c4b89bdefb3130121b16", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 26000, - "id": "5a68869386f7745fa7410407", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2068", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2068", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 26000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ac6658a86f77403df401d13", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b206b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b206a", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b206b", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb70cb65e4664318606abe", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b206e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b206d", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b206e", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac6659886f774066f04bd4d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b206f", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b206f", - "_tpl": "544fb3f34bdc2d03748b456a" - } - ], - "loyaltyLevel": 4, - "traderId": "54cb57776803fa99248b456e" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60e71c48c1bfa3050473b8e5": { - "QuestName": "Crisis", - "_id": "60e71c48c1bfa3050473b8e5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71c48c1bfa3050473b8e5 acceptPlayerMessage", - "changeQuestMessageText": "60e71c48c1bfa3050473b8e5 changeQuestMessageText", - "completePlayerMessage": "60e71c48c1bfa3050473b8e5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e8658571035f300c301ac6", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052e6986f7746b207bc3c9" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e865a60cef122b414a156a", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5af0534a86f7743b6f354284" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60e866175d67b234af3d392a", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c0530ee86f774697952d952" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60f028ca86abc00cdc03ab89", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b3a5d86f774252167ba22" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "62a701587230237f257cac30", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a0a043cf4a99369e2624a5" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e866c50cef122b414a156c", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c052e6986f7746b207bc3c9" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e866f926b88043510e0adf", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5af0534a86f7743b6f354284" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60e867265d67b234af3d392c", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c0530ee86f774697952d952" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60f028f85caf08029e0d6277", - "index": 8, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b3a5d86f774252167ba22" - ], - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "62a70168eb3cb46d9a0bba7a", - "index": 9, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "62a0a043cf4a99369e2624a5" - ], - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "610146bcccda1c5f7b1dd090", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5c0d0d5086f774363760aef2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "610146ea70fd3f687c1a747e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 48, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71c48c1bfa3050473b8e5 description", - "failMessageText": "60e71c48c1bfa3050473b8e5 failMessageText", - "declinePlayerMessage": "60e71c48c1bfa3050473b8e5 declinePlayerMessage", - "name": "60e71c48c1bfa3050473b8e5 name", - "note": "60e71c48c1bfa3050473b8e5 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/5d6948e186f774238a38d8a7.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71c48c1bfa3050473b8e5 startedMessageText", - "successMessageText": "60e71c48c1bfa3050473b8e5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 97000, - "id": "60f037b1b28e277560670d6a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "61029d624c999b1f82704bd2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2071", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2071", - "_tpl": "5aafbcd986f7745e590fff23", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 400, - "id": "6102981837e8697a3e7a49eb", - "type": "Skill", - "index": 0, - "target": "Immunity", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 400, - "id": "6102981f4c999b1f82704bcc", - "type": "Skill", - "index": 0, - "target": "Vitality", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 400, - "id": "6414394559cf65ff210035ef", - "type": "Skill", - "index": 0, - "target": "Surgery", - "unknown": false - }, - { - "availableInGameEditions": [], - "id": "64c7bc7feb33c17953050fd4", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b2073", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2073", - "_tpl": "5ed51652f6c34d2cc26336a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 2, - "traderId": 7 - }, - { - "availableInGameEditions": [], - "id": "64c7bc83be830e2cab48c2c9", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b2075", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2075", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 2, - "traderId": 7 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5967725e86f774601a446662": { "QuestName": "Shaking Up the Teller", "_id": "5967725e86f774601a446662", @@ -45853,12 +46189,12 @@ "id": "60cb4d5a8f570e28f1480bea", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2077", + "target": "6812400b0c5cf2cf75075410", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2077", + "_id": "6812400b0c5cf2cf75075410", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 75000 @@ -45872,12 +46208,12 @@ "id": "60cb4d746a2a1958fc522cbe", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2079", + "target": "6812400b0c5cf2cf75075412", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2079", + "_id": "6812400b0c5cf2cf75075412", "_tpl": "5672cb724bdc2dc2088b456b", "upd": { "StackObjectsCount": 1, @@ -45891,11 +46227,11 @@ "id": "5ac653ed86f77405d4729344", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b207a", + "target": "6812400b0c5cf2cf75075413", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b207a", + "_id": "6812400b0c5cf2cf75075413", "_tpl": "57ffb0e42459777d047111c5" } ], @@ -45907,11 +46243,11 @@ "id": "5ac65d3186f774056634a202", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b207b", + "target": "6812400b0c5cf2cf75075414", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b207b", + "_id": "6812400b0c5cf2cf75075414", "_tpl": "59c0ec5b86f77435b128bfca" } ], @@ -46096,12 +46432,12 @@ "id": "61951f07d14ece31007e2768", "type": "Item", "index": 0, - "target": "68010065f81036801d0b207d", + "target": "6812400b0c5cf2cf75075416", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b207d", + "_id": "6812400b0c5cf2cf75075416", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -46114,11 +46450,11 @@ "id": "66b8d876acff495a29492910", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b207e", + "target": "6812400b0c5cf2cf75075417", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b207e", + "_id": "6812400b0c5cf2cf75075417", "_tpl": "66bdc28a0b603c26902b2011" } ], @@ -46136,62 +46472,34 @@ "arenaLocations": [], "status": 0 }, - "5ede55112c95834b583f052a": { - "QuestName": "The Bunker - Part 1", - "_id": "5ede55112c95834b583f052a", + "61904daa7d0d857927447b9c": { + "QuestName": "The Hermit", + "_id": "61904daa7d0d857927447b9c", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ede55112c95834b583f052a acceptPlayerMessage", - "changeQuestMessageText": "5ede55112c95834b583f052a changeQuestMessageText", - "completePlayerMessage": "5ede55112c95834b583f052a completePlayerMessage", + "acceptPlayerMessage": "61904daa7d0d857927447b9c acceptPlayerMessage", + "changeQuestMessageText": "61904daa7d0d857927447b9c changeQuestMessageText", + "completePlayerMessage": "61904daa7d0d857927447b9c completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5ee8eea538ca5b3b4f3c4646", + "id": "63ac22351b5c95746621ddc5", "conditions": [ { - "id": "5ee8eeb9fb3afb33a60f0463", + "id": "63ac2256de609574d97adf82", "dynamicLocale": false, - "target": "prapor_024_area_2", + "target": "qlight_hunt_fr_find", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "5ee8eea538ca5b3b4f3c4647", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ee8eecc0b4ef7326256c65f", - "conditions": [ - { - "id": "5ee8eed7f89fe23eae11c142", - "dynamicLocale": false, - "target": "prapor_024_area_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ee8eecc0b4ef7326256c660", + "id": "63ac22351b5c95746621ddc4", "index": 1, "parentId": "", - "oneSessionOnly": true, + "oneSessionOnly": false, "dynamicLocale": false, "type": "Exploration", "doNotResetIfCounterCompleted": false, @@ -46201,640 +46509,10 @@ "isNecessary": false, "isResetOnConditionFailed": false }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ee0e5a8c321a77fc55084d1", - "conditions": [ - { - "id": "5ee0e5c39f0b3d34a90f8009", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ee0e5d21623e85a510839ce", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ee0e5a8c321a77fc55084d2", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5ef094ac32e6cc3234361a30", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59c124d686f774189b3c843f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "5ede5528bc2ff1141a199367", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ede55112c95834b583f052a description", - "failMessageText": "5ede55112c95834b583f052a failMessageText", - "declinePlayerMessage": "5ede55112c95834b583f052a declinePlayerMessage", - "name": "5ede55112c95834b583f052a name", - "note": "5ede55112c95834b583f052a note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/5ee234c386f77447ee650e32.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ede55112c95834b583f052a startedMessageText", - "successMessageText": "5ede55112c95834b583f052a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5700, - "id": "60c8a506919c14709f49738e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60dc2996c11cb44c33696c66", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "5ee7577ac226ea55a345b55d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2080", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2080", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb57de2b555f16df5c4107", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2081", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2081", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2082", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2083", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2084", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2085", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2086", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2087", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "68010065f81036801d0b2086", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2088", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "68010065f81036801d0b2081", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "655b83709db22d43ab42b70c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b208c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b208a", - "_tpl": "633a98eab8b0506e48497c1a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b208b", - "_tpl": "633a98eab8b0506e48497c1a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b208c", - "_tpl": "633a98eab8b0506e48497c1a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cb580a179f8541b84691c4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2093", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b208f", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2090", - "_tpl": "5a26ac0ec4a28200741e1e18", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b208f", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2091", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2092", - "_tpl": "5a26ac0ec4a28200741e1e18", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2091", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2093", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2094", - "_tpl": "5a26ac0ec4a28200741e1e18", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2093", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b83841fe356507267b2fa", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2095", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2095", - "_tpl": "5a269f97c4a282000b151807" - } - ], - "loyaltyLevel": 2, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5fd9fad9c1ce6b1a3b486d00": { - "QuestName": "Search Mission", - "_id": "5fd9fad9c1ce6b1a3b486d00", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage", - "changeQuestMessageText": "5fd9fad9c1ce6b1a3b486d00 changeQuestMessageText", - "completePlayerMessage": "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5fd9fad9c1ce6b1a3b486d04", - "conditions": [ - { - "id": "5ee8ec99de862370a5316adb", - "dynamicLocale": false, - "target": "pr_scout_col", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5fd9fad9c1ce6b1a3b486d03", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5fd9fad9c1ce6b1a3b486d06", - "conditions": [ - { - "id": "5ee8ecf8fb3afb33a60f0462", - "dynamicLocale": false, - "target": "pr_scout_base", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5fd9fad9c1ce6b1a3b486d05", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5fd9fad9c1ce6b1a3b486d0e", - "conditions": [ - { - "id": "5ee0e765a263820890521b60", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ee0e76fc3716e1fc8472969", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5fd9fad9c1ce6b1a3b486d0d", - "index": 7, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5fdc855b4a28ed5ca03b3232", - "target": "5fd9fad9c1ce6b1a3b486d03", - "conditionType": "CompleteCondition" - }, - { - "id": "5fdc85704a28ed5ca03b3233", - "target": "5fd9fad9c1ce6b1a3b486d05", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5fd9fad9c1ce6b1a3b486d02", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5fdc862eaf5a054cc9333005", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5936d90786f7742b1420ba5b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5fd9fad9c1ce6b1a3b486d00 description", - "failMessageText": "5fd9fad9c1ce6b1a3b486d00 failMessageText", - "declinePlayerMessage": "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage", - "name": "5fd9fad9c1ce6b1a3b486d00 name", - "note": "5fd9fad9c1ce6b1a3b486d00 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5fd9fad9c1ce6b1a3b486d00 startedMessageText", - "successMessageText": "5fd9fad9c1ce6b1a3b486d00 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 2800, - "id": "60c8a5b59bdefb3130121b09", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60c8a5c39339363e8f0c6ad2", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 22000, - "id": "5fe459f031ff9168f55eead8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2097", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2097", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 22000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5fdc85c47e3ca316bd3b806d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2099", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2099", - "_tpl": "5f4f9eb969cdc30ff33f09db", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb58e277dc197c77424f93", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b209b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b209b", - "_tpl": "5900b89686f7744e704a8747", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b85d8065b076eb02c4b4c", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b209c", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b209c", - "_tpl": "64be79e2bf8412471d0d9bcc" - } - ], - "loyaltyLevel": 1, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60896e28e4a85c72ef3fa301": { - "QuestName": "Disease History", - "_id": "60896e28e4a85c72ef3fa301", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60896e28e4a85c72ef3fa301 acceptPlayerMessage", - "changeQuestMessageText": "60896e28e4a85c72ef3fa301 changeQuestMessageText", - "completePlayerMessage": "60896e28e4a85c72ef3fa301 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6091698a30bb620b3239874c", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "608c22a003292f4ba43f8a1a" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "60ae12ffb809a474875907aa", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "60a3b5b05f84d429b732e934" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "609169cfeca522371e5725c5", + "id": "61904e76f62c89219a56e04c", "index": 2, "maxDurability": 100.0, "minDurability": 0.0, @@ -46843,14 +46521,15 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "608c22a003292f4ba43f8a1a" + "61904c9df62c89219a56e034" ], + "countInRaid": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "609a342c311628516a014cf7", - "target": "6091698a30bb620b3239874c", + "id": "63ac228edd6923311c7d1821", + "target": "63ac22351b5c95746621ddc4", "conditionType": "CompleteCondition" } ] @@ -46858,7 +46537,7 @@ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "60ae134cabb9675f0062cf6e", + "id": "61904ebb22e6d82ee97ccbbe", "index": 3, "maxDurability": 100.0, "minDurability": 0.0, @@ -46867,34 +46546,459 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "60a3b5b05f84d429b732e934" + "61904c9df62c89219a56e034" ], "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "60ae20f4ae5c5171bc6f7617", - "target": "60ae12ffb809a474875907aa", + "id": "619236f8ed82a53b6647c9fc", + "target": "61904e76f62c89219a56e04c", "conditionType": "CompleteCondition" } ] } ], "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61abc8083b7a0b53f515c5e5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e48186f77443e625e386", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, { "conditionType": "Level", - "id": "60bf738e81c6e80e702ccc0e", + "id": "61ad52a14cce5e7e040ad758", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "61904daa7d0d857927447b9c description", + "failMessageText": "61904daa7d0d857927447b9c failMessageText", + "declinePlayerMessage": "61904daa7d0d857927447b9c declinePlayerMessage", + "name": "61904daa7d0d857927447b9c name", + "note": "61904daa7d0d857927447b9c note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab38781b7da753125cfaa5.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "61904daa7d0d857927447b9c startedMessageText", + "successMessageText": "61904daa7d0d857927447b9c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 12000, + "id": "61979d5e1aaf65553c5efe48", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ad52dde9f86c618b0a83c6", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 55000, + "id": "61979d77f8e9da247b2bd375", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075419", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075419", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 55000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b47926a86f7747ccc057c15": { + "QuestName": "Informed Means Armed", + "_id": "5b47926a86f7747ccc057c15", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b47926a86f7747ccc057c15 acceptPlayerMessage", + "changeQuestMessageText": "5b47926a86f7747ccc057c15 changeQuestMessageText", + "completePlayerMessage": "5b47926a86f7747ccc057c15 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b47932586f7747cc908b5dd", + "index": 0, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_skier_11_1", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b47936686f77427fd044025", + "index": 1, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_skier_11_2", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5b47938086f7747ccc057c22", + "index": 2, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_skier_11_3", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0c0986f77453572f54e0", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 15, + "value": 24, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "60bf738b4c8a3800da06e717", + "id": "658318fd4638ee5e94f1e13c", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5c1234c286f77406fa13baeb", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b47926a86f7747ccc057c15 description", + "failMessageText": "5b47926a86f7747ccc057c15 failMessageText", + "declinePlayerMessage": "5b47926a86f7747ccc057c15 declinePlayerMessage", + "name": "5b47926a86f7747ccc057c15 name", + "note": "5b47926a86f7747ccc057c15 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b47926a86f7747ccc057c15 startedMessageText", + "successMessageText": "5b47926a86f7747ccc057c15 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "id": "5b48ea4a86f774496621e087", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507541a", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507541a", + "_tpl": "5b4391a586f7745321235ab2" + } + ], + "loyaltyLevel": 1, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 14000, + "id": "60c8c023919c14709f497396", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60c8c0298dfbfc09882efd27", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 45000, + "id": "5b4873de86f77449bc7bc99d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507541c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507541c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 45000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5b4873f686f7741cba3d59bb", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507541f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507541e", + "_tpl": "5b04473a5acfc40018632f70", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507541f", + "_tpl": "5b04473a5acfc40018632f70", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60cb60407c496e588343a1b6", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075424", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075421", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075422", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075423", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075424", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb605377dc197c77424fa5", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075426", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075426", + "_tpl": "5b3b99475acfc432ff4dcbee", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a68661a86f774500f48afb0": { + "QuestName": "Health Care Privacy - Part 1", + "_id": "5a68661a86f774500f48afb0", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a68661a86f774500f48afb0 acceptPlayerMessage", + "changeQuestMessageText": "5a68661a86f774500f48afb0 changeQuestMessageText", + "completePlayerMessage": "5a68661a86f774500f48afb0 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5a6873bc86f7741f8d4589a3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "ter_013_area_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5a6873d786f7743ad1151d6e", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "ter_013_area_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5a6873ec86f7743cc55d8622", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "ter_013_area_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "655c910041c8b6026a6798be", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5a841a3386f7746d5f558010", "index": 0, "parentId": "", "dynamicLocale": false, @@ -46910,28 +47014,28 @@ ], "Fail": [] }, - "description": "60896e28e4a85c72ef3fa301 description", - "failMessageText": "60896e28e4a85c72ef3fa301 failMessageText", - "declinePlayerMessage": "60896e28e4a85c72ef3fa301 declinePlayerMessage", - "name": "60896e28e4a85c72ef3fa301 name", - "note": "60896e28e4a85c72ef3fa301 note", + "description": "5a68661a86f774500f48afb0 description", + "failMessageText": "5a68661a86f774500f48afb0 failMessageText", + "declinePlayerMessage": "5a68661a86f774500f48afb0 declinePlayerMessage", + "name": "5a68661a86f774500f48afb0 name", + "note": "5a68661a86f774500f48afb0 note", "traderId": "54cb57776803fa99248b456e", - "location": "5704e5fad2720bc05b8b4567", + "location": "5704e554d2720bac5b8b456e", "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Completion", + "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "60896e28e4a85c72ef3fa301 startedMessageText", - "successMessageText": "60896e28e4a85c72ef3fa301 successMessageText", + "startedMessageText": "5a68661a86f774500f48afb0 startedMessageText", + "successMessageText": "5a68661a86f774500f48afb0 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7200, - "id": "60bf6f8bdb54616235170699", + "value": 4800, + "id": "60c8c4142238043a5267864e", "type": "Experience", "index": 0, "unknown": false @@ -46939,7 +47043,7 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "60bf6f96960b6d5d274caaeb", + "id": "60c8c4239bdefb3130121b13", "type": "TraderStanding", "index": 0, "target": "54cb57776803fa99248b456e", @@ -46947,413 +47051,19 @@ }, { "availableInGameEditions": [], - "value": 30000, - "id": "60bf6fd781c6e80e702ccc08", + "value": 22000, + "id": "5a68841f86f7745fa823f724", "type": "Item", "index": 0, - "target": "68010065f81036801d0b209e", + "target": "6812400b0c5cf2cf75075428", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b209e", + "_id": "6812400b0c5cf2cf75075428", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb6cb398b492706036455a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20a0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b20a0", - "_tpl": "590c657e86f77412b013051d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb6ccba7d63f18200a24a7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20a2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b20a2", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "60cb6cd13e4e974efa345cb8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20a8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b20a4", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20a5", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20a6", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20a7", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20a8", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "6764488e37be0cb15b40c0d0", - "type": "CustomizationDirect", - "index": 0, - "target": "675467d8b784110b2702fe11", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59674eb386f774539f14813a": { - "QuestName": "Delivery From the Past", - "_id": "59674eb386f774539f14813a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59674eb386f774539f14813a acceptPlayerMessage", - "changeQuestMessageText": "59674eb386f774539f14813a changeQuestMessageText", - "completePlayerMessage": "59674eb386f774539f14813a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5968929e86f7740d121082d3", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "591092ef86f7747bb8703422" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "59674fe586f7744f4e358aa2", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "case_extraction", - "target": [ - "591092ef86f7747bb8703422" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5977784486f774285402cf51", - "conditions": [ - { - "id": "5a577b4186f7743e797f6f04", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5bf5393d86f77458f17c1993", - "dynamicLocale": false, - "target": [ - "factory4_day", - "factory4_night" - ], - "conditionType": "Location" - } - ] - }, - "id": "5977784486f774285402cf52", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a5779e486f774411f6c321f", - "target": "59674fe586f7744f4e358aa2", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a926c386f7747bbc027ac8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5978b48b86f7746ef62ef859", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5936da9e86f7742d65037edf", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59674eb386f774539f14813a description", - "failMessageText": "59674eb386f774539f14813a failMessageText", - "declinePlayerMessage": "59674eb386f774539f14813a declinePlayerMessage", - "name": "59674eb386f774539f14813a name", - "note": "59674eb386f774539f14813a note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/59bfebe686f7745ba3403da3.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59674eb386f774539f14813a startedMessageText", - "successMessageText": "59674eb386f774539f14813a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 4000, - "id": "60c8a6b6e4d30047b777b316", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c89ebb8dfbfc09882efd1b", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "60cb4763e3d0247e625da16d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20aa", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b20aa", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a3fa37086f7744335434f85", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20ab", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b20ab", - "_tpl": "576165642459773c7a400233", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b20ac", - "_tpl": "576169e62459773c69055191", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b20ad", - "_tpl": "576167ab2459773cad038c43", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b20ae", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b20af", - "_tpl": "57616c112459773cce774d66", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b20b0", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b20b1", - "_tpl": "57616ca52459773c69055192", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b20b2", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "68010065f81036801d0b20ab", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cb4778e3d0247e625da16e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b20b7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b20b4", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20b5", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20b6", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20b7", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 22000 } } ] @@ -47361,84 +47071,46 @@ { "availableInGameEditions": [], "value": 2, - "id": "60cb47917c496e588343a195", + "id": "5ac6651486f774056c780961", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20be", + "target": "6812400b0c5cf2cf7507542b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20bb", - "_tpl": "6570243bbfc87b3a3409321f", + "_id": "6812400b0c5cf2cf7507542a", + "_tpl": "590c678286f77426c9660122", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b20bc", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b20bb", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b20bd", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b20bb", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "68010065f81036801d0b20be", - "_tpl": "6570243bbfc87b3a3409321f", + "_id": "6812400b0c5cf2cf7507542b", + "_tpl": "590c678286f77426c9660122", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b20bf", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b20be", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b20c0", - "_tpl": "5d6e6806a4b936088465b17e", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b20be", - "slotId": "cartridges", - "location": 1 } ] }, { "availableInGameEditions": [], - "id": "5ac6502386f77405cd54625d", + "id": "5ac6652f86f774056634a223", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20c1", + "target": "6812400b0c5cf2cf7507542c", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20c1", - "_tpl": "56dff0bed2720bb0668b4567" + "_id": "6812400b0c5cf2cf7507542c", + "_tpl": "590c678286f77426c9660122" } ], - "loyaltyLevel": 2, - "traderId": "54cb50c76803fa8b248b4571" + "loyaltyLevel": 3, + "traderId": "54cb57776803fa99248b456e" } ], "Fail": [] @@ -47451,70 +47123,77 @@ "arenaLocations": [], "status": 0 }, - "61958c366726521dd96828ec": { - "QuestName": "Cargo X - Part 4", - "_id": "61958c366726521dd96828ec", + "5bc4826c86f774106d22d88b": { + "QuestName": "The Tarkov Shooter - Part 5", + "_id": "5bc4826c86f774106d22d88b", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "61958c366726521dd96828ec acceptPlayerMessage", - "changeQuestMessageText": "61958c366726521dd96828ec changeQuestMessageText", - "completePlayerMessage": "61958c366726521dd96828ec completePlayerMessage", + "acceptPlayerMessage": "5bc4826c86f774106d22d88b acceptPlayerMessage", + "changeQuestMessageText": "5bc4826c86f774106d22d88b changeQuestMessageText", + "completePlayerMessage": "5bc4826c86f774106d22d88b completePlayerMessage", "conditions": { "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "61958d54aa0f643f9a0aed73", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "qlight16_peace_terra", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "61958d69d14ece31007e2df5", + "id": "5bc482c186f774710a789f25", "conditions": [ { - "id": "61958d8f2e2805073c2d3bc1", + "id": "5bc48a0f86f7742ce94849d9", "dynamicLocale": false, - "status": [ - "Survived" + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5bfea6e90db834001b7347f3", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "627e14b21713922ded6f2c15", + "61f7c9e189e6fb1a5e3ea78d" ], - "conditionType": "ExitStatus" + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 21, + "to": 5 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" }, { - "id": "61ad51da78d2361409060866", + "id": "5bc48b3d86f77452b373195e", "dynamicLocale": false, "target": [ - "Lighthouse" + "bigmap" ], "conditionType": "Location" } ] }, - "id": "61958d69d14ece31007e2df4", - "index": 1, + "id": "5bc84f7a86f774294c2f6862", + "index": 0, "parentId": "", - "oneSessionOnly": true, + "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "61958d97ea774d183b6cc91d", - "target": "61958d54aa0f643f9a0aed73", - "conditionType": "CompleteCondition" - } - ], + "value": 8, + "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false } @@ -47522,11 +47201,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "61ab63bf1b7da753125cfc36", + "id": "5bdabf4486f7743e1665df6d", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27bb5986f7741dfb660900", + "target": "5bc480a686f7741af0342e29", "status": [ 4 ], @@ -47538,28 +47217,28 @@ ], "Fail": [] }, - "description": "61958c366726521dd96828ec description", - "failMessageText": "61958c366726521dd96828ec failMessageText", - "declinePlayerMessage": "61958c366726521dd96828ec declinePlayerMessage", - "name": "61958c366726521dd96828ec name", - "note": "61958c366726521dd96828ec note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/597a0fad86f77426d464f995.jpg", - "type": "Discover", + "description": "5bc4826c86f774106d22d88b description", + "failMessageText": "5bc4826c86f774106d22d88b failMessageText", + "declinePlayerMessage": "5bc4826c86f774106d22d88b declinePlayerMessage", + "name": "5bc4826c86f774106d22d88b name", + "note": "5bc4826c86f774106d22d88b note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "61958c366726521dd96828ec startedMessageText", - "successMessageText": "61958c366726521dd96828ec successMessageText", + "startedMessageText": "5bc4826c86f774106d22d88b startedMessageText", + "successMessageText": "5bc4826c86f774106d22d88b successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 8600, - "id": "61abc032d163df65dd55264f", + "value": 13000, + "id": "60cc9c96646f74055e276533", "type": "Experience", "index": 0, "unknown": false @@ -47567,46 +47246,86 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "61ad4dbe4cce5e7e040ad757", + "id": "60cc9c9a65e4664318606b64", "type": "TraderStanding", "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 800, - "id": "61abc01fce0ce5446c4bffce", + "value": 80000, + "id": "60cc9cc7f81cc57f471718a0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20c3", + "target": "6812400b0c5cf2cf7507542e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20c3", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400b0c5cf2cf7507542e", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 800 + "StackObjectsCount": 80000 } } ] }, { "availableInGameEditions": [], - "id": "655b922fc023e22044165dec", + "value": 1, + "id": "5bcf241086f7746a45695afd", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075430", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075430", + "_tpl": "5bc5a351d4351e003477a414", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc9cafac6eb02bc726de5f", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075432", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075432", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf23ff86f7746a464c5678", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20c4", + "target": "6812400b0c5cf2cf75075433", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20c4", - "_tpl": "5ac8d6885acfc400180ae7b0" + "_id": "6812400b0c5cf2cf75075433", + "_tpl": "5bc5a351d4351e003477a414" } ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" + "loyaltyLevel": 3, + "traderId": "5c0647fdd443bc2504c2d371" } ], "Fail": [] @@ -47619,162 +47338,81 @@ "arenaLocations": [], "status": 0 }, - "63987301e11ec11ff5504036": { - "QuestName": "Gunsmith - Part 21", - "_id": "63987301e11ec11ff5504036", + "5bc47dbf86f7741ee74e93b9": { + "QuestName": "The Tarkov Shooter - Part 3", + "_id": "5bc47dbf86f7741ee74e93b9", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63987301e11ec11ff5504036 acceptPlayerMessage", - "changeQuestMessageText": "63987301e11ec11ff5504036 changeQuestMessageText", - "completePlayerMessage": "63987301e11ec11ff5504036 completePlayerMessage", + "acceptPlayerMessage": "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage", + "changeQuestMessageText": "5bc47dbf86f7741ee74e93b9 changeQuestMessageText", + "completePlayerMessage": "5bc47dbf86f7741ee74e93b9 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "63987b49cd51826f7a069b85", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5bc47e3e86f7741e6b2f3331", + "conditions": [ + { + "id": "5bc4800d86f774194f27ac45", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5bfea6e90db834001b7347f3", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "61f7c9e189e6fb1a5e3ea78d", + "627e14b21713922ded6f2c15" + ], + "distance": { + "value": 25, + "compareMethod": "<=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5bc47e3e86f7741e6b2f3332", "index": 0, "parentId": "", + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5bfea6e90db834001b7347f3" - ], + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 3, "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 1500.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 35.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 5, - "compareMethod": "<=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 500.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5cde739cd7f00c0010373bd3", - "5cde7afdd7f00c000d36b89d", - "5cde7b43d7f00c000d36b93e" - ], - "hasItemFromCategory": [] - }, - { - "conditionType": "WeaponAssembly", - "id": "63987b9c05aa481907106505", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5e81c3cbac2bb513793cdc75" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 200.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 75.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 7, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 750.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5ef366938cef260c0642acad", - "5ef61964ec7f42238c31e0c1" - ], - "hasItemFromCategory": [ - "55818b164bdc2ddc698b456c" - ] + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "639afa5592e27b60a1074096", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 38, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "639afa4981b99001240bbe18", + "id": "5bdabf1f86f7743e1809c556", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5b477f7686f7744d1b23c4d2", + "target": "5bc479e586f7747f376c7da3", "status": [ 4 ], @@ -47786,54 +47424,99 @@ ], "Fail": [] }, - "description": "63987301e11ec11ff5504036 description", - "failMessageText": "63987301e11ec11ff5504036 failMessageText", - "declinePlayerMessage": "63987301e11ec11ff5504036 declinePlayerMessage", - "name": "63987301e11ec11ff5504036 name", - "note": "63987301e11ec11ff5504036 note", - "traderId": "5a7c2eca46aef81a7ca2145d", + "description": "5bc47dbf86f7741ee74e93b9 description", + "failMessageText": "5bc47dbf86f7741ee74e93b9 failMessageText", + "declinePlayerMessage": "5bc47dbf86f7741ee74e93b9 declinePlayerMessage", + "name": "5bc47dbf86f7741ee74e93b9 name", + "note": "5bc47dbf86f7741ee74e93b9 note", + "traderId": "5c0647fdd443bc2504c2d371", "location": "any", - "image": "/files/quest/icon/63aae9481287ef0b827d0bef.jpg", - "type": "WeaponAssembly", + "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "63987301e11ec11ff5504036 startedMessageText", - "successMessageText": "63987301e11ec11ff5504036 successMessageText", + "startedMessageText": "5bc47dbf86f7741ee74e93b9 startedMessageText", + "successMessageText": "5bc47dbf86f7741ee74e93b9 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 27700, - "id": "639afa5d2a994a11600df098", + "value": 10500, + "id": "60cc9b8f65e4664318606b61", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "639afa6a5b759c65a34764e8", + "value": 0.02, + "id": "60cc9bd041fd1e14d71e22fe", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, + { + "availableInGameEditions": [], + "value": 70000, + "id": "60cc9c54a7d63f18200a2516", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075435", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075435", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 70000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b70371f2b6843ec751fd8", + "type": "ProductionScheme", + "index": 0, + "target": "6812400b0c5cf2cf75075438", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075437", + "_tpl": "5f0596629e22f464da6bbdd9", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "6812400b0c5cf2cf75075438", + "_tpl": "5f0596629e22f464da6bbdd9", + "upd": { + "StackObjectsCount": 50 + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + }, { "availableInGameEditions": [], "value": 1, - "id": "639afa8e92e27b60a1074097", + "id": "5bcf2bbb86f774722d789e56", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20c6", - "unknown": true, + "target": "6812400b0c5cf2cf7507543a", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20c6", - "_tpl": "567143bf4bdc2d1a0f8b4567", + "_id": "6812400b0c5cf2cf7507543a", + "_tpl": "5bbdb83fd4351e44f824c44b", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -47843,98 +47526,63 @@ }, { "availableInGameEditions": [], - "value": 3, - "id": "639afa8381b99001240bbe19", + "value": 1, + "id": "5bcf2bd086f774723055e996", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20cd", - "unknown": true, + "target": "6812400b0c5cf2cf7507543c", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20c9", - "_tpl": "648984e3f09d032aa9399d53", + "_id": "6812400b0c5cf2cf7507543c", + "_tpl": "5bbde409d4351e003562b036", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b20ca", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b20c9", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b20cb", - "_tpl": "648984e3f09d032aa9399d53", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20cc", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b20cb", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b20cd", - "_tpl": "648984e3f09d032aa9399d53", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b20ce", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b20cd", - "slotId": "cartridges" } ] }, { "availableInGameEditions": [], - "id": "63a19d79f194393ecf632f8d", + "id": "5bcf22a386f7746a45695afa", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20cf", + "target": "6812400b0c5cf2cf7507543d", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20cf", - "_tpl": "5d025cc1d7ad1a53845279ef" + "_id": "6812400b0c5cf2cf7507543d", + "_tpl": "5bbdb83fd4351e44f824c44b" } ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" }, { "availableInGameEditions": [], - "id": "63a19d815032c67f050dd964", + "id": "5bcf22b986f7746a45695afb", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20d0", + "target": "6812400b0c5cf2cf7507543e", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20d0", - "_tpl": "5c793fb92e221644f31bfb64" + "_id": "6812400b0c5cf2cf7507543e", + "_tpl": "5bbde409d4351e003562b036" } ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "67649726432eed4a6c817a7b", + "type": "CustomizationDirect", + "index": 0, + "target": "67585d2cd7a2703986067e99", + "unknown": false } ], "Fail": [] @@ -48193,12 +47841,12 @@ "id": "5f0da63af1132a292e7df843", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20d2", + "target": "6812400b0c5cf2cf75075440", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20d2", + "_id": "6812400b0c5cf2cf75075440", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -48212,12 +47860,12 @@ "id": "5f0496876234826dcb6c2b84", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20d6", + "target": "6812400b0c5cf2cf75075444", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20d4", + "_id": "6812400b0c5cf2cf75075442", "_tpl": "5ed515e03a40a50460332579", "upd": { "StackObjectsCount": 1, @@ -48225,7 +47873,7 @@ } }, { - "_id": "68010065f81036801d0b20d5", + "_id": "6812400b0c5cf2cf75075443", "_tpl": "5ed515e03a40a50460332579", "upd": { "StackObjectsCount": 1, @@ -48233,7 +47881,7 @@ } }, { - "_id": "68010065f81036801d0b20d6", + "_id": "6812400b0c5cf2cf75075444", "_tpl": "5ed515e03a40a50460332579", "upd": { "StackObjectsCount": 1, @@ -48248,12 +47896,12 @@ "id": "5f0496c9efefac7f7227de67", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20da", + "target": "6812400b0c5cf2cf75075448", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20d8", + "_id": "6812400b0c5cf2cf75075446", "_tpl": "5ed5160a87bb8443d10680b5", "upd": { "StackObjectsCount": 1, @@ -48261,7 +47909,7 @@ } }, { - "_id": "68010065f81036801d0b20d9", + "_id": "6812400b0c5cf2cf75075447", "_tpl": "5ed5160a87bb8443d10680b5", "upd": { "StackObjectsCount": 1, @@ -48269,7 +47917,7 @@ } }, { - "_id": "68010065f81036801d0b20da", + "_id": "6812400b0c5cf2cf75075448", "_tpl": "5ed5160a87bb8443d10680b5", "upd": { "StackObjectsCount": 1, @@ -48284,12 +47932,12 @@ "id": "5fd7d64fbdd50d684f73b5b2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20e0", + "target": "6812400b0c5cf2cf7507544e", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20dc", + "_id": "6812400b0c5cf2cf7507544a", "_tpl": "637b60c3b7afa97bfc3d7001", "upd": { "StackObjectsCount": 1, @@ -48297,7 +47945,7 @@ } }, { - "_id": "68010065f81036801d0b20dd", + "_id": "6812400b0c5cf2cf7507544b", "_tpl": "637b60c3b7afa97bfc3d7001", "upd": { "StackObjectsCount": 1, @@ -48305,7 +47953,7 @@ } }, { - "_id": "68010065f81036801d0b20de", + "_id": "6812400b0c5cf2cf7507544c", "_tpl": "637b60c3b7afa97bfc3d7001", "upd": { "StackObjectsCount": 1, @@ -48313,7 +47961,7 @@ } }, { - "_id": "68010065f81036801d0b20df", + "_id": "6812400b0c5cf2cf7507544d", "_tpl": "637b60c3b7afa97bfc3d7001", "upd": { "StackObjectsCount": 1, @@ -48321,7 +47969,7 @@ } }, { - "_id": "68010065f81036801d0b20e0", + "_id": "6812400b0c5cf2cf7507544e", "_tpl": "637b60c3b7afa97bfc3d7001", "upd": { "StackObjectsCount": 1, @@ -48336,12 +47984,12 @@ "id": "6414447daf926cc6e605f57b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20e5", + "target": "6812400b0c5cf2cf75075453", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20e2", + "_id": "6812400b0c5cf2cf75075450", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -48349,7 +47997,7 @@ } }, { - "_id": "68010065f81036801d0b20e3", + "_id": "6812400b0c5cf2cf75075451", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -48357,7 +48005,7 @@ } }, { - "_id": "68010065f81036801d0b20e4", + "_id": "6812400b0c5cf2cf75075452", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -48365,7 +48013,7 @@ } }, { - "_id": "68010065f81036801d0b20e5", + "_id": "6812400b0c5cf2cf75075453", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -48380,12 +48028,12 @@ "id": "60cb73ee6a2a1958fc522d14", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20e7", + "target": "6812400b0c5cf2cf75075455", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20e7", + "_id": "6812400b0c5cf2cf75075455", "_tpl": "5c1d0f4986f7744bb01837fa", "upd": { "StackObjectsCount": 1, @@ -48400,12 +48048,12 @@ "id": "5fd7d69add870108a754c0f6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20e9", + "target": "6812400b0c5cf2cf75075457", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20e9", + "_id": "6812400b0c5cf2cf75075457", "_tpl": "5aafbcd986f7745e590fff23", "upd": { "StackObjectsCount": 1, @@ -48558,12 +48206,12 @@ "id": "628b8495e62b673350065194", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20eb", + "target": "6812400b0c5cf2cf75075459", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20eb", + "_id": "6812400b0c5cf2cf75075459", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 45000 @@ -48577,12 +48225,12 @@ "id": "629a27fb22a49963127533c7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20ed", + "target": "6812400b0c5cf2cf7507545b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20ed", + "_id": "6812400b0c5cf2cf7507545b", "_tpl": "5c0e530286f7747fa1419862", "upd": { "StackObjectsCount": 1, @@ -48597,12 +48245,12 @@ "id": "629a28046c1cee6ff430241c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20ef", + "target": "6812400b0c5cf2cf7507545d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20ef", + "_id": "6812400b0c5cf2cf7507545d", "_tpl": "5c0e534186f7747fa1419867", "upd": { "StackObjectsCount": 1, @@ -48617,12 +48265,12 @@ "id": "629a280f4dec5d194e450344", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20f1", + "target": "6812400b0c5cf2cf7507545f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20f1", + "_id": "6812400b0c5cf2cf7507545f", "_tpl": "5c0e533786f7747fa23f4d47", "upd": { "StackObjectsCount": 1, @@ -48642,6 +48290,656 @@ "arenaLocations": [], "status": 0 }, + "5b478ff486f7744d184ecbbf": { + "QuestName": "Vitamins - Part 2", + "_id": "5b478ff486f7744d184ecbbf", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b478ff486f7744d184ecbbf acceptPlayerMessage", + "changeQuestMessageText": "5b478ff486f7744d184ecbbf changeQuestMessageText", + "completePlayerMessage": "5b478ff486f7744d184ecbbf completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5b47905886f7746807461fe2", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7715586f7742ee5789605" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5cb5ffd986f7746ef55de2c7", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7715586f7742ee5789605" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ec1388d83b69d213d3c2ee0", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5b4335ba86f7744d2837a264" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5b4790a886f774563c7a489f", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5b4335ba86f7744d2837a264" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5b4f0b1f86f7746c9e27e9ea", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b478eca86f7744642012254", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b478ff486f7744d184ecbbf description", + "failMessageText": "5b478ff486f7744d184ecbbf failMessageText", + "declinePlayerMessage": "5b478ff486f7744d184ecbbf declinePlayerMessage", + "name": "5b478ff486f7744d184ecbbf name", + "note": "5b478ff486f7744d184ecbbf note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/5b478eda86f77470315db899.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b478ff486f7744d184ecbbf startedMessageText", + "successMessageText": "5b478ff486f7744d184ecbbf successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15800, + "id": "60c8bfe11f21c1669a48c32f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60c8bfe8919c14709f497395", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 40000, + "id": "5b4873a086f7744a1434392d", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075461", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075461", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 40000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60cb5ff0af2e5506c3781d94", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075466", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075463", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075464", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075465", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075466", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb60042b555f16df5c411a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075468", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075468", + "_tpl": "5751a89d24597722aa0e8db0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b90bd493a8b605b63e18b2", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075469", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075469", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400b0c5cf2cf7507546a", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507546b", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf7507546c", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf7507546d", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf7507546e", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf7507546f", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "6812400b0c5cf2cf7507546e", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075470", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_mount" + }, + { + "_id": "6812400b0c5cf2cf75075471", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400b0c5cf2cf75075472", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400b0c5cf2cf75075469", + "slotId": "mod_mount_002" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "625d6ff5ddc94657c21a1625": { + "QuestName": "Network Provider - Part 1", + "_id": "625d6ff5ddc94657c21a1625", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "625d6ff5ddc94657c21a1625 acceptPlayerMessage", + "changeQuestMessageText": "625d6ff5ddc94657c21a1625 changeQuestMessageText", + "completePlayerMessage": "625d6ff5ddc94657c21a1625 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "625eb7fe1ed3bb5bcc5bd9e6", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "6389c70ca33d8c4cdf4932c6" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "625eb80da4eb80027c4f2e0a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c052f6886f7746b1e3db148" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "625eb81df7308432be1d44c6", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3efd86f77437d351a25b" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "625eb82ac4874104f230c0c6", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "56742c324bdc2d150f8b456d" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66422c3fb7d8c4ce2c235c55", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59ca264786f77445a80ed044", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c49778c85262894116f", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "597a0f5686f774273b74f676", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c54bce755ba9832d5c0", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "639135c3744e452011470807", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c6437b27a5cb5d07d2b", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "target": "61958c366726521dd96828ec", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c70e1bbb13492febd48", + "index": 4, + "parentId": "", + "dynamicLocale": false, + "target": "5a27ba1c86f77461ea5a3c56", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c7ad7194d26bad1f7e9", + "index": 5, + "parentId": "", + "dynamicLocale": false, + "target": "608974d01a66564e74191fc0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c82586efeea12398e4f", + "index": 6, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4493d86f7744b8e15aa8f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c8c8552f0cf49734bd6", + "index": 7, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e48186f77443e625e386", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422c9aed30c5920de049dd", + "index": 8, + "parentId": "", + "dynamicLocale": false, + "target": "5ae327c886f7745c7b3f2f3f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422ca4e1e67daba074e2dc", + "index": 9, + "parentId": "", + "dynamicLocale": false, + "target": "63913715f8e5dd32bf4e3aaa", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422caf38d542d4a00faa94", + "index": 10, + "parentId": "", + "dynamicLocale": false, + "target": "6179ad56c760af5ad2053587", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422cbc84b8097795d9ff85", + "index": 11, + "parentId": "", + "dynamicLocale": false, + "target": "6179afd0bca27a099552e040", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66422ccbe23ac53086c3601e", + "index": 12, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "TraderStanding", + "id": "66422d1a98c1a9ac7b6902ec", + "index": 13, + "parentId": "", + "dynamicLocale": false, + "target": "579dc571d53a0658a154fbec", + "globalQuestCounterId": "", + "value": 1, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "625d6ff5ddc94657c21a1625 description", + "failMessageText": "625d6ff5ddc94657c21a1625 failMessageText", + "declinePlayerMessage": "625d6ff5ddc94657c21a1625 declinePlayerMessage", + "name": "625d6ff5ddc94657c21a1625 name", + "note": "625d6ff5ddc94657c21a1625 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "625d6ff5ddc94657c21a1625 startedMessageText", + "successMessageText": "625d6ff5ddc94657c21a1625 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18600, + "id": "63a5d4a14610fa47416d8eff", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "63a5d4b42b25f7513905c808", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "6179afd0bca27a099552e040": { "QuestName": "Lost Contact", "_id": "6179afd0bca27a099552e040", @@ -48795,12 +49093,12 @@ "id": "6190461db843e65aae5edc66", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20f3", + "target": "6812400b0c5cf2cf75075474", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20f3", + "_id": "6812400b0c5cf2cf75075474", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -48813,11 +49111,11 @@ "id": "61ad5c999f06845f0a57dbe6", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20f4", + "target": "6812400b0c5cf2cf75075475", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20f4", + "_id": "6812400b0c5cf2cf75075475", "_tpl": "590c657e86f77412b013051d" } ], @@ -48835,28 +49133,28 @@ "arenaLocations": [], "status": 0 }, - "6179ad56c760af5ad2053587": { - "QuestName": "Seaside Vacation", - "_id": "6179ad56c760af5ad2053587", + "59689ee586f7740d1570bbd5": { + "QuestName": "Sanitary Standards - Part 1", + "_id": "59689ee586f7740d1570bbd5", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179ad56c760af5ad2053587 acceptPlayerMessage", - "changeQuestMessageText": "6179ad56c760af5ad2053587 changeQuestMessageText", - "completePlayerMessage": "6179ad56c760af5ad2053587 completePlayerMessage", + "acceptPlayerMessage": "59689ee586f7740d1570bbd5 acceptPlayerMessage", + "changeQuestMessageText": "59689ee586f7740d1570bbd5 changeQuestMessageText", + "completePlayerMessage": "59689ee586f7740d1570bbd5 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "617bf2a6f8e6c97ec70878b7", - "index": 0, + "id": "5cb6f32986f7746ef55e17a0", + "index": 1, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "619252352be33f26043400a7" + "590a3efd86f77437d351a25b" ], "countInRaid": false, "globalQuestCounterId": "", @@ -48866,7 +49164,193 @@ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "617bf29a52e86c73d372a917", + "id": "59689f7586f7740d14064726", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3efd86f77437d351a25b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a9289f86f77477925e27d3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 4, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59b95d9a86f77418424a36cf", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5967733e86f774602332fc84", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59689ee586f7740d1570bbd5 description", + "failMessageText": "59689ee586f7740d1570bbd5 failMessageText", + "declinePlayerMessage": "59689ee586f7740d1570bbd5 declinePlayerMessage", + "name": "59689ee586f7740d1570bbd5 name", + "note": "59689ee586f7740d1570bbd5 note", + "traderId": "54cb57776803fa99248b456e", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/59689f8f86f7740d121082d7.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59689ee586f7740d1570bbd5 startedMessageText", + "successMessageText": "59689ee586f7740d1570bbd5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 2200, + "id": "5c9505bd86f7743285178ad1", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c8c20c1f21c1669a48c332", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 14000, + "id": "5a2fb5d886f7747694379ad6", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075477", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075477", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 14000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "597afde186f7741ce2755ea2", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507547a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075479", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507547a", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac6616a86f77403dd390d29", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf7507547b", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507547b", + "_tpl": "590c661e86f7741e566b646a" + } + ], + "loyaltyLevel": 1, + "traderId": "54cb57776803fa99248b456e" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a68663e86f774501078f78a": { + "QuestName": "Health Care Privacy - Part 2", + "_id": "5a68663e86f774501078f78a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a68663e86f774501078f78a acceptPlayerMessage", + "changeQuestMessageText": "5a68663e86f774501078f78a changeQuestMessageText", + "completePlayerMessage": "5a68663e86f774501078f78a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5a68760f86f7743cc55d8709", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a6860d886f77411cd3a9e47" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a68763786f77474c33a40a1", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, @@ -48875,80 +49359,112 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "619252352be33f26043400a7" + "5a6860d886f77411cd3a9e47" ], "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "6194eb1dd5f0ef0ca76126b4", - "target": "617bf2a6f8e6c97ec70878b7", + "id": "5a68763d86f77441160f378b", + "target": "5a68760f86f7743cc55d8709", "conditionType": "CompleteCondition" } ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a68764c86f77474c4269f3b", + "conditions": [ + { + "id": "5a68765786f77474c33a40a3", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + }, + { + "id": "5a68765d86f77441160f3790", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5a68764c86f77474c4269f3c", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a68766486f77423391f38c7", + "target": "5a68760f86f7743cc55d8709", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "61ae0db440869119390a7bcc", + "id": "5a6875ce86f77441160f377c", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "60896e28e4a85c72ef3fa301", + "target": "5a68661a86f774500f48afb0", "status": [ - 2, 4 ], "globalQuestCounterId": "", "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ae0dd4cfead502c8012885", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "6179ad56c760af5ad2053587 description", - "failMessageText": "6179ad56c760af5ad2053587 failMessageText", - "declinePlayerMessage": "6179ad56c760af5ad2053587 declinePlayerMessage", - "name": "6179ad56c760af5ad2053587 name", - "note": "6179ad56c760af5ad2053587 note", + "description": "5a68663e86f774501078f78a description", + "failMessageText": "5a68663e86f774501078f78a failMessageText", + "declinePlayerMessage": "5a68663e86f774501078f78a declinePlayerMessage", + "name": "5a68663e86f774501078f78a name", + "note": "5a68663e86f774501078f78a note", "traderId": "54cb57776803fa99248b456e", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab4ce156152b140448cf95.jpg", - "type": "PickUp", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6179ad56c760af5ad2053587 startedMessageText", - "successMessageText": "6179ad56c760af5ad2053587 successMessageText", + "startedMessageText": "5a68663e86f774501078f78a startedMessageText", + "successMessageText": "5a68663e86f774501078f78a successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 8000, - "id": "617bf2b3d93d977d24520528", + "value": 5900, + "id": "60c8c443a0b5c924fc6e9d56", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "61ae0e2f3979ec0a2204593a", + "value": 0.04, + "id": "60c8c4661f21c1669a48c334", "type": "TraderStanding", "index": 0, "target": "54cb57776803fa99248b456e", @@ -48956,37 +49472,290 @@ }, { "availableInGameEditions": [], - "value": 50000, - "id": "619042948cc66c469a0a101a", + "value": 24000, + "id": "5a68860886f7745fa74103e8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20f6", + "target": "6812400b0c5cf2cf7507547d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20f6", + "_id": "6812400b0c5cf2cf7507547d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 50000 + "StackObjectsCount": 24000 } } ] }, { "availableInGameEditions": [], - "id": "61ae0e4876cf5f6b10309878", + "value": 4, + "id": "5a6885dc86f7745fa9319c55", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075482", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507547f", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075480", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075481", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075482", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5c0d0d5086f774363760aef2": { + "QuestName": "Athlete", + "_id": "5c0d0d5086f774363760aef2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c0d0d5086f774363760aef2 acceptPlayerMessage", + "changeQuestMessageText": "5c0d0d5086f774363760aef2 changeQuestMessageText", + "completePlayerMessage": "5c0d0d5086f774363760aef2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5c0d0dfd86f7747f482a89a5", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "Health", + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5c1fd5f586f7742b391bf138", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 30, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5c1fd5e586f7743c7b261f79", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a68667486f7742607157d28", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c0d0d5086f774363760aef2 description", + "failMessageText": "5c0d0d5086f774363760aef2 failMessageText", + "declinePlayerMessage": "5c0d0d5086f774363760aef2 declinePlayerMessage", + "name": "5c0d0d5086f774363760aef2 name", + "note": "5c0d0d5086f774363760aef2 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Skill", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0d0d5086f774363760aef2 startedMessageText", + "successMessageText": "5c0d0d5086f774363760aef2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 21900, + "id": "60c8c5862238043a52678650", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c58c1f21c1669a48c336", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 110000, + "id": "5c1929a186f77401b1301f47", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075484", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075484", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 110000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb722865e4664318606ac4", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075486", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075486", + "_tpl": "5aa2b986e5b5b00014028f4c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5c1b782486f77423947f90b0", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507548a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075488", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075489", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507548a", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5c1b782786f77413193fa4f8", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507548e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507548c", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507548d", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507548e", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5c192a1e86f7742c8b74f785", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b20f7", + "target": "6812400b0c5cf2cf7507548f", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b20f7", - "_tpl": "5af0454c86f7746bf20992e8" + "_id": "6812400b0c5cf2cf7507548f", + "_tpl": "5c10c8fd86f7743d7d706df3" } ], - "loyaltyLevel": 3, + "loyaltyLevel": 4, "traderId": "54cb57776803fa99248b456e" } ], @@ -49000,6 +49769,277 @@ "arenaLocations": [], "status": 0 }, + "596b455186f77457cb50eccb": { + "QuestName": "Stirrup", + "_id": "596b455186f77457cb50eccb", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "596b455186f77457cb50eccb acceptPlayerMessage", + "changeQuestMessageText": "596b455186f77457cb50eccb changeQuestMessageText", + "completePlayerMessage": "596b455186f77457cb50eccb completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "596b45e786f77457c7006f87", + "conditions": [ + { + "id": "5979e7fe86f774311955e613", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5cadc190ae921500103bb3b6", + "602a9740da11d6478d5a06dc", + "5f36a0e5fbf956000b716b65", + "5abccb7dd8ce87001773e277", + "59f98b4986f7746f546d2cef", + "56e0598dd2720bb5668b45a6", + "5a17f98cfcdbcb0980087290", + "5448bd6b4bdc2dfc2f8b4569", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "5e81c3cbac2bb513793cdc75", + "576a581d2459771e7b1bc4f1", + "5b3b713c5acfc4330140bd8d", + "56d59856d2720bd8418b456a", + "571a12c42459771f627b58a0", + "5d67abc1a4b93614ec50137f", + "5d3eb3b0a4b93615055e84d2", + "579204f224597773d619e051", + "6193a720f8ee7e52e42109ed", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "620109578d82e67e7911abf2", + "633ec7c2a6918cb895019c6c", + "63088377b5cd696784087147", + "669fa409933e898cce0c2166", + "669fa3f88abd2662d80eee77", + "669fa3d876116c89840b1217", + "669fa39b48fc9f8db6035a0c", + "668fe5a998b5ad715703ddd6" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5c9b5e3f86f7744aab7329b5", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a9250d86f7747aa94283f3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 8, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59a9251186f774787316f80f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "596b36c586f77450d6045ad2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "596b455186f77457cb50eccb description", + "failMessageText": "596b455186f77457cb50eccb failMessageText", + "declinePlayerMessage": "596b455186f77457cb50eccb declinePlayerMessage", + "name": "596b455186f77457cb50eccb name", + "note": "596b455186f77457cb50eccb note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/5979e80986f77437584fb8b2.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "596b455186f77457cb50eccb startedMessageText", + "successMessageText": "596b455186f77457cb50eccb successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5300, + "id": "60c8afb2a0b5c924fc6e9d52", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "60c8afbf83161b326c47110b", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 70000, + "id": "60cb59d2f09d61072d6cf22a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075491", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075491", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 70000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5a2e5dc086f77452ee40c4b3", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075493", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075493", + "_tpl": "545cdae64bdc2d39198b4568", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac6676e86f774056634a230", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075494", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075494", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf75075495", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "6812400b0c5cf2cf75075494", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf75075496", + "_tpl": "619f4f8c4c58466fe1228439", + "parentId": "6812400b0c5cf2cf75075494", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf75075497", + "_tpl": "619f52454c58466fe122843b", + "parentId": "6812400b0c5cf2cf75075494", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf75075498", + "_tpl": "619f4ab2d25cbd424731fb95", + "parentId": "6812400b0c5cf2cf75075494", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075499", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "6812400b0c5cf2cf75075494", + "slotId": "mod_tactical" + } + ], + "loyaltyLevel": 2, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "value": -0.05, + "id": "60c8afc91f21c1669a48c327", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": -0.02, + "id": "60c8afce9339363e8f0c6ada", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5969f90786f77420d2328015": { "QuestName": "Painkiller", "_id": "5969f90786f77420d2328015", @@ -49118,12 +50158,12 @@ "id": "5a2fb8a486f77432ea548a88", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20f9", + "target": "6812400b0c5cf2cf7507549b", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b20f9", + "_id": "6812400b0c5cf2cf7507549b", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 17000 @@ -49137,12 +50177,12 @@ "id": "60cb68522b555f16df5c416b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b20ff", + "target": "6812400b0c5cf2cf750754a1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b20fb", + "_id": "6812400b0c5cf2cf7507549d", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -49150,7 +50190,7 @@ } }, { - "_id": "68010065f81036801d0b20fc", + "_id": "6812400b0c5cf2cf7507549e", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -49158,7 +50198,7 @@ } }, { - "_id": "68010065f81036801d0b20fd", + "_id": "6812400b0c5cf2cf7507549f", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -49166,7 +50206,7 @@ } }, { - "_id": "68010065f81036801d0b20fe", + "_id": "6812400b0c5cf2cf750754a0", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -49174,7 +50214,7 @@ } }, { - "_id": "68010065f81036801d0b20ff", + "_id": "6812400b0c5cf2cf750754a1", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -49189,12 +50229,12 @@ "id": "60cb67cd179f8541b846922d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2101", + "target": "6812400b0c5cf2cf750754a3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2101", + "_id": "6812400b0c5cf2cf750754a3", "_tpl": "5d1b39a386f774252339976f", "upd": { "StackObjectsCount": 1, @@ -49209,12 +50249,12 @@ "id": "60cb67bf98b4927060364552", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2104", + "target": "6812400b0c5cf2cf750754a6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2103", + "_id": "6812400b0c5cf2cf750754a5", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -49222,7 +50262,7 @@ } }, { - "_id": "68010065f81036801d0b2104", + "_id": "6812400b0c5cf2cf750754a6", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -49237,12 +50277,12 @@ "id": "60cb67e37c496e588343a1d4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2107", + "target": "6812400b0c5cf2cf750754a9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2106", + "_id": "6812400b0c5cf2cf750754a8", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -49250,7 +50290,7 @@ } }, { - "_id": "68010065f81036801d0b2107", + "_id": "6812400b0c5cf2cf750754a9", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -49426,12 +50466,12 @@ "id": "61ae0ccb67658b51a604a42a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2109", + "target": "6812400b0c5cf2cf750754ab", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2109", + "_id": "6812400b0c5cf2cf750754ab", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 2300 @@ -49445,12 +50485,12 @@ "id": "61ae0d1b1e1d2540cf47d6b6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b210b", + "target": "6812400b0c5cf2cf750754ad", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b210b", + "_id": "6812400b0c5cf2cf750754ad", "_tpl": "5c12613b86f7743bbe2c3f76", "upd": { "StackObjectsCount": 1, @@ -49465,12 +50505,12 @@ "id": "61ae0cfb63cbd94b771f67c7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b210d", + "target": "6812400b0c5cf2cf750754af", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b210d", + "_id": "6812400b0c5cf2cf750754af", "_tpl": "590c392f86f77444754deb29", "upd": { "StackObjectsCount": 1, @@ -49485,12 +50525,12 @@ "id": "62a701ce8ec41a51b3475fef", "type": "Item", "index": 0, - "target": "68010065f81036801d0b210f", + "target": "6812400b0c5cf2cf750754b1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b210f", + "_id": "6812400b0c5cf2cf750754b1", "_tpl": "62a0a124de7ac81993580542", "upd": { "StackObjectsCount": 1, @@ -49504,11 +50544,11 @@ "id": "62a703ea4de19a4c3422ea67", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2110", + "target": "6812400b0c5cf2cf750754b2", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2110", + "_id": "6812400b0c5cf2cf750754b2", "_tpl": "5e85a9f4add9fe03027d9bf1" } ], @@ -49526,828 +50566,6 @@ "arenaLocations": [], "status": 0 }, - "6179aff8f57fb279792c60a1": { - "QuestName": "Overpopulation", - "_id": "6179aff8f57fb279792c60a1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179aff8f57fb279792c60a1 acceptPlayerMessage", - "changeQuestMessageText": "6179aff8f57fb279792c60a1 changeQuestMessageText", - "completePlayerMessage": "6179aff8f57fb279792c60a1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "617bf4e152e86c73d372a95e", - "conditions": [ - { - "id": "617bf5043de8a6689b533a1d", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "6194f8fe0d1f573a784212a2", - "dynamicLocale": false, - "zoneIds": [ - "qlight_pc1_ucot_kill" - ], - "conditionType": "InZone" - } - ] - }, - "id": "617bf4e152e86c73d372a95d", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61b24f790392cb7ac26ded55", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a03153686f77442d90e2171", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61b24f9104363f7b1215529d", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6179aff8f57fb279792c60a1 description", - "failMessageText": "6179aff8f57fb279792c60a1 failMessageText", - "declinePlayerMessage": "6179aff8f57fb279792c60a1 declinePlayerMessage", - "name": "6179aff8f57fb279792c60a1 name", - "note": "6179aff8f57fb279792c60a1 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab4f090330382cea7bad57.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6179aff8f57fb279792c60a1 startedMessageText", - "successMessageText": "6179aff8f57fb279792c60a1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8500, - "id": "617bf5400cf4a041de5b3969", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "61adfd9936a895455b700cc6", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1100, - "id": "61adf8b14abec56a41724656", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2112", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2112", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 1100 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "61adfe7467658b51a604a426", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2113", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2113", - "_tpl": "5b0bbe4e5acfc40dc528a72d" - }, - { - "_id": "68010065f81036801d0b2114", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2115", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2116", - "_tpl": "5b7bed205acfc400161d08cc", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2117", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2118", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "68010065f81036801d0b2117", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2119", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b211a", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b211b", - "_tpl": "5b7d645e5acfc400170e2f90", - "parentId": "68010065f81036801d0b2113", - "slotId": "mod_stock" - } - ], - "loyaltyLevel": 2, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "596a1e6c86f7741ddc2d3206": { - "QuestName": "General Wares", - "_id": "596a1e6c86f7741ddc2d3206", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596a1e6c86f7741ddc2d3206 acceptPlayerMessage", - "changeQuestMessageText": "596a1e6c86f7741ddc2d3206 changeQuestMessageText", - "completePlayerMessage": "596a1e6c86f7741ddc2d3206 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "596a1f0486f77456630ea4d2", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347d7224597744596b4e72" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596a1f1586f77420d2328077", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347d7224597744596b4e72" - ], - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "59a9299786f77472014b72e5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5969f9e986f7741dde183a50", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "596a1e6c86f7741ddc2d3206 description", - "failMessageText": "596a1e6c86f7741ddc2d3206 failMessageText", - "declinePlayerMessage": "596a1e6c86f7741ddc2d3206 declinePlayerMessage", - "name": "596a1e6c86f7741ddc2d3206 name", - "note": "596a1e6c86f7741ddc2d3206 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/5979d3da86f774719f309082.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "596a1e6c86f7741ddc2d3206 startedMessageText", - "successMessageText": "596a1e6c86f7741ddc2d3206 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 4800, - "id": "60c8c36580b2027f403dd99f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8c36883161b326c471116", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "5a2fba6886f774769635db1c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b211d", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b211d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "5ac6643e86f774055a77c730", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2122", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b211f", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2120", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2121", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2122", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5a2fbaa686f77476953ee329", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2125", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2124", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2125", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ec19e5386f7561e047757ae", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2128", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2127", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2128", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63a9b229813bba58a50c9ee5": { - "QuestName": "Worst Job in the World", - "_id": "63a9b229813bba58a50c9ee5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63a9b229813bba58a50c9ee5 acceptPlayerMessage", - "changeQuestMessageText": "63a9b229813bba58a50c9ee5 changeQuestMessageText", - "completePlayerMessage": "63a9b229813bba58a50c9ee5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a9b229813bba58a50c9ee7", - "conditions": [ - { - "id": "63a9b16a87c76a25c912125e", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [ - "5447a9cd4bdc2dbd208b4567", - "5c07c60e0db834002330051f", - "5d43021ca4b9362eab4b5e25" - ], - "distance": { - "value": 100, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "63a9b229813bba58a50c9ee6", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 30, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "63a9efcc7cd7613adb652529", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a9efdbad5cc12f22162052", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "639135f286e646067c176a87", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a9efd2655ec5555b4aaa7b", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5a27bc6986f7741c7358402b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "63a9b229813bba58a50c9ee5 description", - "failMessageText": "63a9b229813bba58a50c9ee5 failMessageText", - "declinePlayerMessage": "63a9b229813bba58a50c9ee5 declinePlayerMessage", - "name": "63a9b229813bba58a50c9ee5 name", - "note": "63a9b229813bba58a50c9ee5 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "63a9b229813bba58a50c9ee5 startedMessageText", - "successMessageText": "63a9b229813bba58a50c9ee5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15400, - "id": "63a9ef1dc593cc01b37133ce", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "63a9ef25009ffc6a551631ca", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "id": "63a9f767ad5cc12f22162055", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2129", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2129", - "_tpl": "6357c98711fb55120211f7e1" - } - ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "63a9f76dda7999196148ba82", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b212a", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b212a", - "_tpl": "5ede475b549eed7c6d5c18fb" - } - ], - "loyaltyLevel": 3, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "61904daa7d0d857927447b9c": { - "QuestName": "The Hermit", - "_id": "61904daa7d0d857927447b9c", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "61904daa7d0d857927447b9c acceptPlayerMessage", - "changeQuestMessageText": "61904daa7d0d857927447b9c changeQuestMessageText", - "completePlayerMessage": "61904daa7d0d857927447b9c completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ac22351b5c95746621ddc5", - "conditions": [ - { - "id": "63ac2256de609574d97adf82", - "dynamicLocale": false, - "target": "qlight_hunt_fr_find", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63ac22351b5c95746621ddc4", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "61904e76f62c89219a56e04c", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "61904c9df62c89219a56e034" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63ac228edd6923311c7d1821", - "target": "63ac22351b5c95746621ddc4", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "61904ebb22e6d82ee97ccbbe", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "61904c9df62c89219a56e034" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "619236f8ed82a53b6647c9fc", - "target": "61904e76f62c89219a56e04c", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61abc8083b7a0b53f515c5e5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e48186f77443e625e386", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ad52a14cce5e7e040ad758", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "61904daa7d0d857927447b9c description", - "failMessageText": "61904daa7d0d857927447b9c failMessageText", - "declinePlayerMessage": "61904daa7d0d857927447b9c declinePlayerMessage", - "name": "61904daa7d0d857927447b9c name", - "note": "61904daa7d0d857927447b9c note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab38781b7da753125cfaa5.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "61904daa7d0d857927447b9c startedMessageText", - "successMessageText": "61904daa7d0d857927447b9c successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 12000, - "id": "61979d5e1aaf65553c5efe48", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "61ad52dde9f86c618b0a83c6", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 55000, - "id": "61979d77f8e9da247b2bd375", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b212c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b212c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 55000 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5967733e86f774602332fc84": { "QuestName": "Shortage", "_id": "5967733e86f774602332fc84", @@ -50456,12 +50674,12 @@ "id": "5fe30684c646836c3b6fc567", "type": "Item", "index": 0, - "target": "68010065f81036801d0b212e", + "target": "6812400b0c5cf2cf750754b4", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b212e", + "_id": "6812400b0c5cf2cf750754b4", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 15000 @@ -50475,12 +50693,12 @@ "id": "5a2fb4c086f7742eb03f3623", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2131", + "target": "6812400b0c5cf2cf750754b7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2130", + "_id": "6812400b0c5cf2cf750754b6", "_tpl": "590c661e86f7741e566b646a", "upd": { "StackObjectsCount": 1, @@ -50488,7 +50706,7 @@ } }, { - "_id": "68010065f81036801d0b2131", + "_id": "6812400b0c5cf2cf750754b7", "_tpl": "590c661e86f7741e566b646a", "upd": { "StackObjectsCount": 1, @@ -50503,12 +50721,12 @@ "id": "5a2fb4b286f774769839eb53", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2136", + "target": "6812400b0c5cf2cf750754bc", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2133", + "_id": "6812400b0c5cf2cf750754b9", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -50516,7 +50734,7 @@ } }, { - "_id": "68010065f81036801d0b2134", + "_id": "6812400b0c5cf2cf750754ba", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -50524,7 +50742,7 @@ } }, { - "_id": "68010065f81036801d0b2135", + "_id": "6812400b0c5cf2cf750754bb", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -50532,7 +50750,7 @@ } }, { - "_id": "68010065f81036801d0b2136", + "_id": "6812400b0c5cf2cf750754bc", "_tpl": "544fb37f4bdc2dee738b4567", "upd": { "StackObjectsCount": 1, @@ -50547,12 +50765,12 @@ "id": "5a2fb4ce86f774769732daa8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b213b", + "target": "6812400b0c5cf2cf750754c1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2138", + "_id": "6812400b0c5cf2cf750754be", "_tpl": "544fb3364bdc2d34748b456a", "upd": { "StackObjectsCount": 1, @@ -50560,7 +50778,7 @@ } }, { - "_id": "68010065f81036801d0b2139", + "_id": "6812400b0c5cf2cf750754bf", "_tpl": "544fb3364bdc2d34748b456a", "upd": { "StackObjectsCount": 1, @@ -50568,7 +50786,7 @@ } }, { - "_id": "68010065f81036801d0b213a", + "_id": "6812400b0c5cf2cf750754c0", "_tpl": "544fb3364bdc2d34748b456a", "upd": { "StackObjectsCount": 1, @@ -50576,7 +50794,7 @@ } }, { - "_id": "68010065f81036801d0b213b", + "_id": "6812400b0c5cf2cf750754c1", "_tpl": "544fb3364bdc2d34748b456a", "upd": { "StackObjectsCount": 1, @@ -50684,12 +50902,12 @@ "id": "597afde186f7741ce2755e97", "type": "Item", "index": 0, - "target": "68010065f81036801d0b213d", + "target": "6812400b0c5cf2cf750754c3", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b213d", + "_id": "6812400b0c5cf2cf750754c3", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 5000 @@ -50702,11 +50920,11 @@ "id": "5ac664a886f774066f04bd47", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b213e", + "target": "6812400b0c5cf2cf750754c4", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b213e", + "_id": "6812400b0c5cf2cf750754c4", "_tpl": "544fb45d4bdc2dee738b4568" } ], @@ -50910,12 +51128,12 @@ "id": "64f8cdcc05cb58236609a4d6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2140", + "target": "6812400b0c5cf2cf750754c6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2140", + "_id": "6812400b0c5cf2cf750754c6", "_tpl": "569668774bdc2da2298b4568", "upd": { "StackObjectsCount": 500 @@ -50929,12 +51147,12 @@ "id": "64f8cdd6c8626c7d46040429", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2141", + "target": "6812400b0c5cf2cf750754c7", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2141", + "_id": "6812400b0c5cf2cf750754c7", "_tpl": "5cadc190ae921500103bb3b6", "upd": { "StackObjectsCount": 1, @@ -50944,45 +51162,45 @@ } }, { - "_id": "68010065f81036801d0b2142", + "_id": "6812400b0c5cf2cf750754c8", "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "68010065f81036801d0b2141", + "parentId": "6812400b0c5cf2cf750754c7", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2143", + "_id": "6812400b0c5cf2cf750754c9", "_tpl": "5cadc390ae921500126a77f1", - "parentId": "68010065f81036801d0b2142", + "parentId": "6812400b0c5cf2cf750754c8", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2144", + "_id": "6812400b0c5cf2cf750754ca", "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "68010065f81036801d0b2141", + "parentId": "6812400b0c5cf2cf750754c7", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b2145", + "_id": "6812400b0c5cf2cf750754cb", "_tpl": "5cadc55cae921500103bb3be", - "parentId": "68010065f81036801d0b2141", + "parentId": "6812400b0c5cf2cf750754c7", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2146", + "_id": "6812400b0c5cf2cf750754cc", "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "68010065f81036801d0b2145", + "parentId": "6812400b0c5cf2cf750754cb", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2147", + "_id": "6812400b0c5cf2cf750754cd", "_tpl": "5cadd919ae921500126a77f3", - "parentId": "68010065f81036801d0b2145", + "parentId": "6812400b0c5cf2cf750754cb", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2148", + "_id": "6812400b0c5cf2cf750754ce", "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "68010065f81036801d0b2141", + "parentId": "6812400b0c5cf2cf750754c7", "slotId": "mod_magazine" } ] @@ -50993,39 +51211,39 @@ "id": "64f8cde333ff7561c87643f2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2149", + "target": "6812400b0c5cf2cf750754cf", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2149", + "_id": "6812400b0c5cf2cf750754cf", "_tpl": "5a7828548dc32e5a9c28b516", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b214a", + "_id": "6812400b0c5cf2cf750754d0", "_tpl": "5a787f7ac5856700177af660", - "parentId": "68010065f81036801d0b2149", + "parentId": "6812400b0c5cf2cf750754cf", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b214b", + "_id": "6812400b0c5cf2cf750754d1", "_tpl": "5a788089c5856700142fdd9c", - "parentId": "68010065f81036801d0b2149", + "parentId": "6812400b0c5cf2cf750754cf", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b214c", + "_id": "6812400b0c5cf2cf750754d2", "_tpl": "5a7882dcc5856700177af662", - "parentId": "68010065f81036801d0b2149", + "parentId": "6812400b0c5cf2cf750754cf", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b214d", + "_id": "6812400b0c5cf2cf750754d3", "_tpl": "5a7880d0c5856700142fdd9d", - "parentId": "68010065f81036801d0b2149", + "parentId": "6812400b0c5cf2cf750754cf", "slotId": "mod_stock" } ] @@ -51036,12 +51254,12 @@ "id": "64f8cdec05cb58236609a4d7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b214f", + "target": "6812400b0c5cf2cf750754d5", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b214f", + "_id": "6812400b0c5cf2cf750754d5", "_tpl": "64d4b23dc1b37504b41ac2b6", "upd": { "StackObjectsCount": 1, @@ -51061,134 +51279,386 @@ "arenaLocations": [], "status": 0 }, - "596b43fb86f77457ca186186": { - "QuestName": "The Extortionist", - "_id": "596b43fb86f77457ca186186", + "5bc4893c86f774626f5ebf3e": { + "QuestName": "The Tarkov Shooter - Part 8", + "_id": "5bc4893c86f774626f5ebf3e", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596b43fb86f77457ca186186 acceptPlayerMessage", - "changeQuestMessageText": "596b43fb86f77457ca186186 changeQuestMessageText", - "completePlayerMessage": "596b43fb86f77457ca186186 completePlayerMessage", + "acceptPlayerMessage": "5bc4893c86f774626f5ebf3e acceptPlayerMessage", + "changeQuestMessageText": "5bc4893c86f774626f5ebf3e changeQuestMessageText", + "completePlayerMessage": "5bc4893c86f774626f5ebf3e completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "596b44b686f77457cb50ecca", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5bc48aed86f77452c947ce66", + "conditions": [ + { + "id": "5bc84a7b86f77466d6051e37", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5bfea6e90db834001b7347f3", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "61f7c9e189e6fb1a5e3ea78d", + "627e14b21713922ded6f2c15", + "673cab3e03c6a20581028bc1" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5bc48aed86f77452c947ce67", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593965cf86f774087a77e1b6" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596b450986f7745a7e510b54", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593965cf86f774087a77e1b6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a5778a886f7740adc2f7f85", - "target": "596b44b686f77457cb50ecca", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fbabc86f774231d75afbd", - "conditions": [ - { - "id": "5a3fbb0986f77455f8544ce3", - "dynamicLocale": false, - "target": "dead_posylni", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fbabc86f774231d75afbe", - "index": 2, - "parentId": "596b44b686f77457cb50ecca", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fbab086f77421593d9bef", - "conditions": [ - { - "id": "5a3fbb2d86f77421ef22af45", - "dynamicLocale": false, - "target": "vremyan_case", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fbab086f77421593d9bf0", - "index": 3, - "parentId": "596b44b686f77457cb50ecca", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, + "value": 3, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false } ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5bdabf7186f7743e152e867d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5bc4856986f77454c317bea7", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64b6a5a525251516d7685429", + "conditions": [ + { + "id": "64b6a5b1d5887c2ce956115b", + "dynamicLocale": false, + "status": [ + "Killed", + "MissingInAction", + "Left" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "64b6a5a525251516d7685428", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] + }, + "description": "5bc4893c86f774626f5ebf3e description", + "failMessageText": "5bc4893c86f774626f5ebf3e failMessageText", + "declinePlayerMessage": "5bc4893c86f774626f5ebf3e declinePlayerMessage", + "name": "5bc4893c86f774626f5ebf3e name", + "note": "5bc4893c86f774626f5ebf3e note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", + "type": "Elimination", + "isKey": false, + "restartable": true, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5bc4893c86f774626f5ebf3e startedMessageText", + "successMessageText": "5bc4893c86f774626f5ebf3e successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 30000, + "id": "60cc9dbb1bdece56c249cbe3", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc9dbef81cc57f471718a3", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 400000, + "id": "5bcf265486f774378e266a36", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750754d7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750754d7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 400000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf269286f7746a472ad9f7", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750754d8", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750754d8", + "_tpl": "5bae13bad4351e00320204af" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "5bcf268686f7746a45695b0a", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750754d9", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750754d9", + "_tpl": "5bae13ded4351e44f824bf38" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "64b6a4ea58b5637e2d71a65c", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf750754da", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf750754da", + "_tpl": "618ba27d9008e4636a67f61d" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc9e0820a6283a506aeb42", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750754db", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750754db", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf750754dc", + "_tpl": "5bae13ded4351e44f824bf38", + "parentId": "6812400b0c5cf2cf750754db", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf750754dd", + "_tpl": "5bae13bad4351e00320204af", + "parentId": "6812400b0c5cf2cf750754db", + "slotId": "mod_stock" + }, + { + "_id": "6812400b0c5cf2cf750754de", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "6812400b0c5cf2cf750754db", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf750754df", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "6812400b0c5cf2cf750754de", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400b0c5cf2cf750754e0", + "_tpl": "5bbdb811d4351e45020113c7", + "parentId": "6812400b0c5cf2cf750754de", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400b0c5cf2cf750754e1", + "_tpl": "5aa66a9be5b5b0214e506e89", + "parentId": "6812400b0c5cf2cf750754e0", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf750754e2", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "6812400b0c5cf2cf750754e1", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf750754e3", + "_tpl": "5b86a0e586f7745b600ccb23", + "parentId": "6812400b0c5cf2cf750754de", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b6a3448b66a1647d0a4758", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf750754e5", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf750754e5", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 300, + "id": "629f0fae7ad28b7f7c40ed06", + "type": "Skill", + "index": 0, + "target": "Sniper", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a27d2af86f7744e1115b323": { + "QuestName": "Friend From the West - Part 2", + "_id": "5a27d2af86f7744e1115b323", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a27d2af86f7744e1115b323 acceptPlayerMessage", + "changeQuestMessageText": "5a27d2af86f7744e1115b323 changeQuestMessageText", + "completePlayerMessage": "5a27d2af86f7744e1115b323 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5a27d34586f7744e1115b327", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5696686a4bdc2da3298b456a" + ], + "globalQuestCounterId": "", + "value": 5000, + "visibilityConditions": [] + } + ], "AvailableForStart": [ { "conditionType": "Level", - "id": "59a924fb86f7747a683e405b", + "id": "5a3a718086f7745a9d6892d9", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 7, + "value": 9, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "59819ef086f774557e174d7e", + "id": "5a27d30186f7742d94339bee", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "596b36c586f77450d6045ad2", + "target": "5a27c99a86f7747d2c6bdd8e", "status": [ 4 ], @@ -51200,36 +51670,36 @@ ], "Fail": [] }, - "description": "596b43fb86f77457ca186186 description", - "failMessageText": "596b43fb86f77457ca186186 failMessageText", - "declinePlayerMessage": "596b43fb86f77457ca186186 declinePlayerMessage", - "name": "596b43fb86f77457ca186186 name", - "note": "596b43fb86f77457ca186186 note", + "description": "5a27d2af86f7744e1115b323 description", + "failMessageText": "5a27d2af86f7744e1115b323 failMessageText", + "declinePlayerMessage": "5a27d2af86f7744e1115b323 declinePlayerMessage", + "name": "5a27d2af86f7744e1115b323 name", + "note": "5a27d2af86f7744e1115b323 note", "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/596b453b86f77457c827bf44.jpg", - "type": "PickUp", + "location": "any", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "Merchant", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "596b43fb86f77457ca186186 startedMessageText", - "successMessageText": "596b43fb86f77457ca186186 successMessageText", + "startedMessageText": "5a27d2af86f7744e1115b323 startedMessageText", + "successMessageText": "5a27d2af86f7744e1115b323 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 3200, - "id": "5c94fe5c86f774551528dee9", + "value": 10000, + "id": "60c8bf6a80b2027f403dd99d", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.04, - "id": "60c8af8f919c14709f497391", + "value": 0.05, + "id": "60c8bf7083161b326c471114", "type": "TraderStanding", "index": 0, "target": "58330581ace78e27b8b10cee", @@ -51237,366 +51707,81 @@ }, { "availableInGameEditions": [], - "value": 500, - "id": "5a2e5b9986f77452ef4a6252", - "type": "Item", + "id": "62a64edda9a0ea77981b54ff", + "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2151", - "unknown": false, - "findInRaid": false, + "target": "6812400b0c5cf2cf750754e6", + "unknown": true, "items": [ { - "_id": "68010065f81036801d0b2151", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400b0c5cf2cf750754e6", + "_tpl": "5fb64bc92b1b027b1f50bcf2", "upd": { - "StackObjectsCount": 500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a3faa9586f7745849562028", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2152", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2152", - "_tpl": "59e6687d86f77411d949b251", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false } } }, { - "_id": "68010065f81036801d0b2153", - "_tpl": "59e649f986f77411d949b246", - "parentId": "68010065f81036801d0b2152", - "slotId": "mod_gas_block" + "_id": "6812400b0c5cf2cf750754e7", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "6812400b0c5cf2cf750754e6", + "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2154", - "_tpl": "59e898ee86f77427614bd225", - "parentId": "68010065f81036801d0b2153", - "slotId": "mod_handguard" + "_id": "6812400b0c5cf2cf750754e8", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "6812400b0c5cf2cf750754e6", + "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2155", - "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "68010065f81036801d0b2152", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2156", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "68010065f81036801d0b2152", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2157", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "68010065f81036801d0b2152", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2158", - "_tpl": "59e8977386f77415a553c453", - "parentId": "68010065f81036801d0b2152", + "_id": "6812400b0c5cf2cf750754e9", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "6812400b0c5cf2cf750754e6", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2159", - "_tpl": "59e89d0986f77427600d226e", - "parentId": "68010065f81036801d0b2152", + "_id": "6812400b0c5cf2cf750754ea", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "6812400b0c5cf2cf750754e6", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b215a", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "68010065f81036801d0b2152", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5a417d8886f77430d736fb26", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b215e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b215c", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b215d", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b215e", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "60cb597d8f570e28f1480bf5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b216b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2161", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2162", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2161", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2163", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2164", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2163", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2165", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2166", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2165", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2167", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2168", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2167", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2169", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b216a", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2169", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b216b", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b216c", - "_tpl": "59e655cb86f77411dc52a77b", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b216b", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a1a03b4ebcff1c995dc341", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b216d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b216d", - "_tpl": "5a7828548dc32e5a9c28b516" - }, - { - "_id": "68010065f81036801d0b216e", - "_tpl": "5a787f7ac5856700177af660", - "parentId": "68010065f81036801d0b216d", + "_id": "6812400b0c5cf2cf750754eb", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "6812400b0c5cf2cf750754e6", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b216f", - "_tpl": "5a788089c5856700142fdd9c", - "parentId": "68010065f81036801d0b216d", - "slotId": "mod_handguard" + "_id": "6812400b0c5cf2cf750754ec", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "6812400b0c5cf2cf750754eb", + "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2170", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "68010065f81036801d0b216d", - "slotId": "mod_magazine" + "_id": "6812400b0c5cf2cf750754ed", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "6812400b0c5cf2cf750754e6", + "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b2171", - "_tpl": "5a7880d0c5856700142fdd9d", - "parentId": "68010065f81036801d0b216d", - "slotId": "mod_stock" + "_id": "6812400b0c5cf2cf750754ee", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400b0c5cf2cf750754e6", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400b0c5cf2cf750754ef", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400b0c5cf2cf750754e6", + "slotId": "mod_mount_002" } ], - "loyaltyLevel": 1, + "loyaltyLevel": 3, "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "629f03d77ad28b7f7c40ecb0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b217a", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b217a", - "_tpl": "5c0e5edb86f77461f55ed1f7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b217b", - "_tpl": "6571dbd388ead79fcf091d71", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b217c", - "_tpl": "6571dbda88ead79fcf091d75", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b217d", - "_tpl": "6571dbe07c02ae206002502e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b217e", - "_tpl": "6571dbeaee8ec43d520cf89e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b217f", - "_tpl": "6571dbef88ead79fcf091d79", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b2180", - "_tpl": "656f57dc27aed95beb08f628", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2181", - "_tpl": "656fac30c6baea13cd07e10c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b217a", - "slotId": "Back_plate" - } - ] } ], "Fail": [] @@ -51797,12 +51982,12 @@ "id": "597afde186f7741ce2755ee8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2183", + "target": "6812400b0c5cf2cf750754f1", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2183", + "_id": "6812400b0c5cf2cf750754f1", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 170000 @@ -51816,12 +52001,12 @@ "id": "5ebfbfc0b5549c7b5203b580", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2185", + "target": "6812400b0c5cf2cf750754f3", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2185", + "_id": "6812400b0c5cf2cf750754f3", "_tpl": "619cbf7d23893217ec30b689", "upd": { "StackObjectsCount": 1, @@ -51851,4076 +52036,6 @@ "arenaLocations": [], "status": 0 }, - "5a68667486f7742607157d28": { - "QuestName": "Health Care Privacy - Part 4", - "_id": "5a68667486f7742607157d28", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a68667486f7742607157d28 acceptPlayerMessage", - "changeQuestMessageText": "5a68667486f7742607157d28 changeQuestMessageText", - "completePlayerMessage": "5a68667486f7742607157d28 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5a6878e886f7745e65687985", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Health", - "globalQuestCounterId": "", - "value": 4, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5a68780786f7741f977638c2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68665c86f774255929b4c7", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a68667486f7742607157d28 description", - "failMessageText": "5a68667486f7742607157d28 failMessageText", - "declinePlayerMessage": "5a68667486f7742607157d28 declinePlayerMessage", - "name": "5a68667486f7742607157d28 name", - "note": "5a68667486f7742607157d28 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Skill", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a68667486f7742607157d28 startedMessageText", - "successMessageText": "5a68667486f7742607157d28 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6000, - "id": "60c8c4cba0b5c924fc6e9d57", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c4cf1f21c1669a48c335", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 29000, - "id": "5a68872c86f77472c17ca5cf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2187", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2187", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 29000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5a68871286f77430c15bc4c9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b218a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2189", - "_tpl": "590c657e86f77412b013051d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b218a", - "_tpl": "590c657e86f77412b013051d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb71186a2a1958fc522d0c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b218d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b218c", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b218d", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63967028c4a91c5cb76abd81": { - "QuestName": "Trouble in the Big City", - "_id": "63967028c4a91c5cb76abd81", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63967028c4a91c5cb76abd81 acceptPlayerMessage", - "changeQuestMessageText": "63967028c4a91c5cb76abd81 changeQuestMessageText", - "completePlayerMessage": "63967028c4a91c5cb76abd81 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63bd64552803ffbfad0e3e49", - "conditions": [ - { - "id": "63bd64972803ffbfad0e3e4a", - "dynamicLocale": false, - "target": "quest_zone_c16_koll_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63bd64552803ffbfad0e3e48", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639ae7423174277743234bb8", - "conditions": [ - { - "id": "639ae74d6cd47c525121a1d4", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "63bd6a405ba99d34de0f96a0", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "639ae7423174277743234bb7", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 50, - "visibilityConditions": [ - { - "id": "63bd68755ba99d34de0f9698", - "target": "63bd64552803ffbfad0e3e48", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "PlaceBeacon", - "id": "639aea2228d8a21b593a3491", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_keeper10_place", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63bd6881629bfa6e640689dc", - "target": "639ae7423174277743234bb7", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63bd64ba3d34b0e64b0d0a18", - "conditions": [ - { - "id": "63bd651d0973ec761709c257", - "dynamicLocale": false, - "target": "quest_zone_last_flare", - "conditionType": "LaunchFlare" - } - ] - }, - "id": "63bd64ba3d34b0e64b0d0a17", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63bd68a08a9157ec230be9a6", - "target": "639aea2228d8a21b593a3491", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639b002fda859817035a344c", - "conditions": [ - { - "id": "639b00ef20668603de1597cf", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "639b0105dbf1d842d260d7af", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "639b002fda859817035a344b", - "index": 4, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63bd68b15ba99d34de0f9699", - "target": "63bd64ba3d34b0e64b0d0a17", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "639afec46cd47c525121a240", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6396701b9113f06a7c3b2379", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 36000, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "63967028c4a91c5cb76abd81 description", - "failMessageText": "63967028c4a91c5cb76abd81 failMessageText", - "declinePlayerMessage": "63967028c4a91c5cb76abd81 declinePlayerMessage", - "name": "63967028c4a91c5cb76abd81 name", - "note": "63967028c4a91c5cb76abd81 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "63967028c4a91c5cb76abd81 startedMessageText", - "successMessageText": "63967028c4a91c5cb76abd81 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.05, - "id": "63a6ced40aa9fb29da61c532", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a23594d6d4651e53602b04", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b218f", - "unknown": true, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b218f", - "_tpl": "6389c85357baa773a825b356", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "658066546b98154f4930110f", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2190", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2190", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2191", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "68010065f81036801d0b2190", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2192", - "_tpl": "65293c38fc460e50a509cb25", - "parentId": "68010065f81036801d0b2190", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2193", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "68010065f81036801d0b2190", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2194", - "_tpl": "6567e751a715f85433025998", - "parentId": "68010065f81036801d0b2193", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2195", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "68010065f81036801d0b2194", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2196", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "68010065f81036801d0b2193", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2197", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "68010065f81036801d0b2196", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2198", - "_tpl": "652911e650dc782999054b9d", - "parentId": "68010065f81036801d0b2197", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2199", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "68010065f81036801d0b2196", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b219a", - "_tpl": "652910ef50dc782999054b97", - "parentId": "68010065f81036801d0b2193", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b219b", - "_tpl": "6529348224cbe3c74a05e5c4", - "parentId": "68010065f81036801d0b2190", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b219c", - "_tpl": "6529366450dc782999054ba0", - "parentId": "68010065f81036801d0b219b", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b219d", - "_tpl": "6529370c405a5f51dd023db8", - "parentId": "68010065f81036801d0b219c", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b219e", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "68010065f81036801d0b2190", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "66abaaaa6f11600e4e48bac7", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b219f", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b219f", - "_tpl": "65293c7a17e14363030ad308" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "66abaab7ed57696ce626c068", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21a0", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21a0", - "_tpl": "6529243824cbe3c74a05e5c1" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "63a2359ef194393ecf632fa2", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21a1", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b21a1", - "_tpl": "6389c85357baa773a825b356" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "597a0e5786f77426d66c0636": { - "QuestName": "Chemical - Part 3", - "_id": "597a0e5786f77426d66c0636", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "597a0e5786f77426d66c0636 acceptPlayerMessage", - "changeQuestMessageText": "597a0e5786f77426d66c0636 changeQuestMessageText", - "completePlayerMessage": "597a0e5786f77426d66c0636 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "597a15b386f774799e5cd152", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593a87af86f774122f54a951" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "597a15c386f77405ba6887d2", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593a87af86f774122f54a951" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57795786f774411f6c2fc1", - "target": "597a15b386f774799e5cd152", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a925b786f7747c3f075aaa", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 11, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59819f3186f77455b707f9c1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a0b2986f77426d66c0633", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "597a0e5786f77426d66c0636 description", - "failMessageText": "597a0e5786f77426d66c0636 failMessageText", - "declinePlayerMessage": "597a0e5786f77426d66c0636 declinePlayerMessage", - "name": "597a0e5786f77426d66c0636 name", - "note": "597a0e5786f77426d66c0636 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/594d247486f77426ad2fd20b.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "597a0e5786f77426d66c0636 startedMessageText", - "successMessageText": "597a0e5786f77426d66c0636 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5400, - "id": "5c94ff1286f774551617862b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8b0739339363e8f0c6add", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 22000, - "id": "60cb5beda7d63f18200a19a7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21a3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21a3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 22000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb5bf8af2e5506c3781d8c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21a5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21a5", - "_tpl": "576fd4ec2459777f0b518431", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cb5c0b179f8541b84691d1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21aa", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21a7", - "_tpl": "5a0c27731526d80618476ac4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21a8", - "_tpl": "5a0c27731526d80618476ac4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21a9", - "_tpl": "5a0c27731526d80618476ac4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21aa", - "_tpl": "5a0c27731526d80618476ac4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": -0.01, - "id": "5d6e71cc86f77410d46d1e43", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5b47825886f77468074618d3": { - "QuestName": "Gunsmith - Part 22", - "_id": "5b47825886f77468074618d3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b47825886f77468074618d3 acceptPlayerMessage", - "changeQuestMessageText": "5b47825886f77468074618d3 changeQuestMessageText", - "completePlayerMessage": "5b47825886f77468074618d3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5b4783ba86f7744d1c353185", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5447a9cd4bdc2dbd208b4567" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 40.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 60, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 270.0, - "compareMethod": "<=" - }, - "weight": { - "value": 5.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "57dbb57e2459774673234890", - "5b2cfa535acfc432ff4db7a0", - "5a1eaa87fcdbcb001865f75e" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0ce686f77429c16dcb63", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 39, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f095b86f7747a2637c3f9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63987301e11ec11ff5504036", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b47825886f77468074618d3 description", - "failMessageText": "5b47825886f77468074618d3 failMessageText", - "declinePlayerMessage": "5b47825886f77468074618d3 declinePlayerMessage", - "name": "5b47825886f77468074618d3 name", - "note": "5b47825886f77468074618d3 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5b4786c586f7744d184ecabd.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b47825886f77468074618d3 startedMessageText", - "successMessageText": "5b47825886f77468074618d3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 28900, - "id": "60cc79ca3e4e974efa345d2c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc79cef09d61072d6d00c3", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1000, - "id": "5b4f0d2786f7742abd44cd44", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21ac", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21ac", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639afaf5ad9d7e3216668f68", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21ae", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21ae", - "_tpl": "5c127c4486f7745625356c13", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "639afae38fe84d33a25a13f6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21b1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21b0", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21b1", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b8f63947780a0bac0dba1b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21b2", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21b2", - "_tpl": "5a1eaa87fcdbcb001865f75e" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "63a19d9a2c2d4f2e48078090", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21b3", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21b3", - "_tpl": "60926df0132d4d12c81fd9df" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59689ee586f7740d1570bbd5": { - "QuestName": "Sanitary Standards - Part 1", - "_id": "59689ee586f7740d1570bbd5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59689ee586f7740d1570bbd5 acceptPlayerMessage", - "changeQuestMessageText": "59689ee586f7740d1570bbd5 changeQuestMessageText", - "completePlayerMessage": "59689ee586f7740d1570bbd5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb6f32986f7746ef55e17a0", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3efd86f77437d351a25b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59689f7586f7740d14064726", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3efd86f77437d351a25b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a9289f86f77477925e27d3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 4, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59b95d9a86f77418424a36cf", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5967733e86f774602332fc84", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59689ee586f7740d1570bbd5 description", - "failMessageText": "59689ee586f7740d1570bbd5 failMessageText", - "declinePlayerMessage": "59689ee586f7740d1570bbd5 declinePlayerMessage", - "name": "59689ee586f7740d1570bbd5 name", - "note": "59689ee586f7740d1570bbd5 note", - "traderId": "54cb57776803fa99248b456e", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/59689f8f86f7740d121082d7.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59689ee586f7740d1570bbd5 startedMessageText", - "successMessageText": "59689ee586f7740d1570bbd5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 2200, - "id": "5c9505bd86f7743285178ad1", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8c20c1f21c1669a48c332", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 14000, - "id": "5a2fb5d886f7747694379ad6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21b5", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21b5", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 14000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "597afde186f7741ce2755ea2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21b8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21b7", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21b8", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac6616a86f77403dd390d29", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21b9", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21b9", - "_tpl": "590c661e86f7741e566b646a" - } - ], - "loyaltyLevel": 1, - "traderId": "54cb57776803fa99248b456e" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5a68663e86f774501078f78a": { - "QuestName": "Health Care Privacy - Part 2", - "_id": "5a68663e86f774501078f78a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a68663e86f774501078f78a acceptPlayerMessage", - "changeQuestMessageText": "5a68663e86f774501078f78a changeQuestMessageText", - "completePlayerMessage": "5a68663e86f774501078f78a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5a68760f86f7743cc55d8709", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a6860d886f77411cd3a9e47" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a68763786f77474c33a40a1", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5a6860d886f77411cd3a9e47" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a68763d86f77441160f378b", - "target": "5a68760f86f7743cc55d8709", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a68764c86f77474c4269f3b", - "conditions": [ - { - "id": "5a68765786f77474c33a40a3", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - }, - { - "id": "5a68765d86f77441160f3790", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5a68764c86f77474c4269f3c", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a68766486f77423391f38c7", - "target": "5a68760f86f7743cc55d8709", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5a6875ce86f77441160f377c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68661a86f774500f48afb0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a68663e86f774501078f78a description", - "failMessageText": "5a68663e86f774501078f78a failMessageText", - "declinePlayerMessage": "5a68663e86f774501078f78a declinePlayerMessage", - "name": "5a68663e86f774501078f78a name", - "note": "5a68663e86f774501078f78a note", - "traderId": "54cb57776803fa99248b456e", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a68663e86f774501078f78a startedMessageText", - "successMessageText": "5a68663e86f774501078f78a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60c8c443a0b5c924fc6e9d56", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c4661f21c1669a48c334", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 24000, - "id": "5a68860886f7745fa74103e8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21bb", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21bb", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 24000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "5a6885dc86f7745fa9319c55", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21c0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21bd", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21be", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21bf", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21c0", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0d0d5086f774363760aef2": { - "QuestName": "Athlete", - "_id": "5c0d0d5086f774363760aef2", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0d0d5086f774363760aef2 acceptPlayerMessage", - "changeQuestMessageText": "5c0d0d5086f774363760aef2 changeQuestMessageText", - "completePlayerMessage": "5c0d0d5086f774363760aef2 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5c0d0dfd86f7747f482a89a5", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "Health", - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1fd5f586f7742b391bf138", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 30, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5c1fd5e586f7743c7b261f79", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68667486f7742607157d28", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c0d0d5086f774363760aef2 description", - "failMessageText": "5c0d0d5086f774363760aef2 failMessageText", - "declinePlayerMessage": "5c0d0d5086f774363760aef2 declinePlayerMessage", - "name": "5c0d0d5086f774363760aef2 name", - "note": "5c0d0d5086f774363760aef2 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Skill", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0d0d5086f774363760aef2 startedMessageText", - "successMessageText": "5c0d0d5086f774363760aef2 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 21900, - "id": "60c8c5862238043a52678650", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c58c1f21c1669a48c336", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 110000, - "id": "5c1929a186f77401b1301f47", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21c2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21c2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 110000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb722865e4664318606ac4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21c4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21c4", - "_tpl": "5aa2b986e5b5b00014028f4c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5c1b782486f77423947f90b0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21c8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21c6", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21c7", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21c8", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5c1b782786f77413193fa4f8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21cc", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21ca", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21cb", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21cc", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5c192a1e86f7742c8b74f785", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21cd", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21cd", - "_tpl": "5c10c8fd86f7743d7d706df3" - } - ], - "loyaltyLevel": 4, - "traderId": "54cb57776803fa99248b456e" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "596b455186f77457cb50eccb": { - "QuestName": "Stirrup", - "_id": "596b455186f77457cb50eccb", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596b455186f77457cb50eccb acceptPlayerMessage", - "changeQuestMessageText": "596b455186f77457cb50eccb changeQuestMessageText", - "completePlayerMessage": "596b455186f77457cb50eccb completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "596b45e786f77457c7006f87", - "conditions": [ - { - "id": "5979e7fe86f774311955e613", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5cadc190ae921500103bb3b6", - "602a9740da11d6478d5a06dc", - "5f36a0e5fbf956000b716b65", - "5abccb7dd8ce87001773e277", - "59f98b4986f7746f546d2cef", - "56e0598dd2720bb5668b45a6", - "5a17f98cfcdbcb0980087290", - "5448bd6b4bdc2dfc2f8b4569", - "5a7ae0c351dfba0017554310", - "5b1fa9b25acfc40018633c01", - "5e81c3cbac2bb513793cdc75", - "576a581d2459771e7b1bc4f1", - "5b3b713c5acfc4330140bd8d", - "56d59856d2720bd8418b456a", - "571a12c42459771f627b58a0", - "5d67abc1a4b93614ec50137f", - "5d3eb3b0a4b93615055e84d2", - "579204f224597773d619e051", - "6193a720f8ee7e52e42109ed", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "620109578d82e67e7911abf2", - "633ec7c2a6918cb895019c6c", - "63088377b5cd696784087147", - "669fa409933e898cce0c2166", - "669fa3f88abd2662d80eee77", - "669fa3d876116c89840b1217", - "669fa39b48fc9f8db6035a0c", - "668fe5a998b5ad715703ddd6" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5c9b5e3f86f7744aab7329b5", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a9250d86f7747aa94283f3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 8, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59a9251186f774787316f80f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "596b36c586f77450d6045ad2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "596b455186f77457cb50eccb description", - "failMessageText": "596b455186f77457cb50eccb failMessageText", - "declinePlayerMessage": "596b455186f77457cb50eccb declinePlayerMessage", - "name": "596b455186f77457cb50eccb name", - "note": "596b455186f77457cb50eccb note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/5979e80986f77437584fb8b2.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "596b455186f77457cb50eccb startedMessageText", - "successMessageText": "596b455186f77457cb50eccb successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5300, - "id": "60c8afb2a0b5c924fc6e9d52", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "60c8afbf83161b326c47110b", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 70000, - "id": "60cb59d2f09d61072d6cf22a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21cf", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21cf", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 70000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5a2e5dc086f77452ee40c4b3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21d1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21d1", - "_tpl": "545cdae64bdc2d39198b4568", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac6676e86f774056634a230", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21d2", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21d2", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b21d3", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "68010065f81036801d0b21d2", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b21d4", - "_tpl": "619f4f8c4c58466fe1228439", - "parentId": "68010065f81036801d0b21d2", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b21d5", - "_tpl": "619f52454c58466fe122843b", - "parentId": "68010065f81036801d0b21d2", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b21d6", - "_tpl": "619f4ab2d25cbd424731fb95", - "parentId": "68010065f81036801d0b21d2", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b21d7", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "68010065f81036801d0b21d2", - "slotId": "mod_tactical" - } - ], - "loyaltyLevel": 2, - "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "value": -0.05, - "id": "60c8afc91f21c1669a48c327", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": -0.02, - "id": "60c8afce9339363e8f0c6ada", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6193850f60b34236ee0483de": { - "QuestName": "Long Road", - "_id": "6193850f60b34236ee0483de", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6193850f60b34236ee0483de acceptPlayerMessage", - "changeQuestMessageText": "6193850f60b34236ee0483de changeQuestMessageText", - "completePlayerMessage": "6193850f60b34236ee0483de completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6193dabd5f64682044705720", - "conditions": [ - { - "id": "6193dad2807b311a785743d7", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "6193db6a9c70d67c3d1d6427", - "dynamicLocale": false, - "zoneIds": [ - "qlight_br_secure_road" - ], - "conditionType": "InZone" - } - ] - }, - "id": "6193dabd5f6468204470571f", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 8, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "61abc61856152b140448e91e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27d2af86f7744e1115b323", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ad520c118c386d912fd9b5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6193850f60b34236ee0483de description", - "failMessageText": "6193850f60b34236ee0483de failMessageText", - "declinePlayerMessage": "6193850f60b34236ee0483de declinePlayerMessage", - "name": "6193850f60b34236ee0483de name", - "note": "6193850f60b34236ee0483de note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab383d3b7a0b53f515c515.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6193850f60b34236ee0483de startedMessageText", - "successMessageText": "6193850f60b34236ee0483de successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15300, - "id": "61abc53e1b7da753125cfe2c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "61ad524026794b532d3dbd27", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 45000, - "id": "61abc52f28f39305480d15d9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21d9", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21d9", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 45000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "61ad5254bea7d64084079bb6", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21da", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21da", - "_tpl": "588892092459774ac91d4b11" - }, - { - "_id": "68010065f81036801d0b21db", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "68010065f81036801d0b21da", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b21dc", - "_tpl": "5888956924597752983e182d", - "parentId": "68010065f81036801d0b21da", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b21dd", - "_tpl": "5888996c24597754281f9419", - "parentId": "68010065f81036801d0b21dc", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b21de", - "_tpl": "5888976c24597754281f93f5", - "parentId": "68010065f81036801d0b21dc", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b21df", - "_tpl": "57c55f172459772d27602381", - "parentId": "68010065f81036801d0b21da", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b21e0", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "68010065f81036801d0b21da", - "slotId": "mod_stock" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5968eb3186f7741dde183a4d": { - "QuestName": "Operation Aquarius - Part 2", - "_id": "5968eb3186f7741dde183a4d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5968eb3186f7741dde183a4d acceptPlayerMessage", - "changeQuestMessageText": "5968eb3186f7741dde183a4d changeQuestMessageText", - "completePlayerMessage": "5968eb3186f7741dde183a4d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5968eb9b86f7741ddb481542", - "conditions": [ - { - "id": "5968eba286f7741ddf17db82", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "59a928f186f7747b375626e3", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "5968eb9b86f7741ddb481543", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a928e886f7747a683e4149", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 6, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59a928e586f7747c407f7ac5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59689fbd86f7740d137ebfc4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5968eb3186f7741dde183a4d description", - "failMessageText": "5968eb3186f7741dde183a4d failMessageText", - "declinePlayerMessage": "5968eb3186f7741dde183a4d declinePlayerMessage", - "name": "5968eb3186f7741dde183a4d name", - "note": "5968eb3186f7741dde183a4d note", - "traderId": "54cb57776803fa99248b456e", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5968ec2986f7741ddf17db83.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5968eb3186f7741dde183a4d startedMessageText", - "successMessageText": "5968eb3186f7741dde183a4d successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 3400, - "id": "5c9505f586f7743285178ad2", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8c29b1f21c1669a48c333", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "60cb675b98b4927060364551", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21e2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21e2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 20000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cb66f5af2e5506c3781db0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21e6", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21e4", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21e5", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21e6", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb670c3e4e974efa345caf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21e8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21e8", - "_tpl": "5af0454c86f7746bf20992e8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac661fc86f774056c780955", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b21e9", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b21e9", - "_tpl": "5751a25924597722c463c472" - } - ], - "loyaltyLevel": 2, - "traderId": "54cb57776803fa99248b456e" - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "629f068b50f43060015c5377", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5979eee086f774311955e614": { - "QuestName": "Golden Swag", - "_id": "5979eee086f774311955e614", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5979eee086f774311955e614 acceptPlayerMessage", - "changeQuestMessageText": "5979eee086f774311955e614 changeQuestMessageText", - "completePlayerMessage": "5979eee086f774311955e614 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5979ef4586f77431307dc513", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5939a00786f7742fe8132936" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5979ef7986f77431307dc514", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "extraction_zone_zibbo", - "target": [ - "5939a00786f7742fe8132936" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a9254086f7747ab1774af3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 8, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59819f1486f774559b21772d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5979ed3886f77431307dc512", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5979eee086f774311955e614 description", - "failMessageText": "5979eee086f774311955e614 failMessageText", - "declinePlayerMessage": "5979eee086f774311955e614 declinePlayerMessage", - "name": "5979eee086f774311955e614 name", - "note": "5979eee086f774311955e614 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5979ef2a86f77431185415c3.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5979eee086f774311955e614 startedMessageText", - "successMessageText": "5979eee086f774311955e614 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "59c4dbae86f77473ed2cc3a5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21eb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21eb", - "_tpl": "5913611c86f77479e0084092", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 4500, - "id": "60c8b02083161b326c47110c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8b029e4d30047b777b319", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 17000, - "id": "5a2e628686f7741d1e5b9016", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21ed", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b21ed", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 17000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb5a8ee3d0247e625da180", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21ee", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21ee", - "_tpl": "60339954d62c9b14ed777c06", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b21ef", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b21f0", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b21f1", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b21f2", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "68010065f81036801d0b21f1", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b21f3", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "68010065f81036801d0b21f2", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b21f4", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "68010065f81036801d0b21f1", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b21f5", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b21f6", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "68010065f81036801d0b21f5", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b21f7", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_charge" - }, - { - "_id": "68010065f81036801d0b21f8", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "68010065f81036801d0b21ee", - "slotId": "mod_tactical_000" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cb5ac07c496e588343a1a8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b21ff", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b21fb", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21fc", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b21fb", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b21fd", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b21fe", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b21fd", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b21ff", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2200", - "_tpl": "5c3df7d588a4501f290594e5", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b21ff", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb5afb7c496e588343a1ab", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2203", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2202", - "_tpl": "5a7ad2e851dfba0016153692", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2203", - "_tpl": "5a7ad2e851dfba0016153692", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac667f686f77403df401d1d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2204", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2204", - "_tpl": "584984812459776a704a82a6" - } - ], - "loyaltyLevel": 1, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "626bdcc3a371ee3a7a3514c5": { - "QuestName": "Stray Dogs", - "_id": "626bdcc3a371ee3a7a3514c5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "626bdcc3a371ee3a7a3514c5 acceptPlayerMessage", - "changeQuestMessageText": "626bdcc3a371ee3a7a3514c5 changeQuestMessageText", - "completePlayerMessage": "626bdcc3a371ee3a7a3514c5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "626c317e05f287031503c7fe", - "conditions": [ - { - "id": "628b8cc33410a5374258f327", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKnight" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "626c317e05f287031503c7fd", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "626c318147ea7f506e5493c8", - "conditions": [ - { - "id": "628b8d0a60162a479662e097", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBigPipe" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "626c318147ea7f506e5493c7", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "626c3183af14a41d9a1f4ea8", - "conditions": [ - { - "id": "628b8d2560162a479662e098", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBirdEye" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "626c3183af14a41d9a1f4ea7", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "62a08749af34e73a266d9258", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2c386f77443e7549029", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "64b67aa58b66a1647d0a4757", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2ee86f77443e35162ea", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "64b67aab7c279021d06569f7", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2e286f77444001e2e48", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "64b677f57c279021d06569f6", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 35, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "626bdcc3a371ee3a7a3514c5 description", - "failMessageText": "626bdcc3a371ee3a7a3514c5 failMessageText", - "declinePlayerMessage": "626bdcc3a371ee3a7a3514c5 declinePlayerMessage", - "name": "626bdcc3a371ee3a7a3514c5 name", - "note": "626bdcc3a371ee3a7a3514c5 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/61abc9240b56a53df32c6865.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "626bdcc3a371ee3a7a3514c5 startedMessageText", - "successMessageText": "626bdcc3a371ee3a7a3514c5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 35000, - "id": "629a2608e8590f3a3d59ea9c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "62b0436755426a3430409ff1", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 230000, - "id": "628b84ba444aae583b55fb4b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2206", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2206", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 230000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64b6797958b5637e2d71a654", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2207", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2207", - "_tpl": "5fc22d7c187fea44d52eda44", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2208", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "68010065f81036801d0b2207", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2209", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "68010065f81036801d0b2207", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b220a", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b2207", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b220b", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "68010065f81036801d0b220a", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b220c", - "_tpl": "5fc278107283c4046c581489", - "parentId": "68010065f81036801d0b2207", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b220d", - "_tpl": "5fc23678ab884124df0cd590", - "parentId": "68010065f81036801d0b220c", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b220e", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "68010065f81036801d0b220d", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b220f", - "_tpl": "5fc2360f900b1d5091531e19", - "parentId": "68010065f81036801d0b220d", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2210", - "_tpl": "5fc235db2770a0045c59c683", - "parentId": "68010065f81036801d0b220c", - "slotId": "mod_handguard" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64b679909c029513997be928", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2213", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2212", - "_tpl": "5fc23426900b1d5091531e15", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2213", - "_tpl": "5fc23426900b1d5091531e15", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64b679a3d5dd0711c53a8155", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2216", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2216", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2217", - "_tpl": "5fc275cf85fd526b824a571a", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2216", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64b679b83e349c7dbd06bd15", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2219", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2219", - "_tpl": "5d235bb686f77443f4331278", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5bc4836986f7740c0152911c": { - "QuestName": "The Tarkov Shooter - Part 6", - "_id": "5bc4836986f7740c0152911c", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc4836986f7740c0152911c acceptPlayerMessage", - "changeQuestMessageText": "5bc4836986f7740c0152911c changeQuestMessageText", - "completePlayerMessage": "5bc4836986f7740c0152911c completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bc483ba86f77415034ba8cf", - "conditions": [ - { - "id": "5bc489ec86f7746b7978fe69", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5bfea6e90db834001b7347f3", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "61f7c9e189e6fb1a5e3ea78d", - "627e14b21713922ded6f2c15" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "marksman" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5bc483ba86f77415034ba8d0", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5bdabf5386f7743e152e867c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5bc4826c86f774106d22d88b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5bc4836986f7740c0152911c description", - "failMessageText": "5bc4836986f7740c0152911c failMessageText", - "declinePlayerMessage": "5bc4836986f7740c0152911c declinePlayerMessage", - "name": "5bc4836986f7740c0152911c name", - "note": "5bc4836986f7740c0152911c note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5bc4836986f7740c0152911c startedMessageText", - "successMessageText": "5bc4836986f7740c0152911c successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13100, - "id": "60cc9cdc65e4664318606b65", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9cdfa7d63f18200a2518", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 85000, - "id": "60cc9cffb2736c24b2118b9f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b221b", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b221b", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 85000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf259a86f7746a45695b05", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b221d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b221d", - "_tpl": "5bbdb870d4351e00367fb67d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc9d1e20a6283a506aeb40", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b221f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b221f", - "_tpl": "5ab8f20c86f7745cdb629fb2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf25a586f7746a464c5682", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2220", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2220", - "_tpl": "5bbdb870d4351e00367fb67d" - } - ], - "loyaltyLevel": 3, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "625d6fff4149f1149b5b12c9": { - "QuestName": "Assessment - Part 2", - "_id": "625d6fff4149f1149b5b12c9", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d6fff4149f1149b5b12c9 acceptPlayerMessage", - "changeQuestMessageText": "625d6fff4149f1149b5b12c9 changeQuestMessageText", - "completePlayerMessage": "625d6fff4149f1149b5b12c9 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "62602852c48e6c62a440fab6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "meh_45_radio_area_mark_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "62602858efebc4442a7b3876", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "meh_45_radio_area_mark_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6260285c1ed3bb5bcc5bd9e8", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "meh_45_radio_area_mark_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "638643e03674202b7d07c9e5", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "meh_45_radio_area_mark_4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6391e28aee79ee703e3012e7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "625d6ffcaa168e51321d69d7", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "625d6fff4149f1149b5b12c9 description", - "failMessageText": "625d6fff4149f1149b5b12c9 failMessageText", - "declinePlayerMessage": "625d6fff4149f1149b5b12c9 declinePlayerMessage", - "name": "625d6fff4149f1149b5b12c9 name", - "note": "625d6fff4149f1149b5b12c9 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "625d6fff4149f1149b5b12c9 startedMessageText", - "successMessageText": "625d6fff4149f1149b5b12c9 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 24200, - "id": "63a5d4f40aa9fb29da61b5ea", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "63a5d4fab7f4570d3a29279f", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64f5deac39e45b527a7c4232": { - "QuestName": "Test Drive - Part 3", - "_id": "64f5deac39e45b527a7c4232", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f5deac39e45b527a7c4232 acceptPlayerMessage", - "changeQuestMessageText": "64f5deac39e45b527a7c4232 changeQuestMessageText", - "completePlayerMessage": "64f5deac39e45b527a7c4232 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64f5deac39e45b527a7c4236", - "conditions": [ - { - "id": "63a5cfc34610fa47416d8efe", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 0, - "weapon": [ - "6499849fc93611967b034949" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [ - [ - "5c0517910db83400232ffee5", - "64c196ad26a15b84aa07132f" - ] - ], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "63b68baaff8292ffc8017ef0", - "dynamicLocale": false, - "target": [ - "Lighthouse" - ], - "conditionType": "Location" - } - ] - }, - "id": "64f5deac39e45b527a7c4235", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f8caa505cb58236609a357", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63a5cf262964a7488f5243ce", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "64f5deac39e45b527a7c4232 description", - "failMessageText": "64f5deac39e45b527a7c4232 failMessageText", - "declinePlayerMessage": "64f5deac39e45b527a7c4232 declinePlayerMessage", - "name": "64f5deac39e45b527a7c4232 name", - "note": "64f5deac39e45b527a7c4232 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64f5deac39e45b527a7c4232 startedMessageText", - "successMessageText": "64f5deac39e45b527a7c4232 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "64f8cba9a9c59f365c4eae26", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2221", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2221", - "_tpl": "6499849fc93611967b034949", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2222", - "_tpl": "649ec107961514b22506b10c", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2223", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2224", - "_tpl": "649ec127c93611967b034957", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2225", - "_tpl": "64c196ad26a15b84aa07132f", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2226", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2227", - "_tpl": "5c0517910db83400232ffee5", - "parentId": "68010065f81036801d0b2226", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2228", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2229", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "68010065f81036801d0b2221", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b222a", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b2229", - "slotId": "mod_stock" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 35300, - "id": "64f5deac39e45b527a7c4238", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "64f5deac39e45b527a7c423e", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 400000, - "id": "64f5deac39e45b527a7c4239", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b222c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b222c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 400000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64f8cb1bb4918f39d363e400", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b222d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b222d", - "_tpl": "5beed0f50db834001c062b12", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b222e", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "68010065f81036801d0b222d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b222f", - "_tpl": "5beec91a0db834001961942d", - "parentId": "68010065f81036801d0b222d", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2230", - "_tpl": "5beec9450db83400970084fd", - "parentId": "68010065f81036801d0b222f", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2231", - "_tpl": "5bf3f59f0db834001a6fa060", - "parentId": "68010065f81036801d0b2230", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2232", - "_tpl": "5beec8b20db834001961942a", - "parentId": "68010065f81036801d0b222d", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b2233", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b2232", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2234", - "_tpl": "5beec3e30db8340019619424", - "parentId": "68010065f81036801d0b222d", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2235", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2234", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2236", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2234", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2237", - "_tpl": "5beec1bd0db834001e6006f3", - "parentId": "68010065f81036801d0b222d", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2238", - "_tpl": "5beec3420db834001b095429", - "parentId": "68010065f81036801d0b2237", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "64f8cb26b997eb4f42756176", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b223d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b223a", - "_tpl": "55d482194bdc2d1d4e8b456b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b223b", - "_tpl": "55d482194bdc2d1d4e8b456b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b223c", - "_tpl": "55d482194bdc2d1d4e8b456b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b223d", - "_tpl": "55d482194bdc2d1d4e8b456b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 8, - "id": "64f8cb477e981f7f0110d742", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b224e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2240", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2241", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2240", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2242", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2243", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2242", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2244", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2245", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2244", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2246", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2247", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2246", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2248", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2249", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2248", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b224a", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b224b", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b224a", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b224c", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b224d", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b224c", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b224e", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b224f", - "_tpl": "61962b617c6c7b169525f168", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b224e", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5bc4776586f774512d07cf05": { "QuestName": "The Tarkov Shooter - Part 1", "_id": "5bc4776586f774512d07cf05", @@ -56268,12 +52383,12 @@ "id": "5bcf216586f7746a45695a6f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2251", + "target": "6812400b0c5cf2cf750754f5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2251", + "_id": "6812400b0c5cf2cf750754f5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 50000 @@ -56287,12 +52402,12 @@ "id": "5bcf2cde86f77401c82fba55", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2254", + "target": "6812400b0c5cf2cf750754f8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2253", + "_id": "6812400b0c5cf2cf750754f7", "_tpl": "5b3f7c1c5acfc40dc5296b1d", "upd": { "StackObjectsCount": 1, @@ -56300,7 +52415,7 @@ } }, { - "_id": "68010065f81036801d0b2254", + "_id": "6812400b0c5cf2cf750754f8", "_tpl": "5b3f7c1c5acfc40dc5296b1d", "upd": { "StackObjectsCount": 1, @@ -56315,12 +52430,12 @@ "id": "5bcf2d4886f774723055e998", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2257", + "target": "6812400b0c5cf2cf750754fb", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2256", + "_id": "6812400b0c5cf2cf750754fa", "_tpl": "5b3f7c005acfc4704b4a1de8", "upd": { "StackObjectsCount": 1, @@ -56328,7 +52443,7 @@ } }, { - "_id": "68010065f81036801d0b2257", + "_id": "6812400b0c5cf2cf750754fb", "_tpl": "5b3f7c005acfc4704b4a1de8", "upd": { "StackObjectsCount": 1, @@ -56343,12 +52458,12 @@ "id": "5bd7018286f77410f65dc659", "type": "Item", "index": 0, - "target": "68010065f81036801d0b225a", + "target": "6812400b0c5cf2cf750754fe", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2259", + "_id": "6812400b0c5cf2cf750754fd", "_tpl": "5b3f7bf05acfc433000ecf6b", "upd": { "StackObjectsCount": 1, @@ -56356,7 +52471,7 @@ } }, { - "_id": "68010065f81036801d0b225a", + "_id": "6812400b0c5cf2cf750754fe", "_tpl": "5b3f7bf05acfc433000ecf6b", "upd": { "StackObjectsCount": 1, @@ -56376,25 +52491,853 @@ "arenaLocations": [], "status": 0 }, - "5bc4893c86f774626f5ebf3e": { - "QuestName": "The Tarkov Shooter - Part 8", - "_id": "5bc4893c86f774626f5ebf3e", + "6179ad56c760af5ad2053587": { + "QuestName": "Seaside Vacation", + "_id": "6179ad56c760af5ad2053587", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc4893c86f774626f5ebf3e acceptPlayerMessage", - "changeQuestMessageText": "5bc4893c86f774626f5ebf3e changeQuestMessageText", - "completePlayerMessage": "5bc4893c86f774626f5ebf3e completePlayerMessage", + "acceptPlayerMessage": "6179ad56c760af5ad2053587 acceptPlayerMessage", + "changeQuestMessageText": "6179ad56c760af5ad2053587 changeQuestMessageText", + "completePlayerMessage": "6179ad56c760af5ad2053587 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "617bf2a6f8e6c97ec70878b7", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "619252352be33f26043400a7" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "617bf29a52e86c73d372a917", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "619252352be33f26043400a7" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6194eb1dd5f0ef0ca76126b4", + "target": "617bf2a6f8e6c97ec70878b7", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61ae0db440869119390a7bcc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "60896e28e4a85c72ef3fa301", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61ae0dd4cfead502c8012885", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 17, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179ad56c760af5ad2053587 description", + "failMessageText": "6179ad56c760af5ad2053587 failMessageText", + "declinePlayerMessage": "6179ad56c760af5ad2053587 declinePlayerMessage", + "name": "6179ad56c760af5ad2053587 name", + "note": "6179ad56c760af5ad2053587 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab4ce156152b140448cf95.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179ad56c760af5ad2053587 startedMessageText", + "successMessageText": "6179ad56c760af5ad2053587 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8000, + "id": "617bf2b3d93d977d24520528", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ae0e2f3979ec0a2204593a", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "619042948cc66c469a0a101a", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075500", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075500", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "61ae0e4876cf5f6b10309878", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075501", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075501", + "_tpl": "5af0454c86f7746bf20992e8" + } + ], + "loyaltyLevel": 3, + "traderId": "54cb57776803fa99248b456e" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "596a218586f77420d232807c": { + "QuestName": "Car Repair", + "_id": "596a218586f77420d232807c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "596a218586f77420d232807c acceptPlayerMessage", + "changeQuestMessageText": "596a218586f77420d232807c changeQuestMessageText", + "completePlayerMessage": "596a218586f77420d232807c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "596b46d886f77457ca186189", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5733279d245977289b77ec24" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "596b46ec86f77457c7006f89", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3c0a86f774385a33c450" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 8, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "596b470c86f77457ca18618a", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5733279d245977289b77ec24" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "596b472686f77457c7006f8a", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3c0a86f774385a33c450" + ], + "globalQuestCounterId": "", + "value": 8, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5979e7a386f7743ec214c7a3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5969f9e986f7741dde183a50", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "596a218586f77420d232807c description", + "failMessageText": "596a218586f77420d232807c failMessageText", + "declinePlayerMessage": "596a218586f77420d232807c declinePlayerMessage", + "name": "596a218586f77420d232807c name", + "note": "596a218586f77420d232807c note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/5979d3f986f7746d08051ce0.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "596a218586f77420d232807c startedMessageText", + "successMessageText": "596a218586f77420d232807c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6900, + "id": "60c8c3ca919c14709f49739d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c3ce9339363e8f0c6ae5", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1500, + "id": "5a2fee9486f7745c4236d2e2", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075503", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075503", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb6eccaf2e5506c3781dbe", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075505", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075505", + "_tpl": "590c657e86f77412b013051d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ec19ea3c367fc6781104623", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075507", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075507", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb6f23f09d61072d6cfbc7", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075509", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075509", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "626bdcc3a371ee3a7a3514c5": { + "QuestName": "Stray Dogs", + "_id": "626bdcc3a371ee3a7a3514c5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "626bdcc3a371ee3a7a3514c5 acceptPlayerMessage", + "changeQuestMessageText": "626bdcc3a371ee3a7a3514c5 changeQuestMessageText", + "completePlayerMessage": "626bdcc3a371ee3a7a3514c5 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5bc48aed86f77452c947ce66", + "id": "626c317e05f287031503c7fe", "conditions": [ { - "id": "5bc84a7b86f77466d6051e37", + "id": "628b8cc33410a5374258f327", "dynamicLocale": false, - "target": "AnyPmc", + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKnight" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "626c317e05f287031503c7fd", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "626c318147ea7f506e5493c8", + "conditions": [ + { + "id": "628b8d0a60162a479662e097", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBigPipe" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "626c318147ea7f506e5493c7", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "626c3183af14a41d9a1f4ea8", + "conditions": [ + { + "id": "628b8d2560162a479662e098", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBirdEye" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "626c3183af14a41d9a1f4ea7", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "62a08749af34e73a266d9258", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2c386f77443e7549029", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "64b67aa58b66a1647d0a4757", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2ee86f77443e35162ea", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "64b67aab7c279021d06569f7", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2e286f77444001e2e48", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "64b677f57c279021d06569f6", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 35, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "626bdcc3a371ee3a7a3514c5 description", + "failMessageText": "626bdcc3a371ee3a7a3514c5 failMessageText", + "declinePlayerMessage": "626bdcc3a371ee3a7a3514c5 declinePlayerMessage", + "name": "626bdcc3a371ee3a7a3514c5 name", + "note": "626bdcc3a371ee3a7a3514c5 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/61abc9240b56a53df32c6865.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "626bdcc3a371ee3a7a3514c5 startedMessageText", + "successMessageText": "626bdcc3a371ee3a7a3514c5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 35000, + "id": "629a2608e8590f3a3d59ea9c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "62b0436755426a3430409ff1", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 230000, + "id": "628b84ba444aae583b55fb4b", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507550b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400b0c5cf2cf7507550b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 230000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b6797958b5637e2d71a654", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507550c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507550c", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400b0c5cf2cf7507550d", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "6812400b0c5cf2cf7507550c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf7507550e", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "6812400b0c5cf2cf7507550c", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507550f", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400b0c5cf2cf7507550c", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400b0c5cf2cf75075510", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "6812400b0c5cf2cf7507550f", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400b0c5cf2cf75075511", + "_tpl": "5fc278107283c4046c581489", + "parentId": "6812400b0c5cf2cf7507550c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf75075512", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "6812400b0c5cf2cf75075511", + "slotId": "mod_barrel" + }, + { + "_id": "6812400b0c5cf2cf75075513", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "6812400b0c5cf2cf75075512", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf75075514", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "6812400b0c5cf2cf75075512", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075515", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "6812400b0c5cf2cf75075511", + "slotId": "mod_handguard" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64b679909c029513997be928", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075518", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075517", + "_tpl": "5fc23426900b1d5091531e15", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf75075518", + "_tpl": "5fc23426900b1d5091531e15", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b679a3d5dd0711c53a8155", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507551b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507551b", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400b0c5cf2cf7507551c", + "_tpl": "5fc275cf85fd526b824a571a", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400b0c5cf2cf7507551b", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b679b83e349c7dbd06bd15", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf7507551e", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf7507551e", + "_tpl": "5d235bb686f77443f4331278", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5bc4836986f7740c0152911c": { + "QuestName": "The Tarkov Shooter - Part 6", + "_id": "5bc4836986f7740c0152911c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5bc4836986f7740c0152911c acceptPlayerMessage", + "changeQuestMessageText": "5bc4836986f7740c0152911c changeQuestMessageText", + "completePlayerMessage": "5bc4836986f7740c0152911c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5bc483ba86f77415034ba8cf", + "conditions": [ + { + "id": "5bc489ec86f7746b7978fe69", + "dynamicLocale": false, + "target": "Savage", "compareMethod": ">=", "value": 1, "weapon": [ @@ -56406,8 +53349,7 @@ "5de652c31b7e3716273428be", "5df24cf80dee1b22f862e9bc", "61f7c9e189e6fb1a5e3ea78d", - "627e14b21713922ded6f2c15", - "673cab3e03c6a20581028bc1" + "627e14b21713922ded6f2c15" ], "distance": { "value": 0, @@ -56418,10 +53360,10 @@ "enemyEquipmentInclusive": [], "enemyEquipmentExclusive": [], "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" + "savageRole": [ + "marksman" ], + "bodyPart": [], "daytime": { "from": 0, "to": 0 @@ -56432,7 +53374,7 @@ } ] }, - "id": "5bc48aed86f77452c947ce67", + "id": "5bc483ba86f77415034ba8d0", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -56440,7 +53382,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 3, + "value": 5, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -56449,11 +53391,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "5bdabf7186f7743e152e867d", + "id": "5bdabf5386f7743e152e867c", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5bc4856986f77454c317bea7", + "target": "5bc4826c86f774106d22d88b", "status": [ 4 ], @@ -56463,70 +53405,38 @@ "visibilityConditions": [] } ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64b6a5a525251516d7685429", - "conditions": [ - { - "id": "64b6a5b1d5887c2ce956115b", - "dynamicLocale": false, - "status": [ - "Killed", - "MissingInAction", - "Left" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "64b6a5a525251516d7685428", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] + "Fail": [] }, - "description": "5bc4893c86f774626f5ebf3e description", - "failMessageText": "5bc4893c86f774626f5ebf3e failMessageText", - "declinePlayerMessage": "5bc4893c86f774626f5ebf3e declinePlayerMessage", - "name": "5bc4893c86f774626f5ebf3e name", - "note": "5bc4893c86f774626f5ebf3e note", + "description": "5bc4836986f7740c0152911c description", + "failMessageText": "5bc4836986f7740c0152911c failMessageText", + "declinePlayerMessage": "5bc4836986f7740c0152911c declinePlayerMessage", + "name": "5bc4836986f7740c0152911c name", + "note": "5bc4836986f7740c0152911c note", "traderId": "5c0647fdd443bc2504c2d371", "location": "any", "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", "type": "Elimination", "isKey": false, - "restartable": true, + "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5bc4893c86f774626f5ebf3e startedMessageText", - "successMessageText": "5bc4893c86f774626f5ebf3e successMessageText", + "startedMessageText": "5bc4836986f7740c0152911c startedMessageText", + "successMessageText": "5bc4836986f7740c0152911c successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 30000, - "id": "60cc9dbb1bdece56c249cbe3", + "value": 13100, + "id": "60cc9cdc65e4664318606b65", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "60cc9dbef81cc57f471718a3", + "value": 0.02, + "id": "60cc9cdfa7d63f18200a2518", "type": "TraderStanding", "index": 0, "target": "5c0647fdd443bc2504c2d371", @@ -56534,154 +53444,36 @@ }, { "availableInGameEditions": [], - "value": 400000, - "id": "5bcf265486f774378e266a36", + "value": 85000, + "id": "60cc9cffb2736c24b2118b9f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b225c", + "target": "6812400b0c5cf2cf75075520", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b225c", + "_id": "6812400b0c5cf2cf75075520", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 400000 + "StackObjectsCount": 85000 } } ] }, - { - "availableInGameEditions": [], - "id": "5bcf269286f7746a472ad9f7", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b225d", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b225d", - "_tpl": "5bae13bad4351e00320204af" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "5bcf268686f7746a45695b0a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b225e", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b225e", - "_tpl": "5bae13ded4351e44f824bf38" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "64b6a4ea58b5637e2d71a65c", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b225f", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b225f", - "_tpl": "618ba27d9008e4636a67f61d" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - }, { "availableInGameEditions": [], "value": 1, - "id": "60cc9e0820a6283a506aeb42", + "id": "5bcf259a86f7746a45695b05", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2260", - "unknown": true, + "target": "6812400b0c5cf2cf75075522", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2260", - "_tpl": "5ae08f0a5acfc408fb1398a1", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2261", - "_tpl": "5bae13ded4351e44f824bf38", - "parentId": "68010065f81036801d0b2260", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2262", - "_tpl": "5bae13bad4351e00320204af", - "parentId": "68010065f81036801d0b2260", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2263", - "_tpl": "5ae09bff5acfc4001562219d", - "parentId": "68010065f81036801d0b2260", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2264", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "68010065f81036801d0b2263", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b2265", - "_tpl": "5bbdb811d4351e45020113c7", - "parentId": "68010065f81036801d0b2263", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2266", - "_tpl": "5aa66a9be5b5b0214e506e89", - "parentId": "68010065f81036801d0b2265", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2267", - "_tpl": "5aa66be6e5b5b0214e506e97", - "parentId": "68010065f81036801d0b2266", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2268", - "_tpl": "5b86a0e586f7745b600ccb23", - "parentId": "68010065f81036801d0b2263", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64b6a3448b66a1647d0a4758", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b226a", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b226a", - "_tpl": "62a0a16d0b9d3c46de5b6e97", + "_id": "6812400b0c5cf2cf75075522", + "_tpl": "5bbdb870d4351e00367fb67d", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -56691,11 +53483,173 @@ }, { "availableInGameEditions": [], - "value": 300, - "id": "629f0fae7ad28b7f7c40ed06", - "type": "Skill", + "value": 1, + "id": "60cc9d1e20a6283a506aeb40", + "type": "Item", "index": 0, - "target": "Sniper", + "target": "6812400b0c5cf2cf75075524", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075524", + "_tpl": "5ab8f20c86f7745cdb629fb2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf25a586f7746a464c5682", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400b0c5cf2cf75075525", + "unknown": false, + "items": [ + { + "_id": "6812400b0c5cf2cf75075525", + "_tpl": "5bbdb870d4351e00367fb67d" + } + ], + "loyaltyLevel": 3, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "625d6fff4149f1149b5b12c9": { + "QuestName": "Assessment - Part 2", + "_id": "625d6fff4149f1149b5b12c9", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "625d6fff4149f1149b5b12c9 acceptPlayerMessage", + "changeQuestMessageText": "625d6fff4149f1149b5b12c9 changeQuestMessageText", + "completePlayerMessage": "625d6fff4149f1149b5b12c9 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "62602852c48e6c62a440fab6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "meh_45_radio_area_mark_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "62602858efebc4442a7b3876", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "meh_45_radio_area_mark_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6260285c1ed3bb5bcc5bd9e8", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "meh_45_radio_area_mark_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "638643e03674202b7d07c9e5", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "meh_45_radio_area_mark_4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6391e28aee79ee703e3012e7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "625d6ffcaa168e51321d69d7", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "625d6fff4149f1149b5b12c9 description", + "failMessageText": "625d6fff4149f1149b5b12c9 failMessageText", + "declinePlayerMessage": "625d6fff4149f1149b5b12c9 declinePlayerMessage", + "name": "625d6fff4149f1149b5b12c9 name", + "note": "625d6fff4149f1149b5b12c9 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "625d6fff4149f1149b5b12c9 startedMessageText", + "successMessageText": "625d6fff4149f1149b5b12c9 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 24200, + "id": "63a5d4f40aa9fb29da61b5ea", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "63a5d4fab7f4570d3a29279f", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false } ], @@ -56709,53 +53663,86 @@ "arenaLocations": [], "status": 0 }, - "5a27d2af86f7744e1115b323": { - "QuestName": "Friend From the West - Part 2", - "_id": "5a27d2af86f7744e1115b323", + "64f5deac39e45b527a7c4232": { + "QuestName": "Test Drive - Part 3", + "_id": "64f5deac39e45b527a7c4232", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27d2af86f7744e1115b323 acceptPlayerMessage", - "changeQuestMessageText": "5a27d2af86f7744e1115b323 changeQuestMessageText", - "completePlayerMessage": "5a27d2af86f7744e1115b323 completePlayerMessage", + "acceptPlayerMessage": "64f5deac39e45b527a7c4232 acceptPlayerMessage", + "changeQuestMessageText": "64f5deac39e45b527a7c4232 changeQuestMessageText", + "completePlayerMessage": "64f5deac39e45b527a7c4232 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5a27d34586f7744e1115b327", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64f5deac39e45b527a7c4236", + "conditions": [ + { + "id": "63a5cfc34610fa47416d8efe", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "6499849fc93611967b034949" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [ + [ + "5c0517910db83400232ffee5", + "64c196ad26a15b84aa07132f" + ] + ], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "63b68baaff8292ffc8017ef0", + "dynamicLocale": false, + "target": [ + "Lighthouse" + ], + "conditionType": "Location" + } + ] + }, + "id": "64f5deac39e45b527a7c4235", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5696686a4bdc2da3298b456a" - ], + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 5000, - "visibilityConditions": [] + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a718086f7745a9d6892d9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 9, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5a27d30186f7742d94339bee", + "id": "64f8caa505cb58236609a357", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5a27c99a86f7747d2c6bdd8e", + "target": "63a5cf262964a7488f5243ce", "status": [ 4 ], @@ -56767,53 +53754,153 @@ ], "Fail": [] }, - "description": "5a27d2af86f7744e1115b323 description", - "failMessageText": "5a27d2af86f7744e1115b323 failMessageText", - "declinePlayerMessage": "5a27d2af86f7744e1115b323 declinePlayerMessage", - "name": "5a27d2af86f7744e1115b323 name", - "note": "5a27d2af86f7744e1115b323 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "Merchant", + "description": "64f5deac39e45b527a7c4232 description", + "failMessageText": "64f5deac39e45b527a7c4232 failMessageText", + "declinePlayerMessage": "64f5deac39e45b527a7c4232 declinePlayerMessage", + "name": "64f5deac39e45b527a7c4232 name", + "note": "64f5deac39e45b527a7c4232 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5a27d2af86f7744e1115b323 startedMessageText", - "successMessageText": "5a27d2af86f7744e1115b323 successMessageText", + "startedMessageText": "64f5deac39e45b527a7c4232 startedMessageText", + "successMessageText": "64f5deac39e45b527a7c4232 successMessageText", "rewards": { - "Started": [], + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "64f8cba9a9c59f365c4eae26", + "type": "Item", + "index": 0, + "target": "6812400b0c5cf2cf75075526", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400b0c5cf2cf75075526", + "_tpl": "6499849fc93611967b034949", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400b0c5cf2cf75075527", + "_tpl": "649ec107961514b22506b10c", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400b0c5cf2cf75075528", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400b0c5cf2cf75075529", + "_tpl": "649ec127c93611967b034957", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_handguard" + }, + { + "_id": "6812400b0c5cf2cf7507552a", + "_tpl": "64c196ad26a15b84aa07132f", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400b0c5cf2cf7507552b", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_reciever" + }, + { + "_id": "6812400b0c5cf2cf7507552c", + "_tpl": "5c0517910db83400232ffee5", + "parentId": "6812400b0c5cf2cf7507552b", + "slotId": "mod_scope" + }, + { + "_id": "6812400b0c5cf2cf7507552d", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_magazine" + }, + { + "_id": "6812400b0c5cf2cf7507552e", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "6812400b0c5cf2cf75075526", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400b0c5cf2cf7507552f", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "6812400b0c5cf2cf7507552e", + "slotId": "mod_stock" + } + ] + } + ], "Success": [ { "availableInGameEditions": [], - "value": 10000, - "id": "60c8bf6a80b2027f403dd99d", + "value": 35300, + "id": "64f5deac39e45b527a7c4238", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.05, - "id": "60c8bf7083161b326c471114", + "value": 0.02, + "id": "64f5deac39e45b527a7c423e", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "id": "62a64edda9a0ea77981b54ff", - "type": "AssortmentUnlock", + "value": 400000, + "id": "64f5deac39e45b527a7c4239", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b226b", - "unknown": true, + "target": "6812400c0c5cf2cf75075531", + "unknown": false, + "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b226b", - "_tpl": "5fb64bc92b1b027b1f50bcf2", + "_id": "6812400c0c5cf2cf75075531", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { + "StackObjectsCount": 400000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64f8cb1bb4918f39d363e400", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075532", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075532", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "StackObjectsCount": 1, "FireMode": { "FireMode": "single" }, @@ -56823,58 +53910,472 @@ } }, { - "_id": "68010065f81036801d0b226c", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "68010065f81036801d0b226b", - "slotId": "mod_magazine" + "_id": "6812400c0c5cf2cf75075533", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "6812400c0c5cf2cf75075532", + "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b226d", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "68010065f81036801d0b226b", - "slotId": "mod_sight_front" + "_id": "6812400c0c5cf2cf75075534", + "_tpl": "5beec91a0db834001961942d", + "parentId": "6812400c0c5cf2cf75075532", + "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b226e", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "68010065f81036801d0b226b", + "_id": "6812400c0c5cf2cf75075535", + "_tpl": "5beec9450db83400970084fd", + "parentId": "6812400c0c5cf2cf75075534", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b226f", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "68010065f81036801d0b226b", + "_id": "6812400c0c5cf2cf75075536", + "_tpl": "5bf3f59f0db834001a6fa060", + "parentId": "6812400c0c5cf2cf75075535", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075537", + "_tpl": "5beec8b20db834001961942a", + "parentId": "6812400c0c5cf2cf75075532", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf75075538", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "6812400c0c5cf2cf75075537", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2270", - "_tpl": "5fb65363d1409e5ca04b54f5", - "parentId": "68010065f81036801d0b226b", - "slotId": "mod_barrel" + "_id": "6812400c0c5cf2cf75075539", + "_tpl": "5beec3e30db8340019619424", + "parentId": "6812400c0c5cf2cf75075532", + "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2271", - "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "68010065f81036801d0b2270", - "slotId": "mod_muzzle" + "_id": "6812400c0c5cf2cf7507553a", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6812400c0c5cf2cf75075539", + "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2272", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "68010065f81036801d0b226b", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b2273", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b226b", + "_id": "6812400c0c5cf2cf7507553b", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6812400c0c5cf2cf75075539", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2274", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b226b", - "slotId": "mod_mount_002" + "_id": "6812400c0c5cf2cf7507553c", + "_tpl": "5beec1bd0db834001e6006f3", + "parentId": "6812400c0c5cf2cf75075532", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507553d", + "_tpl": "5beec3420db834001b095429", + "parentId": "6812400c0c5cf2cf7507553c", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "64f8cb26b997eb4f42756176", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075542", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507553f", + "_tpl": "55d482194bdc2d1d4e8b456b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075540", + "_tpl": "55d482194bdc2d1d4e8b456b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075541", + "_tpl": "55d482194bdc2d1d4e8b456b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075542", + "_tpl": "55d482194bdc2d1d4e8b456b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 8, + "id": "64f8cb477e981f7f0110d742", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075553", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075545", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075546", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075545", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075547", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075548", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075547", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075549", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507554a", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075549", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507554b", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507554c", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf7507554b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507554d", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507554e", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf7507554d", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507554f", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075550", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf7507554f", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075551", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075552", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075551", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075553", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075554", + "_tpl": "61962b617c6c7b169525f168", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075553", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6193850f60b34236ee0483de": { + "QuestName": "Long Road", + "_id": "6193850f60b34236ee0483de", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6193850f60b34236ee0483de acceptPlayerMessage", + "changeQuestMessageText": "6193850f60b34236ee0483de changeQuestMessageText", + "completePlayerMessage": "6193850f60b34236ee0483de completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6193dabd5f64682044705720", + "conditions": [ + { + "id": "6193dad2807b311a785743d7", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "6193db6a9c70d67c3d1d6427", + "dynamicLocale": false, + "zoneIds": [ + "qlight_br_secure_road" + ], + "conditionType": "InZone" + } + ] + }, + "id": "6193dabd5f6468204470571f", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 8, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61abc61856152b140448e91e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27d2af86f7744e1115b323", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61ad520c118c386d912fd9b5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6193850f60b34236ee0483de description", + "failMessageText": "6193850f60b34236ee0483de failMessageText", + "declinePlayerMessage": "6193850f60b34236ee0483de declinePlayerMessage", + "name": "6193850f60b34236ee0483de name", + "note": "6193850f60b34236ee0483de note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab383d3b7a0b53f515c515.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6193850f60b34236ee0483de startedMessageText", + "successMessageText": "6193850f60b34236ee0483de successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15300, + "id": "61abc53e1b7da753125cfe2c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ad524026794b532d3dbd27", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 45000, + "id": "61abc52f28f39305480d15d9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075556", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075556", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 45000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "61ad5254bea7d64084079bb6", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075557", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075557", + "_tpl": "588892092459774ac91d4b11" + }, + { + "_id": "6812400c0c5cf2cf75075558", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6812400c0c5cf2cf75075557", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075559", + "_tpl": "5888956924597752983e182d", + "parentId": "6812400c0c5cf2cf75075557", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507555a", + "_tpl": "5888996c24597754281f9419", + "parentId": "6812400c0c5cf2cf75075559", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507555b", + "_tpl": "5888976c24597754281f93f5", + "parentId": "6812400c0c5cf2cf75075559", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf7507555c", + "_tpl": "57c55f172459772d27602381", + "parentId": "6812400c0c5cf2cf75075557", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf7507555d", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "6812400c0c5cf2cf75075557", + "slotId": "mod_stock" } ], "loyaltyLevel": 3, @@ -56891,59 +54392,90 @@ "arenaLocations": [], "status": 0 }, - "596a101f86f7741ddb481582": { - "QuestName": "Kind of Sabotage", - "_id": "596a101f86f7741ddb481582", + "5968eb3186f7741dde183a4d": { + "QuestName": "Operation Aquarius - Part 2", + "_id": "5968eb3186f7741dde183a4d", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596a101f86f7741ddb481582 acceptPlayerMessage", - "changeQuestMessageText": "596a101f86f7741ddb481582 changeQuestMessageText", - "completePlayerMessage": "596a101f86f7741ddb481582 completePlayerMessage", + "acceptPlayerMessage": "5968eb3186f7741dde183a4d acceptPlayerMessage", + "changeQuestMessageText": "5968eb3186f7741dde183a4d changeQuestMessageText", + "completePlayerMessage": "5968eb3186f7741dde183a4d completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596a10d886f7741ddf17dbf0", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5968eb9b86f7741ddb481542", + "conditions": [ + { + "id": "5968eba286f7741ddf17db82", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "59a928f186f7747b375626e3", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "5968eb9b86f7741ddb481543", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5938878586f7741b797c562f" - ], + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "596a10af33f77420d232804c", + "conditionType": "Level", + "id": "59a928e886f7747a683e4149", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "596a0e1686f7741ddf17dbee", - "status": [ - 2 - ], "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, + "value": 6, + "compareMethod": ">=", "visibilityConditions": [] - } - ], - "Fail": [ + }, { "conditionType": "Quest", - "id": "596a117386f7741ddf17dbf1", + "id": "59a928e586f7747c407f7ac5", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "596a0e1686f7741ddf17dbee", + "target": "59689fbd86f7740d137ebfc4", "status": [ 4 ], @@ -56952,30 +54484,277 @@ "dispersion": 0, "visibilityConditions": [] } - ] + ], + "Fail": [] }, - "description": "596a101f86f7741ddb481582 description", - "failMessageText": "596a101f86f7741ddb481582 failMessageText", - "declinePlayerMessage": "596a101f86f7741ddb481582 declinePlayerMessage", - "name": "596a101f86f7741ddb481582 name", - "note": "596a101f86f7741ddb481582 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "PickUp", + "description": "5968eb3186f7741dde183a4d description", + "failMessageText": "5968eb3186f7741dde183a4d failMessageText", + "declinePlayerMessage": "5968eb3186f7741dde183a4d declinePlayerMessage", + "name": "5968eb3186f7741dde183a4d name", + "note": "5968eb3186f7741dde183a4d note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5968ec2986f7741ddf17db83.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "596a101f86f7741ddb481582 startedMessageText", - "successMessageText": "596a101f86f7741ddb481582 successMessageText", + "startedMessageText": "5968eb3186f7741dde183a4d startedMessageText", + "successMessageText": "5968eb3186f7741dde183a4d successMessageText", "rewards": { "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 3400, + "id": "5c9505f586f7743285178ad2", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c8c29b1f21c1669a48c333", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 20000, + "id": "60cb675b98b4927060364551", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507555f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507555f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 20000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb66f5af2e5506c3781db0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075563", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075561", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075562", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075563", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb670c3e4e974efa345caf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075565", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075565", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac661fc86f774056c780955", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075566", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075566", + "_tpl": "5751a25924597722c463c472" + } + ], + "loyaltyLevel": 2, + "traderId": "54cb57776803fa99248b456e" + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "629f068b50f43060015c5377", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5979eee086f774311955e614": { + "QuestName": "Golden Swag", + "_id": "5979eee086f774311955e614", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5979eee086f774311955e614 acceptPlayerMessage", + "changeQuestMessageText": "5979eee086f774311955e614 changeQuestMessageText", + "completePlayerMessage": "5979eee086f774311955e614 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5979ef4586f77431307dc513", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5939a00786f7742fe8132936" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5979ef7986f77431307dc514", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "extraction_zone_zibbo", + "target": [ + "5939a00786f7742fe8132936" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a9254086f7747ab1774af3", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 8, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59819f1486f774559b21772d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5979ed3886f77431307dc512", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5979eee086f774311955e614 description", + "failMessageText": "5979eee086f774311955e614 failMessageText", + "declinePlayerMessage": "5979eee086f774311955e614 declinePlayerMessage", + "name": "5979eee086f774311955e614 name", + "note": "5979eee086f774311955e614 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5979ef2a86f77431185415c3.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5979eee086f774311955e614 startedMessageText", + "successMessageText": "5979eee086f774311955e614 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "59c4dbae86f77473ed2cc3a5", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075568", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075568", + "_tpl": "5913611c86f77479e0084092", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], "Success": [ { "availableInGameEditions": [], "value": 4500, - "id": "60c8b0ee83161b326c47110f", + "id": "60c8b02083161b326c47110c", "type": "Experience", "index": 0, "unknown": false @@ -56983,7 +54762,7 @@ { "availableInGameEditions": [], "value": 0.04, - "id": "60d0993b7e143314367f8268", + "id": "60c8b029e4d30047b777b319", "type": "TraderStanding", "index": 0, "target": "58330581ace78e27b8b10cee", @@ -56991,19 +54770,370 @@ }, { "availableInGameEditions": [], - "value": 180000, - "id": "5a2e7c6a86f7741a943575b4", + "value": 17000, + "id": "5a2e628686f7741d1e5b9016", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2276", + "target": "6812400c0c5cf2cf7507556a", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2276", + "_id": "6812400c0c5cf2cf7507556a", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 180000 + "StackObjectsCount": 17000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb5a8ee3d0247e625da180", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507556b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507556b", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf7507556c", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf7507556d", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf7507556e", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf7507556f", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "6812400c0c5cf2cf7507556e", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075570", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "6812400c0c5cf2cf7507556f", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075571", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "6812400c0c5cf2cf7507556e", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075572", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf75075573", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "6812400c0c5cf2cf75075572", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075574", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_charge" + }, + { + "_id": "6812400c0c5cf2cf75075575", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "6812400c0c5cf2cf7507556b", + "slotId": "mod_tactical_000" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cb5ac07c496e588343a1a8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507557c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075578", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075579", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075578", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507557a", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507557b", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf7507557a", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507557c", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507557d", + "_tpl": "5c3df7d588a4501f290594e5", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf7507557c", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb5afb7c496e588343a1ab", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075580", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507557f", + "_tpl": "5a7ad2e851dfba0016153692", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075580", + "_tpl": "5a7ad2e851dfba0016153692", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac667f686f77403df401d1d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075581", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075581", + "_tpl": "584984812459776a704a82a6" + } + ], + "loyaltyLevel": 1, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5a68667486f7742607157d28": { + "QuestName": "Health Care Privacy - Part 4", + "_id": "5a68667486f7742607157d28", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5a68667486f7742607157d28 acceptPlayerMessage", + "changeQuestMessageText": "5a68667486f7742607157d28 changeQuestMessageText", + "completePlayerMessage": "5a68667486f7742607157d28 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5a6878e886f7745e65687985", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "Health", + "globalQuestCounterId": "", + "value": 4, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5a68780786f7741f977638c2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a68665c86f774255929b4c7", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5a68667486f7742607157d28 description", + "failMessageText": "5a68667486f7742607157d28 failMessageText", + "declinePlayerMessage": "5a68667486f7742607157d28 declinePlayerMessage", + "name": "5a68667486f7742607157d28 name", + "note": "5a68667486f7742607157d28 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Skill", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5a68667486f7742607157d28 startedMessageText", + "successMessageText": "5a68667486f7742607157d28 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6000, + "id": "60c8c4cba0b5c924fc6e9d57", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c4cf1f21c1669a48c335", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 29000, + "id": "5a68872c86f77472c17ca5cf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075583", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075583", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 29000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5a68871286f77430c15bc4c9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075586", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075585", + "_tpl": "590c657e86f77412b013051d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075586", + "_tpl": "590c657e86f77412b013051d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb71186a2a1958fc522d0c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075589", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075588", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075589", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true } } ] @@ -57019,96 +55149,483 @@ "arenaLocations": [], "status": 0 }, - "59675ea386f77414b32bded2": { - "QuestName": "Postman Pat - Part 1", - "_id": "59675ea386f77414b32bded2", + "63967028c4a91c5cb76abd81": { + "QuestName": "Trouble in the Big City", + "_id": "63967028c4a91c5cb76abd81", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59675ea386f77414b32bded2 acceptPlayerMessage", - "changeQuestMessageText": "59675ea386f77414b32bded2 changeQuestMessageText", - "completePlayerMessage": "59675ea386f77414b32bded2 completePlayerMessage", + "acceptPlayerMessage": "63967028c4a91c5cb76abd81 acceptPlayerMessage", + "changeQuestMessageText": "63967028c4a91c5cb76abd81 changeQuestMessageText", + "completePlayerMessage": "63967028c4a91c5cb76abd81 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "596895f986f7740d14064722", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63bd64552803ffbfad0e3e49", + "conditions": [ + { + "id": "63bd64972803ffbfad0e3e4a", + "dynamicLocale": false, + "target": "quest_zone_c16_koll_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63bd64552803ffbfad0e3e48", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "591093bb86f7747caa7bb2ee" - ], - "countInRaid": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [] + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false }, { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5968962686f7740e7266d972", + "id": "639ae7423174277743234bb8", "conditions": [ { - "id": "5968962b86f7740d14064723", + "id": "639ae74d6cd47c525121a1d4", "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" + "target": "AnyPmc", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" }, { - "id": "5b7ff96c86f774125b15cd88", + "id": "63bd6a405ba99d34de0f96a0", "dynamicLocale": false, "target": [ - "factory4_day", - "factory4_night" + "TarkovStreets" ], "conditionType": "Location" } ] }, - "id": "5968962686f7740e7266d973", + "id": "639ae7423174277743234bb7", "index": 1, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 50, + "visibilityConditions": [ + { + "id": "63bd68755ba99d34de0f9698", + "target": "63bd64552803ffbfad0e3e48", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "PlaceBeacon", + "id": "639aea2228d8a21b593a3491", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "quest_zone_keeper10_place", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63bd6881629bfa6e640689dc", + "target": "639ae7423174277743234bb7", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63bd64ba3d34b0e64b0d0a18", + "conditions": [ + { + "id": "63bd651d0973ec761709c257", + "dynamicLocale": false, + "target": "quest_zone_last_flare", + "conditionType": "LaunchFlare" + } + ] + }, + "id": "63bd64ba3d34b0e64b0d0a17", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, "type": "Completion", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "5a606af986f77423671bca66", - "target": "596895f986f7740d14064722", + "id": "63bd68a08a9157ec230be9a6", + "target": "639aea2228d8a21b593a3491", "conditionType": "CompleteCondition" } ], "isNecessary": false, "isResetOnConditionFailed": false }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639b002fda859817035a344c", + "conditions": [ + { + "id": "639b00ef20668603de1597cf", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "639b0105dbf1d842d260d7af", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + } + ] + }, + "id": "639b002fda859817035a344b", + "index": 4, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63bd68b15ba99d34de0f9699", + "target": "63bd64ba3d34b0e64b0d0a17", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ { "conditionType": "Quest", - "id": "596896c386f7740d1570bbd4", - "index": 2, + "id": "639afec46cd47c525121a240", + "index": 0, "parentId": "", "dynamicLocale": false, - "target": "596760e186f7741e11214d58", + "target": "6396701b9113f06a7c3b2379", "status": [ 4 ], "globalQuestCounterId": "", - "availableAfter": 0, + "availableAfter": 36000, "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "63967028c4a91c5cb76abd81 description", + "failMessageText": "63967028c4a91c5cb76abd81 failMessageText", + "declinePlayerMessage": "63967028c4a91c5cb76abd81 declinePlayerMessage", + "name": "63967028c4a91c5cb76abd81 name", + "note": "63967028c4a91c5cb76abd81 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "63967028c4a91c5cb76abd81 startedMessageText", + "successMessageText": "63967028c4a91c5cb76abd81 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.05, + "id": "63a6ced40aa9fb29da61c532", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a23594d6d4651e53602b04", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507558b", + "unknown": true, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507558b", + "_tpl": "6389c85357baa773a825b356", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "658066546b98154f4930110f", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507558c", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507558c", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf7507558d", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "6812400c0c5cf2cf7507558c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf7507558e", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "6812400c0c5cf2cf7507558c", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf7507558f", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "6812400c0c5cf2cf7507558c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075590", + "_tpl": "6567e751a715f85433025998", + "parentId": "6812400c0c5cf2cf7507558f", + "slotId": "mod_scope" + }, + { + "_id": "6812400c0c5cf2cf75075591", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "6812400c0c5cf2cf75075590", + "slotId": "mod_scope" + }, + { + "_id": "6812400c0c5cf2cf75075592", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "6812400c0c5cf2cf7507558f", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075593", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "6812400c0c5cf2cf75075592", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075594", + "_tpl": "652911e650dc782999054b9d", + "parentId": "6812400c0c5cf2cf75075593", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075595", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "6812400c0c5cf2cf75075592", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf75075596", + "_tpl": "652910ef50dc782999054b97", + "parentId": "6812400c0c5cf2cf7507558f", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075597", + "_tpl": "6529348224cbe3c74a05e5c4", + "parentId": "6812400c0c5cf2cf7507558c", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075598", + "_tpl": "6529366450dc782999054ba0", + "parentId": "6812400c0c5cf2cf75075597", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075599", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "6812400c0c5cf2cf75075598", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf7507559a", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "6812400c0c5cf2cf7507558c", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "66abaaaa6f11600e4e48bac7", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507559b", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507559b", + "_tpl": "65293c7a17e14363030ad308" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "66abaab7ed57696ce626c068", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507559c", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507559c", + "_tpl": "6529243824cbe3c74a05e5c1" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "63a2359ef194393ecf632fa2", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507559d", + "unknown": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507559d", + "_tpl": "6389c85357baa773a825b356" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "597a0e5786f77426d66c0636": { + "QuestName": "Chemical - Part 3", + "_id": "597a0e5786f77426d66c0636", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "597a0e5786f77426d66c0636 acceptPlayerMessage", + "changeQuestMessageText": "597a0e5786f77426d66c0636 changeQuestMessageText", + "completePlayerMessage": "597a0e5786f77426d66c0636 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "597a15b386f774799e5cd152", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "593a87af86f774122f54a951" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "597a15c386f77405ba6887d2", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "593a87af86f774122f54a951" + ], + "globalQuestCounterId": "", + "value": 1, "visibilityConditions": [ { - "id": "5a577e4386f77409c64f123a", - "target": "596895f986f7740d14064722", + "id": "5a57795786f774411f6c2fc1", + "target": "597a15b386f774799e5cd152", "conditionType": "CompleteCondition" } ] @@ -57117,22 +55634,22 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "59a9270886f7747b8150a3d7", + "id": "59a925b786f7747c3f075aaa", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 10, + "value": 11, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5978b53886f7745e8f506efb", + "id": "59819f3186f77455b707f9c1", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "59675d6c86f7740a842fc482", + "target": "597a0b2986f77426d66c0633", "status": [ 4 ], @@ -57144,56 +55661,56 @@ ], "Fail": [] }, - "description": "59675ea386f77414b32bded2 description", - "failMessageText": "59675ea386f77414b32bded2 failMessageText", - "declinePlayerMessage": "59675ea386f77414b32bded2 declinePlayerMessage", - "name": "59675ea386f77414b32bded2 name", - "note": "59675ea386f77414b32bded2 note", - "traderId": "54cb50c76803fa8b248b4571", + "description": "597a0e5786f77426d66c0636 description", + "failMessageText": "597a0e5786f77426d66c0636 failMessageText", + "declinePlayerMessage": "597a0e5786f77426d66c0636 declinePlayerMessage", + "name": "597a0e5786f77426d66c0636 name", + "note": "597a0e5786f77426d66c0636 note", + "traderId": "58330581ace78e27b8b10cee", "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/59675f5486f77414b07f13d0.jpg", + "image": "/files/quest/icon/594d247486f77426ad2fd20b.jpg", "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "59675ea386f77414b32bded2 startedMessageText", - "successMessageText": "59675ea386f77414b32bded2 successMessageText", + "startedMessageText": "597a0e5786f77426d66c0636 startedMessageText", + "successMessageText": "597a0e5786f77426d66c0636 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 5900, - "id": "60c8ac0f919c14709f49738f", + "value": 5400, + "id": "5c94ff1286f774551617862b", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60c89f3be4d30047b777b311", + "value": 0.04, + "id": "60c8b0739339363e8f0c6add", "type": "TraderStanding", "index": 0, - "target": "54cb50c76803fa8b248b4571", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 40000, - "id": "60cb4d0e3e4e974efa3452bb", + "value": 22000, + "id": "60cb5beda7d63f18200a19a7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2278", + "target": "6812400c0c5cf2cf7507559f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2278", + "_id": "6812400c0c5cf2cf7507559f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 40000 + "StackObjectsCount": 22000 } } ] @@ -57201,16 +55718,16 @@ { "availableInGameEditions": [], "value": 1, - "id": "60cb4cec3e4e974efa3452ba", + "id": "60cb5bf8af2e5506c3781d8c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b227a", + "target": "6812400c0c5cf2cf750755a1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b227a", - "_tpl": "5b44c6ae86f7742d1627baea", + "_id": "6812400c0c5cf2cf750755a1", + "_tpl": "576fd4ec2459777f0b518431", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -57220,95 +55737,56 @@ }, { "availableInGameEditions": [], - "value": 1, - "id": "60cb4cf3af2e5506c3781d81", + "value": 4, + "id": "60cb5c0b179f8541b84691d1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2284", - "unknown": true, + "target": "6812400c0c5cf2cf750755a6", + "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2284", - "_tpl": "5c0e5bab86f77461f55ed1f3", + "_id": "6812400c0c5cf2cf750755a3", + "_tpl": "5a0c27731526d80618476ac4", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2285", - "_tpl": "6571b27a6d84a2b8b6007f92", + "_id": "6812400c0c5cf2cf750755a4", + "_tpl": "5a0c27731526d80618476ac4", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Soft_armor_front" + } }, { - "_id": "68010065f81036801d0b2286", - "_tpl": "6571baa74cb80d995d0a1490", + "_id": "6812400c0c5cf2cf750755a5", + "_tpl": "5a0c27731526d80618476ac4", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Soft_armor_back" + } }, { - "_id": "68010065f81036801d0b2287", - "_tpl": "6571baac6d84a2b8b6007fa3", + "_id": "6812400c0c5cf2cf750755a6", + "_tpl": "5a0c27731526d80618476ac4", "upd": { + "StackObjectsCount": 1, "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2288", - "_tpl": "6571bab0f41985531a038091", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2289", - "_tpl": "6571babb4076795e5e07383f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b228a", - "_tpl": "6571bac34076795e5e073843", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b228b", - "_tpl": "6571babf4cb80d995d0a1494", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Groin_back" - }, - { - "_id": "68010065f81036801d0b228c", - "_tpl": "654a4dea7c17dec2f50cc86a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2284", - "slotId": "Front_plate" + } } ] + }, + { + "availableInGameEditions": [], + "value": -0.01, + "id": "5d6e71cc86f77410d46d1e43", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false } ], "Fail": [] @@ -57505,12 +55983,12 @@ "id": "60cb694077dc197c77424fcd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b228e", + "target": "6812400c0c5cf2cf750755a8", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b228e", + "_id": "6812400c0c5cf2cf750755a8", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 75000 @@ -57524,12 +56002,12 @@ "id": "60cb69576a2a1958fc522d04", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2290", + "target": "6812400c0c5cf2cf750755aa", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2290", + "_id": "6812400c0c5cf2cf750755aa", "_tpl": "5d02778e86f774203e7dedbe", "upd": { "StackObjectsCount": 1, @@ -57549,190 +56027,242 @@ "arenaLocations": [], "status": 0 }, - "625d6ffaf7308432be1d44c5": { - "QuestName": "Network Provider - Part 2", - "_id": "625d6ffaf7308432be1d44c5", + "5b47825886f77468074618d3": { + "QuestName": "Gunsmith - Part 22", + "_id": "5b47825886f77468074618d3", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d6ffaf7308432be1d44c5 acceptPlayerMessage", - "changeQuestMessageText": "625d6ffaf7308432be1d44c5 changeQuestMessageText", - "completePlayerMessage": "625d6ffaf7308432be1d44c5 completePlayerMessage", + "acceptPlayerMessage": "5b47825886f77468074618d3 acceptPlayerMessage", + "changeQuestMessageText": "5b47825886f77468074618d3 changeQuestMessageText", + "completePlayerMessage": "5b47825886f77468074618d3 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "PlaceBeacon", - "id": "625ecedaa4eb80027c4f2e0b", + "conditionType": "WeaponAssembly", + "id": "5b4783ba86f7744d1c353185", "index": 0, "parentId": "", "dynamicLocale": false, - "plantTime": 40, - "zoneId": "meh_42_radio_area_mark_1", "target": [ - "63a0b2eabea67a6d93009e52" + "5447a9cd4bdc2dbd208b4567" ], "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "625ecee6f7308432be1d44c7", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "meh_42_radio_area_mark_2", - "target": [ - "63a0b2eabea67a6d93009e52" + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 40.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 60, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 270.0, + "compareMethod": "<=" + }, + "weight": { + "value": 5.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "57dbb57e2459774673234890", + "5b2cfa535acfc432ff4db7a0", + "5a1eaa87fcdbcb001865f75e" ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "625eceebc4874104f230c0c7", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "meh_42_radio_area_mark_3", - "target": [ - "63a0b2eabea67a6d93009e52" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6386410704a59f742a7a3b45", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "meh_42_radio_area_mark_4", - "target": [ - "63a0b2eabea67a6d93009e52" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] + "hasItemFromCategory": [] } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "6391e25b86e646067c176a91", + "conditionType": "Level", + "id": "5b4f0ce686f77429c16dcb63", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "625d6ff5ddc94657c21a1625", + "globalQuestCounterId": "", + "value": 39, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f095b86f7747a2637c3f9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "63987301e11ec11ff5504036", "status": [ 4 ], "globalQuestCounterId": "", - "availableAfter": 3600, - "dispersion": 28800, + "availableAfter": 75600, + "dispersion": 0, "visibilityConditions": [] } ], "Fail": [] }, - "description": "625d6ffaf7308432be1d44c5 description", - "failMessageText": "625d6ffaf7308432be1d44c5 failMessageText", - "declinePlayerMessage": "625d6ffaf7308432be1d44c5 declinePlayerMessage", - "name": "625d6ffaf7308432be1d44c5 name", - "note": "625d6ffaf7308432be1d44c5 note", + "description": "5b47825886f77468074618d3 description", + "failMessageText": "5b47825886f77468074618d3 failMessageText", + "declinePlayerMessage": "5b47825886f77468074618d3 declinePlayerMessage", + "name": "5b47825886f77468074618d3 name", + "note": "5b47825886f77468074618d3 note", "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab3ad15c890e40ca1a30f5.jpg", - "type": "Completion", + "location": "any", + "image": "/files/quest/icon/5b4786c586f7744d184ecabd.jpg", + "type": "WeaponAssembly", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "625d6ffaf7308432be1d44c5 startedMessageText", - "successMessageText": "625d6ffaf7308432be1d44c5 successMessageText", + "startedMessageText": "5b47825886f77468074618d3 startedMessageText", + "successMessageText": "5b47825886f77468074618d3 successMessageText", "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 4, - "id": "63a4182aa3a2b32b5f6e0090", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2295", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2292", - "_tpl": "63a0b2eabea67a6d93009e52", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2293", - "_tpl": "63a0b2eabea67a6d93009e52", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2294", - "_tpl": "63a0b2eabea67a6d93009e52", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2295", - "_tpl": "63a0b2eabea67a6d93009e52", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a5720622ea2f078518814c", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b2297", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2297", - "_tpl": "63a0b2eabea67a6d93009e52", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 1, - "traderId": 10 - } - ], + "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 19100, - "id": "63a5d4c7b7f4570d3a29279e", + "value": 28900, + "id": "60cc79ca3e4e974efa345d2c", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "63a5d4cf08f1f305635502f0", + "value": 0.03, + "id": "60cc79cef09d61072d6d00c3", "type": "TraderStanding", "index": 0, "target": "5a7c2eca46aef81a7ca2145d", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1000, + "id": "5b4f0d2786f7742abd44cd44", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755ac", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755ac", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639afaf5ad9d7e3216668f68", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755ae", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755ae", + "_tpl": "5c127c4486f7745625356c13", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "639afae38fe84d33a25a13f6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755b1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b0", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755b1", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "60b8f63947780a0bac0dba1b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750755b2", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b2", + "_tpl": "5a1eaa87fcdbcb001865f75e" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19d9a2c2d4f2e48078090", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750755b3", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b3", + "_tpl": "60926df0132d4d12c81fd9df" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" } ], "Fail": [] @@ -57745,19 +56275,19 @@ "arenaLocations": [], "status": 0 }, - "59c93e8e86f7742a406989c4": { - "QuestName": "Loyalty Buyout", - "_id": "59c93e8e86f7742a406989c4", + "596a101f86f7741ddb481582": { + "QuestName": "Kind of Sabotage", + "_id": "596a101f86f7741ddb481582", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59c93e8e86f7742a406989c4 acceptPlayerMessage", - "changeQuestMessageText": "59c93e8e86f7742a406989c4 changeQuestMessageText", - "completePlayerMessage": "59c93e8e86f7742a406989c4 completePlayerMessage", + "acceptPlayerMessage": "596a101f86f7741ddb481582 acceptPlayerMessage", + "changeQuestMessageText": "596a101f86f7741ddb481582 changeQuestMessageText", + "completePlayerMessage": "596a101f86f7741ddb481582 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "596a10d886f7741ddf11dbf0", + "id": "596a10d886f7741ddf17dbf0", "index": 0, "maxDurability": 100.0, "minDurability": 0.0, @@ -57766,23 +56296,229 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5449016a4bdc2d6f028b456f" + "5938878586f7741b797c562f" ], "globalQuestCounterId": "", - "value": 1000000, + "value": 1, "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "596a13af86f77420d232804c", + "id": "596a10af33f77420d232804c", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "597a0f5686f774273b74f676", + "target": "596a0e1686f7741ddf17dbee", "status": [ - 5 + 2 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "596a117386f7741ddf17dbf1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "596a0e1686f7741ddf17dbee", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "596a101f86f7741ddb481582 description", + "failMessageText": "596a101f86f7741ddb481582 failMessageText", + "declinePlayerMessage": "596a101f86f7741ddb481582 declinePlayerMessage", + "name": "596a101f86f7741ddb481582 name", + "note": "596a101f86f7741ddb481582 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "596a101f86f7741ddb481582 startedMessageText", + "successMessageText": "596a101f86f7741ddb481582 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4500, + "id": "60c8b0ee83161b326c47110f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60d0993b7e143314367f8268", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 180000, + "id": "5a2e7c6a86f7741a943575b4", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755b5", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b5", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 180000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59675ea386f77414b32bded2": { + "QuestName": "Postman Pat - Part 1", + "_id": "59675ea386f77414b32bded2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59675ea386f77414b32bded2 acceptPlayerMessage", + "changeQuestMessageText": "59675ea386f77414b32bded2 changeQuestMessageText", + "completePlayerMessage": "59675ea386f77414b32bded2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "596895f986f7740d14064722", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "591093bb86f7747caa7bb2ee" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5968962686f7740e7266d972", + "conditions": [ + { + "id": "5968962b86f7740d14064723", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5b7ff96c86f774125b15cd88", + "dynamicLocale": false, + "target": [ + "factory4_day", + "factory4_night" + ], + "conditionType": "Location" + } + ] + }, + "id": "5968962686f7740e7266d973", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a606af986f77423671bca66", + "target": "596895f986f7740d14064722", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "Quest", + "id": "596896c386f7740d1570bbd4", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "596760e186f7741e11214d58", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [ + { + "id": "5a577e4386f77409c64f123a", + "target": "596895f986f7740d14064722", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a9270886f7747b8150a3d7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5978b53886f7745e8f506efb", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59675d6c86f7740a842fc482", + "status": [ + 4 ], "globalQuestCounterId": "", "availableAfter": 0, @@ -57792,32 +56528,171 @@ ], "Fail": [] }, - "description": "59c93e8e86f7742a406989c4 description", - "failMessageText": "59c93e8e86f7742a406989c4 failMessageText", - "declinePlayerMessage": "59c93e8e86f7742a406989c4 declinePlayerMessage", - "name": "59c93e8e86f7742a406989c4 name", - "note": "59c93e8e86f7742a406989c4 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "Loyalty", + "description": "59675ea386f77414b32bded2 description", + "failMessageText": "59675ea386f77414b32bded2 failMessageText", + "declinePlayerMessage": "59675ea386f77414b32bded2 declinePlayerMessage", + "name": "59675ea386f77414b32bded2 name", + "note": "59675ea386f77414b32bded2 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/59675f5486f77414b07f13d0.jpg", + "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "59c93e8e86f7742a406989c4 startedMessageText", - "successMessageText": "59c93e8e86f7742a406989c4 successMessageText", + "startedMessageText": "59675ea386f77414b32bded2 startedMessageText", + "successMessageText": "59675ea386f77414b32bded2 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 0.25, - "id": "60c8beae80b2027f403dd99b", + "value": 5900, + "id": "60c8ac0f919c14709f49738f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60c89f3be4d30047b777b311", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "54cb50c76803fa8b248b4571", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 40000, + "id": "60cb4d0e3e4e974efa3452bb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755b7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 40000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb4cec3e4e974efa3452ba", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755b9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755b9", + "_tpl": "5b44c6ae86f7742d1627baea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb4cf3af2e5506c3781d81", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755c3", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755c3", + "_tpl": "5c0e5bab86f77461f55ed1f3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755c4", + "_tpl": "6571b27a6d84a2b8b6007f92", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf750755c5", + "_tpl": "6571baa74cb80d995d0a1490", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf750755c6", + "_tpl": "6571baac6d84a2b8b6007fa3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf750755c7", + "_tpl": "6571bab0f41985531a038091", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf750755c8", + "_tpl": "6571babb4076795e5e07383f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf750755c9", + "_tpl": "6571bac34076795e5e073843", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf750755ca", + "_tpl": "6571babf4cb80d995d0a1494", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Groin_back" + }, + { + "_id": "6812400c0c5cf2cf750755cb", + "_tpl": "654a4dea7c17dec2f50cc86a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750755c3", + "slotId": "Front_plate" + } + ] } ], "Fail": [] @@ -57830,40 +56705,118 @@ "arenaLocations": [], "status": 0 }, - "6179ad0a6e9dd54ac275e3f2": { - "QuestName": "The Huntsman Path - Outcasts", - "_id": "6179ad0a6e9dd54ac275e3f2", + "5bc4856986f77454c317bea7": { + "QuestName": "The Tarkov Shooter - Part 7", + "_id": "5bc4856986f77454c317bea7", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6179ad0a6e9dd54ac275e3f2 acceptPlayerMessage", - "changeQuestMessageText": "6179ad0a6e9dd54ac275e3f2 changeQuestMessageText", - "completePlayerMessage": "6179ad0a6e9dd54ac275e3f2 completePlayerMessage", + "acceptPlayerMessage": "5bc4856986f77454c317bea7 acceptPlayerMessage", + "changeQuestMessageText": "5bc4856986f77454c317bea7 changeQuestMessageText", + "completePlayerMessage": "5bc4856986f77454c317bea7 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "617bf1e1d93d977d24520520", + "id": "5bc485b586f774726473a857", "conditions": [ { - "id": "617bf20a52e86c73d372a913", + "id": "5bc488ca86f77460ec12a0d0", "dynamicLocale": false, - "target": "Savage", + "target": "AnyPmc", "compareMethod": ">=", - "value": 0, - "weapon": [], + "value": 1, + "weapon": [ + "55801eed4bdc2d89578b4588", + "5de652c31b7e3716273428be", + "588892092459774ac91d4b11", + "5bfd297f0db834001a669119", + "5bfea6e90db834001b7347f3", + "5ae08f0a5acfc408fb1398a1", + "5df24cf80dee1b22f862e9bc", + "627e14b21713922ded6f2c15", + "673cab3e03c6a20581028bc1" + ], "distance": { - "value": 0, + "value": 45, "compareMethod": ">=" }, - "weaponModsInclusive": [], + "weaponModsInclusive": [ + [ + "5b86a0e586f7745b600ccb23" + ], + [ + "59bffbb386f77435b379b9c2" + ], + [ + "593d489686f7745c6255d58a" + ], + [ + "5a0d63621526d8dba31fe3bf" + ], + [ + "59fb257e86f7742981561852" + ], + [ + "5a9fbacda2750c00141e080f" + ], + [ + "5a34fe59c4a282000b1521a2" + ], + [ + "5c7955c22e221644f31bfd5e" + ], + [ + "5cff9e84d7ad1a049e54ed55" + ], + [ + "5d44064fa4b9361e4f6eb8b5" + ], + [ + "5e208b9842457a4a7a33d074" + ], + [ + "59fb257e86f7742981561852" + ], + [ + "5dfa3d2b0dee1b22f862eade" + ], + [ + "5c4eecc32e221602b412b440" + ], + [ + "58889c7324597754281f9439" + ], + [ + "5a9fbb74a2750c0032157181" + ], + [ + "5fbe7618d6fa9c00c571bb6c" + ], + [ + "5fbe760793164a5b6278efc8" + ], + [ + "62811fa609427b40ab14e765" + ], + [ + "63877c99e785640d436458ea" + ], + [ + "673f0b36536d64240f01acd6" + ], + [ + "673f0a9370a3ddcf0d0ee0b8" + ], + [ + "673f0a38259f5945d70e43a6" + ] + ], "weaponModsExclusive": [], "enemyEquipmentInclusive": [], "enemyEquipmentExclusive": [], "weaponCaliber": [], - "savageRole": [ - "exUsec" - ], + "savageRole": [], "bodyPart": [], "daytime": { "from": 0, @@ -57875,7 +56828,7 @@ } ] }, - "id": "617bf1e1d93d977d2452051f", + "id": "5bc485b586f774726473a858", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -57883,7 +56836,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 10, + "value": 5, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -57892,11 +56845,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "61abcae279c3a477d0122456", + "id": "5bdabf6286f7743e171249af", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", + "target": "5bc4836986f7740c0152911c", "status": [ 4 ], @@ -57904,43 +56857,32 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61ad53f20665b606540b2425", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 22, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "6179ad0a6e9dd54ac275e3f2 description", - "failMessageText": "6179ad0a6e9dd54ac275e3f2 failMessageText", - "declinePlayerMessage": "6179ad0a6e9dd54ac275e3f2 declinePlayerMessage", - "name": "6179ad0a6e9dd54ac275e3f2 name", - "note": "6179ad0a6e9dd54ac275e3f2 note", + "description": "5bc4856986f77454c317bea7 description", + "failMessageText": "5bc4856986f77454c317bea7 failMessageText", + "declinePlayerMessage": "5bc4856986f77454c317bea7 declinePlayerMessage", + "name": "5bc4856986f77454c317bea7 name", + "note": "5bc4856986f77454c317bea7 note", "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61abc9240b56a53df32c6865.jpg", + "location": "any", + "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6179ad0a6e9dd54ac275e3f2 startedMessageText", - "successMessageText": "6179ad0a6e9dd54ac275e3f2 successMessageText", + "startedMessageText": "5bc4856986f77454c317bea7 startedMessageText", + "successMessageText": "5bc4856986f77454c317bea7 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 9000, - "id": "617bf21aea3cfc3293312426", + "value": 13300, + "id": "60cc9d50826ca0323464bd12", "type": "Experience", "index": 0, "unknown": false @@ -57948,7 +56890,7 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "61ad5472118c386d912fd9b6", + "id": "60cc9d5298b4927060364608", "type": "TraderStanding", "index": 0, "target": "5c0647fdd443bc2504c2d371", @@ -57956,48 +56898,97 @@ }, { "availableInGameEditions": [], - "value": 110000, - "id": "61abcb490330382cea7bae3e", + "value": 85000, + "id": "5bcf261286f7746a464c5684", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2299", + "target": "6812400c0c5cf2cf750755cd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2299", + "_id": "6812400c0c5cf2cf750755cd", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 110000 + "StackObjectsCount": 85000 } } ] }, { "availableInGameEditions": [], - "id": "655b84e09db22d43ab42b70d", - "type": "ProductionScheme", + "value": 1, + "id": "5bcf25e886f774378e266a35", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b229d", + "target": "6812400c0c5cf2cf750755cf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755cf", + "_tpl": "5bc5a35cd4351e450201232f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc9d6f65e4664318606b66", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755d1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755d1", + "_tpl": "5b86a0e586f7745b600ccb23", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf25f486f7746a472ad9f5", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750755d2", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b229b", - "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "_id": "6812400c0c5cf2cf750755d2", + "_tpl": "5bc5a35cd4351e450201232f" + } + ], + "loyaltyLevel": 3, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "655b80264343a16d2e04766e", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf750755d5", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755d4", + "_tpl": "5e023d34e8a400319a28ed44", "upd": { - "StackObjectsCount": 20 + "StackObjectsCount": 40 } }, { - "_id": "68010065f81036801d0b229c", - "_tpl": "5d6e68a8a4b9360b6c0d54e2", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "68010065f81036801d0b229d", - "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "_id": "6812400c0c5cf2cf750755d5", + "_tpl": "5e023d34e8a400319a28ed44", "upd": { "StackObjectsCount": 10 } @@ -58017,20 +57008,663 @@ "arenaLocations": [], "status": 0 }, - "63a9ae24009ffc6a551631a5": { - "QuestName": "Best Job in the World", - "_id": "63a9ae24009ffc6a551631a5", + "6396701b9113f06a7c3b2379": { + "QuestName": "Make an Impression", + "_id": "6396701b9113f06a7c3b2379", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63a9ae24009ffc6a551631a5 acceptPlayerMessage", - "changeQuestMessageText": "63a9ae24009ffc6a551631a5 changeQuestMessageText", - "completePlayerMessage": "63a9ae24009ffc6a551631a5 completePlayerMessage", + "acceptPlayerMessage": "6396701b9113f06a7c3b2379 acceptPlayerMessage", + "changeQuestMessageText": "6396701b9113f06a7c3b2379 changeQuestMessageText", + "completePlayerMessage": "6396701b9113f06a7c3b2379 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "639a169e6cd47c525121a116", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "Sniper", + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6397ac912e519e69d2139b27", + "conditions": [ + { + "id": "6397ace18b38442139798209", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 350, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "marksman" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "6397ac912e519e69d2139b26", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "639afe2ddbf1d842d260d7a8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6396700fea19ac7ed845db32", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 36000, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6396701b9113f06a7c3b2379 description", + "failMessageText": "6396701b9113f06a7c3b2379 failMessageText", + "declinePlayerMessage": "6396701b9113f06a7c3b2379 declinePlayerMessage", + "name": "6396701b9113f06a7c3b2379 name", + "note": "6396701b9113f06a7c3b2379 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "any", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6396701b9113f06a7c3b2379 startedMessageText", + "successMessageText": "6396701b9113f06a7c3b2379 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.04, + "id": "63a6cecf2964a7488f5250af", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a2356c423c8970de419831", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755d7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755d7", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66422df96935050c9b141e96", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755d9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755d9", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a2357ad6d4651e53602b03", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf750755db", + "unknown": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755db", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6179aff8f57fb279792c60a1": { + "QuestName": "Overpopulation", + "_id": "6179aff8f57fb279792c60a1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6179aff8f57fb279792c60a1 acceptPlayerMessage", + "changeQuestMessageText": "6179aff8f57fb279792c60a1 changeQuestMessageText", + "completePlayerMessage": "6179aff8f57fb279792c60a1 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "63a9ae63da7999196148ba5d", + "id": "617bf4e152e86c73d372a95e", + "conditions": [ + { + "id": "617bf5043de8a6689b533a1d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "6194f8fe0d1f573a784212a2", + "dynamicLocale": false, + "zoneIds": [ + "qlight_pc1_ucot_kill" + ], + "conditionType": "InZone" + } + ] + }, + "id": "617bf4e152e86c73d372a95d", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61b24f790392cb7ac26ded55", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a03153686f77442d90e2171", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61b24f9104363f7b1215529d", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179aff8f57fb279792c60a1 description", + "failMessageText": "6179aff8f57fb279792c60a1 failMessageText", + "declinePlayerMessage": "6179aff8f57fb279792c60a1 declinePlayerMessage", + "name": "6179aff8f57fb279792c60a1 name", + "note": "6179aff8f57fb279792c60a1 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab4f090330382cea7bad57.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179aff8f57fb279792c60a1 startedMessageText", + "successMessageText": "6179aff8f57fb279792c60a1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8500, + "id": "617bf5400cf4a041de5b3969", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61adfd9936a895455b700cc6", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1100, + "id": "61adf8b14abec56a41724656", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755dd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755dd", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1100 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "61adfe7467658b51a604a426", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750755de", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755de", + "_tpl": "5b0bbe4e5acfc40dc528a72d" + }, + { + "_id": "6812400c0c5cf2cf750755df", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf750755e0", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf750755e1", + "_tpl": "5b7bed205acfc400161d08cc", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf750755e2", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf750755e3", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "6812400c0c5cf2cf750755e2", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf750755e4", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf750755e5", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf750755e6", + "_tpl": "5b7d645e5acfc400170e2f90", + "parentId": "6812400c0c5cf2cf750755de", + "slotId": "mod_stock" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "596a1e6c86f7741ddc2d3206": { + "QuestName": "General Wares", + "_id": "596a1e6c86f7741ddc2d3206", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "596a1e6c86f7741ddc2d3206 acceptPlayerMessage", + "changeQuestMessageText": "596a1e6c86f7741ddc2d3206 changeQuestMessageText", + "completePlayerMessage": "596a1e6c86f7741ddc2d3206 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "596a1f0486f77456630ea4d2", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347d7224597744596b4e72" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "596a1f1586f77420d2328077", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347d7224597744596b4e72" + ], + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "59a9299786f77472014b72e5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5969f9e986f7741dde183a50", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "596a1e6c86f7741ddc2d3206 description", + "failMessageText": "596a1e6c86f7741ddc2d3206 failMessageText", + "declinePlayerMessage": "596a1e6c86f7741ddc2d3206 declinePlayerMessage", + "name": "596a1e6c86f7741ddc2d3206 name", + "note": "596a1e6c86f7741ddc2d3206 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/5979d3da86f774719f309082.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "596a1e6c86f7741ddc2d3206 startedMessageText", + "successMessageText": "596a1e6c86f7741ddc2d3206 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4800, + "id": "60c8c36580b2027f403dd99f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c8c36883161b326c471116", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "5a2fba6886f774769635db1c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755e8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750755e8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "5ac6643e86f774055a77c730", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755ed", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755ea", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755eb", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755ec", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755ed", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5a2fbaa686f77476953ee329", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755f0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755ef", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755f0", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ec19e5386f7561e047757ae", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750755f3", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750755f2", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750755f3", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "63a9b229813bba58a50c9ee5": { + "QuestName": "Worst Job in the World", + "_id": "63a9b229813bba58a50c9ee5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "63a9b229813bba58a50c9ee5 acceptPlayerMessage", + "changeQuestMessageText": "63a9b229813bba58a50c9ee5 changeQuestMessageText", + "completePlayerMessage": "63a9b229813bba58a50c9ee5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a9b229813bba58a50c9ee7", "conditions": [ { "id": "63a9b16a87c76a25c912125e", @@ -58039,12 +57673,9 @@ "compareMethod": ">=", "value": 0, "weapon": [ - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "628b5638ad252a16da6dd245" + "5447a9cd4bdc2dbd208b4567", + "5c07c60e0db834002330051f", + "5d43021ca4b9362eab4b5e25" ], "distance": { "value": 100, @@ -58067,7 +57698,7 @@ } ] }, - "id": "63a9ae63da7999196148ba5c", + "id": "63a9b229813bba58a50c9ee6", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -58084,7 +57715,7 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "63a9f017c31b00242d28a9be", + "id": "63a9efcc7cd7613adb652529", "index": 0, "parentId": "", "dynamicLocale": false, @@ -58095,11 +57726,11 @@ }, { "conditionType": "Quest", - "id": "63a9f02fda7999196148ba81", + "id": "63a9efdbad5cc12f22162052", "index": 1, "parentId": "", "dynamicLocale": false, - "target": "59ca2eb686f77445a80ed049", + "target": "639135f286e646067c176a87", "status": [ 4 ], @@ -58110,11 +57741,11 @@ }, { "conditionType": "Quest", - "id": "63a9f035813bba58a50ca088", + "id": "63a9efd2655ec5555b4aaa7b", "index": 2, "parentId": "", "dynamicLocale": false, - "target": "639136f086e646067c176a8b", + "target": "5a27bc6986f7741c7358402b", "status": [ 4 ], @@ -58126,28 +57757,28 @@ ], "Fail": [] }, - "description": "63a9ae24009ffc6a551631a5 description", - "failMessageText": "63a9ae24009ffc6a551631a5 failMessageText", - "declinePlayerMessage": "63a9ae24009ffc6a551631a5 declinePlayerMessage", - "name": "63a9ae24009ffc6a551631a5 name", - "note": "63a9ae24009ffc6a551631a5 note", - "traderId": "54cb50c76803fa8b248b4571", + "description": "63a9b229813bba58a50c9ee5 description", + "failMessageText": "63a9b229813bba58a50c9ee5 failMessageText", + "declinePlayerMessage": "63a9b229813bba58a50c9ee5 declinePlayerMessage", + "name": "63a9b229813bba58a50c9ee5 name", + "note": "63a9b229813bba58a50c9ee5 note", + "traderId": "5935c25fb3acc3127c3d8cd9", "location": "any", - "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", + "image": "/files/quest/icon/5a27c50f86f7740b3d65e16a.jpg", "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "63a9ae24009ffc6a551631a5 startedMessageText", - "successMessageText": "63a9ae24009ffc6a551631a5 successMessageText", + "startedMessageText": "63a9b229813bba58a50c9ee5 startedMessageText", + "successMessageText": "63a9b229813bba58a50c9ee5 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], "value": 15400, - "id": "63a9f042009ffc6a551631cc", + "id": "63a9ef1dc593cc01b37133ce", "type": "Experience", "index": 0, "unknown": false @@ -58155,271 +57786,43 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "63a9f049c31b00242d28a9bf", + "id": "63a9ef25009ffc6a551631ca", "type": "TraderStanding", "index": 0, - "target": "54cb50c76803fa8b248b4571", + "target": "5935c25fb3acc3127c3d8cd9", "unknown": false }, { "availableInGameEditions": [], - "id": "63a9f74ac31b00242d28a9c8", + "id": "63a9f767ad5cc12f22162055", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b229e", + "target": "6812400c0c5cf2cf750755f4", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b229e", - "_tpl": "62e7e7bbe6da9612f743f1e0" + "_id": "6812400c0c5cf2cf750755f4", + "_tpl": "6357c98711fb55120211f7e1" } ], "loyaltyLevel": 3, - "traderId": "54cb50c76803fa8b248b4571" + "traderId": "5935c25fb3acc3127c3d8cd9" }, { "availableInGameEditions": [], - "id": "63a9f750009ffc6a551631d0", + "id": "63a9f76dda7999196148ba82", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b229f", + "target": "6812400c0c5cf2cf750755f5", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b229f", - "_tpl": "5656eb674bdc2d35148b457c" + "_id": "6812400c0c5cf2cf750755f5", + "_tpl": "5ede475b549eed7c6d5c18fb" } ], "loyaltyLevel": 3, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "596a218586f77420d232807c": { - "QuestName": "Car Repair", - "_id": "596a218586f77420d232807c", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "596a218586f77420d232807c acceptPlayerMessage", - "changeQuestMessageText": "596a218586f77420d232807c changeQuestMessageText", - "completePlayerMessage": "596a218586f77420d232807c completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "596b46d886f77457ca186189", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5733279d245977289b77ec24" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "596b46ec86f77457c7006f89", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3c0a86f774385a33c450" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 8, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596b470c86f77457ca18618a", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5733279d245977289b77ec24" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "596b472686f77457c7006f8a", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3c0a86f774385a33c450" - ], - "globalQuestCounterId": "", - "value": 8, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5979e7a386f7743ec214c7a3", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5969f9e986f7741dde183a50", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "596a218586f77420d232807c description", - "failMessageText": "596a218586f77420d232807c failMessageText", - "declinePlayerMessage": "596a218586f77420d232807c declinePlayerMessage", - "name": "596a218586f77420d232807c name", - "note": "596a218586f77420d232807c note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/5979d3f986f7746d08051ce0.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "596a218586f77420d232807c startedMessageText", - "successMessageText": "596a218586f77420d232807c successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6900, - "id": "60c8c3ca919c14709f49739d", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c3ce9339363e8f0c6ae5", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1500, - "id": "5a2fee9486f7745c4236d2e2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22a1", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b22a1", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 1500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb6eccaf2e5506c3781dbe", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22a3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22a3", - "_tpl": "590c657e86f77412b013051d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec19ea3c367fc6781104623", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22a5", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22a5", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb6f23f09d61072d6cfbc7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22a7", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22a7", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] + "traderId": "5935c25fb3acc3127c3d8cd9" } ], "Fail": [] @@ -58639,12 +58042,12 @@ "id": "628b849de43d1600542c97e8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22a9", + "target": "6812400c0c5cf2cf750755f7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b22a9", + "_id": "6812400c0c5cf2cf750755f7", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 155000 @@ -58658,12 +58061,12 @@ "id": "629a282ec4f2b6788102f55b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22b6", + "target": "6812400c0c5cf2cf75075604", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b22b6", + "_id": "6812400c0c5cf2cf75075604", "_tpl": "5f5f41476bdad616ad46d631", "upd": { "StackObjectsCount": 1, @@ -58671,102 +58074,102 @@ } }, { - "_id": "68010065f81036801d0b22b7", + "_id": "6812400c0c5cf2cf75075605", "_tpl": "65731b46cea9255e2102360a", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b22b8", + "_id": "6812400c0c5cf2cf75075606", "_tpl": "65731b4fcea9255e2102360e", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b22b9", + "_id": "6812400c0c5cf2cf75075607", "_tpl": "65731b576e709cddd001ec3f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b22ba", + "_id": "6812400c0c5cf2cf75075608", "_tpl": "65731b60ff6dc44a7d068c4a", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b22bb", + "_id": "6812400c0c5cf2cf75075609", "_tpl": "65731b666e709cddd001ec43", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b22bc", + "_id": "6812400c0c5cf2cf7507560a", "_tpl": "65731b716e709cddd001ec47", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Groin" }, { - "_id": "68010065f81036801d0b22bd", + "_id": "6812400c0c5cf2cf7507560b", "_tpl": "65731b6b6042b0f210020ef6", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Groin_back" }, { - "_id": "68010065f81036801d0b22be", + "_id": "6812400c0c5cf2cf7507560c", "_tpl": "656f664200d62bcd2e024077", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b22bf", + "_id": "6812400c0c5cf2cf7507560d", "_tpl": "654a4f8bc721968a4404ef18", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Left_side_plate" }, { - "_id": "68010065f81036801d0b22c0", + "_id": "6812400c0c5cf2cf7507560e", "_tpl": "654a4f8bc721968a4404ef18", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Right_side_plate" }, { - "_id": "68010065f81036801d0b22c1", + "_id": "6812400c0c5cf2cf7507560f", "_tpl": "657b2797c3dbcb01d60c35ea", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b22b6", + "parentId": "6812400c0c5cf2cf75075604", "slotId": "Back_plate" } ] @@ -58777,12 +58180,12 @@ "id": "629a283f38b22857d2665541", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22c3", + "target": "6812400c0c5cf2cf75075611", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b22c3", + "_id": "6812400c0c5cf2cf75075611", "_tpl": "603409c80ca681766b6a0fb2", "upd": { "StackObjectsCount": 1, @@ -58796,11 +58199,11 @@ "id": "657fbd97c6679fefb3051e42", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b22c4", + "target": "6812400c0c5cf2cf75075612", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b22c4", + "_id": "6812400c0c5cf2cf75075612", "_tpl": "656f664200d62bcd2e024077" } ], @@ -59084,12 +58487,12 @@ "id": "60cb60ba77dc197c77424fa7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22c6", + "target": "6812400c0c5cf2cf75075614", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b22c6", + "_id": "6812400c0c5cf2cf75075614", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 3000 @@ -59103,12 +58506,12 @@ "id": "60cb60d6e3d0247e625da190", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22c8", + "target": "6812400c0c5cf2cf75075616", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b22c8", + "_id": "6812400c0c5cf2cf75075616", "_tpl": "5c066e3a0db834001b7353f0", "upd": { "StackObjectsCount": 1, @@ -59122,11 +58525,11 @@ "id": "60b90bea81c51328c56d7717", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b22c9", + "target": "6812400c0c5cf2cf75075617", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b22c9", + "_id": "6812400c0c5cf2cf75075617", "_tpl": "5df24cf80dee1b22f862e9bc", "upd": { "FireMode": { @@ -59135,86 +58538,86 @@ } }, { - "_id": "68010065f81036801d0b22ca", + "_id": "6812400c0c5cf2cf75075618", "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "68010065f81036801d0b22c9", + "parentId": "6812400c0c5cf2cf75075617", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b22cb", + "_id": "6812400c0c5cf2cf75075619", "_tpl": "5df256570dee1b22f862e9c4", - "parentId": "68010065f81036801d0b22c9", + "parentId": "6812400c0c5cf2cf75075617", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b22cc", + "_id": "6812400c0c5cf2cf7507561a", "_tpl": "5df35e7f2a78646d96665dd4", - "parentId": "68010065f81036801d0b22cb", + "parentId": "6812400c0c5cf2cf75075619", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b22cd", + "_id": "6812400c0c5cf2cf7507561b", "_tpl": "5df35e59c41b2312ea3334d5", "upd": { "Foldable": { "Folded": false } }, - "parentId": "68010065f81036801d0b22c9", + "parentId": "6812400c0c5cf2cf75075617", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b22ce", + "_id": "6812400c0c5cf2cf7507561c", "_tpl": "5df25d3bfd6b4e6e2276dc9a", - "parentId": "68010065f81036801d0b22cd", + "parentId": "6812400c0c5cf2cf7507561b", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b22cf", + "_id": "6812400c0c5cf2cf7507561d", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "68010065f81036801d0b22ce", + "parentId": "6812400c0c5cf2cf7507561c", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b22d0", + "_id": "6812400c0c5cf2cf7507561e", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "68010065f81036801d0b22ce", + "parentId": "6812400c0c5cf2cf7507561c", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b22d1", + "_id": "6812400c0c5cf2cf7507561f", "_tpl": "5df35ea9c41b2312ea3334d8", - "parentId": "68010065f81036801d0b22ce", + "parentId": "6812400c0c5cf2cf7507561c", "slotId": "mod_mount_002" }, { - "_id": "68010065f81036801d0b22d2", + "_id": "6812400c0c5cf2cf75075620", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "68010065f81036801d0b22ce", + "parentId": "6812400c0c5cf2cf7507561c", "slotId": "mod_mount_003" }, { - "_id": "68010065f81036801d0b22d3", + "_id": "6812400c0c5cf2cf75075621", "_tpl": "5df36948bb49d91fb446d5ad", - "parentId": "68010065f81036801d0b22ce", + "parentId": "6812400c0c5cf2cf7507561c", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b22d4", + "_id": "6812400c0c5cf2cf75075622", "_tpl": "5df38a5fb74cd90030650cb6", - "parentId": "68010065f81036801d0b22cd", + "parentId": "6812400c0c5cf2cf7507561b", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b22d5", + "_id": "6812400c0c5cf2cf75075623", "_tpl": "5df35ddddfc58d14537c2036", - "parentId": "68010065f81036801d0b22cd", + "parentId": "6812400c0c5cf2cf7507561b", "slotId": "mod_stock_axis" }, { - "_id": "68010065f81036801d0b22d6", + "_id": "6812400c0c5cf2cf75075624", "_tpl": "5df35e970b92095fd441e4d2", - "parentId": "68010065f81036801d0b22c9", + "parentId": "6812400c0c5cf2cf75075617", "slotId": "mod_mount" } ], @@ -59232,1591 +58635,178 @@ "arenaLocations": [], "status": 0 }, - "5bc4856986f77454c317bea7": { - "QuestName": "The Tarkov Shooter - Part 7", - "_id": "5bc4856986f77454c317bea7", + "625d6ffaf7308432be1d44c5": { + "QuestName": "Network Provider - Part 2", + "_id": "625d6ffaf7308432be1d44c5", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc4856986f77454c317bea7 acceptPlayerMessage", - "changeQuestMessageText": "5bc4856986f77454c317bea7 changeQuestMessageText", - "completePlayerMessage": "5bc4856986f77454c317bea7 completePlayerMessage", + "acceptPlayerMessage": "625d6ffaf7308432be1d44c5 acceptPlayerMessage", + "changeQuestMessageText": "625d6ffaf7308432be1d44c5 changeQuestMessageText", + "completePlayerMessage": "625d6ffaf7308432be1d44c5 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5bc485b586f774726473a857", - "conditions": [ - { - "id": "5bc488ca86f77460ec12a0d0", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "55801eed4bdc2d89578b4588", - "5de652c31b7e3716273428be", - "588892092459774ac91d4b11", - "5bfd297f0db834001a669119", - "5bfea6e90db834001b7347f3", - "5ae08f0a5acfc408fb1398a1", - "5df24cf80dee1b22f862e9bc", - "627e14b21713922ded6f2c15", - "673cab3e03c6a20581028bc1" - ], - "distance": { - "value": 45, - "compareMethod": ">=" - }, - "weaponModsInclusive": [ - [ - "5b86a0e586f7745b600ccb23" - ], - [ - "59bffbb386f77435b379b9c2" - ], - [ - "593d489686f7745c6255d58a" - ], - [ - "5a0d63621526d8dba31fe3bf" - ], - [ - "59fb257e86f7742981561852" - ], - [ - "5a9fbacda2750c00141e080f" - ], - [ - "5a34fe59c4a282000b1521a2" - ], - [ - "5c7955c22e221644f31bfd5e" - ], - [ - "5cff9e84d7ad1a049e54ed55" - ], - [ - "5d44064fa4b9361e4f6eb8b5" - ], - [ - "5e208b9842457a4a7a33d074" - ], - [ - "59fb257e86f7742981561852" - ], - [ - "5dfa3d2b0dee1b22f862eade" - ], - [ - "5c4eecc32e221602b412b440" - ], - [ - "58889c7324597754281f9439" - ], - [ - "5a9fbb74a2750c0032157181" - ], - [ - "5fbe7618d6fa9c00c571bb6c" - ], - [ - "5fbe760793164a5b6278efc8" - ], - [ - "62811fa609427b40ab14e765" - ], - [ - "63877c99e785640d436458ea" - ], - [ - "673f0b36536d64240f01acd6" - ], - [ - "673f0a9370a3ddcf0d0ee0b8" - ], - [ - "673f0a38259f5945d70e43a6" - ] - ], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5bc485b586f774726473a858", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5bdabf6286f7743e171249af", + "conditionType": "PlaceBeacon", + "id": "625ecedaa4eb80027c4f2e0b", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5bc4836986f7740c0152911c", - "status": [ - 4 + "plantTime": 40, + "zoneId": "meh_42_radio_area_mark_1", + "target": [ + "63a0b2eabea67a6d93009e52" ], "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5bc4856986f77454c317bea7 description", - "failMessageText": "5bc4856986f77454c317bea7 failMessageText", - "declinePlayerMessage": "5bc4856986f77454c317bea7 declinePlayerMessage", - "name": "5bc4856986f77454c317bea7 name", - "note": "5bc4856986f77454c317bea7 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5bc4856986f77454c317bea7 startedMessageText", - "successMessageText": "5bc4856986f77454c317bea7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13300, - "id": "60cc9d50826ca0323464bd12", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9d5298b4927060364608", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 85000, - "id": "5bcf261286f7746a464c5684", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22d8", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b22d8", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 85000 - } - } - ] - }, - { - "availableInGameEditions": [], "value": 1, - "id": "5bcf25e886f774378e266a35", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22da", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22da", - "_tpl": "5bc5a35cd4351e450201232f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc9d6f65e4664318606b66", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22dc", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22dc", - "_tpl": "5b86a0e586f7745b600ccb23", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf25f486f7746a472ad9f5", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b22dd", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b22dd", - "_tpl": "5bc5a35cd4351e450201232f" - } - ], - "loyaltyLevel": 3, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "655b80264343a16d2e04766e", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b22e0", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b22df", - "_tpl": "5e023d34e8a400319a28ed44", - "upd": { - "StackObjectsCount": 40 - } - }, - { - "_id": "68010065f81036801d0b22e0", - "_tpl": "5e023d34e8a400319a28ed44", - "upd": { - "StackObjectsCount": 10 - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6396701b9113f06a7c3b2379": { - "QuestName": "Make an Impression", - "_id": "6396701b9113f06a7c3b2379", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6396701b9113f06a7c3b2379 acceptPlayerMessage", - "changeQuestMessageText": "6396701b9113f06a7c3b2379 changeQuestMessageText", - "completePlayerMessage": "6396701b9113f06a7c3b2379 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "639a169e6cd47c525121a116", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Sniper", - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", "visibilityConditions": [] }, { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6397ac912e519e69d2139b27", - "conditions": [ - { - "id": "6397ace18b38442139798209", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 350, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "marksman" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "6397ac912e519e69d2139b26", + "conditionType": "PlaceBeacon", + "id": "625ecee6f7308432be1d44c7", "index": 1, "parentId": "", - "oneSessionOnly": false, "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, + "plantTime": 40, + "zoneId": "meh_42_radio_area_mark_2", + "target": [ + "63a0b2eabea67a6d93009e52" + ], "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "625eceebc4874104f230c0c7", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "meh_42_radio_area_mark_3", + "target": [ + "63a0b2eabea67a6d93009e52" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6386410704a59f742a7a3b45", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "meh_42_radio_area_mark_4", + "target": [ + "63a0b2eabea67a6d93009e52" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "639afe2ddbf1d842d260d7a8", + "id": "6391e25b86e646067c176a91", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "6396700fea19ac7ed845db32", + "target": "625d6ff5ddc94657c21a1625", "status": [ 4 ], "globalQuestCounterId": "", - "availableAfter": 36000, - "dispersion": 0, + "availableAfter": 3600, + "dispersion": 28800, "visibilityConditions": [] } ], "Fail": [] }, - "description": "6396701b9113f06a7c3b2379 description", - "failMessageText": "6396701b9113f06a7c3b2379 failMessageText", - "declinePlayerMessage": "6396701b9113f06a7c3b2379 declinePlayerMessage", - "name": "6396701b9113f06a7c3b2379 name", - "note": "6396701b9113f06a7c3b2379 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "any", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "description": "625d6ffaf7308432be1d44c5 description", + "failMessageText": "625d6ffaf7308432be1d44c5 failMessageText", + "declinePlayerMessage": "625d6ffaf7308432be1d44c5 declinePlayerMessage", + "name": "625d6ffaf7308432be1d44c5 name", + "note": "625d6ffaf7308432be1d44c5 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab3ad15c890e40ca1a30f5.jpg", "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6396701b9113f06a7c3b2379 startedMessageText", - "successMessageText": "6396701b9113f06a7c3b2379 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.04, - "id": "63a6cecf2964a7488f5250af", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a2356c423c8970de419831", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22e2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22e2", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66422df96935050c9b141e96", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22e4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22e4", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a2357ad6d4651e53602b03", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b22e6", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b22e6", - "_tpl": "5a1eaa87fcdbcb001865f75e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0bbaa886f7746941031d82": { - "QuestName": "Bullshit", - "_id": "5c0bbaa886f7746941031d82", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0bbaa886f7746941031d82 acceptPlayerMessage", - "changeQuestMessageText": "5c0bbaa886f7746941031d82 changeQuestMessageText", - "completePlayerMessage": "5c0bbaa886f7746941031d82 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5c50481c86f77410650e0521", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5c12301c86f77419522ba7e4" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5c0bc32986f7743e4d1002d2", - "index": 1, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Q019_3", - "target": [ - "55801eed4bdc2d89578b4588" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5c0bc43e86f7744794440ba5", - "index": 2, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Q019_3", - "target": [ - "59faf7ca86f7740dbe19f6c2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5c12320586f77437e44bcb15", - "index": 3, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Q019_3", - "target": [ - "5c12301c86f77419522ba7e4" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5c17b96486f774331c793f28", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b4795fb86f7745876267770", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "65831b68e0ec02fb54a46d03", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5c1233ac86f77406fa13bae9", - "conditions": [ - { - "id": "5c1233c086f7745cf57b9274", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5c1233d286f7745cf57b9275", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "5c1233ac86f77406fa13baea", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] - }, - "description": "5c0bbaa886f7746941031d82 description", - "failMessageText": "5c0bbaa886f7746941031d82 failMessageText", - "declinePlayerMessage": "5c0bbaa886f7746941031d82 declinePlayerMessage", - "name": "5c0bbaa886f7746941031d82 name", - "note": "5c0bbaa886f7746941031d82 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "Discover", - "isKey": false, - "restartable": true, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c0bbaa886f7746941031d82 startedMessageText", - "successMessageText": "5c0bbaa886f7746941031d82 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 29900, - "id": "60cb617c6a2a1958fc522ce7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.07, - "id": "60c8c09c919c14709f497398", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 120000, - "id": "5c17b9a586f77430a41a0953", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22e8", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b22e8", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 120000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1000, - "id": "60cb61a27c496e588343a1c1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22ea", - "unknown": true, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b22ea", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 1000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5c17bee186f77430a70d197b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b22eb", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b22eb", - "_tpl": "5c1127d0d174af29be75cf68" - } - ], - "loyaltyLevel": 2, - "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "id": "61acec084cce5e7e040ad756", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b22ec", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b22ec", - "_tpl": "606587252535c57a13424cfd", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b22ed", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "68010065f81036801d0b22ec", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b22ee", - "_tpl": "59d6272486f77466146386ff", - "parentId": "68010065f81036801d0b22ec", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b22ef", - "_tpl": "606587a88900dc2d9a55b659", - "parentId": "68010065f81036801d0b22ec", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b22f0", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "68010065f81036801d0b22ef", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b22f1", - "_tpl": "6065c6e7132d4d12c81fd8e1", - "parentId": "68010065f81036801d0b22f0", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b22f2", - "_tpl": "6065dc8a132d4d12c81fd8e3", - "parentId": "68010065f81036801d0b22f0", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b22f3", - "_tpl": "6065880c132d4d12c81fd8da", - "parentId": "68010065f81036801d0b22ef", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b22f4", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "68010065f81036801d0b22f3", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b22f5", - "_tpl": "5bc09a18d4351e003562b68e", - "parentId": "68010065f81036801d0b22ef", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b22f6", - "_tpl": "606587e18900dc2d9a55b65f", - "parentId": "68010065f81036801d0b22ec", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b22f7", - "_tpl": "606587d11246154cad35d635", - "parentId": "68010065f81036801d0b22f6", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b22f8", - "_tpl": "606587bd6d0bd7580617bacc", - "parentId": "68010065f81036801d0b22ec", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "629f070fca453d29513994d4", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "id": "657fc2e2fd86b9d9680c4a1c", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b22f9", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b22f9", - "_tpl": "656fa25e94b480b8a500c0e0" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "597a0f5686f774273b74f676": { - "QuestName": "Chemical - Part 4", - "_id": "597a0f5686f774273b74f676", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "597a0f5686f774273b74f676 acceptPlayerMessage", - "changeQuestMessageText": "597a0f5686f774273b74f676 changeQuestMessageText", - "completePlayerMessage": "597a0f5686f774273b74f676 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fbc9586f77459d52a16c3", - "conditions": [ - { - "id": "5a3fbcb286f7745b44117b91", - "dynamicLocale": false, - "target": "gazel", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fbc9586f77459d52a16c4", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "PlaceBeacon", - "id": "59b242ea86f7741e6e0e7a86", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "gazel", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "59b95de686f77418457056ee", - "conditions": [ - { - "id": "59b95df386f7741b653edfd3", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - }, - { - "id": "59b95df686f774184302e219", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "59b95de686f77418457056ef", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57798086f774411f6c320b", - "target": "59b242ea86f7741e6e0e7a86", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59b95cda86f77418424a36ce", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 11, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59c2500d86f774494e06332f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a0e5786f77426d66c0636", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "597a19ff86f774792c2e36f2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a171586f77405ba6887d3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "597a1a0486f774779c70e8a6", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "597a160786f77477531d39d2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "597a0f5686f774273b74f676 description", - "failMessageText": "597a0f5686f774273b74f676 failMessageText", - "declinePlayerMessage": "597a0f5686f774273b74f676 declinePlayerMessage", - "name": "597a0f5686f774273b74f676 name", - "note": "597a0f5686f774273b74f676 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5998365786f7745cb22fea42.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "597a0f5686f774273b74f676 startedMessageText", - "successMessageText": "597a0f5686f774273b74f676 successMessageText", + "startedMessageText": "625d6ffaf7308432be1d44c5 startedMessageText", + "successMessageText": "625d6ffaf7308432be1d44c5 successMessageText", "rewards": { "Started": [ { "availableInGameEditions": [], - "value": 1, - "id": "59983ed086f7740a8a2bd18c", + "value": 4, + "id": "63a4182aa3a2b32b5f6e0090", "type": "Item", "index": 0, - "target": "68010065f81036801d0b22fb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22fb", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 6500, - "id": "60c8b0aa9bdefb3130121b0b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8b0b5e4d30047b777b31a", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 35000, - "id": "5ebfc029b5549c7b5203b581", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22fd", + "target": "6812400c0c5cf2cf75075629", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b22fd", - "_tpl": "5449016a4bdc2d6f028b456f", + "_id": "6812400c0c5cf2cf75075626", + "_tpl": "63a0b2eabea67a6d93009e52", "upd": { - "StackObjectsCount": 35000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ebfc018451f0b0e647eb471", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b22ff", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b22ff", - "_tpl": "5e2af55f86f7746d4159f07c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [ - { - "availableInGameEditions": [], - "value": -0.25, - "id": "60c8be9de4d30047b777b31e", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - } - ] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5edab736cc183c769d778bc2": { - "QuestName": "Colleagues - Part 1", - "_id": "5edab736cc183c769d778bc2", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5edab736cc183c769d778bc2 acceptPlayerMessage", - "changeQuestMessageText": "5edab736cc183c769d778bc2 changeQuestMessageText", - "completePlayerMessage": "5edab736cc183c769d778bc2 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5edab7d3cc183c769d778bc4", - "conditions": [ - { - "id": "5edab8410880da21347b3823", - "dynamicLocale": false, - "target": "ter_023_area_1_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5edab7d3cc183c769d778bc5", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5edab8890880da21347b3825", - "conditions": [ - { - "id": "5edab8aad143ed1d6378d123", - "dynamicLocale": false, - "target": "ter_023_area_3_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5edab8890880da21347b3826", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5edab8e216d985118871ba17", - "conditions": [ - { - "id": "5edab8f77869412e9c669c24", - "dynamicLocale": false, - "target": "ter_023_area_2_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5edab8e216d985118871ba18", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5f03969a51823847c253af9f", - "conditions": [ - { - "id": "5f0396babb4e27377c090ced", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5f039d425ab21175a70122e2", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "5f03969a51823847c253afa0", - "index": 3, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5f104ae158bd417a8a3e9d8f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "596a1e6c86f7741ddc2d3206", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "5edababacecc0069284c0ec7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 21, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5edab736cc183c769d778bc2 description", - "failMessageText": "5edab736cc183c769d778bc2 failMessageText", - "declinePlayerMessage": "5edab736cc183c769d778bc2 declinePlayerMessage", - "name": "5edab736cc183c769d778bc2 name", - "note": "5edab736cc183c769d778bc2 note", - "traderId": "54cb57776803fa99248b456e", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5edab736cc183c769d778bc2 startedMessageText", - "successMessageText": "5edab736cc183c769d778bc2 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 12300, - "id": "60c8c5b18dfbfc09882efd2a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8c5b683161b326c471117", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 45000, - "id": "5f0d99e04178576c5352c046", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2301", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2301", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 45000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb72ac7c496e588343a1e7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2304", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2303", - "_tpl": "5c0e531286f7747fa54205c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2304", - "_tpl": "5c0e531286f7747fa54205c2", + "_id": "6812400c0c5cf2cf75075627", + "_tpl": "63a0b2eabea67a6d93009e52", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb72bba7d63f18200a24b0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2307", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2306", - "_tpl": "5c0e531d86f7747fa23f4d42", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2307", - "_tpl": "5c0e531d86f7747fa23f4d42", + "_id": "6812400c0c5cf2cf75075628", + "_tpl": "63a0b2eabea67a6d93009e52", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075629", + "_tpl": "63a0b2eabea67a6d93009e52", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a5720622ea2f078518814c", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf7507562b", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507562b", + "_tpl": "63a0b2eabea67a6d93009e52", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64f731ab83cfca080a361e42": { - "QuestName": "Pets Wont Need It - Part 1", - "_id": "64f731ab83cfca080a361e42", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f731ab83cfca080a361e42 acceptPlayerMessage", - "changeQuestMessageText": "64f731ab83cfca080a361e42 changeQuestMessageText", - "completePlayerMessage": "64f731ab83cfca080a361e42 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64f731fa39e45b527a7c4301", - "conditions": [ - { - "id": "64f7320e32bed22c3e0c7725", - "dynamicLocale": false, - "target": "quest_zone_find_2st_med_invent1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "64f731fa39e45b527a7c4300", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64f732240e186112c4455d85", - "conditions": [ - { - "id": "64f7323b9a4f905106515210", - "dynamicLocale": false, - "target": "quest_zone_find_2st_med_invent2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "64f732240e186112c4455d84", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64f7325739e45b527a7c4303", - "conditions": [ - { - "id": "64f732641a5f313cb144c20b", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "64f7327032bed22c3e0c7726", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "64f7325739e45b527a7c4302", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f8ca5e7d39ff0e7624cd6c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639135d89444fb141f4e6eea", - "status": [ - 4 ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] + "loyaltyLevel": 1, + "traderId": 10 } ], - "Fail": [] - }, - "description": "64f731ab83cfca080a361e42 description", - "failMessageText": "64f731ab83cfca080a361e42 failMessageText", - "declinePlayerMessage": "64f731ab83cfca080a361e42 declinePlayerMessage", - "name": "64f731ab83cfca080a361e42 name", - "note": "64f731ab83cfca080a361e42 note", - "traderId": "54cb57776803fa99248b456e", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/64f8b6f3b4918f39d363e0ff.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64f731ab83cfca080a361e42 startedMessageText", - "successMessageText": "64f731ab83cfca080a361e42 successMessageText", - "rewards": { - "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 8100, - "id": "64f732979a4f905106515211", + "value": 19100, + "id": "63a5d4c7b7f4570d3a29279e", "type": "Experience", "index": 0, "unknown": false @@ -60824,731 +58814,11 @@ { "availableInGameEditions": [], "value": 0.01, - "id": "64f8ca69c8626c7d46040355", + "id": "63a5d4cf08f1f305635502f0", "type": "TraderStanding", "index": 0, - "target": "54cb57776803fa99248b456e", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false - }, - { - "availableInGameEditions": [], - "value": 43000, - "id": "64f8ca73b997eb4f42756175", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2309", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2309", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 43000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "64f8ca7ba9c59f365c4eae25", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b230e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b230b", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b230c", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b230d", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b230e", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64f8ca837d39ff0e7624cd6d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2311", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2310", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2311", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64f8ca8905cb58236609a356", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2314", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2313", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2314", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "59689fbd86f7740d137ebfc4": { - "QuestName": "Operation Aquarius - Part 1", - "_id": "59689fbd86f7740d137ebfc4", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59689fbd86f7740d137ebfc4 acceptPlayerMessage", - "changeQuestMessageText": "59689fbd86f7740d137ebfc4 changeQuestMessageText", - "completePlayerMessage": "59689fbd86f7740d137ebfc4 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a3fb73b86f77458e0324375", - "conditions": [ - { - "id": "5a3fb74d86f7746ce457a0a6", - "dynamicLocale": false, - "target": "room206_water", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5a3fb73b86f77458e0324376", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5968a06486f7740d14064727", - "conditions": [ - { - "id": "59885e6f86f7746ffd5439dc", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - }, - { - "id": "5a577cb386f774727a7198ad", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5968a06486f7740d14064728", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57767286f77448f16787ed", - "target": "5a3fb73b86f77458e0324376", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a928cd86f7747804332c78", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 6, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "596a1fe886f7741dde183b0c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5967733e86f774602332fc84", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59689fbd86f7740d137ebfc4 description", - "failMessageText": "59689fbd86f7740d137ebfc4 failMessageText", - "declinePlayerMessage": "59689fbd86f7740d137ebfc4 declinePlayerMessage", - "name": "59689fbd86f7740d137ebfc4 name", - "note": "59689fbd86f7740d137ebfc4 note", - "traderId": "54cb57776803fa99248b456e", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5968a09a86f7740d137ebfc5.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59689fbd86f7740d137ebfc4 startedMessageText", - "successMessageText": "59689fbd86f7740d137ebfc4 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 3300, - "id": "60c8c24b9339363e8f0c6ae3", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60c8c263919c14709f497399", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 14000, - "id": "5a2fb66886f774769732daa9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2316", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2316", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 14000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "60cb664a3e4e974efa345ca8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b231c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2318", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2319", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b231a", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b231b", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b231c", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb666e7c496e588343a1cf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b231e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b231e", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": -0.02, - "id": "60c8c2718dfbfc09882efd28", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "626bd75d5bef5d7d590bd415": { - "QuestName": "Top Secret", - "_id": "626bd75d5bef5d7d590bd415", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "626bd75d5bef5d7d590bd415 acceptPlayerMessage", - "changeQuestMessageText": "626bd75d5bef5d7d590bd415 changeQuestMessageText", - "completePlayerMessage": "626bd75d5bef5d7d590bd415 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ac19f9de609574d97adf79", - "conditions": [ - { - "id": "63ac1a0de842787ad2135749", - "dynamicLocale": false, - "target": "qlight_extension_bariga1_exploration1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63ac19f9de609574d97adf78", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "62863b9ae5b4f5010e0d30c8", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "628393620d8524273e7eb028" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "626c30c55bef5d7d590bd41b", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "628393620d8524273e7eb028" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "62a0871caf34e73a266d9257", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6179b4f16e9dd54ac275e407", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a4512522ea2f0785180f17", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "625d700cc48e6c62a440fab5", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 3600, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "626bd75d5bef5d7d590bd415 description", - "failMessageText": "626bd75d5bef5d7d590bd415 failMessageText", - "declinePlayerMessage": "626bd75d5bef5d7d590bd415 declinePlayerMessage", - "name": "626bd75d5bef5d7d590bd415 name", - "note": "626bd75d5bef5d7d590bd415 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/628b802d50261e312a790512.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "626bd75d5bef5d7d590bd415 startedMessageText", - "successMessageText": "626bd75d5bef5d7d590bd415 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 11700, - "id": "629a25f9f632c75004231ed0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "62b043974fe91b6f8628068e", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "628b84a6e62b673350065195", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2320", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2320", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "629a286355d6b6603224edd6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2321", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2321", - "_tpl": "628a60ae6b1d481ff772e9c8", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2322", - "_tpl": "628a83c29179c324ed269508", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2323", - "_tpl": "628a66b41d5e41750e314f34", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2324", - "_tpl": "628a664bccaab13006640e47", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2325", - "_tpl": "628a665a86cbd9750d2ff5e5", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2326", - "_tpl": "628a7b23b0f75035732dd565", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2327", - "_tpl": "628a6678ccaab13006640e49", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b2328", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "68010065f81036801d0b2327", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2329", - "_tpl": "628a85ee6b1d481ff772e9d5", - "parentId": "68010065f81036801d0b2328", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b232a", - "_tpl": "59d625f086f774661516605d", - "parentId": "68010065f81036801d0b2321", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "629a2881e8590f3a3d59ea9d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b232d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b232c", - "_tpl": "6272874a6c47bd74f92e2087", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b232d", - "_tpl": "6272874a6c47bd74f92e2087", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "629a289640f4512cc6491db7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2334", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2330", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2331", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2330", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2332", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2333", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2332", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2334", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2335", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2334", - "slotId": "cartridges" - } - ] } ], "Fail": [] @@ -61686,12 +58956,12 @@ "id": "61ae0b7ffe09770615158bf5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2337", + "target": "6812400c0c5cf2cf7507562d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2337", + "_id": "6812400c0c5cf2cf7507562d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 155000 @@ -61704,11 +58974,11 @@ "id": "61ae0b931e1d2540cf47d6b5", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2338", + "target": "6812400c0c5cf2cf7507562e", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2338", + "_id": "6812400c0c5cf2cf7507562e", "_tpl": "5cbdc23eae9215001136a407" } ], @@ -61878,12 +59148,12 @@ "id": "5f0da1d469678b71a17f31f1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b233a", + "target": "6812400c0c5cf2cf75075630", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b233a", + "_id": "6812400c0c5cf2cf75075630", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 60000 @@ -61897,12 +59167,12 @@ "id": "60cb731d65e4664318606ac7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b233c", + "target": "6812400c0c5cf2cf75075632", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b233c", + "_id": "6812400c0c5cf2cf75075632", "_tpl": "5d02797c86f774203f38e30a", "upd": { "StackObjectsCount": 1, @@ -61917,12 +59187,12 @@ "id": "60cb73357c496e588343a1ea", "type": "Item", "index": 0, - "target": "68010065f81036801d0b233e", + "target": "6812400c0c5cf2cf75075634", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b233e", + "_id": "6812400c0c5cf2cf75075634", "_tpl": "5ed515ece452db0eb56fc028", "upd": { "StackObjectsCount": 1, @@ -62068,12 +59338,12 @@ "id": "5a6887c686f77472c17ca5ed", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2340", + "target": "6812400c0c5cf2cf75075636", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2340", + "_id": "6812400c0c5cf2cf75075636", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -62087,12 +59357,12 @@ "id": "5ac665d286f77405d472939f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2342", + "target": "6812400c0c5cf2cf75075638", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2342", + "_id": "6812400c0c5cf2cf75075638", "_tpl": "5aafbcd986f7745e590fff23", "upd": { "StackObjectsCount": 1, @@ -62112,40 +59382,309 @@ "arenaLocations": [], "status": 0 }, - "5bc480a686f7741af0342e29": { - "QuestName": "The Tarkov Shooter - Part 4", - "_id": "5bc480a686f7741af0342e29", + "59c93e8e86f7742a406989c4": { + "QuestName": "Loyalty Buyout", + "_id": "59c93e8e86f7742a406989c4", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5bc480a686f7741af0342e29 acceptPlayerMessage", - "changeQuestMessageText": "5bc480a686f7741af0342e29 changeQuestMessageText", - "completePlayerMessage": "5bc480a686f7741af0342e29 completePlayerMessage", + "acceptPlayerMessage": "59c93e8e86f7742a406989c4 acceptPlayerMessage", + "changeQuestMessageText": "59c93e8e86f7742a406989c4 changeQuestMessageText", + "completePlayerMessage": "59c93e8e86f7742a406989c4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "596a10d886f7741ddf11dbf0", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5449016a4bdc2d6f028b456f" + ], + "globalQuestCounterId": "", + "value": 1000000, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "596a13af86f77420d232804c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a0f5686f774273b74f676", + "status": [ + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59c93e8e86f7742a406989c4 description", + "failMessageText": "59c93e8e86f7742a406989c4 failMessageText", + "declinePlayerMessage": "59c93e8e86f7742a406989c4 declinePlayerMessage", + "name": "59c93e8e86f7742a406989c4 name", + "note": "59c93e8e86f7742a406989c4 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59c93e8e86f7742a406989c4 startedMessageText", + "successMessageText": "59c93e8e86f7742a406989c4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.25, + "id": "60c8beae80b2027f403dd99b", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6179ad0a6e9dd54ac275e3f2": { + "QuestName": "The Huntsman Path - Outcasts", + "_id": "6179ad0a6e9dd54ac275e3f2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6179ad0a6e9dd54ac275e3f2 acceptPlayerMessage", + "changeQuestMessageText": "6179ad0a6e9dd54ac275e3f2 changeQuestMessageText", + "completePlayerMessage": "6179ad0a6e9dd54ac275e3f2 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "657b0567d69311af78c0633f", + "id": "617bf1e1d93d977d24520520", "conditions": [ { - "id": "657b05bb940c84649607760a", + "id": "617bf20a52e86c73d372a913", "dynamicLocale": false, - "target": "AnyPmc", + "target": "Savage", "compareMethod": ">=", - "value": 1, + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "exUsec" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "617bf1e1d93d977d2452051f", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "61abcae279c3a477d0122456", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61ad53f20665b606540b2425", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 22, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6179ad0a6e9dd54ac275e3f2 description", + "failMessageText": "6179ad0a6e9dd54ac275e3f2 failMessageText", + "declinePlayerMessage": "6179ad0a6e9dd54ac275e3f2 declinePlayerMessage", + "name": "6179ad0a6e9dd54ac275e3f2 name", + "note": "6179ad0a6e9dd54ac275e3f2 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61abc9240b56a53df32c6865.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6179ad0a6e9dd54ac275e3f2 startedMessageText", + "successMessageText": "6179ad0a6e9dd54ac275e3f2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9000, + "id": "617bf21aea3cfc3293312426", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "61ad5472118c386d912fd9b6", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 110000, + "id": "61abcb490330382cea7bae3e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507563a", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507563a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 110000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b84e09db22d43ab42b70d", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf7507563e", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507563c", + "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "6812400c0c5cf2cf7507563d", + "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "6812400c0c5cf2cf7507563e", + "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "upd": { + "StackObjectsCount": 10 + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "63a9ae24009ffc6a551631a5": { + "QuestName": "Best Job in the World", + "_id": "63a9ae24009ffc6a551631a5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "63a9ae24009ffc6a551631a5 acceptPlayerMessage", + "changeQuestMessageText": "63a9ae24009ffc6a551631a5 changeQuestMessageText", + "completePlayerMessage": "63a9ae24009ffc6a551631a5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a9ae63da7999196148ba5d", + "conditions": [ + { + "id": "63a9b16a87c76a25c912125e", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, "weapon": [ - "627e14b21713922ded6f2c15", - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "61f7c9e189e6fb1a5e3ea78d" + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "628b5638ad252a16da6dd245" ], "distance": { - "value": 80, + "value": 100, "compareMethod": ">=" }, "weaponModsInclusive": [], @@ -62165,7 +59704,7 @@ } ] }, - "id": "657b0567ec71635f16471dd2", + "id": "63a9ae63da7999196148ba5c", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -62173,7 +59712,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 5, + "value": 30, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -62181,12 +59720,38 @@ ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "5bdabf3386f7743e171249ae", + "conditionType": "Level", + "id": "63a9f017c31b00242d28a9be", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5bc47dbf86f7741ee74e93b9", + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a9f02fda7999196148ba81", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "59ca2eb686f77445a80ed049", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a9f035813bba58a50ca088", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "639136f086e646067c176a8b", "status": [ 4 ], @@ -62198,131 +59763,72 @@ ], "Fail": [] }, - "description": "5bc480a686f7741af0342e29 description", - "failMessageText": "5bc480a686f7741af0342e29 failMessageText", - "declinePlayerMessage": "5bc480a686f7741af0342e29 declinePlayerMessage", - "name": "5bc480a686f7741af0342e29 name", - "note": "5bc480a686f7741af0342e29 note", - "traderId": "5c0647fdd443bc2504c2d371", + "description": "63a9ae24009ffc6a551631a5 description", + "failMessageText": "63a9ae24009ffc6a551631a5 failMessageText", + "declinePlayerMessage": "63a9ae24009ffc6a551631a5 declinePlayerMessage", + "name": "63a9ae24009ffc6a551631a5 name", + "note": "63a9ae24009ffc6a551631a5 note", + "traderId": "54cb50c76803fa8b248b4571", "location": "any", - "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", + "image": "/files/quest/icon/59c273da86f77459b8017e7b.jpg", "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5bc480a686f7741af0342e29 startedMessageText", - "successMessageText": "5bc480a686f7741af0342e29 successMessageText", + "startedMessageText": "63a9ae24009ffc6a551631a5 startedMessageText", + "successMessageText": "63a9ae24009ffc6a551631a5 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 11800, - "id": "60cc9c26826ca0323464bd10", + "value": 15400, + "id": "63a9f042009ffc6a551631cc", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9c6e98b4927060364606", + "value": 0.03, + "id": "63a9f049c31b00242d28a9bf", "type": "TraderStanding", "index": 0, - "target": "5c0647fdd443bc2504c2d371", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "value": 80000, - "id": "60cc9c6a826ca0323464bd11", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2344", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2344", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 80000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf2b8f86f774722d789e55", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2346", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2346", - "_tpl": "5bbdb811d4351e45020113c7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5bcf2ba086f774723055e995", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2348", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2348", - "_tpl": "5bbde41ed4351e003562b038", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5bcf233486f7746a486b84c4", + "id": "63a9f74ac31b00242d28a9c8", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2349", + "target": "6812400c0c5cf2cf7507563f", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2349", - "_tpl": "5bbdb811d4351e45020113c7" + "_id": "6812400c0c5cf2cf7507563f", + "_tpl": "62e7e7bbe6da9612f743f1e0" } ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" + "loyaltyLevel": 3, + "traderId": "54cb50c76803fa8b248b4571" }, { "availableInGameEditions": [], - "id": "5bcf235486f7746a45695afc", + "id": "63a9f750009ffc6a551631d0", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b234a", + "target": "6812400c0c5cf2cf75075640", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b234a", - "_tpl": "5bbde41ed4351e003562b038" + "_id": "6812400c0c5cf2cf75075640", + "_tpl": "5656eb674bdc2d35148b457c" } ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" + "loyaltyLevel": 3, + "traderId": "54cb50c76803fa8b248b4571" } ], "Fail": [] @@ -62513,12 +60019,12 @@ "id": "5b49fcac86f7746d4c5db1d0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b234f", + "target": "6812400c0c5cf2cf75075645", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b234c", + "_id": "6812400c0c5cf2cf75075642", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -62526,7 +60032,7 @@ } }, { - "_id": "68010065f81036801d0b234d", + "_id": "6812400c0c5cf2cf75075643", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -62534,7 +60040,7 @@ } }, { - "_id": "68010065f81036801d0b234e", + "_id": "6812400c0c5cf2cf75075644", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -62542,7 +60048,7 @@ } }, { - "_id": "68010065f81036801d0b234f", + "_id": "6812400c0c5cf2cf75075645", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -62576,12 +60082,12 @@ "id": "5b48746086f7746eb62fc10d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2351", + "target": "6812400c0c5cf2cf75075647", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2351", + "_id": "6812400c0c5cf2cf75075647", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 65000 @@ -62595,12 +60101,12 @@ "id": "5b48747e86f7744e6232749c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2353", + "target": "6812400c0c5cf2cf75075649", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2353", + "_id": "6812400c0c5cf2cf75075649", "_tpl": "59faf7ca86f7740dbe19f6c2", "upd": { "StackObjectsCount": 1, @@ -62615,12 +60121,12 @@ "id": "60cb611a98b4927060364536", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2355", + "target": "6812400c0c5cf2cf7507564b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2355", + "_id": "6812400c0c5cf2cf7507564b", "_tpl": "5d235b4d86f7742e017bc88a", "upd": { "StackObjectsCount": 2 @@ -63447,12 +60953,12 @@ "id": "63a9edaa7cd7613adb652528", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2357", + "target": "6812400c0c5cf2cf7507564d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2357", + "_id": "6812400c0c5cf2cf7507564d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 100000 @@ -63465,11 +60971,11 @@ "id": "63a9d1a4009ffc6a551631b6", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2358", + "target": "6812400c0c5cf2cf7507564e", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2358", + "_id": "6812400c0c5cf2cf7507564e", "_tpl": "63920105a83e15700a00f168" } ], @@ -63487,6 +60993,2150 @@ "arenaLocations": [], "status": 0 }, + "5c0bbaa886f7746941031d82": { + "QuestName": "Bullshit", + "_id": "5c0bbaa886f7746941031d82", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c0bbaa886f7746941031d82 acceptPlayerMessage", + "changeQuestMessageText": "5c0bbaa886f7746941031d82 changeQuestMessageText", + "completePlayerMessage": "5c0bbaa886f7746941031d82 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5c50481c86f77410650e0521", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5c12301c86f77419522ba7e4" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5c0bc32986f7743e4d1002d2", + "index": 1, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Q019_3", + "target": [ + "55801eed4bdc2d89578b4588" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5c0bc43e86f7744794440ba5", + "index": 2, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Q019_3", + "target": [ + "59faf7ca86f7740dbe19f6c2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5c12320586f77437e44bcb15", + "index": 3, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Q019_3", + "target": [ + "5c12301c86f77419522ba7e4" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5c17b96486f774331c793f28", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b4795fb86f7745876267770", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "65831b68e0ec02fb54a46d03", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5c1233ac86f77406fa13bae9", + "conditions": [ + { + "id": "5c1233c086f7745cf57b9274", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5c1233d286f7745cf57b9275", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c1233ac86f77406fa13baea", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] + }, + "description": "5c0bbaa886f7746941031d82 description", + "failMessageText": "5c0bbaa886f7746941031d82 failMessageText", + "declinePlayerMessage": "5c0bbaa886f7746941031d82 declinePlayerMessage", + "name": "5c0bbaa886f7746941031d82 name", + "note": "5c0bbaa886f7746941031d82 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "Discover", + "isKey": false, + "restartable": true, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0bbaa886f7746941031d82 startedMessageText", + "successMessageText": "5c0bbaa886f7746941031d82 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 29900, + "id": "60cb617c6a2a1958fc522ce7", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.07, + "id": "60c8c09c919c14709f497398", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 120000, + "id": "5c17b9a586f77430a41a0953", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075650", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075650", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 120000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1000, + "id": "60cb61a27c496e588343a1c1", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075652", + "unknown": true, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075652", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5c17bee186f77430a70d197b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075653", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075653", + "_tpl": "5c1127d0d174af29be75cf68" + } + ], + "loyaltyLevel": 2, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "id": "61acec084cce5e7e040ad756", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075654", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075654", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075655", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "6812400c0c5cf2cf75075654", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075656", + "_tpl": "59d6272486f77466146386ff", + "parentId": "6812400c0c5cf2cf75075654", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075657", + "_tpl": "606587a88900dc2d9a55b659", + "parentId": "6812400c0c5cf2cf75075654", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075658", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "6812400c0c5cf2cf75075657", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075659", + "_tpl": "6065c6e7132d4d12c81fd8e1", + "parentId": "6812400c0c5cf2cf75075658", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507565a", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "6812400c0c5cf2cf75075658", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf7507565b", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "6812400c0c5cf2cf75075657", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf7507565c", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "6812400c0c5cf2cf7507565b", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf7507565d", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "6812400c0c5cf2cf75075657", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf7507565e", + "_tpl": "606587e18900dc2d9a55b65f", + "parentId": "6812400c0c5cf2cf75075654", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf7507565f", + "_tpl": "606587d11246154cad35d635", + "parentId": "6812400c0c5cf2cf7507565e", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075660", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "6812400c0c5cf2cf75075654", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "629f070fca453d29513994d4", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "id": "657fc2e2fd86b9d9680c4a1c", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075661", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075661", + "_tpl": "656fa25e94b480b8a500c0e0" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "597a0f5686f774273b74f676": { + "QuestName": "Chemical - Part 4", + "_id": "597a0f5686f774273b74f676", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "597a0f5686f774273b74f676 acceptPlayerMessage", + "changeQuestMessageText": "597a0f5686f774273b74f676 changeQuestMessageText", + "completePlayerMessage": "597a0f5686f774273b74f676 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fbc9586f77459d52a16c3", + "conditions": [ + { + "id": "5a3fbcb286f7745b44117b91", + "dynamicLocale": false, + "target": "gazel", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fbc9586f77459d52a16c4", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "PlaceBeacon", + "id": "59b242ea86f7741e6e0e7a86", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "gazel", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "59b95de686f77418457056ee", + "conditions": [ + { + "id": "59b95df386f7741b653edfd3", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + }, + { + "id": "59b95df686f774184302e219", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "59b95de686f77418457056ef", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57798086f774411f6c320b", + "target": "59b242ea86f7741e6e0e7a86", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59b95cda86f77418424a36ce", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 11, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59c2500d86f774494e06332f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a0e5786f77426d66c0636", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "597a19ff86f774792c2e36f2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a171586f77405ba6887d3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "597a1a0486f774779c70e8a6", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "597a160786f77477531d39d2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "597a0f5686f774273b74f676 description", + "failMessageText": "597a0f5686f774273b74f676 failMessageText", + "declinePlayerMessage": "597a0f5686f774273b74f676 declinePlayerMessage", + "name": "597a0f5686f774273b74f676 name", + "note": "597a0f5686f774273b74f676 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5998365786f7745cb22fea42.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "597a0f5686f774273b74f676 startedMessageText", + "successMessageText": "597a0f5686f774273b74f676 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "59983ed086f7740a8a2bd18c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075663", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075663", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 6500, + "id": "60c8b0aa9bdefb3130121b0b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8b0b5e4d30047b777b31a", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 35000, + "id": "5ebfc029b5549c7b5203b581", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075665", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075665", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 35000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ebfc018451f0b0e647eb471", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075667", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075667", + "_tpl": "5e2af55f86f7746d4159f07c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [ + { + "availableInGameEditions": [], + "value": -0.25, + "id": "60c8be9de4d30047b777b31e", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + } + ] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5edab736cc183c769d778bc2": { + "QuestName": "Colleagues - Part 1", + "_id": "5edab736cc183c769d778bc2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5edab736cc183c769d778bc2 acceptPlayerMessage", + "changeQuestMessageText": "5edab736cc183c769d778bc2 changeQuestMessageText", + "completePlayerMessage": "5edab736cc183c769d778bc2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5edab7d3cc183c769d778bc4", + "conditions": [ + { + "id": "5edab8410880da21347b3823", + "dynamicLocale": false, + "target": "ter_023_area_1_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5edab7d3cc183c769d778bc5", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5edab8890880da21347b3825", + "conditions": [ + { + "id": "5edab8aad143ed1d6378d123", + "dynamicLocale": false, + "target": "ter_023_area_3_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5edab8890880da21347b3826", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5edab8e216d985118871ba17", + "conditions": [ + { + "id": "5edab8f77869412e9c669c24", + "dynamicLocale": false, + "target": "ter_023_area_2_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5edab8e216d985118871ba18", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5f03969a51823847c253af9f", + "conditions": [ + { + "id": "5f0396babb4e27377c090ced", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5f039d425ab21175a70122e2", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5f03969a51823847c253afa0", + "index": 3, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5f104ae158bd417a8a3e9d8f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "596a1e6c86f7741ddc2d3206", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "5edababacecc0069284c0ec7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 21, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5edab736cc183c769d778bc2 description", + "failMessageText": "5edab736cc183c769d778bc2 failMessageText", + "declinePlayerMessage": "5edab736cc183c769d778bc2 declinePlayerMessage", + "name": "5edab736cc183c769d778bc2 name", + "note": "5edab736cc183c769d778bc2 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5edab736cc183c769d778bc2 startedMessageText", + "successMessageText": "5edab736cc183c769d778bc2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 12300, + "id": "60c8c5b18dfbfc09882efd2a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8c5b683161b326c471117", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 45000, + "id": "5f0d99e04178576c5352c046", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075669", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075669", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 45000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb72ac7c496e588343a1e7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507566c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507566b", + "_tpl": "5c0e531286f7747fa54205c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507566c", + "_tpl": "5c0e531286f7747fa54205c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb72bba7d63f18200a24b0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507566f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507566e", + "_tpl": "5c0e531d86f7747fa23f4d42", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507566f", + "_tpl": "5c0e531d86f7747fa23f4d42", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "64f731ab83cfca080a361e42": { + "QuestName": "Pets Wont Need It - Part 1", + "_id": "64f731ab83cfca080a361e42", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "64f731ab83cfca080a361e42 acceptPlayerMessage", + "changeQuestMessageText": "64f731ab83cfca080a361e42 changeQuestMessageText", + "completePlayerMessage": "64f731ab83cfca080a361e42 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64f731fa39e45b527a7c4301", + "conditions": [ + { + "id": "64f7320e32bed22c3e0c7725", + "dynamicLocale": false, + "target": "quest_zone_find_2st_med_invent1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "64f731fa39e45b527a7c4300", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64f732240e186112c4455d85", + "conditions": [ + { + "id": "64f7323b9a4f905106515210", + "dynamicLocale": false, + "target": "quest_zone_find_2st_med_invent2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "64f732240e186112c4455d84", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64f7325739e45b527a7c4303", + "conditions": [ + { + "id": "64f732641a5f313cb144c20b", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "64f7327032bed22c3e0c7726", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + } + ] + }, + "id": "64f7325739e45b527a7c4302", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "64f8ca5e7d39ff0e7624cd6c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639135d89444fb141f4e6eea", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "64f731ab83cfca080a361e42 description", + "failMessageText": "64f731ab83cfca080a361e42 failMessageText", + "declinePlayerMessage": "64f731ab83cfca080a361e42 declinePlayerMessage", + "name": "64f731ab83cfca080a361e42 name", + "note": "64f731ab83cfca080a361e42 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/64f8b6f3b4918f39d363e0ff.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "64f731ab83cfca080a361e42 startedMessageText", + "successMessageText": "64f731ab83cfca080a361e42 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8100, + "id": "64f732979a4f905106515211", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "64f8ca69c8626c7d46040355", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 43000, + "id": "64f8ca73b997eb4f42756175", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075671", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075671", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 43000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "64f8ca7ba9c59f365c4eae25", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075676", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075673", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075674", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075675", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075676", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64f8ca837d39ff0e7624cd6d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075679", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075678", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075679", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64f8ca8905cb58236609a356", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507567c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507567b", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507567c", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59689fbd86f7740d137ebfc4": { + "QuestName": "Operation Aquarius - Part 1", + "_id": "59689fbd86f7740d137ebfc4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59689fbd86f7740d137ebfc4 acceptPlayerMessage", + "changeQuestMessageText": "59689fbd86f7740d137ebfc4 changeQuestMessageText", + "completePlayerMessage": "59689fbd86f7740d137ebfc4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5a3fb73b86f77458e0324375", + "conditions": [ + { + "id": "5a3fb74d86f7746ce457a0a6", + "dynamicLocale": false, + "target": "room206_water", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5a3fb73b86f77458e0324376", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5968a06486f7740d14064727", + "conditions": [ + { + "id": "59885e6f86f7746ffd5439dc", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + }, + { + "id": "5a577cb386f774727a7198ad", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5968a06486f7740d14064728", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57767286f77448f16787ed", + "target": "5a3fb73b86f77458e0324376", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a928cd86f7747804332c78", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 6, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "596a1fe886f7741dde183b0c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5967733e86f774602332fc84", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59689fbd86f7740d137ebfc4 description", + "failMessageText": "59689fbd86f7740d137ebfc4 failMessageText", + "declinePlayerMessage": "59689fbd86f7740d137ebfc4 declinePlayerMessage", + "name": "59689fbd86f7740d137ebfc4 name", + "note": "59689fbd86f7740d137ebfc4 note", + "traderId": "54cb57776803fa99248b456e", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5968a09a86f7740d137ebfc5.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59689fbd86f7740d137ebfc4 startedMessageText", + "successMessageText": "59689fbd86f7740d137ebfc4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 3300, + "id": "60c8c24b9339363e8f0c6ae3", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60c8c263919c14709f497399", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 14000, + "id": "5a2fb66886f774769732daa9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507567e", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507567e", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 14000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "60cb664a3e4e974efa345ca8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075684", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075680", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075681", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075682", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075683", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075684", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cb666e7c496e588343a1cf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075686", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075686", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": -0.02, + "id": "60c8c2718dfbfc09882efd28", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "626bd75d5bef5d7d590bd415": { + "QuestName": "Top Secret", + "_id": "626bd75d5bef5d7d590bd415", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "626bd75d5bef5d7d590bd415 acceptPlayerMessage", + "changeQuestMessageText": "626bd75d5bef5d7d590bd415 changeQuestMessageText", + "completePlayerMessage": "626bd75d5bef5d7d590bd415 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ac19f9de609574d97adf79", + "conditions": [ + { + "id": "63ac1a0de842787ad2135749", + "dynamicLocale": false, + "target": "qlight_extension_bariga1_exploration1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63ac19f9de609574d97adf78", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "62863b9ae5b4f5010e0d30c8", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "628393620d8524273e7eb028" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "626c30c55bef5d7d590bd41b", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "628393620d8524273e7eb028" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "62a0871caf34e73a266d9257", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6179b4f16e9dd54ac275e407", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a4512522ea2f0785180f17", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "625d700cc48e6c62a440fab5", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 3600, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "626bd75d5bef5d7d590bd415 description", + "failMessageText": "626bd75d5bef5d7d590bd415 failMessageText", + "declinePlayerMessage": "626bd75d5bef5d7d590bd415 declinePlayerMessage", + "name": "626bd75d5bef5d7d590bd415 name", + "note": "626bd75d5bef5d7d590bd415 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/628b802d50261e312a790512.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "626bd75d5bef5d7d590bd415 startedMessageText", + "successMessageText": "626bd75d5bef5d7d590bd415 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 11700, + "id": "629a25f9f632c75004231ed0", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "62b043974fe91b6f8628068e", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "628b84a6e62b673350065195", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075688", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075688", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "629a286355d6b6603224edd6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075689", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075689", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf7507568a", + "_tpl": "628a83c29179c324ed269508", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf7507568b", + "_tpl": "628a66b41d5e41750e314f34", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507568c", + "_tpl": "628a664bccaab13006640e47", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf7507568d", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf7507568e", + "_tpl": "628a7b23b0f75035732dd565", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf7507568f", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075690", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6812400c0c5cf2cf7507568f", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075691", + "_tpl": "628a85ee6b1d481ff772e9d5", + "parentId": "6812400c0c5cf2cf75075690", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075692", + "_tpl": "59d625f086f774661516605d", + "parentId": "6812400c0c5cf2cf75075689", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "629a2881e8590f3a3d59ea9d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075695", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075694", + "_tpl": "6272874a6c47bd74f92e2087", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075695", + "_tpl": "6272874a6c47bd74f92e2087", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "629a289640f4512cc6491db7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507569c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075698", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075699", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075698", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507569a", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507569b", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf7507569a", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507569c", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507569d", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf7507569c", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5b47749f86f7746c5d6a5fd4": { + "QuestName": "Gunsmith - Part 17", + "_id": "5b47749f86f7746c5d6a5fd4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage", + "changeQuestMessageText": "5b47749f86f7746c5d6a5fd4 changeQuestMessageText", + "completePlayerMessage": "5b47749f86f7746c5d6a5fd4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5b47796686f774374f4a8bb1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5ac66d015acfc400180ae6e4" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 800.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 70.0, + "compareMethod": ">=" + }, + "height": { + "value": 2, + "compareMethod": "<=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 250.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 4, + "compareMethod": "<=" + }, + "containsItems": [ + "5f6339d53ada5942720e2dc3", + "5c0548ae0db834001966a3c2", + "588226ef24597767af46e39c", + "5b3a337e5acfc4704b4a19a0", + "5beec8b20db834001961942a" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0cc186f7744def7f3389", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 31, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f082f86f7747a284dd609", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac242ab86f77412464f68b4", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b47749f86f7746c5d6a5fd4 description", + "failMessageText": "5b47749f86f7746c5d6a5fd4 failMessageText", + "declinePlayerMessage": "5b47749f86f7746c5d6a5fd4 declinePlayerMessage", + "name": "5b47749f86f7746c5d6a5fd4 name", + "note": "5b47749f86f7746c5d6a5fd4 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5b47859886f7744d1b23c4f5.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b47749f86f7746c5d6a5fd4 startedMessageText", + "successMessageText": "5b47749f86f7746c5d6a5fd4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 21400, + "id": "60cc7898179f8541b846926a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc789c2b555f16df5c41bb", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 35000, + "id": "5b48761d86f7744abe3d1972", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507569f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507569f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 35000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "639af815f5765f47cc7f0e66", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750756a4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750756a1", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750756a2", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750756a3", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750756a4", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "639af822ad9d7e3216668f67", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750756a7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750756a6", + "_tpl": "5e2aedd986f7746d404f3aa4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750756a7", + "_tpl": "5e2aedd986f7746d404f3aa4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5b48e8bb86f774498467142c", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750756a8", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750756a8", + "_tpl": "588226ef24597767af46e39c" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "60b8f61d81c51328c56d7714", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750756a9", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750756a9", + "_tpl": "5a33e75ac4a2826c6e06d759" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19cf55032c67f050dd962", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750756aa", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750756aa", + "_tpl": "5e21ca18e4d47f0da15e77dd" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19d04423c8970de419818", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750756ab", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750756ab", + "_tpl": "619b69037b9de8162902673e" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "64f5aac4b63b74469b6c14c2": { "QuestName": "Glory to CPSU - Part 2", "_id": "64f5aac4b63b74469b6c14c2", @@ -63645,12 +63295,12 @@ "id": "64f5aac4b63b74469b6c14cd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b235a", + "target": "6812400c0c5cf2cf750756ad", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b235a", + "_id": "6812400c0c5cf2cf750756ad", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 50000 @@ -63664,12 +63314,12 @@ "id": "64f8cbe5c8626c7d46040421", "type": "Item", "index": 0, - "target": "68010065f81036801d0b235b", + "target": "6812400c0c5cf2cf750756ae", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b235b", + "_id": "6812400c0c5cf2cf750756ae", "_tpl": "643ea5b23db6f9f57107d9fd", "upd": { "StackObjectsCount": 1, @@ -63680,57 +63330,57 @@ } }, { - "_id": "68010065f81036801d0b235c", + "_id": "6812400c0c5cf2cf750756af", "_tpl": "6410745d5dd49d77bd078485", - "parentId": "68010065f81036801d0b235b", + "parentId": "6812400c0c5cf2cf750756ae", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b235d", + "_id": "6812400c0c5cf2cf750756b0", "_tpl": "6410758c857473525b08bb77", - "parentId": "68010065f81036801d0b235b", + "parentId": "6812400c0c5cf2cf750756ae", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b235e", + "_id": "6812400c0c5cf2cf750756b1", "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "68010065f81036801d0b235d", + "parentId": "6812400c0c5cf2cf750756b0", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b235f", + "_id": "6812400c0c5cf2cf750756b2", "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "68010065f81036801d0b235e", + "parentId": "6812400c0c5cf2cf750756b1", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2360", + "_id": "6812400c0c5cf2cf750756b3", "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "68010065f81036801d0b235d", + "parentId": "6812400c0c5cf2cf750756b0", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2361", + "_id": "6812400c0c5cf2cf750756b4", "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "68010065f81036801d0b235b", + "parentId": "6812400c0c5cf2cf750756ae", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2362", + "_id": "6812400c0c5cf2cf750756b5", "_tpl": "6422e1ea3c0f06190302161a", - "parentId": "68010065f81036801d0b235b", + "parentId": "6812400c0c5cf2cf750756ae", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2363", + "_id": "6812400c0c5cf2cf750756b6", "_tpl": "641dc35e19604f20c800be18", - "parentId": "68010065f81036801d0b235b", + "parentId": "6812400c0c5cf2cf750756ae", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b2364", + "_id": "6812400c0c5cf2cf750756b7", "_tpl": "5b3f7c1c5acfc40dc5296b1d", - "parentId": "68010065f81036801d0b2363", + "parentId": "6812400c0c5cf2cf750756b6", "slotId": "mod_scope" } ] @@ -63741,12 +63391,12 @@ "id": "64f8cbed33ff7561c87643ee", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2367", + "target": "6812400c0c5cf2cf750756ba", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2366", + "_id": "6812400c0c5cf2cf750756b9", "_tpl": "6422e1ea3c0f06190302161a", "upd": { "StackObjectsCount": 1, @@ -63754,7 +63404,7 @@ } }, { - "_id": "68010065f81036801d0b2367", + "_id": "6812400c0c5cf2cf750756ba", "_tpl": "6422e1ea3c0f06190302161a", "upd": { "StackObjectsCount": 1, @@ -63769,12 +63419,12 @@ "id": "64f8cbf5a9c59f365c4eae27", "type": "Item", "index": 0, - "target": "68010065f81036801d0b236c", + "target": "6812400c0c5cf2cf750756bf", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b236a", + "_id": "6812400c0c5cf2cf750756bd", "_tpl": "6570257cc5d7d4cb4d078579", "upd": { "StackObjectsCount": 1, @@ -63782,16 +63432,16 @@ } }, { - "_id": "68010065f81036801d0b236b", + "_id": "6812400c0c5cf2cf750756be", "_tpl": "59e77a2386f7742ee578960a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b236a", + "parentId": "6812400c0c5cf2cf750756bd", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b236c", + "_id": "6812400c0c5cf2cf750756bf", "_tpl": "6570257cc5d7d4cb4d078579", "upd": { "StackObjectsCount": 1, @@ -63799,12 +63449,12 @@ } }, { - "_id": "68010065f81036801d0b236d", + "_id": "6812400c0c5cf2cf750756c0", "_tpl": "59e77a2386f7742ee578960a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b236c", + "parentId": "6812400c0c5cf2cf750756bf", "slotId": "cartridges" } ] @@ -63814,11 +63464,11 @@ "id": "64f8cbfd794e3b36cd0f8c53", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b236e", + "target": "6812400c0c5cf2cf750756c1", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b236e", + "_id": "6812400c0c5cf2cf750756c1", "_tpl": "6410733d5dd49d77bd07847e", "upd": { "Repairable": { @@ -63828,45 +63478,45 @@ } }, { - "_id": "68010065f81036801d0b236f", + "_id": "6812400c0c5cf2cf750756c2", "_tpl": "6410745d5dd49d77bd078485", - "parentId": "68010065f81036801d0b236e", + "parentId": "6812400c0c5cf2cf750756c1", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2370", + "_id": "6812400c0c5cf2cf750756c3", "_tpl": "6410758c857473525b08bb77", - "parentId": "68010065f81036801d0b236e", + "parentId": "6812400c0c5cf2cf750756c1", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2371", + "_id": "6812400c0c5cf2cf750756c4", "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "68010065f81036801d0b2370", + "parentId": "6812400c0c5cf2cf750756c3", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2372", + "_id": "6812400c0c5cf2cf750756c5", "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "68010065f81036801d0b2371", + "parentId": "6812400c0c5cf2cf750756c4", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2373", + "_id": "6812400c0c5cf2cf750756c6", "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "68010065f81036801d0b2370", + "parentId": "6812400c0c5cf2cf750756c3", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2374", + "_id": "6812400c0c5cf2cf750756c7", "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "68010065f81036801d0b236e", + "parentId": "6812400c0c5cf2cf750756c1", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2375", + "_id": "6812400c0c5cf2cf750756c8", "_tpl": "641074a07fd350b98c0b3f96", - "parentId": "68010065f81036801d0b236e", + "parentId": "6812400c0c5cf2cf750756c1", "slotId": "mod_magazine" } ], @@ -64002,12 +63652,12 @@ "id": "5a2e5e6986f77452ec0fe0d8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2377", + "target": "6812400c0c5cf2cf750756ca", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2377", + "_id": "6812400c0c5cf2cf750756ca", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 30000 @@ -64021,12 +63671,12 @@ "id": "5ec19b9ae16f6c41ee735266", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2378", + "target": "6812400c0c5cf2cf750756cb", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2378", + "_id": "6812400c0c5cf2cf750756cb", "_tpl": "587e02ff24597743df3deaeb", "upd": { "StackObjectsCount": 1, @@ -64037,69 +63687,69 @@ } }, { - "_id": "68010065f81036801d0b2379", + "_id": "6812400c0c5cf2cf750756cc", "_tpl": "5d0236dad7ad1a0940739d29", - "parentId": "68010065f81036801d0b2378", + "parentId": "6812400c0c5cf2cf750756cb", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b237a", + "_id": "6812400c0c5cf2cf750756cd", "_tpl": "5d023784d7ad1a049d4aa7f2", - "parentId": "68010065f81036801d0b2379", + "parentId": "6812400c0c5cf2cf750756cc", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b237b", + "_id": "6812400c0c5cf2cf750756ce", "_tpl": "653ed132896b99b40a0292e6", - "parentId": "68010065f81036801d0b2379", + "parentId": "6812400c0c5cf2cf750756cc", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b237c", + "_id": "6812400c0c5cf2cf750756cf", "_tpl": "587df3a12459772c28142567", - "parentId": "68010065f81036801d0b2378", + "parentId": "6812400c0c5cf2cf750756cb", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b237d", + "_id": "6812400c0c5cf2cf750756d0", "_tpl": "587e08ee245977446b4410cf", - "parentId": "68010065f81036801d0b2378", + "parentId": "6812400c0c5cf2cf750756cb", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b237e", + "_id": "6812400c0c5cf2cf750756d1", "_tpl": "634eff66517ccc8a960fc735", - "parentId": "68010065f81036801d0b2378", + "parentId": "6812400c0c5cf2cf750756cb", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b237f", + "_id": "6812400c0c5cf2cf750756d2", "_tpl": "634f05a21f9f536910079b56", - "parentId": "68010065f81036801d0b237e", + "parentId": "6812400c0c5cf2cf750756d1", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2380", + "_id": "6812400c0c5cf2cf750756d3", "_tpl": "634f036a517ccc8a960fc746", - "parentId": "68010065f81036801d0b237f", + "parentId": "6812400c0c5cf2cf750756d2", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b2381", + "_id": "6812400c0c5cf2cf750756d4", "_tpl": "653ece125a1690d9d90491e8", - "parentId": "68010065f81036801d0b2380", + "parentId": "6812400c0c5cf2cf750756d3", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2382", + "_id": "6812400c0c5cf2cf750756d5", "_tpl": "574db213245977459a2f3f5d", - "parentId": "68010065f81036801d0b237f", + "parentId": "6812400c0c5cf2cf750756d2", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2383", + "_id": "6812400c0c5cf2cf750756d6", "_tpl": "634f06262e5def262d0b30ca", - "parentId": "68010065f81036801d0b2378", + "parentId": "6812400c0c5cf2cf750756cb", "slotId": "mod_reciever" } ] @@ -64110,12 +63760,12 @@ "id": "5a2e5fa786f77452ef4a6253", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2386", + "target": "6812400c0c5cf2cf750756d9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2385", + "_id": "6812400c0c5cf2cf750756d8", "_tpl": "587df583245977373c4f1129", "upd": { "StackObjectsCount": 1, @@ -64123,7 +63773,7 @@ } }, { - "_id": "68010065f81036801d0b2386", + "_id": "6812400c0c5cf2cf750756d9", "_tpl": "587df583245977373c4f1129", "upd": { "StackObjectsCount": 1, @@ -64138,12 +63788,12 @@ "id": "5ec19c23c9ffe55cca300871", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2388", + "target": "6812400c0c5cf2cf750756db", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2388", + "_id": "6812400c0c5cf2cf750756db", "_tpl": "593d490386f7745ee97a1555", "upd": { "StackObjectsCount": 1, @@ -64163,305 +63813,6 @@ "arenaLocations": [], "status": 0 }, - "5a27c99a86f7747d2c6bdd8e": { - "QuestName": "Friend From the West - Part 1", - "_id": "5a27c99a86f7747d2c6bdd8e", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5a27c99a86f7747d2c6bdd8e acceptPlayerMessage", - "changeQuestMessageText": "5a27c99a86f7747d2c6bdd8e changeQuestMessageText", - "completePlayerMessage": "5a27c99a86f7747d2c6bdd8e completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5a27cc8186f7744c8166c6e9", - "conditions": [ - { - "id": "5a27cca486f774484123d315", - "dynamicLocale": false, - "target": "Usec", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5be0198686f774595412d9c4", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 7, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ec137dcc367fc6781104613", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "59f32c3b86f77472a31742f0", - "6662ea05f6259762c56f3189", - "6662e9f37fa79a6d83730fa0", - "6764207f2fa5e32733055c4a", - "6764202ae307804338014c1a" - ], - "globalQuestCounterId": "", - "value": 7, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5a3a717086f7745a9e0647b8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 9, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a340591e21260da44a01eb", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "596b36c586f77450d6045ad2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5a27c99a86f7747d2c6bdd8e description", - "failMessageText": "5a27c99a86f7747d2c6bdd8e failMessageText", - "declinePlayerMessage": "5a27c99a86f7747d2c6bdd8e declinePlayerMessage", - "name": "5a27c99a86f7747d2c6bdd8e name", - "note": "5a27c99a86f7747d2c6bdd8e note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/5a27cafa86f77424e20615d6.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5a27c99a86f7747d2c6bdd8e startedMessageText", - "successMessageText": "5a27c99a86f7747d2c6bdd8e successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10000, - "id": "60c8bf4d9bdefb3130121b0f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.06, - "id": "60c8bf529339363e8f0c6ae1", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 700, - "id": "5a27d14286f7747e2b71be55", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b238a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b238a", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 700 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb5f66f09d61072d6cf235", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b238b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b238b", - "_tpl": "5c07c60e0db834002330051f", - "upd": { - "StackObjectsCount": 2, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b238c", - "_tpl": "5c0e2ff6d174af02a1659d4a", - "parentId": "68010065f81036801d0b238b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b238d", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "68010065f81036801d0b238b", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b238e", - "_tpl": "5c0e2f26d174af02a9625114", - "parentId": "68010065f81036801d0b238b", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b238f", - "_tpl": "5c0e2f94d174af029f650d56", - "parentId": "68010065f81036801d0b238e", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2390", - "_tpl": "5c0fafb6d174af02a96260ba", - "parentId": "68010065f81036801d0b238f", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2391", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "68010065f81036801d0b238f", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2392", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "parentId": "68010065f81036801d0b238e", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2393", - "_tpl": "5c0faeddd174af02a962601f", - "parentId": "68010065f81036801d0b238b", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2394", - "_tpl": "5c0faf68d174af02a96260b8", - "parentId": "68010065f81036801d0b238b", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb5f50e3d0247e625da18b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2397", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2397", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2398", - "_tpl": "54527ac44bdc2d36668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2397", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec19dae63c779220d381adf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b239a", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b239a", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "625d7001c4874104f230c0c5": { "QuestName": "Assessment - Part 3", "_id": "625d7001c4874104f230c0c5", @@ -64648,316 +63999,6 @@ "arenaLocations": [], "status": 0 }, - "5b478ff486f7744d184ecbbf": { - "QuestName": "Vitamins - Part 2", - "_id": "5b478ff486f7744d184ecbbf", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b478ff486f7744d184ecbbf acceptPlayerMessage", - "changeQuestMessageText": "5b478ff486f7744d184ecbbf changeQuestMessageText", - "completePlayerMessage": "5b478ff486f7744d184ecbbf completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5b47905886f7746807461fe2", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7715586f7742ee5789605" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5cb5ffd986f7746ef55de2c7", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7715586f7742ee5789605" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ec1388d83b69d213d3c2ee0", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5b4335ba86f7744d2837a264" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5b4790a886f774563c7a489f", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5b4335ba86f7744d2837a264" - ], - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5b4f0b1f86f7746c9e27e9ea", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b478eca86f7744642012254", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b478ff486f7744d184ecbbf description", - "failMessageText": "5b478ff486f7744d184ecbbf failMessageText", - "declinePlayerMessage": "5b478ff486f7744d184ecbbf declinePlayerMessage", - "name": "5b478ff486f7744d184ecbbf name", - "note": "5b478ff486f7744d184ecbbf note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/5b478eda86f77470315db899.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b478ff486f7744d184ecbbf startedMessageText", - "successMessageText": "5b478ff486f7744d184ecbbf successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15800, - "id": "60c8bfe11f21c1669a48c32f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.05, - "id": "60c8bfe8919c14709f497395", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 40000, - "id": "5b4873a086f7744a1434392d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b239c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b239c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 40000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60cb5ff0af2e5506c3781d94", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23a1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b239e", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b239f", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23a0", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23a1", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cb60042b555f16df5c411a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23a3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23a3", - "_tpl": "5751a89d24597722aa0e8db0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "60b90bd493a8b605b63e18b2", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b23a4", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b23a4", - "_tpl": "5fc3f2d5900b1d5091531e57", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b23a5", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b23a6", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b23a7", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b23a8", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b23a9", - "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b23aa", - "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "68010065f81036801d0b23a9", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b23ab", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b23ac", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b23ad", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b23a4", - "slotId": "mod_mount_002" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "63a5cf262964a7488f5243ce": { "QuestName": "Test Drive - Part 2", "_id": "63a5cf262964a7488f5243ce", @@ -65072,12 +64113,12 @@ "id": "63a5cf262964a7488f5243d3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23ae", + "target": "6812400c0c5cf2cf750756dc", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23ae", + "_id": "6812400c0c5cf2cf750756dc", "_tpl": "62e14904c2699c0ec93adc47", "upd": { "StackObjectsCount": 1, @@ -65094,51 +64135,51 @@ } }, { - "_id": "68010065f81036801d0b23af", + "_id": "6812400c0c5cf2cf750756dd", "_tpl": "62e153bcdb1a5c41971c1b5b", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b23b0", + "_id": "6812400c0c5cf2cf750756de", "_tpl": "62e2a7138e1ac9380579c122", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b23b1", + "_id": "6812400c0c5cf2cf750756df", "_tpl": "62e2969582ebf260c20539c2", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b23b2", + "_id": "6812400c0c5cf2cf750756e0", "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b23b3", + "_id": "6812400c0c5cf2cf750756e1", "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "68010065f81036801d0b23b2", + "parentId": "6812400c0c5cf2cf750756e0", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b23b4", + "_id": "6812400c0c5cf2cf750756e2", "_tpl": "637ba19df7ca6372bf2613d7", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b23b5", + "_id": "6812400c0c5cf2cf750756e3", "_tpl": "62ed1921b3608410ef5a2c04", - "parentId": "68010065f81036801d0b23b4", + "parentId": "6812400c0c5cf2cf750756e2", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b23b6", + "_id": "6812400c0c5cf2cf750756e4", "_tpl": "637ba29bf7ca6372bf2613db", - "parentId": "68010065f81036801d0b23ae", + "parentId": "6812400c0c5cf2cf750756dc", "slotId": "mod_pistolgrip" } ] @@ -65168,12 +64209,12 @@ "id": "63a5cf262964a7488f5243d5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23b8", + "target": "6812400c0c5cf2cf750756e6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b23b8", + "_id": "6812400c0c5cf2cf750756e6", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 300000 @@ -65187,12 +64228,12 @@ "id": "63b68e197a64578367041f6a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23b9", + "target": "6812400c0c5cf2cf750756e7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23b9", + "_id": "6812400c0c5cf2cf750756e7", "_tpl": "5cadfbf7ae92152ac412eeef", "upd": { "StackObjectsCount": 1, @@ -65202,33 +64243,33 @@ } }, { - "_id": "68010065f81036801d0b23ba", + "_id": "6812400c0c5cf2cf750756e8", "_tpl": "5caf187cae92157c28402e43", - "parentId": "68010065f81036801d0b23b9", + "parentId": "6812400c0c5cf2cf750756e7", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b23bb", + "_id": "6812400c0c5cf2cf750756e9", "_tpl": "5caf1041ae92157c28402e3f", - "parentId": "68010065f81036801d0b23b9", + "parentId": "6812400c0c5cf2cf750756e7", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b23bc", + "_id": "6812400c0c5cf2cf750756ea", "_tpl": "5caf16a2ae92152ac412efbc", - "parentId": "68010065f81036801d0b23b9", + "parentId": "6812400c0c5cf2cf750756e7", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b23bd", + "_id": "6812400c0c5cf2cf750756eb", "_tpl": "5cdaa99dd7f00c002412d0b2", - "parentId": "68010065f81036801d0b23b9", + "parentId": "6812400c0c5cf2cf750756e7", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b23be", + "_id": "6812400c0c5cf2cf750756ec", "_tpl": "5caf1691ae92152ac412efb9", - "parentId": "68010065f81036801d0b23b9", + "parentId": "6812400c0c5cf2cf750756e7", "slotId": "mod_scope" } ] @@ -65239,12 +64280,12 @@ "id": "63b68d5b10fc4c45f7035d0b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23c2", + "target": "6812400c0c5cf2cf750756f0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23c0", + "_id": "6812400c0c5cf2cf750756ee", "_tpl": "5caf1109ae9215753c44119f", "upd": { "StackObjectsCount": 1, @@ -65252,7 +64293,7 @@ } }, { - "_id": "68010065f81036801d0b23c1", + "_id": "6812400c0c5cf2cf750756ef", "_tpl": "5caf1109ae9215753c44119f", "upd": { "StackObjectsCount": 1, @@ -65260,7 +64301,7 @@ } }, { - "_id": "68010065f81036801d0b23c2", + "_id": "6812400c0c5cf2cf750756f0", "_tpl": "5caf1109ae9215753c44119f", "upd": { "StackObjectsCount": 1, @@ -65275,12 +64316,12 @@ "id": "63b68d8dbadc49aa540ff20b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23cf", + "target": "6812400c0c5cf2cf750756fd", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23c5", + "_id": "6812400c0c5cf2cf750756f3", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65288,16 +64329,16 @@ } }, { - "_id": "68010065f81036801d0b23c6", + "_id": "6812400c0c5cf2cf750756f4", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23c5", + "parentId": "6812400c0c5cf2cf750756f3", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b23c7", + "_id": "6812400c0c5cf2cf750756f5", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65305,16 +64346,16 @@ } }, { - "_id": "68010065f81036801d0b23c8", + "_id": "6812400c0c5cf2cf750756f6", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23c7", + "parentId": "6812400c0c5cf2cf750756f5", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b23c9", + "_id": "6812400c0c5cf2cf750756f7", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65322,16 +64363,16 @@ } }, { - "_id": "68010065f81036801d0b23ca", + "_id": "6812400c0c5cf2cf750756f8", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23c9", + "parentId": "6812400c0c5cf2cf750756f7", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b23cb", + "_id": "6812400c0c5cf2cf750756f9", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65339,16 +64380,16 @@ } }, { - "_id": "68010065f81036801d0b23cc", + "_id": "6812400c0c5cf2cf750756fa", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23cb", + "parentId": "6812400c0c5cf2cf750756f9", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b23cd", + "_id": "6812400c0c5cf2cf750756fb", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65356,16 +64397,16 @@ } }, { - "_id": "68010065f81036801d0b23ce", + "_id": "6812400c0c5cf2cf750756fc", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23cd", + "parentId": "6812400c0c5cf2cf750756fb", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b23cf", + "_id": "6812400c0c5cf2cf750756fd", "_tpl": "648983d6b5a2df1c815a04ec", "upd": { "StackObjectsCount": 1, @@ -65373,12 +64414,12 @@ } }, { - "_id": "68010065f81036801d0b23d0", + "_id": "6812400c0c5cf2cf750756fe", "_tpl": "5cadf6eeae921500134b2799", "upd": { "StackObjectsCount": 10 }, - "parentId": "68010065f81036801d0b23cf", + "parentId": "6812400c0c5cf2cf750756fd", "slotId": "cartridges" } ] @@ -65389,12 +64430,12 @@ "id": "63a5cf262964a7488f5243d8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23d4", + "target": "6812400c0c5cf2cf75075702", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23d2", + "_id": "6812400c0c5cf2cf75075700", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -65402,7 +64443,7 @@ } }, { - "_id": "68010065f81036801d0b23d3", + "_id": "6812400c0c5cf2cf75075701", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -65410,7 +64451,7 @@ } }, { - "_id": "68010065f81036801d0b23d4", + "_id": "6812400c0c5cf2cf75075702", "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, @@ -65424,11 +64465,11 @@ "id": "66abb9456f11600e4e48bacc", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b23d5", + "target": "6812400c0c5cf2cf75075703", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b23d5", + "_id": "6812400c0c5cf2cf75075703", "_tpl": "5a26ac0ec4a28200741e1e18" } ], @@ -65446,317 +64487,25 @@ "arenaLocations": [], "status": 0 }, - "597a0b2986f77426d66c0633": { - "QuestName": "Chemical - Part 2", - "_id": "597a0b2986f77426d66c0633", + "5a27c99a86f7747d2c6bdd8e": { + "QuestName": "Friend From the West - Part 1", + "_id": "5a27c99a86f7747d2c6bdd8e", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "597a0b2986f77426d66c0633 acceptPlayerMessage", - "changeQuestMessageText": "597a0b2986f77426d66c0633 changeQuestMessageText", - "completePlayerMessage": "597a0b2986f77426d66c0633 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "597a0be986f774273b74f673", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "590c62a386f77412b0130255" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "597a0bf886f7742717106d13", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "590c62a386f77412b0130255" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5eb3db8baf1da579ab1aafee", - "target": "597a0be986f774273b74f673", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "597a0bb486f77426d66c0634", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5939e9b286f77462a709572c" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "597a0bdb86f7742717106d12", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5939e9b286f77462a709572c" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57794786f7743e797f66a7", - "target": "597a0bb486f77426d66c0634", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "59a925a286f774792b624b71", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "59a9258a86f7747ab05f3575", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5979f9ba86f7740f6c3fe9f2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "597a0b2986f77426d66c0633 description", - "failMessageText": "597a0b2986f77426d66c0633 failMessageText", - "declinePlayerMessage": "597a0b2986f77426d66c0633 declinePlayerMessage", - "name": "597a0b2986f77426d66c0633 name", - "note": "597a0b2986f77426d66c0633 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/594d248186f7740e670685db.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "597a0b2986f77426d66c0633 startedMessageText", - "successMessageText": "597a0b2986f77426d66c0633 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "597afde186f7741ce2755edc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23d7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23d7", - "_tpl": "5780cfa52459777dfb276eb1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 4800, - "id": "60c8b05680b2027f403dd998", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "60c8b05b9339363e8f0c6adc", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 15000, - "id": "5a2e797e86f7741a95102602", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23d9", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b23d9", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 15000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "597afde186f7741ce2755edb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23dd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23db", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23dc", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23dd", - "_tpl": "5710c24ad2720bc3458b45a3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb5ba0e3d0247e625da186", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23e0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23df", - "_tpl": "60391b0fb847c71012789415", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23e0", - "_tpl": "60391b0fb847c71012789415", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5ac668d386f774066f04bd58", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b23e1", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b23e1", - "_tpl": "5a966f51a2750c00156aacf6" - } - ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c0bd01e86f7747cdd799e56": { - "QuestName": "Insomnia", - "_id": "5c0bd01e86f7747cdd799e56", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c0bd01e86f7747cdd799e56 acceptPlayerMessage", - "changeQuestMessageText": "5c0bd01e86f7747cdd799e56 changeQuestMessageText", - "completePlayerMessage": "5c0bd01e86f7747cdd799e56 completePlayerMessage", + "acceptPlayerMessage": "5a27c99a86f7747d2c6bdd8e acceptPlayerMessage", + "changeQuestMessageText": "5a27c99a86f7747d2c6bdd8e changeQuestMessageText", + "completePlayerMessage": "5a27c99a86f7747d2c6bdd8e completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5c0bd05586f77422c8027f3c", + "id": "5a27cc8186f7744c8166c6e9", "conditions": [ { - "id": "5c0bd06d86f77468767bec62", + "id": "5a27cca486f774484123d315", "dynamicLocale": false, - "target": "AnyPmc", + "target": "Usec", "compareMethod": ">=", "value": 1, "weapon": [], @@ -65770,41 +64519,18 @@ "enemyEquipmentExclusive": [], "weaponCaliber": [], "savageRole": [], - "bodyPart": [ - "Head", - "Chest", - "Stomach", - "LeftArm", - "RightArm", - "LeftLeg", - "RightLeg" - ], + "bodyPart": [], "daytime": { - "from": 21, - "to": 6 + "from": 0, + "to": 0 }, "enemyHealthEffects": [], "resetOnSessionEnd": false, "conditionType": "Kills" - }, - { - "id": "629f104e274d12190d18841d", - "dynamicLocale": false, - "target": [ - "Lighthouse", - "TarkovStreets", - "bigmap", - "Interchange", - "RezervBase", - "Sandbox_high", - "Woods", - "Shoreline" - ], - "conditionType": "Location" } ] }, - "id": "5c1242fa86f7742aa04fed52", + "id": "5be0198686f774595412d9c4", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -65812,20 +64538,53 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 25, + "value": 7, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ec137dcc367fc6781104613", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "59f32c3b86f77472a31742f0", + "6662ea05f6259762c56f3189", + "6662e9f37fa79a6d83730fa0", + "6764207f2fa5e32733055c4a", + "6764202ae307804338014c1a" + ], + "globalQuestCounterId": "", + "value": 7, + "visibilityConditions": [] } ], "AvailableForStart": [ { - "conditionType": "Quest", - "id": "5c17d05e86f77430a64c6c66", + "conditionType": "Level", + "id": "5a3a717086f7745a9e0647b8", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "61958c366726521dd96828ec", + "globalQuestCounterId": "", + "value": 9, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a340591e21260da44a01eb", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "596b36c586f77450d6045ad2", "status": [ 4 ], @@ -65833,27 +64592,16 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "64b7aa4ce103c46976502d65", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] } ], "Fail": [] }, - "description": "5c0bd01e86f7747cdd799e56 description", - "failMessageText": "5c0bd01e86f7747cdd799e56 failMessageText", - "declinePlayerMessage": "5c0bd01e86f7747cdd799e56 declinePlayerMessage", - "name": "5c0bd01e86f7747cdd799e56 name", - "note": "5c0bd01e86f7747cdd799e56 note", - "traderId": "5935c25fb3acc3127c3d8cd9", + "description": "5a27c99a86f7747d2c6bdd8e description", + "failMessageText": "5a27c99a86f7747d2c6bdd8e failMessageText", + "declinePlayerMessage": "5a27c99a86f7747d2c6bdd8e declinePlayerMessage", + "name": "5a27c99a86f7747d2c6bdd8e name", + "note": "5a27c99a86f7747d2c6bdd8e note", + "traderId": "58330581ace78e27b8b10cee", "location": "any", "image": "/files/quest/icon/5a27cafa86f77424e20615d6.jpg", "type": "Elimination", @@ -65861,437 +64609,165 @@ "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5c0bd01e86f7747cdd799e56 startedMessageText", - "successMessageText": "5c0bd01e86f7747cdd799e56 successMessageText", + "startedMessageText": "5a27c99a86f7747d2c6bdd8e startedMessageText", + "successMessageText": "5a27c99a86f7747d2c6bdd8e successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 18200, - "id": "60c8ad819339363e8f0c6ad6", + "value": 10000, + "id": "60c8bf4d9bdefb3130121b0f", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "60c8a2141f21c1669a48c323", + "value": 0.06, + "id": "60c8bf529339363e8f0c6ae1", "type": "TraderStanding", "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 1000, - "id": "5c17c4d986f77430a64c6a14", + "value": 700, + "id": "5a27d14286f7747e2b71be55", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23e3", + "target": "6812400c0c5cf2cf75075705", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b23e3", + "_id": "6812400c0c5cf2cf75075705", "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 1000 + "StackObjectsCount": 700 } } ] }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb5f66f09d61072d6cf235", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075706", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075706", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "StackObjectsCount": 2, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075707", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "6812400c0c5cf2cf75075706", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075708", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "6812400c0c5cf2cf75075706", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075709", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "6812400c0c5cf2cf75075706", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf7507570a", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "6812400c0c5cf2cf75075709", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507570b", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "6812400c0c5cf2cf7507570a", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507570c", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6812400c0c5cf2cf7507570a", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf7507570d", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "6812400c0c5cf2cf75075709", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf7507570e", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "6812400c0c5cf2cf75075706", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf7507570f", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "6812400c0c5cf2cf75075706", + "slotId": "mod_charge" + } + ] + }, { "availableInGameEditions": [], "value": 1, - "id": "64b7a1636236475fc9626895", + "id": "60cb5f50e3d0247e625da18b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23e7", + "target": "6812400c0c5cf2cf75075712", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23e7", - "_tpl": "5a154d5cfcdbcb001a3b00da", + "_id": "6812400c0c5cf2cf75075712", + "_tpl": "657024e3c5d7d4cb4d07856a", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b23e8", - "_tpl": "657f8ec5f4c82973640b234c", + "_id": "6812400c0c5cf2cf75075713", + "_tpl": "54527ac44bdc2d36668b4567", "upd": { - "SpawnedInSession": true + "StackObjectsCount": 50 }, - "parentId": "68010065f81036801d0b23e7", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b23e9", - "_tpl": "657f8f10f4c82973640b2350", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b23e7", - "slotId": "Helmet_back" + "parentId": "6812400c0c5cf2cf75075712", + "slotId": "cartridges" } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "64b7a194c8a5031fd14d5b55", + "value": 1, + "id": "5ec19dae63c779220d381adf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23ec", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23eb", - "_tpl": "5a16b7e1fcdbcb00165aa6c9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23ec", - "_tpl": "5a16b7e1fcdbcb00165aa6c9", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cb51f377dc197c77424f8d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23ef", + "target": "6812400c0c5cf2cf75075715", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b23ee", - "_tpl": "5c0558060db834001b735271", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b23ef", - "_tpl": "5c0558060db834001b735271", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "657fc41e07c89bd4900dd70d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b23f0", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b23f0", - "_tpl": "655746010177119f4a097ff7" - } - ], - "loyaltyLevel": 4, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "65733403eefc2c312a759ddb": { - "QuestName": "Developers Secrets - Part 1", - "_id": "65733403eefc2c312a759ddb", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "65733403eefc2c312a759ddb acceptPlayerMessage", - "changeQuestMessageText": "65733403eefc2c312a759ddb changeQuestMessageText", - "completePlayerMessage": "65733403eefc2c312a759ddb completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65733403eefc2c312a759ddd", - "conditions": [ - { - "id": "63a98d1b64b9631d9178274c", - "dynamicLocale": false, - "target": "Office_enter", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "65733403eefc2c312a759ddc", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65801ad65176ca6f7c31aadc", - "conditions": [ - { - "id": "65801ae923439c15c350bade", - "dynamicLocale": false, - "target": "Office_quest", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "65801ad655315fdce2096bec", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6581d08b1c94ba22f6beb6ea", - "target": "65733403eefc2c312a759ddc", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65801b075c96f111f780bdf0", - "conditions": [ - { - "id": "65801b16fc87cfba118a95a2", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "65801b07a26e65a69c2fedd1", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6581d080a0840cce44cab902", - "target": "65733403eefc2c312a759ddc", - "conditionType": "CompleteCondition" - }, - { - "id": "6581d08529fb2f98679432cf", - "target": "65801ad655315fdce2096bec", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "658406268252eaa057979746", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639135e8c115f907b14700aa", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "658406286861262701d570ae", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 23, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "65733403eefc2c312a759ddb description", - "failMessageText": "65733403eefc2c312a759ddb failMessageText", - "declinePlayerMessage": "65733403eefc2c312a759ddb declinePlayerMessage", - "name": "65733403eefc2c312a759ddb name", - "note": "65733403eefc2c312a759ddb note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/6589939cd4523b429f73ce83.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "65733403eefc2c312a759ddb startedMessageText", - "successMessageText": "65733403eefc2c312a759ddb successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 23000, - "id": "65733403eefc2c312a759dfc", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6584130b66ddfd17202b82bb", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 149500, - "id": "6584132066ddfd17202b82c0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23f2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b23f2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 149500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6584133291a14b21510c6339", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23f4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23f4", - "_tpl": "573477e124597737dd42e191", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "65841341606b8d720b4b8f4c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23f6", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23f6", - "_tpl": "5734779624597737e04bf329", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658413520e40596ad2175a3a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23f8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23f8", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6584135f5e9d963e11096cd1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b23fa", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b23fa", - "_tpl": "62a0a098de7ac8199358053b", + "_id": "6812400c0c5cf2cf75075715", + "_tpl": "59faf7ca86f7740dbe19f6c2", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -66505,12 +64981,12 @@ "id": "5a2e791f86f7741a9612d1f3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b23fc", + "target": "6812400c0c5cf2cf75075717", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b23fc", + "_id": "6812400c0c5cf2cf75075717", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 15000 @@ -66524,12 +65000,12 @@ "id": "60cb5b603e4e974efa3452cb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2400", + "target": "6812400c0c5cf2cf7507571b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2400", + "_id": "6812400c0c5cf2cf7507571b", "_tpl": "5d5e9c74a4b9364855191c40", "upd": { "StackObjectsCount": 1, @@ -66537,21 +65013,21 @@ } }, { - "_id": "68010065f81036801d0b2401", + "_id": "6812400c0c5cf2cf7507571c", "_tpl": "657f8b94f92cd718b70154ff", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2400", + "parentId": "6812400c0c5cf2cf7507571b", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b2402", + "_id": "6812400c0c5cf2cf7507571d", "_tpl": "657f8b43f92cd718b70154fb", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2400", + "parentId": "6812400c0c5cf2cf7507571b", "slotId": "Helmet_back" } ] @@ -66765,12 +65241,12 @@ "id": "65846f92dd23e51d82405da2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2404", + "target": "6812400c0c5cf2cf7507571f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2404", + "_id": "6812400c0c5cf2cf7507571f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 15000 @@ -66784,12 +65260,12 @@ "id": "65846f9d3eed2c22a516d5c7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2407", + "target": "6812400c0c5cf2cf75075722", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2406", + "_id": "6812400c0c5cf2cf75075721", "_tpl": "5e2af22086f7746d3f3c33fa", "upd": { "StackObjectsCount": 1, @@ -66797,7 +65273,7 @@ } }, { - "_id": "68010065f81036801d0b2407", + "_id": "6812400c0c5cf2cf75075722", "_tpl": "5e2af22086f7746d3f3c33fa", "upd": { "StackObjectsCount": 1, @@ -66812,12 +65288,12 @@ "id": "65846fa94127ec14c642d523", "type": "Item", "index": 0, - "target": "68010065f81036801d0b240a", + "target": "6812400c0c5cf2cf75075725", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2409", + "_id": "6812400c0c5cf2cf75075724", "_tpl": "61bf7b6302b3924be92fa8c3", "upd": { "StackObjectsCount": 1, @@ -66825,7 +65301,7 @@ } }, { - "_id": "68010065f81036801d0b240a", + "_id": "6812400c0c5cf2cf75075725", "_tpl": "61bf7b6302b3924be92fa8c3", "upd": { "StackObjectsCount": 1, @@ -67101,12 +65577,12 @@ "id": "6574e0dedc0d635f633a5809", "type": "Item", "index": 0, - "target": "68010065f81036801d0b240b", + "target": "6812400c0c5cf2cf75075726", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b240b", + "_id": "6812400c0c5cf2cf75075726", "_tpl": "65268d8ecb944ff1e90ea385", "upd": { "StackObjectsCount": 1, @@ -67120,69 +65596,69 @@ } }, { - "_id": "68010065f81036801d0b240c", + "_id": "6812400c0c5cf2cf75075727", "_tpl": "6513f0a194c72326990a3868", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b240d", + "_id": "6812400c0c5cf2cf75075728", "_tpl": "6513f1798cb24472490ee331", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b240e", + "_id": "6812400c0c5cf2cf75075729", "_tpl": "6513f13a8cb24472490ee32f", - "parentId": "68010065f81036801d0b240d", + "parentId": "6812400c0c5cf2cf75075728", "slotId": "mod_pistolgrip" }, { - "_id": "68010065f81036801d0b240f", + "_id": "6812400c0c5cf2cf7507572a", "_tpl": "6513eff1e06849f06c0957d4", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2410", + "_id": "6812400c0c5cf2cf7507572b", "_tpl": "6513f037e06849f06c0957d7", - "parentId": "68010065f81036801d0b240f", + "parentId": "6812400c0c5cf2cf7507572a", "slotId": "mod_bipod" }, { - "_id": "68010065f81036801d0b2411", + "_id": "6812400c0c5cf2cf7507572c", "_tpl": "6513f0f5e63f29908d0ffab8", - "parentId": "68010065f81036801d0b240f", + "parentId": "6812400c0c5cf2cf7507572a", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2412", + "_id": "6812400c0c5cf2cf7507572d", "_tpl": "6513f05a94c72326990a3866", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2413", + "_id": "6812400c0c5cf2cf7507572e", "_tpl": "6513f153e63f29908d0ffaba", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2414", + "_id": "6812400c0c5cf2cf7507572f", "_tpl": "618a75c9a3884f56c957ca1b", - "parentId": "68010065f81036801d0b240b", + "parentId": "6812400c0c5cf2cf75075726", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b2415", + "_id": "6812400c0c5cf2cf75075730", "_tpl": "618a75f0bd321d49084cd399", - "parentId": "68010065f81036801d0b2414", + "parentId": "6812400c0c5cf2cf7507572f", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b2416", + "_id": "6812400c0c5cf2cf75075731", "_tpl": "618a760e526131765025aae3", - "parentId": "68010065f81036801d0b2415", + "parentId": "6812400c0c5cf2cf75075730", "slotId": "mod_tactical" } ] @@ -67212,12 +65688,12 @@ "id": "658414fa0e40596ad2175a56", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2418", + "target": "6812400c0c5cf2cf75075733", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2418", + "_id": "6812400c0c5cf2cf75075733", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 460000 @@ -67231,12 +65707,12 @@ "id": "65858a802fd55f25210b6045", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2419", + "target": "6812400c0c5cf2cf75075734", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2419", + "_id": "6812400c0c5cf2cf75075734", "_tpl": "6410733d5dd49d77bd07847e", "upd": { "StackObjectsCount": 1, @@ -67247,45 +65723,45 @@ } }, { - "_id": "68010065f81036801d0b241a", + "_id": "6812400c0c5cf2cf75075735", "_tpl": "6410745d5dd49d77bd078485", - "parentId": "68010065f81036801d0b2419", + "parentId": "6812400c0c5cf2cf75075734", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b241b", + "_id": "6812400c0c5cf2cf75075736", "_tpl": "6410758c857473525b08bb77", - "parentId": "68010065f81036801d0b2419", + "parentId": "6812400c0c5cf2cf75075734", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b241c", + "_id": "6812400c0c5cf2cf75075737", "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "68010065f81036801d0b241b", + "parentId": "6812400c0c5cf2cf75075736", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b241d", + "_id": "6812400c0c5cf2cf75075738", "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "68010065f81036801d0b241c", + "parentId": "6812400c0c5cf2cf75075737", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b241e", + "_id": "6812400c0c5cf2cf75075739", "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "68010065f81036801d0b241b", + "parentId": "6812400c0c5cf2cf75075736", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b241f", + "_id": "6812400c0c5cf2cf7507573a", "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "68010065f81036801d0b2419", + "parentId": "6812400c0c5cf2cf75075734", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2420", + "_id": "6812400c0c5cf2cf7507573b", "_tpl": "641074a07fd350b98c0b3f96", - "parentId": "68010065f81036801d0b2419", + "parentId": "6812400c0c5cf2cf75075734", "slotId": "mod_magazine" } ] @@ -67296,12 +65772,12 @@ "id": "658415319acefd03ac5ac99b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2427", + "target": "6812400c0c5cf2cf75075742", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2423", + "_id": "6812400c0c5cf2cf7507573e", "_tpl": "560d75f54bdc2da74d8b4573", "upd": { "StackObjectsCount": 1, @@ -67309,16 +65785,16 @@ } }, { - "_id": "68010065f81036801d0b2424", + "_id": "6812400c0c5cf2cf7507573f", "_tpl": "560d61e84bdc2da74d8b4571", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2423", + "parentId": "6812400c0c5cf2cf7507573e", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2425", + "_id": "6812400c0c5cf2cf75075740", "_tpl": "560d75f54bdc2da74d8b4573", "upd": { "StackObjectsCount": 1, @@ -67326,16 +65802,16 @@ } }, { - "_id": "68010065f81036801d0b2426", + "_id": "6812400c0c5cf2cf75075741", "_tpl": "560d61e84bdc2da74d8b4571", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2425", + "parentId": "6812400c0c5cf2cf75075740", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2427", + "_id": "6812400c0c5cf2cf75075742", "_tpl": "560d75f54bdc2da74d8b4573", "upd": { "StackObjectsCount": 1, @@ -67343,12 +65819,12 @@ } }, { - "_id": "68010065f81036801d0b2428", + "_id": "6812400c0c5cf2cf75075743", "_tpl": "560d61e84bdc2da74d8b4571", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2427", + "parentId": "6812400c0c5cf2cf75075742", "slotId": "cartridges" } ] @@ -67359,12 +65835,12 @@ "id": "658415465e9d963e11097412", "type": "Item", "index": 0, - "target": "68010065f81036801d0b242b", + "target": "6812400c0c5cf2cf75075746", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b242a", + "_id": "6812400c0c5cf2cf75075745", "_tpl": "641074a07fd350b98c0b3f96", "upd": { "StackObjectsCount": 1, @@ -67372,7 +65848,7 @@ } }, { - "_id": "68010065f81036801d0b242b", + "_id": "6812400c0c5cf2cf75075746", "_tpl": "641074a07fd350b98c0b3f96", "upd": { "StackObjectsCount": 1, @@ -67571,12 +66047,12 @@ "id": "5d667a5686f774369120c2b4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b242d", + "target": "6812400c0c5cf2cf75075748", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b242d", + "_id": "6812400c0c5cf2cf75075748", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -67589,11 +66065,11 @@ "id": "64b66a9ca857ea477002a405", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b242e", + "target": "6812400c0c5cf2cf75075749", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b242e", + "_id": "6812400c0c5cf2cf75075749", "_tpl": "5beed0f50db834001c062b12", "upd": { "Repairable": { @@ -67603,75 +66079,75 @@ } }, { - "_id": "68010065f81036801d0b242f", + "_id": "6812400c0c5cf2cf7507574a", "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b2430", + "_id": "6812400c0c5cf2cf7507574b", "_tpl": "5beec3e30db8340019619424", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2431", + "_id": "6812400c0c5cf2cf7507574c", "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2430", + "parentId": "6812400c0c5cf2cf7507574b", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2432", + "_id": "6812400c0c5cf2cf7507574d", "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2430", + "parentId": "6812400c0c5cf2cf7507574b", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2433", + "_id": "6812400c0c5cf2cf7507574e", "_tpl": "5beec2820db834001b095426", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2434", + "_id": "6812400c0c5cf2cf7507574f", "_tpl": "5beec3420db834001b095429", - "parentId": "68010065f81036801d0b2433", + "parentId": "6812400c0c5cf2cf7507574e", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2435", + "_id": "6812400c0c5cf2cf75075750", "_tpl": "5beec91a0db834001961942d", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2436", + "_id": "6812400c0c5cf2cf75075751", "_tpl": "5beec9450db83400970084fd", - "parentId": "68010065f81036801d0b2435", + "parentId": "6812400c0c5cf2cf75075750", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2437", + "_id": "6812400c0c5cf2cf75075752", "_tpl": "5bf3f59f0db834001a6fa060", - "parentId": "68010065f81036801d0b2436", + "parentId": "6812400c0c5cf2cf75075751", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2438", + "_id": "6812400c0c5cf2cf75075753", "_tpl": "5beec8b20db834001961942a", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_stock_001" }, { - "_id": "68010065f81036801d0b2439", + "_id": "6812400c0c5cf2cf75075754", "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b2438", + "parentId": "6812400c0c5cf2cf75075753", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b243a", + "_id": "6812400c0c5cf2cf75075755", "_tpl": "55d481904bdc2d8c2f8b456a", - "parentId": "68010065f81036801d0b242e", + "parentId": "6812400c0c5cf2cf75075749", "slotId": "mod_magazine" } ], @@ -67684,12 +66160,12 @@ "id": "5da9edaf86f77476bb048041", "type": "Item", "index": 0, - "target": "68010065f81036801d0b243c", + "target": "6812400c0c5cf2cf75075757", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b243c", + "_id": "6812400c0c5cf2cf75075757", "_tpl": "5ad7242b86f7740a6a3abd43", "upd": { "StackObjectsCount": 1, @@ -67704,12 +66180,12 @@ "id": "5da9edc386f774088158e638", "type": "Item", "index": 0, - "target": "68010065f81036801d0b243e", + "target": "6812400c0c5cf2cf75075759", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b243e", + "_id": "6812400c0c5cf2cf75075759", "_tpl": "5ad7217186f7746744498875", "upd": { "StackObjectsCount": 1, @@ -67724,12 +66200,12 @@ "id": "64b65b6bb728a13a404297f7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2440", + "target": "6812400c0c5cf2cf7507575b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2440", + "_id": "6812400c0c5cf2cf7507575b", "_tpl": "5ad7247386f7747487619dc3", "upd": { "StackObjectsCount": 1, @@ -67744,12 +66220,12 @@ "id": "5da9ed9a86f77406c9595c8e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2444", + "target": "6812400c0c5cf2cf7507575f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2442", + "_id": "6812400c0c5cf2cf7507575d", "_tpl": "5c12613b86f7743bbe2c3f76", "upd": { "StackObjectsCount": 1, @@ -67757,7 +66233,7 @@ } }, { - "_id": "68010065f81036801d0b2443", + "_id": "6812400c0c5cf2cf7507575e", "_tpl": "5c12613b86f7743bbe2c3f76", "upd": { "StackObjectsCount": 1, @@ -67765,7 +66241,7 @@ } }, { - "_id": "68010065f81036801d0b2444", + "_id": "6812400c0c5cf2cf7507575f", "_tpl": "5c12613b86f7743bbe2c3f76", "upd": { "StackObjectsCount": 1, @@ -67922,12 +66398,12 @@ "id": "64f8cfc2b4918f39d363e4c3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2446", + "target": "6812400c0c5cf2cf75075761", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2446", + "_id": "6812400c0c5cf2cf75075761", "_tpl": "569668774bdc2da2298b4568", "upd": { "StackObjectsCount": 1500 @@ -67941,12 +66417,12 @@ "id": "64f8cfcf794e3b36cd0f8e91", "type": "Item", "index": 0, - "target": "68010065f81036801d0b244a", + "target": "6812400c0c5cf2cf75075765", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2448", + "_id": "6812400c0c5cf2cf75075763", "_tpl": "619cbfccbedcde2f5b3f7bdd", "upd": { "StackObjectsCount": 1, @@ -67954,7 +66430,7 @@ } }, { - "_id": "68010065f81036801d0b2449", + "_id": "6812400c0c5cf2cf75075764", "_tpl": "619cbfccbedcde2f5b3f7bdd", "upd": { "StackObjectsCount": 1, @@ -67962,7 +66438,7 @@ } }, { - "_id": "68010065f81036801d0b244a", + "_id": "6812400c0c5cf2cf75075765", "_tpl": "619cbfccbedcde2f5b3f7bdd", "upd": { "StackObjectsCount": 1, @@ -67977,12 +66453,12 @@ "id": "64f8cff9794e3b36cd0f8e92", "type": "Item", "index": 0, - "target": "68010065f81036801d0b244d", + "target": "6812400c0c5cf2cf75075768", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b244c", + "_id": "6812400c0c5cf2cf75075767", "_tpl": "5d1b2f3f86f774252167a52c", "upd": { "StackObjectsCount": 1, @@ -67990,7 +66466,7 @@ } }, { - "_id": "68010065f81036801d0b244d", + "_id": "6812400c0c5cf2cf75075768", "_tpl": "5d1b2f3f86f774252167a52c", "upd": { "StackObjectsCount": 1, @@ -68004,11 +66480,11 @@ "id": "64f8cffe7e981f7f0110d97f", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b244e", + "target": "6812400c0c5cf2cf75075769", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b244e", + "_id": "6812400c0c5cf2cf75075769", "_tpl": "5b057b4f5acfc4771e1bd3e9" } ], @@ -68020,11 +66496,11 @@ "id": "657edfb2aebd1b6d254bf8b5", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b244f", + "target": "6812400c0c5cf2cf7507576a", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b244f", + "_id": "6812400c0c5cf2cf7507576a", "_tpl": "655df24fdf80b12750626d0a" } ], @@ -68241,12 +66717,12 @@ "id": "658413b00a500627c456e69b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2451", + "target": "6812400c0c5cf2cf7507576c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2451", + "_id": "6812400c0c5cf2cf7507576c", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 55000 @@ -68260,12 +66736,12 @@ "id": "658413be9acefd03ac5ac97f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2456", + "target": "6812400c0c5cf2cf75075771", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2453", + "_id": "6812400c0c5cf2cf7507576e", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -68273,7 +66749,7 @@ } }, { - "_id": "68010065f81036801d0b2454", + "_id": "6812400c0c5cf2cf7507576f", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -68281,7 +66757,7 @@ } }, { - "_id": "68010065f81036801d0b2455", + "_id": "6812400c0c5cf2cf75075770", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -68289,7 +66765,7 @@ } }, { - "_id": "68010065f81036801d0b2456", + "_id": "6812400c0c5cf2cf75075771", "_tpl": "5d1b3f2d86f774253763b735", "upd": { "StackObjectsCount": 1, @@ -68304,12 +66780,12 @@ "id": "658413c90a500627c456e69d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b245b", + "target": "6812400c0c5cf2cf75075776", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2458", + "_id": "6812400c0c5cf2cf75075773", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -68317,7 +66793,7 @@ } }, { - "_id": "68010065f81036801d0b2459", + "_id": "6812400c0c5cf2cf75075774", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -68325,7 +66801,7 @@ } }, { - "_id": "68010065f81036801d0b245a", + "_id": "6812400c0c5cf2cf75075775", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -68333,7 +66809,7 @@ } }, { - "_id": "68010065f81036801d0b245b", + "_id": "6812400c0c5cf2cf75075776", "_tpl": "5d1b3a5d86f774252167ba22", "upd": { "StackObjectsCount": 1, @@ -68348,12 +66824,12 @@ "id": "658413d791a14b21510c6369", "type": "Item", "index": 0, - "target": "68010065f81036801d0b245e", + "target": "6812400c0c5cf2cf75075779", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b245d", + "_id": "6812400c0c5cf2cf75075778", "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, @@ -68361,7 +66837,7 @@ } }, { - "_id": "68010065f81036801d0b245e", + "_id": "6812400c0c5cf2cf75075779", "_tpl": "544fb3f34bdc2d03748b456a", "upd": { "StackObjectsCount": 1, @@ -68376,12 +66852,12 @@ "id": "658413df606b8d720b4b8f51", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2461", + "target": "6812400c0c5cf2cf7507577c", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2460", + "_id": "6812400c0c5cf2cf7507577b", "_tpl": "5ed515e03a40a50460332579", "upd": { "StackObjectsCount": 1, @@ -68389,7 +66865,7 @@ } }, { - "_id": "68010065f81036801d0b2461", + "_id": "6812400c0c5cf2cf7507577c", "_tpl": "5ed515e03a40a50460332579", "upd": { "StackObjectsCount": 1, @@ -68538,57 +67014,36 @@ "arenaLocations": [], "status": 0 }, - "5d25e2c386f77443e7549029": { - "QuestName": "The Huntsman Path - Trophy", - "_id": "5d25e2c386f77443e7549029", + "65802b627b44fa5e14638899": { + "QuestName": "Nothing Fishy About This", + "_id": "65802b627b44fa5e14638899", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2c386f77443e7549029 acceptPlayerMessage", - "changeQuestMessageText": "5d25e2c386f77443e7549029 changeQuestMessageText", - "completePlayerMessage": "5d25e2c386f77443e7549029 completePlayerMessage", + "acceptPlayerMessage": "65802b627b44fa5e14638899 acceptPlayerMessage", + "changeQuestMessageText": "65802b627b44fa5e14638899 changeQuestMessageText", + "completePlayerMessage": "65802b627b44fa5e14638899 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5d26fd8886f77469f0445744", + "id": "65802b627b44fa5e1463889b", "conditions": [ { - "id": "5d27106c86f77469f1599fee", + "id": "63a98d1b64b9631d9178274c", "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", + "target": "q14_11_jeep", "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBully" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" + "conditionType": "VisitPlace" } ] }, - "id": "5d26fd8886f77469f0445745", + "id": "65802b627b44fa5e1463889a", "index": 0, "parentId": "", - "oneSessionOnly": false, + "oneSessionOnly": true, "dynamicLocale": false, - "type": "Elimination", + "type": "Discover", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, @@ -68597,57 +67052,57 @@ "isResetOnConditionFailed": false }, { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5d66741c86f7744a2e70f039", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65802bfaad88f987ea613e71", + "conditions": [ + { + "id": "65802c07ce6bd802ff2eadb3", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "658076ac7c586518a43ca63b", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "65802bfabac8c53c548fca2a", "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, + "oneSessionOnly": true, "dynamicLocale": false, - "target": [ - "5b3b713c5acfc4330140bd8d" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d2710e686f7742e9019a6b2", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5b3b713c5acfc4330140bd8d" - ], + "type": "Completion", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "5d66742986f7744dcc5e2992", - "target": "5d66741c86f7744a2e70f039", + "id": "65816952a49eefe2525b999c", + "target": "65802b627b44fa5e1463889a", "conditionType": "CompleteCondition" } - ] + ], + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "5d77689686f7742fa857dd34", + "id": "65840c6909a426457faf5aad", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25e2b486f77409de05bba0", + "target": "5ae448e586f7744dcf0c2a67", "status": [ 4 ], @@ -68659,56 +67114,56 @@ ], "Fail": [] }, - "description": "5d25e2c386f77443e7549029 description", - "failMessageText": "5d25e2c386f77443e7549029 failMessageText", - "declinePlayerMessage": "5d25e2c386f77443e7549029 declinePlayerMessage", - "name": "5d25e2c386f77443e7549029 name", - "note": "5d25e2c386f77443e7549029 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5d67bb8486f7744dcc5e2fb1.jpg", - "type": "Completion", + "description": "65802b627b44fa5e14638899 description", + "failMessageText": "65802b627b44fa5e14638899 failMessageText", + "declinePlayerMessage": "65802b627b44fa5e14638899 declinePlayerMessage", + "name": "65802b627b44fa5e14638899 name", + "note": "65802b627b44fa5e14638899 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/658991c8c5998b6e942974ed.jpg", + "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5d25e2c386f77443e7549029 startedMessageText", - "successMessageText": "5d25e2c386f77443e7549029 successMessageText", + "startedMessageText": "65802b627b44fa5e14638899 startedMessageText", + "successMessageText": "65802b627b44fa5e14638899 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 15300, - "id": "60cca32a98b492706036460d", + "value": 7200, + "id": "65802b627b44fa5e1463889e", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60cca331ac6eb02bc726de64", + "value": 0.01, + "id": "65841743606b8d720b4b8fd7", "type": "TraderStanding", "index": 0, - "target": "5c0647fdd443bc2504c2d371", + "target": "5ac3b934156ae10c4430e83c", "unknown": false }, { "availableInGameEditions": [], - "value": 90000, - "id": "5d6677b686f7744dcc5e2993", + "value": 25000, + "id": "6584175066ddfd17202b8bc1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2463", + "target": "6812400c0c5cf2cf7507577e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2463", + "_id": "6812400c0c5cf2cf7507577e", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 90000 + "StackObjectsCount": 25000 } } ] @@ -68716,333 +67171,22 @@ { "availableInGameEditions": [], "value": 1, - "id": "64b65a5fd5887c2ce9561155", + "id": "6584176e606b8d720b4b8fd8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2465", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2465", - "_tpl": "5c127c4486f7745625356c13", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "64b65ab325251516d7685425", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2469", + "target": "6812400c0c5cf2cf75075780", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2467", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2468", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2469", - "_tpl": "5734758f24597738025ee253", + "_id": "6812400c0c5cf2cf75075780", + "_tpl": "60a6220e953894617404b00a", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "64b65acff83adb775979f8b6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b246c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b246b", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b246c", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64b65adb58b5637e2d71a635", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b246e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b246e", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639873003693c63d86328f25": { - "QuestName": "Gunsmith - Part 19", - "_id": "639873003693c63d86328f25", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639873003693c63d86328f25 acceptPlayerMessage", - "changeQuestMessageText": "639873003693c63d86328f25 changeQuestMessageText", - "completePlayerMessage": "639873003693c63d86328f25 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "63987a4e3693c63d86328f27", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5c46fbd72e2216398b5a8c9c" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 1000.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 15.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 10, - "compareMethod": "<=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 500.0, - "compareMethod": "<=" - }, - "weight": { - "value": 8.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5947e98b86f774778f1448bc", - "5dfcd0e547101c39625f66f9", - "5b30ac585acfc433000eb79c", - "57c5ac0824597754771e88a9" - ], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "639af9817c898a131e1cff86", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 36, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "639af9755b759c65a34764e6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b477b6f86f7747290681823", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639873003693c63d86328f25 description", - "failMessageText": "639873003693c63d86328f25 failMessageText", - "declinePlayerMessage": "639873003693c63d86328f25 declinePlayerMessage", - "name": "639873003693c63d86328f25 name", - "note": "639873003693c63d86328f25 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/63aae96a435ab5742b4e407a.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639873003693c63d86328f25 startedMessageText", - "successMessageText": "639873003693c63d86328f25 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25500, - "id": "639af992dae1800a3e135957", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "639af9a72a994a11600df097", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 75000, - "id": "639af9bcf5765f47cc7f0e68", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2470", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2470", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 75000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639af9c8dae1800a3e135958", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2472", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2472", - "_tpl": "60391afc25aff57af81f7085", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639af9d45b759c65a34764e7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2474", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2474", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19d374ebcff1c995dc33d", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2475", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2475", - "_tpl": "6087e663132d4d12c81fd96b" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" } ], "Fail": [] @@ -69247,12 +67391,12 @@ "id": "60cb5fa0af2e5506c3781d92", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2477", + "target": "6812400c0c5cf2cf75075782", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2477", + "_id": "6812400c0c5cf2cf75075782", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -69266,12 +67410,12 @@ "id": "5b48736086f7744d06237e24", "type": "Item", "index": 0, - "target": "68010065f81036801d0b247b", + "target": "6812400c0c5cf2cf75075786", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2479", + "_id": "6812400c0c5cf2cf75075784", "_tpl": "5b30b0dc5acfc400153b7124", "upd": { "StackObjectsCount": 1, @@ -69279,7 +67423,7 @@ } }, { - "_id": "68010065f81036801d0b247a", + "_id": "6812400c0c5cf2cf75075785", "_tpl": "5b30b0dc5acfc400153b7124", "upd": { "StackObjectsCount": 1, @@ -69287,7 +67431,7 @@ } }, { - "_id": "68010065f81036801d0b247b", + "_id": "6812400c0c5cf2cf75075786", "_tpl": "5b30b0dc5acfc400153b7124", "upd": { "StackObjectsCount": 1, @@ -69302,12 +67446,12 @@ "id": "60cb5fbc6a2a1958fc522cd9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b247e", + "target": "6812400c0c5cf2cf75075789", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b247d", + "_id": "6812400c0c5cf2cf75075788", "_tpl": "5d2da1e948f035477b1ce2ba", "upd": { "StackObjectsCount": 1, @@ -69315,7 +67459,7 @@ } }, { - "_id": "68010065f81036801d0b247e", + "_id": "6812400c0c5cf2cf75075789", "_tpl": "5d2da1e948f035477b1ce2ba", "upd": { "StackObjectsCount": 1, @@ -69514,12 +67658,12 @@ "id": "64f3176921045e77405d63bf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2480", + "target": "6812400c0c5cf2cf7507578b", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2480", + "_id": "6812400c0c5cf2cf7507578b", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 100000 @@ -69533,12 +67677,12 @@ "id": "64f3176921045e77405d63c0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2483", + "target": "6812400c0c5cf2cf7507578e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2482", + "_id": "6812400c0c5cf2cf7507578d", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -69546,7 +67690,7 @@ } }, { - "_id": "68010065f81036801d0b2483", + "_id": "6812400c0c5cf2cf7507578e", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -69561,12 +67705,12 @@ "id": "64f3176921045e77405d63c1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2486", + "target": "6812400c0c5cf2cf75075791", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2485", + "_id": "6812400c0c5cf2cf75075790", "_tpl": "5d02797c86f774203f38e30a", "upd": { "StackObjectsCount": 1, @@ -69574,7 +67718,7 @@ } }, { - "_id": "68010065f81036801d0b2486", + "_id": "6812400c0c5cf2cf75075791", "_tpl": "5d02797c86f774203f38e30a", "upd": { "StackObjectsCount": 1, @@ -69588,11 +67732,11 @@ "id": "64f8cd7133ff7561c87643f1", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2487", + "target": "6812400c0c5cf2cf75075792", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2487", + "_id": "6812400c0c5cf2cf75075792", "_tpl": "5c0e530286f7747fa1419862" } ], @@ -69749,12 +67893,12 @@ "id": "63a235c28a536b63f82107f4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2489", + "target": "6812400c0c5cf2cf75075794", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2489", + "_id": "6812400c0c5cf2cf75075794", "_tpl": "6389c7750ef44505c87f5996", "upd": { "StackObjectsCount": 1, @@ -69768,11 +67912,11 @@ "id": "63a233d1fcae11642e50f9c8", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b248b", + "target": "6812400c0c5cf2cf75075796", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b248b", + "_id": "6812400c0c5cf2cf75075796", "_tpl": "5c052f6886f7746b1e3db148", "upd": { "StackObjectsCount": 1, @@ -69788,11 +67932,11 @@ "id": "63a235b6f194393ecf632fa3", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b248c", + "target": "6812400c0c5cf2cf75075797", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b248c", + "_id": "6812400c0c5cf2cf75075797", "_tpl": "6389c7750ef44505c87f5996" } ], @@ -70092,12 +68236,12 @@ "id": "64f8d09cb4918f39d363e583", "type": "Item", "index": 0, - "target": "68010065f81036801d0b248e", + "target": "6812400c0c5cf2cf75075799", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b248e", + "_id": "6812400c0c5cf2cf75075799", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 250000 @@ -70111,12 +68255,12 @@ "id": "64f8d0a5b997eb4f4275623a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2490", + "target": "6812400c0c5cf2cf7507579b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2490", + "_id": "6812400c0c5cf2cf7507579b", "_tpl": "5d03794386f77420415576f5", "upd": { "StackObjectsCount": 1, @@ -70131,12 +68275,12 @@ "id": "64f8d0ab05cb58236609a656", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2496", + "target": "6812400c0c5cf2cf750757a1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2492", + "_id": "6812400c0c5cf2cf7507579d", "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, @@ -70144,7 +68288,7 @@ } }, { - "_id": "68010065f81036801d0b2493", + "_id": "6812400c0c5cf2cf7507579e", "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, @@ -70152,7 +68296,7 @@ } }, { - "_id": "68010065f81036801d0b2494", + "_id": "6812400c0c5cf2cf7507579f", "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, @@ -70160,7 +68304,7 @@ } }, { - "_id": "68010065f81036801d0b2495", + "_id": "6812400c0c5cf2cf750757a0", "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, @@ -70168,7 +68312,7 @@ } }, { - "_id": "68010065f81036801d0b2496", + "_id": "6812400c0c5cf2cf750757a1", "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, @@ -70182,11 +68326,11 @@ "id": "64f8d0b1c8626c7d46040668", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2497", + "target": "6812400c0c5cf2cf750757a2", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2497", + "_id": "6812400c0c5cf2cf750757a2", "_tpl": "63fc44e2429a8a166c7f61e6" } ], @@ -70414,12 +68558,12 @@ "id": "63a235f5d6d4651e53602b05", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2499", + "target": "6812400c0c5cf2cf750757a4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2499", + "_id": "6812400c0c5cf2cf750757a4", "_tpl": "5c05300686f7746dce784e5d", "upd": { "StackObjectsCount": 1, @@ -70434,12 +68578,12 @@ "id": "66422e16ecb13e080d43ec59", "type": "Item", "index": 0, - "target": "68010065f81036801d0b249b", + "target": "6812400c0c5cf2cf750757a6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b249b", + "_id": "6812400c0c5cf2cf750757a6", "_tpl": "5c05300686f7746dce784e5d", "upd": { "StackObjectsCount": 1, @@ -70454,12 +68598,12 @@ "id": "66422e1c87cfc674d3593d25", "type": "Item", "index": 0, - "target": "68010065f81036801d0b249d", + "target": "6812400c0c5cf2cf750757a8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b249d", + "_id": "6812400c0c5cf2cf750757a8", "_tpl": "5c05300686f7746dce784e5d", "upd": { "StackObjectsCount": 1, @@ -70473,11 +68617,11 @@ "id": "63a233f5423c8970de41982f", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b249f", + "target": "6812400c0c5cf2cf750757aa", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b249f", + "_id": "6812400c0c5cf2cf750757aa", "_tpl": "5c052fb986f7746b2101e909", "upd": { "StackObjectsCount": 1, @@ -70493,11 +68637,11 @@ "id": "658065c5baa3942bf871691f", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b24a0", + "target": "6812400c0c5cf2cf750757ab", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b24a0", + "_id": "6812400c0c5cf2cf750757ab", "_tpl": "657089638db3adca1009f4ca" } ], @@ -70515,31 +68659,835 @@ "arenaLocations": [], "status": 0 }, - "65802b627b44fa5e14638899": { - "QuestName": "Nothing Fishy About This", - "_id": "65802b627b44fa5e14638899", + "639873003693c63d86328f25": { + "QuestName": "Gunsmith - Part 19", + "_id": "639873003693c63d86328f25", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "65802b627b44fa5e14638899 acceptPlayerMessage", - "changeQuestMessageText": "65802b627b44fa5e14638899 changeQuestMessageText", - "completePlayerMessage": "65802b627b44fa5e14638899 completePlayerMessage", + "acceptPlayerMessage": "639873003693c63d86328f25 acceptPlayerMessage", + "changeQuestMessageText": "639873003693c63d86328f25 changeQuestMessageText", + "completePlayerMessage": "639873003693c63d86328f25 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "63987a4e3693c63d86328f27", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5c46fbd72e2216398b5a8c9c" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 1000.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 15.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 10, + "compareMethod": "<=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 500.0, + "compareMethod": "<=" + }, + "weight": { + "value": 8.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5947e98b86f774778f1448bc", + "5dfcd0e547101c39625f66f9", + "5b30ac585acfc433000eb79c", + "57c5ac0824597754771e88a9" + ], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "639af9817c898a131e1cff86", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 36, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639af9755b759c65a34764e6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b477b6f86f7747290681823", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639873003693c63d86328f25 description", + "failMessageText": "639873003693c63d86328f25 failMessageText", + "declinePlayerMessage": "639873003693c63d86328f25 declinePlayerMessage", + "name": "639873003693c63d86328f25 name", + "note": "639873003693c63d86328f25 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae96a435ab5742b4e407a.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639873003693c63d86328f25 startedMessageText", + "successMessageText": "639873003693c63d86328f25 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 25500, + "id": "639af992dae1800a3e135957", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "639af9a72a994a11600df097", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "639af9bcf5765f47cc7f0e68", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757ad", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757ad", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639af9c8dae1800a3e135958", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757af", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757af", + "_tpl": "60391afc25aff57af81f7085", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639af9d45b759c65a34764e7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757b1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757b1", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19d374ebcff1c995dc33d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750757b2", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757b2", + "_tpl": "6087e663132d4d12c81fd96b" + } + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "597a0b2986f77426d66c0633": { + "QuestName": "Chemical - Part 2", + "_id": "597a0b2986f77426d66c0633", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "597a0b2986f77426d66c0633 acceptPlayerMessage", + "changeQuestMessageText": "597a0b2986f77426d66c0633 changeQuestMessageText", + "completePlayerMessage": "597a0b2986f77426d66c0633 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "597a0be986f774273b74f673", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "590c62a386f77412b0130255" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "597a0bf886f7742717106d13", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "590c62a386f77412b0130255" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5eb3db8baf1da579ab1aafee", + "target": "597a0be986f774273b74f673", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "597a0bb486f77426d66c0634", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5939e9b286f77462a709572c" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "597a0bdb86f7742717106d12", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5939e9b286f77462a709572c" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57794786f7743e797f66a7", + "target": "597a0bb486f77426d66c0634", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "59a925a286f774792b624b71", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "59a9258a86f7747ab05f3575", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5979f9ba86f7740f6c3fe9f2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "597a0b2986f77426d66c0633 description", + "failMessageText": "597a0b2986f77426d66c0633 failMessageText", + "declinePlayerMessage": "597a0b2986f77426d66c0633 declinePlayerMessage", + "name": "597a0b2986f77426d66c0633 name", + "note": "597a0b2986f77426d66c0633 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/594d248186f7740e670685db.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "597a0b2986f77426d66c0633 startedMessageText", + "successMessageText": "597a0b2986f77426d66c0633 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "597afde186f7741ce2755edc", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757b4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757b4", + "_tpl": "5780cfa52459777dfb276eb1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 4800, + "id": "60c8b05680b2027f403dd998", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "60c8b05b9339363e8f0c6adc", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 15000, + "id": "5a2e797e86f7741a95102602", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757b6", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757b6", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 15000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "597afde186f7741ce2755edb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757ba", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757b8", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757b9", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757ba", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb5ba0e3d0247e625da186", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757bd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757bc", + "_tpl": "60391b0fb847c71012789415", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757bd", + "_tpl": "60391b0fb847c71012789415", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5ac668d386f774066f04bd58", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750757be", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757be", + "_tpl": "5a966f51a2750c00156aacf6" + } + ], + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5c0bd01e86f7747cdd799e56": { + "QuestName": "Insomnia", + "_id": "5c0bd01e86f7747cdd799e56", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c0bd01e86f7747cdd799e56 acceptPlayerMessage", + "changeQuestMessageText": "5c0bd01e86f7747cdd799e56 changeQuestMessageText", + "completePlayerMessage": "5c0bd01e86f7747cdd799e56 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "65802b627b44fa5e1463889b", + "id": "5c0bd05586f77422c8027f3c", + "conditions": [ + { + "id": "5c0bd06d86f77468767bec62", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head", + "Chest", + "Stomach", + "LeftArm", + "RightArm", + "LeftLeg", + "RightLeg" + ], + "daytime": { + "from": 21, + "to": 6 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "629f104e274d12190d18841d", + "dynamicLocale": false, + "target": [ + "Lighthouse", + "TarkovStreets", + "bigmap", + "Interchange", + "RezervBase", + "Sandbox_high", + "Woods", + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "5c1242fa86f7742aa04fed52", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 25, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5c17d05e86f77430a64c6c66", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "61958c366726521dd96828ec", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "64b7aa4ce103c46976502d65", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c0bd01e86f7747cdd799e56 description", + "failMessageText": "5c0bd01e86f7747cdd799e56 failMessageText", + "declinePlayerMessage": "5c0bd01e86f7747cdd799e56 declinePlayerMessage", + "name": "5c0bd01e86f7747cdd799e56 name", + "note": "5c0bd01e86f7747cdd799e56 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/5a27cafa86f77424e20615d6.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0bd01e86f7747cdd799e56 startedMessageText", + "successMessageText": "5c0bd01e86f7747cdd799e56 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18200, + "id": "60c8ad819339363e8f0c6ad6", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60c8a2141f21c1669a48c323", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1000, + "id": "5c17c4d986f77430a64c6a14", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757c0", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757c0", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b7a1636236475fc9626895", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757c4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757c4", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757c5", + "_tpl": "657f8ec5f4c82973640b234c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757c4", + "slotId": "Helmet_top" + }, + { + "_id": "6812400c0c5cf2cf750757c6", + "_tpl": "657f8f10f4c82973640b2350", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757c4", + "slotId": "Helmet_back" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64b7a194c8a5031fd14d5b55", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757c9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757c8", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757c9", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cb51f377dc197c77424f8d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757cc", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757cb", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757cc", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "657fc41e07c89bd4900dd70d", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750757cd", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757cd", + "_tpl": "655746010177119f4a097ff7" + } + ], + "loyaltyLevel": 4, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "65733403eefc2c312a759ddb": { + "QuestName": "Developers Secrets - Part 1", + "_id": "65733403eefc2c312a759ddb", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "65733403eefc2c312a759ddb acceptPlayerMessage", + "changeQuestMessageText": "65733403eefc2c312a759ddb changeQuestMessageText", + "completePlayerMessage": "65733403eefc2c312a759ddb completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65733403eefc2c312a759ddd", "conditions": [ { "id": "63a98d1b64b9631d9178274c", "dynamicLocale": false, - "target": "q14_11_jeep", + "target": "Office_enter", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "65802b627b44fa5e1463889a", + "id": "65733403eefc2c312a759ddc", "index": 0, "parentId": "", "oneSessionOnly": true, @@ -70556,28 +69504,54 @@ "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "65802bfaad88f987ea613e71", + "id": "65801ad65176ca6f7c31aadc", "conditions": [ { - "id": "65802c07ce6bd802ff2eadb3", + "id": "65801ae923439c15c350bade", + "dynamicLocale": false, + "target": "Office_quest", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "65801ad655315fdce2096bec", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6581d08b1c94ba22f6beb6ea", + "target": "65733403eefc2c312a759ddc", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65801b075c96f111f780bdf0", + "conditions": [ + { + "id": "65801b16fc87cfba118a95a2", "dynamicLocale": false, "status": [ "Survived" ], "conditionType": "ExitStatus" - }, - { - "id": "658076ac7c586518a43ca63b", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" } ] }, - "id": "65802bfabac8c53c548fca2a", - "index": 1, + "id": "65801b07a26e65a69c2fedd1", + "index": 2, "parentId": "", "oneSessionOnly": true, "dynamicLocale": false, @@ -70587,8 +69561,13 @@ "value": 1, "visibilityConditions": [ { - "id": "65816952a49eefe2525b999c", - "target": "65802b627b44fa5e1463889a", + "id": "6581d080a0840cce44cab902", + "target": "65733403eefc2c312a759ddc", + "conditionType": "CompleteCondition" + }, + { + "id": "6581d08529fb2f98679432cf", + "target": "65801ad655315fdce2096bec", "conditionType": "CompleteCondition" } ], @@ -70599,11 +69578,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "65840c6909a426457faf5aad", + "id": "658406268252eaa057979746", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ae448e586f7744dcf0c2a67", + "target": "639135e8c115f907b14700aa", "status": [ 4 ], @@ -70611,60 +69590,71 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "658406286861262701d570ae", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 23, + "compareMethod": ">=", + "visibilityConditions": [] } ], "Fail": [] }, - "description": "65802b627b44fa5e14638899 description", - "failMessageText": "65802b627b44fa5e14638899 failMessageText", - "declinePlayerMessage": "65802b627b44fa5e14638899 declinePlayerMessage", - "name": "65802b627b44fa5e14638899 name", - "note": "65802b627b44fa5e14638899 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/658991c8c5998b6e942974ed.jpg", + "description": "65733403eefc2c312a759ddb description", + "failMessageText": "65733403eefc2c312a759ddb failMessageText", + "declinePlayerMessage": "65733403eefc2c312a759ddb declinePlayerMessage", + "name": "65733403eefc2c312a759ddb name", + "note": "65733403eefc2c312a759ddb note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/6589939cd4523b429f73ce83.jpg", "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "65802b627b44fa5e14638899 startedMessageText", - "successMessageText": "65802b627b44fa5e14638899 successMessageText", + "startedMessageText": "65733403eefc2c312a759ddb startedMessageText", + "successMessageText": "65733403eefc2c312a759ddb successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7200, - "id": "65802b627b44fa5e1463889e", + "value": 23000, + "id": "65733403eefc2c312a759dfc", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "65841743606b8d720b4b8fd7", + "value": 0.02, + "id": "6584130b66ddfd17202b82bb", "type": "TraderStanding", "index": 0, - "target": "5ac3b934156ae10c4430e83c", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 25000, - "id": "6584175066ddfd17202b8bc1", + "value": 149500, + "id": "6584132066ddfd17202b82c0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24a2", + "target": "6812400c0c5cf2cf750757cf", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24a2", + "_id": "6812400c0c5cf2cf750757cf", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 25000 + "StackObjectsCount": 149500 } } ] @@ -70672,16 +69662,76 @@ { "availableInGameEditions": [], "value": 1, - "id": "6584176e606b8d720b4b8fd8", + "id": "6584133291a14b21510c6339", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24a4", + "target": "6812400c0c5cf2cf750757d1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24a4", - "_tpl": "60a6220e953894617404b00a", + "_id": "6812400c0c5cf2cf750757d1", + "_tpl": "573477e124597737dd42e191", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "65841341606b8d720b4b8f4c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757d3", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757d3", + "_tpl": "5734779624597737e04bf329", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658413520e40596ad2175a3a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757d5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757d5", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6584135f5e9d963e11096cd1", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757d7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757d7", + "_tpl": "62a0a098de7ac8199358053b", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -70700,19 +69750,19 @@ "arenaLocations": [], "status": 0 }, - "625d6ff5ddc94657c21a1625": { - "QuestName": "Network Provider - Part 1", - "_id": "625d6ff5ddc94657c21a1625", + "5d25e4b786f77408251c4bfc": { + "QuestName": "Fishing Place", + "_id": "5d25e4b786f77408251c4bfc", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d6ff5ddc94657c21a1625 acceptPlayerMessage", - "changeQuestMessageText": "625d6ff5ddc94657c21a1625 changeQuestMessageText", - "completePlayerMessage": "625d6ff5ddc94657c21a1625 completePlayerMessage", + "acceptPlayerMessage": "5d25e4b786f77408251c4bfc acceptPlayerMessage", + "changeQuestMessageText": "5d25e4b786f77408251c4bfc changeQuestMessageText", + "completePlayerMessage": "5d25e4b786f77408251c4bfc completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", + "conditionType": "FindItem", "dogtagLevel": 0, - "id": "625eb7fe1ed3bb5bcc5bd9e6", + "id": "5d2f375186f7745916404955", "index": 0, "maxDurability": 100.0, "minDurability": 0.0, @@ -70721,16 +69771,17 @@ "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "6389c70ca33d8c4cdf4932c6" + "5c94bbff86f7747ee735c08f" ], + "countInRaid": false, "globalQuestCounterId": "", - "value": 4, + "value": 2, "visibilityConditions": [] }, { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "625eb80da4eb80027c4f2e0a", + "id": "5d8a09d386f77410b4225d13", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, @@ -70739,57 +69790,21 @@ "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "5c052f6886f7746b1e3db148" + "5c94bbff86f7747ee735c08f" ], "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "625eb81df7308432be1d44c6", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3efd86f77437d351a25b" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "625eb82ac4874104f230c0c6", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "56742c324bdc2d150f8b456d" - ], - "globalQuestCounterId": "", - "value": 4, + "value": 2, "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "66422c3fb7d8c4ce2c235c55", + "id": "5d778ebb86f7742fa732bf09", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "59ca264786f77445a80ed044", + "target": "5d25e4ad86f77443e625e387", "status": [ 4 ], @@ -70799,235 +69814,238 @@ "visibilityConditions": [] }, { - "conditionType": "Quest", - "id": "66422c49778c85262894116f", + "conditionType": "Level", + "id": "5d778ec586f7745041358b37", "index": 1, "parentId": "", "dynamicLocale": false, - "target": "597a0f5686f774273b74f676", - "status": [ - 4, - 5 - ], "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c54bce755ba9832d5c0", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "639135c3744e452011470807", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c6437b27a5cb5d07d2b", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "target": "61958c366726521dd96828ec", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c70e1bbb13492febd48", - "index": 4, - "parentId": "", - "dynamicLocale": false, - "target": "5a27ba1c86f77461ea5a3c56", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c7ad7194d26bad1f7e9", - "index": 5, - "parentId": "", - "dynamicLocale": false, - "target": "608974d01a66564e74191fc0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c82586efeea12398e4f", - "index": 6, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4493d86f7744b8e15aa8f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c8c8552f0cf49734bd6", - "index": 7, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e48186f77443e625e386", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422c9aed30c5920de049dd", - "index": 8, - "parentId": "", - "dynamicLocale": false, - "target": "5ae327c886f7745c7b3f2f3f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422ca4e1e67daba074e2dc", - "index": 9, - "parentId": "", - "dynamicLocale": false, - "target": "63913715f8e5dd32bf4e3aaa", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422caf38d542d4a00faa94", - "index": 10, - "parentId": "", - "dynamicLocale": false, - "target": "6179ad56c760af5ad2053587", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422cbc84b8097795d9ff85", - "index": 11, - "parentId": "", - "dynamicLocale": false, - "target": "6179afd0bca27a099552e040", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66422ccbe23ac53086c3601e", - "index": 12, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "TraderStanding", - "id": "66422d1a98c1a9ac7b6902ec", - "index": 13, - "parentId": "", - "dynamicLocale": false, - "target": "579dc571d53a0658a154fbec", - "globalQuestCounterId": "", - "value": 1, + "value": 25, "compareMethod": ">=", "visibilityConditions": [] } ], "Fail": [] }, - "description": "625d6ff5ddc94657c21a1625 description", - "failMessageText": "625d6ff5ddc94657c21a1625 failMessageText", - "declinePlayerMessage": "625d6ff5ddc94657c21a1625 declinePlayerMessage", - "name": "625d6ff5ddc94657c21a1625 name", - "note": "625d6ff5ddc94657c21a1625 note", - "traderId": "5a7c2eca46aef81a7ca2145d", + "description": "5d25e4b786f77408251c4bfc description", + "failMessageText": "5d25e4b786f77408251c4bfc failMessageText", + "declinePlayerMessage": "5d25e4b786f77408251c4bfc declinePlayerMessage", + "name": "5d25e4b786f77408251c4bfc name", + "note": "5d25e4b786f77408251c4bfc note", + "traderId": "5c0647fdd443bc2504c2d371", "location": "any", - "image": "/files/quest/icon/5ac4dbb086f7743e7c61ca09.jpg", - "type": "PickUp", + "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "625d6ff5ddc94657c21a1625 startedMessageText", - "successMessageText": "625d6ff5ddc94657c21a1625 successMessageText", + "startedMessageText": "5d25e4b786f77408251c4bfc startedMessageText", + "successMessageText": "5d25e4b786f77408251c4bfc successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 18600, - "id": "63a5d4a14610fa47416d8eff", + "value": 18000, + "id": "60ccab9620a6283a506aeb4d", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "63a5d4b42b25f7513905c808", + "value": 0.02, + "id": "60ccabccb2736c24b2118baa", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5c0647fdd443bc2504c2d371", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 40000, + "id": "60ccaba041fd1e14d71e2312", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757d9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750757d9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 40000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ec1a2840135590512408dfb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757da", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757da", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf750757db", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "6812400c0c5cf2cf750757da", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf750757dc", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6812400c0c5cf2cf750757da", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf750757dd", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf750757da", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf750757de", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6812400c0c5cf2cf750757dd", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf750757df", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "6812400c0c5cf2cf750757de", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf750757e0", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "6812400c0c5cf2cf750757da", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf750757e1", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "6812400c0c5cf2cf750757e0", + "slotId": "mod_scope" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60ccabb341fd1e14d71e2313", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750757ec", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750757ec", + "_tpl": "5ca2151486f774244a3b8d30", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750757ed", + "_tpl": "6575dd3e9e27f4a85e081142", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf750757ee", + "_tpl": "6575dd519e27f4a85e081146", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf750757ef", + "_tpl": "6575dd64945bf78edd04c438", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf750757f0", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf750757f1", + "_tpl": "6575dd769d3a0ddf660b904b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf750757f2", + "_tpl": "6575dd800546f8b1de093df6", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf750757f3", + "_tpl": "6575dd94945bf78edd04c43c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Groin_back" + }, + { + "_id": "6812400c0c5cf2cf750757f4", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf750757f5", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750757ec", + "slotId": "Back_plate" + } + ] } ], "Fail": [] @@ -71040,100 +70058,67 @@ "arenaLocations": [], "status": 0 }, - "5b47749f86f7746c5d6a5fd4": { - "QuestName": "Gunsmith - Part 17", - "_id": "5b47749f86f7746c5d6a5fd4", + "64f6aafd67e11a7c6206e0d0": { + "QuestName": "Beyond the Red Meat - Part 2", + "_id": "64f6aafd67e11a7c6206e0d0", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage", - "changeQuestMessageText": "5b47749f86f7746c5d6a5fd4 changeQuestMessageText", - "completePlayerMessage": "5b47749f86f7746c5d6a5fd4 completePlayerMessage", + "acceptPlayerMessage": "64f6aafd67e11a7c6206e0d0 acceptPlayerMessage", + "changeQuestMessageText": "64f6aafd67e11a7c6206e0d0 changeQuestMessageText", + "completePlayerMessage": "64f6aafd67e11a7c6206e0d0 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "5b47796686f774374f4a8bb1", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "64f6aafd67e11a7c6206e0d1", "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5ac66d015acfc400180ae6e4" + "64f5b4f71a5f313cb144c06c" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "64f6aafd67e11a7c6206e0d2", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "64f5b4f71a5f313cb144c06c" ], "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 800.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 70.0, - "compareMethod": ">=" - }, - "height": { - "value": 2, - "compareMethod": "<=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 250.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 4, - "compareMethod": "<=" - }, - "containsItems": [ - "5f6339d53ada5942720e2dc3", - "5c0548ae0db834001966a3c2", - "588226ef24597767af46e39c", - "5b3a337e5acfc4704b4a19a0", - "5beec8b20db834001961942a" - ], - "hasItemFromCategory": [] + "visibilityConditions": [ + { + "id": "64f6aafd67e11a7c6206e0d3", + "target": "64f6aafd67e11a7c6206e0d1", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0cc186f7744def7f3389", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 31, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5b4f082f86f7747a284dd609", + "id": "64f8cc25b4918f39d363e401", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac242ab86f77412464f68b4", + "target": "64f5e20652fc01298e2c61e3", "status": [ 4 ], @@ -71145,28 +70130,28 @@ ], "Fail": [] }, - "description": "5b47749f86f7746c5d6a5fd4 description", - "failMessageText": "5b47749f86f7746c5d6a5fd4 failMessageText", - "declinePlayerMessage": "5b47749f86f7746c5d6a5fd4 declinePlayerMessage", - "name": "5b47749f86f7746c5d6a5fd4 name", - "note": "5b47749f86f7746c5d6a5fd4 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5b47859886f7744d1b23c4f5.jpg", - "type": "WeaponAssembly", + "description": "64f6aafd67e11a7c6206e0d0 description", + "failMessageText": "64f6aafd67e11a7c6206e0d0 failMessageText", + "declinePlayerMessage": "64f6aafd67e11a7c6206e0d0 declinePlayerMessage", + "name": "64f6aafd67e11a7c6206e0d0 name", + "note": "64f6aafd67e11a7c6206e0d0 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/64f8b6c4a9c59f365c4ea82d.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5b47749f86f7746c5d6a5fd4 startedMessageText", - "successMessageText": "5b47749f86f7746c5d6a5fd4 successMessageText", + "startedMessageText": "64f6aafd67e11a7c6206e0d0 startedMessageText", + "successMessageText": "64f6aafd67e11a7c6206e0d0 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 21400, - "id": "60cc7898179f8541b846926a", + "value": 21300, + "id": "64f6aafd67e11a7c6206e0d4", "type": "Experience", "index": 0, "unknown": false @@ -71174,96 +70159,154 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "60cc789c2b555f16df5c41bb", + "id": "64f8cc3d33ff7561c87643ef", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 35000, - "id": "5b48761d86f7744abe3d1972", + "value": 120000, + "id": "64f8cc48c8626c7d46040422", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24a6", + "target": "6812400c0c5cf2cf750757f7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24a6", + "_id": "6812400c0c5cf2cf750757f7", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 35000 + "StackObjectsCount": 120000 } } ] }, { "availableInGameEditions": [], - "value": 4, - "id": "639af815f5765f47cc7f0e66", + "value": 1, + "id": "64f8cc5005cb58236609a417", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24ab", + "target": "6812400c0c5cf2cf750757f8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24a8", - "_tpl": "590a3c0a86f774385a33c450", + "_id": "6812400c0c5cf2cf750757f8", + "_tpl": "5fbcc1d9016cce60e8341ab3", "upd": { "StackObjectsCount": 1, - "SpawnedInSession": true + "FireMode": { + "FireMode": "single" + } } }, { - "_id": "68010065f81036801d0b24a9", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400c0c5cf2cf750757f9", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "6812400c0c5cf2cf750757f8", + "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b24aa", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400c0c5cf2cf750757fa", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6812400c0c5cf2cf750757f8", + "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b24ab", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400c0c5cf2cf750757fb", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "6812400c0c5cf2cf750757f8", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf750757fc", + "_tpl": "5fbbfacda56d053a3543f799", + "parentId": "6812400c0c5cf2cf750757fb", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf750757fd", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "6812400c0c5cf2cf750757fc", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf750757fe", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "6812400c0c5cf2cf750757fd", + "slotId": "mod_muzzle_000" + }, + { + "_id": "6812400c0c5cf2cf750757ff", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "6812400c0c5cf2cf750757fc", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf75075800", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "6812400c0c5cf2cf750757fb", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075801", + "_tpl": "5fc0fa362770a0045c59c677", + "parentId": "6812400c0c5cf2cf75075800", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075802", + "_tpl": "5fc0fa957283c4046c58147e", + "parentId": "6812400c0c5cf2cf750757fb", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075803", + "_tpl": "5fbcc437d724d907e2077d5c", + "parentId": "6812400c0c5cf2cf750757f8", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075804", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "6812400c0c5cf2cf750757f8", + "slotId": "mod_charge" } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "639af822ad9d7e3216668f67", + "value": 3, + "id": "64f8cc5aa9c59f365c4eae28", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24ae", + "target": "6812400c0c5cf2cf75075808", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24ad", - "_tpl": "5e2aedd986f7746d404f3aa4", + "_id": "6812400c0c5cf2cf75075806", + "_tpl": "55d4887d4bdc2d962f8b4570", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b24ae", - "_tpl": "5e2aedd986f7746d404f3aa4", + "_id": "6812400c0c5cf2cf75075807", + "_tpl": "55d4887d4bdc2d962f8b4570", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075808", + "_tpl": "55d4887d4bdc2d962f8b4570", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -71273,67 +70316,82 @@ }, { "availableInGameEditions": [], - "id": "5b48e8bb86f774498467142c", - "type": "AssortmentUnlock", + "value": 3, + "id": "64f8cc617e981f7f0110d801", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b24af", + "target": "6812400c0c5cf2cf7507580f", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24af", - "_tpl": "588226ef24597767af46e39c" + "_id": "6812400c0c5cf2cf7507580b", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507580c", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf7507580b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507580d", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507580e", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf7507580d", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507580f", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075810", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf7507580f", + "slotId": "cartridges" } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" + ] }, { "availableInGameEditions": [], - "id": "60b8f61d81c51328c56d7714", + "id": "64f8cc6833ff7561c87643f0", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b24b0", + "target": "6812400c0c5cf2cf75075811", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b24b0", - "_tpl": "5a33e75ac4a2826c6e06d759" + "_id": "6812400c0c5cf2cf75075811", + "_tpl": "5c1cd46f2e22164bef5cfedb" } ], "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "63a19cf55032c67f050dd962", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b24b1", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b24b1", - "_tpl": "5e21ca18e4d47f0da15e77dd" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "63a19d04423c8970de419818", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b24b2", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b24b2", - "_tpl": "619b69037b9de8162902673e" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" + "traderId": "58330581ace78e27b8b10cee" } ], "Fail": [] @@ -71665,12 +70723,12 @@ "id": "63a235e131772a61500d52be", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24b4", + "target": "6812400c0c5cf2cf75075813", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24b4", + "_id": "6812400c0c5cf2cf75075813", "_tpl": "6389c92d52123d5dd17f8876", "upd": { "StackObjectsCount": 1, @@ -71684,11 +70742,11 @@ "id": "63a2333d4ebcff1c995dc358", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b24b6", + "target": "6812400c0c5cf2cf75075815", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b24b6", + "_id": "6812400c0c5cf2cf75075815", "_tpl": "5c05308086f7746b2101e90b", "upd": { "StackObjectsCount": 1, @@ -71843,12 +70901,12 @@ "id": "5d667f7886f774369120c2c3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24b8", + "target": "6812400c0c5cf2cf75075817", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24b8", + "_id": "6812400c0c5cf2cf75075817", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 50000 @@ -71862,12 +70920,12 @@ "id": "5ebfc1cb86f7561e0477575c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24ba", + "target": "6812400c0c5cf2cf75075819", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24ba", + "_id": "6812400c0c5cf2cf75075819", "_tpl": "590c392f86f77444754deb29", "upd": { "StackObjectsCount": 1, @@ -71887,28 +70945,77 @@ "arenaLocations": [], "status": 0 }, - "64f6aafd67e11a7c6206e0d0": { - "QuestName": "Beyond the Red Meat - Part 2", - "_id": "64f6aafd67e11a7c6206e0d0", + "5d25e2c386f77443e7549029": { + "QuestName": "The Huntsman Path - Trophy", + "_id": "5d25e2c386f77443e7549029", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f6aafd67e11a7c6206e0d0 acceptPlayerMessage", - "changeQuestMessageText": "64f6aafd67e11a7c6206e0d0 changeQuestMessageText", - "completePlayerMessage": "64f6aafd67e11a7c6206e0d0 completePlayerMessage", + "acceptPlayerMessage": "5d25e2c386f77443e7549029 acceptPlayerMessage", + "changeQuestMessageText": "5d25e2c386f77443e7549029 changeQuestMessageText", + "completePlayerMessage": "5d25e2c386f77443e7549029 completePlayerMessage", "conditions": { "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d26fd8886f77469f0445744", + "conditions": [ + { + "id": "5d27106c86f77469f1599fee", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBully" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5d26fd8886f77469f0445745", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "64f6aafd67e11a7c6206e0d1", - "index": 0, + "id": "5d66741c86f7744a2e70f039", + "index": 1, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "64f5b4f71a5f313cb144c06c" + "5b3b713c5acfc4330140bd8d" ], "countInRaid": false, "globalQuestCounterId": "", @@ -71918,23 +71025,23 @@ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "64f6aafd67e11a7c6206e0d2", - "index": 1, + "id": "5d2710e686f7742e9019a6b2", + "index": 2, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "64f5b4f71a5f313cb144c06c" + "5b3b713c5acfc4330140bd8d" ], "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "64f6aafd67e11a7c6206e0d3", - "target": "64f6aafd67e11a7c6206e0d1", + "id": "5d66742986f7744dcc5e2992", + "target": "5d66741c86f7744a2e70f039", "conditionType": "CompleteCondition" } ] @@ -71943,11 +71050,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "64f8cc25b4918f39d363e401", + "id": "5d77689686f7742fa857dd34", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "64f5e20652fc01298e2c61e3", + "target": "5d25e2b486f77409de05bba0", "status": [ 4 ], @@ -71959,56 +71066,56 @@ ], "Fail": [] }, - "description": "64f6aafd67e11a7c6206e0d0 description", - "failMessageText": "64f6aafd67e11a7c6206e0d0 failMessageText", - "declinePlayerMessage": "64f6aafd67e11a7c6206e0d0 declinePlayerMessage", - "name": "64f6aafd67e11a7c6206e0d0 name", - "note": "64f6aafd67e11a7c6206e0d0 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/64f8b6c4a9c59f365c4ea82d.jpg", + "description": "5d25e2c386f77443e7549029 description", + "failMessageText": "5d25e2c386f77443e7549029 failMessageText", + "declinePlayerMessage": "5d25e2c386f77443e7549029 declinePlayerMessage", + "name": "5d25e2c386f77443e7549029 name", + "note": "5d25e2c386f77443e7549029 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5d67bb8486f7744dcc5e2fb1.jpg", "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "64f6aafd67e11a7c6206e0d0 startedMessageText", - "successMessageText": "64f6aafd67e11a7c6206e0d0 successMessageText", + "startedMessageText": "5d25e2c386f77443e7549029 startedMessageText", + "successMessageText": "5d25e2c386f77443e7549029 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 21300, - "id": "64f6aafd67e11a7c6206e0d4", + "value": 15300, + "id": "60cca32a98b492706036460d", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "64f8cc3d33ff7561c87643ef", + "value": 0.02, + "id": "60cca331ac6eb02bc726de64", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 120000, - "id": "64f8cc48c8626c7d46040422", + "value": 90000, + "id": "5d6677b686f7744dcc5e2993", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24bc", + "target": "6812400c0c5cf2cf7507581b", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24bc", + "_id": "6812400c0c5cf2cf7507581b", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 120000 + "StackObjectsCount": 90000 } } ] @@ -72016,126 +71123,16 @@ { "availableInGameEditions": [], "value": 1, - "id": "64f8cc5005cb58236609a417", + "id": "64b65a5fd5887c2ce9561155", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24bd", - "unknown": false, + "target": "6812400c0c5cf2cf7507581d", + "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24bd", - "_tpl": "5fbcc1d9016cce60e8341ab3", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b24be", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "68010065f81036801d0b24bd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b24bf", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "68010065f81036801d0b24bd", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b24c0", - "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "68010065f81036801d0b24bd", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b24c1", - "_tpl": "5fbbfacda56d053a3543f799", - "parentId": "68010065f81036801d0b24c0", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b24c2", - "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "68010065f81036801d0b24c1", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b24c3", - "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "68010065f81036801d0b24c2", - "slotId": "mod_muzzle_000" - }, - { - "_id": "68010065f81036801d0b24c4", - "_tpl": "5fbc210bf24b94483f726481", - "parentId": "68010065f81036801d0b24c1", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b24c5", - "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "68010065f81036801d0b24c0", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b24c6", - "_tpl": "5fc0fa362770a0045c59c677", - "parentId": "68010065f81036801d0b24c5", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b24c7", - "_tpl": "5fc0fa957283c4046c58147e", - "parentId": "68010065f81036801d0b24c0", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b24c8", - "_tpl": "5fbcc437d724d907e2077d5c", - "parentId": "68010065f81036801d0b24bd", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b24c9", - "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "68010065f81036801d0b24bd", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "64f8cc5aa9c59f365c4eae28", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b24cd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b24cb", - "_tpl": "55d4887d4bdc2d962f8b4570", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24cc", - "_tpl": "55d4887d4bdc2d962f8b4570", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24cd", - "_tpl": "55d4887d4bdc2d962f8b4570", + "_id": "6812400c0c5cf2cf7507581d", + "_tpl": "5c127c4486f7745625356c13", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -72146,81 +71143,86 @@ { "availableInGameEditions": [], "value": 3, - "id": "64f8cc617e981f7f0110d801", + "id": "64b65ab325251516d7685425", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24d4", + "target": "6812400c0c5cf2cf75075821", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24d0", - "_tpl": "657023a9126cc4a57d0e17a6", + "_id": "6812400c0c5cf2cf7507581f", + "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b24d1", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b24d0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24d2", - "_tpl": "657023a9126cc4a57d0e17a6", + "_id": "6812400c0c5cf2cf75075820", + "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b24d3", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b24d2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24d4", - "_tpl": "657023a9126cc4a57d0e17a6", + "_id": "6812400c0c5cf2cf75075821", + "_tpl": "5734758f24597738025ee253", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b24d5", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b24d4", - "slotId": "cartridges" } ] }, { "availableInGameEditions": [], - "id": "64f8cc6833ff7561c87643f0", - "type": "AssortmentUnlock", + "value": 2, + "id": "64b65acff83adb775979f8b6", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b24d6", + "target": "6812400c0c5cf2cf75075824", "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24d6", - "_tpl": "5c1cd46f2e22164bef5cfedb" + "_id": "6812400c0c5cf2cf75075823", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075824", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64b65adb58b5637e2d71a635", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075826", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075826", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] } ], "Fail": [] @@ -72388,12 +71390,12 @@ "id": "5c18d39d86f77467c259d521", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24d8", + "target": "6812400c0c5cf2cf75075828", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24d8", + "_id": "6812400c0c5cf2cf75075828", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 130000 @@ -72407,12 +71409,12 @@ "id": "5c18d3c986f774186730ff0b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24da", + "target": "6812400c0c5cf2cf7507582a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24da", + "_id": "6812400c0c5cf2cf7507582a", "_tpl": "5a145d4786f7744cbb6f4a12", "upd": { "StackObjectsCount": 1, @@ -72427,12 +71429,12 @@ "id": "5ef1a8cb05ac756f061bea28", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24dc", + "target": "6812400c0c5cf2cf7507582c", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24dc", + "_id": "6812400c0c5cf2cf7507582c", "_tpl": "5c0a840b86f7742ffa4f2482", "upd": { "StackObjectsCount": 1, @@ -72452,100 +71454,49 @@ "arenaLocations": [], "status": 0 }, - "625d700cc48e6c62a440fab5": { - "QuestName": "Getting Acquainted", - "_id": "625d700cc48e6c62a440fab5", + "657315e270bb0b8dba00cc48": { + "QuestName": "Burning Rubber", + "_id": "657315e270bb0b8dba00cc48", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d700cc48e6c62a440fab5 acceptPlayerMessage", - "changeQuestMessageText": "625d700cc48e6c62a440fab5 changeQuestMessageText", - "completePlayerMessage": "625d700cc48e6c62a440fab5 completePlayerMessage", + "acceptPlayerMessage": "657315e270bb0b8dba00cc48 acceptPlayerMessage", + "changeQuestMessageText": "657315e270bb0b8dba00cc48 changeQuestMessageText", + "completePlayerMessage": "657315e270bb0b8dba00cc48 completePlayerMessage", "conditions": { "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6391e2f9e705511c8a4a1b85", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "6331bb0d1aa9f42b804997a6" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6391e31bfa894f0a866afdec", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": true, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "62e910aaf957f2915e0a5e36" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6391e3c686e646067c176a93", - "target": "6391e2f9e705511c8a4a1b85", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6391e329c115f907b14700b1", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "6331bb0d1aa9f42b804997a6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6391e3ceee79ee703e3012e9", - "target": "6391e31bfa894f0a866afdec", - "conditionType": "CompleteCondition" - } - ] - }, { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "63ab727b1287ef0b827d0c96", + "id": "65733e57200715fcb52ea937", "conditions": [ { - "id": "63ab7284972364554162a236", + "id": "65733e7d085ac2c4f5269652", "dynamicLocale": false, - "target": "meh_50_visit_area_check_1", - "value": 1, - "conditionType": "VisitPlace" + "target": [ + "Sandbox", + "Sandbox_high" + ], + "conditionType": "Location" + }, + { + "id": "65733f147883616935f7d004", + "dynamicLocale": false, + "exitName": "Sandbox_VExit", + "conditionType": "ExitName" + }, + { + "id": "658d46baa1a0bddac249610f", + "dynamicLocale": false, + "status": [ + "Runner", + "Survived" + ], + "conditionType": "ExitStatus" } ] }, - "id": "63ab727b1287ef0b827d0c95", - "index": 4, + "id": "65733e571b7e7ed95fcd2f0c", + "index": 0, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, @@ -72553,101 +71504,46 @@ "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [ - { - "id": "63ab72bde842787ad213571e", - "target": "6391e329c115f907b14700b1", - "conditionType": "CompleteCondition" - } - ], + "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false } ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6391e2ea744e45201147080e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "625d7005a4eb80027c4f2e09", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "TraderStanding", - "id": "639c6674eb92d6238e058dea", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "638f541a29ffd1183d187f57", - "globalQuestCounterId": "", - "value": 0, - "compareMethod": "<=", - "visibilityConditions": [] - } - ] + "AvailableForStart": [], + "Fail": [] }, - "description": "625d700cc48e6c62a440fab5 description", - "failMessageText": "625d700cc48e6c62a440fab5 failMessageText", - "declinePlayerMessage": "625d700cc48e6c62a440fab5 declinePlayerMessage", - "name": "625d700cc48e6c62a440fab5 name", - "note": "625d700cc48e6c62a440fab5 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/63ab130a160cc610ba035e08.jpg", + "description": "657315e270bb0b8dba00cc48 description", + "failMessageText": "657315e270bb0b8dba00cc48 failMessageText", + "declinePlayerMessage": "657315e270bb0b8dba00cc48 declinePlayerMessage", + "name": "657315e270bb0b8dba00cc48 name", + "note": "657315e270bb0b8dba00cc48 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "653e6760052c01c1c805532f", + "image": "/files/quest/icon/65899ce3fd239b582c211d31.jpg", "type": "Exploration", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "625d700cc48e6c62a440fab5 startedMessageText", - "successMessageText": "625d700cc48e6c62a440fab5 successMessageText", + "startedMessageText": "657315e270bb0b8dba00cc48 startedMessageText", + "successMessageText": "657315e270bb0b8dba00cc48 successMessageText", "rewards": { "Started": [ { "availableInGameEditions": [], - "id": "6399f098dbf1d842d260ccc1", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b24de", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b24de", - "_tpl": "62e910aaf957f2915e0a5e36", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 2, - "traderId": 11 - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67e82981edc979c198ed8848", + "value": 5000, + "id": "658afeebec342e2bf028148e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24e0", + "target": "6812400c0c5cf2cf7507582e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24e0", - "_tpl": "6331bb0d1aa9f42b804997a6", + "_id": "6812400c0c5cf2cf7507582e", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 1 + "StackObjectsCount": 5000 } } ] @@ -72656,8 +71552,8 @@ "Success": [ { "availableInGameEditions": [], - "value": 32000, - "id": "63a5d5c60530a47cb931854e", + "value": 1900, + "id": "65846f2128ecbd11493fa1cf", "type": "Experience", "index": 0, "unknown": false @@ -72665,135 +71561,7 @@ { "availableInGameEditions": [], "value": 0.01, - "id": "63a5d5ce4610fa47416d8f00", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - } - ], - "Fail": [ - { - "availableInGameEditions": [], - "value": -0.1, - "id": "63a6c60b0aa9fb29da61c11c", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - } - ] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64f5e20652fc01298e2c61e3": { - "QuestName": "Beyond the Red Meat - Part 1", - "_id": "64f5e20652fc01298e2c61e3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f5e20652fc01298e2c61e3 acceptPlayerMessage", - "changeQuestMessageText": "64f5e20652fc01298e2c61e3 changeQuestMessageText", - "completePlayerMessage": "64f5e20652fc01298e2c61e3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "64f6a9e6dd44b6417729b535", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "64f69b4267e11a7c6206e010" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "64f6aa6cdd44b6417729b536", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "64f69b4267e11a7c6206e010" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "64f6aa73afbb7b781850f935", - "target": "64f6a9e6dd44b6417729b535", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f8cc7dc8626c7d46040423", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b478ff486f7744d184ecbbf", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "64f5e20652fc01298e2c61e3 description", - "failMessageText": "64f5e20652fc01298e2c61e3 failMessageText", - "declinePlayerMessage": "64f5e20652fc01298e2c61e3 declinePlayerMessage", - "name": "64f5e20652fc01298e2c61e3 name", - "note": "64f5e20652fc01298e2c61e3 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/64f8b78cb4918f39d363e1bf.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64f5e20652fc01298e2c61e3 startedMessageText", - "successMessageText": "64f5e20652fc01298e2c61e3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18400, - "id": "64f6aaaabf4c727e9c7bde9a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "64f8cc8cb997eb4f42756178", + "id": "65846f341e25c52cb72f8084", "type": "TraderStanding", "index": 0, "target": "58330581ace78e27b8b10cee", @@ -72801,272 +71569,42 @@ }, { "availableInGameEditions": [], - "value": 80000, - "id": "64f8cc94b4918f39d363e402", + "value": 12000, + "id": "65846f431e25c52cb72f8085", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24e2", + "target": "6812400c0c5cf2cf75075830", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b24e2", + "_id": "6812400c0c5cf2cf75075830", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 80000 + "StackObjectsCount": 12000 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "64f8cc9b794e3b36cd0f8c54", + "value": 1, + "id": "65846f589622c723546f3d39", "type": "Item", "index": 0, - "target": "68010065f81036801d0b24e3", + "target": "6812400c0c5cf2cf75075832", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b24e3", - "_tpl": "628b5638ad252a16da6dd245", - "upd": { - "StackObjectsCount": 2, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b24e4", - "_tpl": "628b8d83717774443b15e248", - "parentId": "68010065f81036801d0b24e3", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b24e5", - "_tpl": "628b916469015a4e1711ed8d", - "parentId": "68010065f81036801d0b24e4", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b24e6", - "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "68010065f81036801d0b24e5", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b24e7", - "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "68010065f81036801d0b24e6", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b24e8", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "68010065f81036801d0b24e3", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b24e9", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "68010065f81036801d0b24e3", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b24ea", - "_tpl": "628b9a40717774443b15e9f2", - "parentId": "68010065f81036801d0b24e3", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b24eb", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "68010065f81036801d0b24ea", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b24ec", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "68010065f81036801d0b24e3", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "64f8cca2c8626c7d46040424", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b24f1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b24ee", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24ef", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24f0", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24f1", - "_tpl": "55d480c04bdc2d1d4e8b456a", + "_id": "6812400c0c5cf2cf75075832", + "_tpl": "6033fa48ffd42c541047f728", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "64f8ccc057e97a762372076f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b24fe", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b24f4", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24f5", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24f4", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24f6", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24f7", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24f6", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24f8", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24f9", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24f8", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24fa", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24fb", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24fa", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24fc", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24fd", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24fc", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b24fe", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b24ff", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b24fe", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "64f8ccccc8626c7d46040425", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2500", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2500", - "_tpl": "6130ca3fd92c473c77020dbd" - } - ], - "loyaltyLevel": 3, - "traderId": "58330581ace78e27b8b10cee" } ], "Fail": [] @@ -73227,12 +71765,12 @@ "id": "64f8c981794e3b36cd0f8c51", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2502", + "target": "6812400c0c5cf2cf75075834", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2502", + "_id": "6812400c0c5cf2cf75075834", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -73246,63 +71784,63 @@ "id": "64f8c98b33ff7561c876432e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2503", + "target": "6812400c0c5cf2cf75075835", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2503", + "_id": "6812400c0c5cf2cf75075835", "_tpl": "5ac66d2e5acfc43b321d4b53", "upd": { "StackObjectsCount": 2 } }, { - "_id": "68010065f81036801d0b2504", + "_id": "6812400c0c5cf2cf75075836", "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b2505", + "_id": "6812400c0c5cf2cf75075837", "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "68010065f81036801d0b2504", + "parentId": "6812400c0c5cf2cf75075836", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2506", + "_id": "6812400c0c5cf2cf75075838", "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2507", + "_id": "6812400c0c5cf2cf75075839", "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b2508", + "_id": "6812400c0c5cf2cf7507583a", "_tpl": "5ac50da15acfc4001718d287", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2509", + "_id": "6812400c0c5cf2cf7507583b", "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b250a", + "_id": "6812400c0c5cf2cf7507583c", "_tpl": "5ac50c185acfc400163398d4", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b250b", + "_id": "6812400c0c5cf2cf7507583d", "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "68010065f81036801d0b2503", + "parentId": "6812400c0c5cf2cf75075835", "slotId": "mod_magazine" } ] @@ -73313,12 +71851,12 @@ "id": "64f8c9927e981f7f0110d506", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2510", + "target": "6812400c0c5cf2cf75075842", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b250d", + "_id": "6812400c0c5cf2cf7507583f", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -73326,7 +71864,7 @@ } }, { - "_id": "68010065f81036801d0b250e", + "_id": "6812400c0c5cf2cf75075840", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -73334,7 +71872,7 @@ } }, { - "_id": "68010065f81036801d0b250f", + "_id": "6812400c0c5cf2cf75075841", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -73342,7 +71880,7 @@ } }, { - "_id": "68010065f81036801d0b2510", + "_id": "6812400c0c5cf2cf75075842", "_tpl": "5ac66bea5acfc43b321d4aec", "upd": { "StackObjectsCount": 1, @@ -73357,12 +71895,12 @@ "id": "64f8c99fb997eb4f42756173", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2523", + "target": "6812400c0c5cf2cf75075855", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2513", + "_id": "6812400c0c5cf2cf75075845", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73370,16 +71908,16 @@ } }, { - "_id": "68010065f81036801d0b2514", + "_id": "6812400c0c5cf2cf75075846", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2513", + "parentId": "6812400c0c5cf2cf75075845", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2515", + "_id": "6812400c0c5cf2cf75075847", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73387,16 +71925,16 @@ } }, { - "_id": "68010065f81036801d0b2516", + "_id": "6812400c0c5cf2cf75075848", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2515", + "parentId": "6812400c0c5cf2cf75075847", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2517", + "_id": "6812400c0c5cf2cf75075849", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73404,16 +71942,16 @@ } }, { - "_id": "68010065f81036801d0b2518", + "_id": "6812400c0c5cf2cf7507584a", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2517", + "parentId": "6812400c0c5cf2cf75075849", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2519", + "_id": "6812400c0c5cf2cf7507584b", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73421,16 +71959,16 @@ } }, { - "_id": "68010065f81036801d0b251a", + "_id": "6812400c0c5cf2cf7507584c", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2519", + "parentId": "6812400c0c5cf2cf7507584b", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b251b", + "_id": "6812400c0c5cf2cf7507584d", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73438,16 +71976,16 @@ } }, { - "_id": "68010065f81036801d0b251c", + "_id": "6812400c0c5cf2cf7507584e", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b251b", + "parentId": "6812400c0c5cf2cf7507584d", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b251d", + "_id": "6812400c0c5cf2cf7507584f", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73455,16 +71993,16 @@ } }, { - "_id": "68010065f81036801d0b251e", + "_id": "6812400c0c5cf2cf75075850", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b251d", + "parentId": "6812400c0c5cf2cf7507584f", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b251f", + "_id": "6812400c0c5cf2cf75075851", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73472,16 +72010,16 @@ } }, { - "_id": "68010065f81036801d0b2520", + "_id": "6812400c0c5cf2cf75075852", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b251f", + "parentId": "6812400c0c5cf2cf75075851", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2521", + "_id": "6812400c0c5cf2cf75075853", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73489,16 +72027,16 @@ } }, { - "_id": "68010065f81036801d0b2522", + "_id": "6812400c0c5cf2cf75075854", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2521", + "parentId": "6812400c0c5cf2cf75075853", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2523", + "_id": "6812400c0c5cf2cf75075855", "_tpl": "64ace9f9c4eda9354b0226aa", "upd": { "StackObjectsCount": 1, @@ -73506,12 +72044,12 @@ } }, { - "_id": "68010065f81036801d0b2524", + "_id": "6812400c0c5cf2cf75075856", "_tpl": "64b7af434b75259c590fa893", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2523", + "parentId": "6812400c0c5cf2cf75075855", "slotId": "cartridges" } ] @@ -73521,11 +72059,11 @@ "id": "64f8c9a67d39ff0e7624cd69", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2525", + "target": "6812400c0c5cf2cf75075857", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2525", + "_id": "6812400c0c5cf2cf75075857", "_tpl": "62e14904c2699c0ec93adc47", "upd": { "FireMode": { @@ -73541,51 +72079,51 @@ } }, { - "_id": "68010065f81036801d0b2526", + "_id": "6812400c0c5cf2cf75075858", "_tpl": "62e153bcdb1a5c41971c1b5b", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2527", + "_id": "6812400c0c5cf2cf75075859", "_tpl": "62e2a7138e1ac9380579c122", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2528", + "_id": "6812400c0c5cf2cf7507585a", "_tpl": "62e2969582ebf260c20539c2", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2529", + "_id": "6812400c0c5cf2cf7507585b", "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b252a", + "_id": "6812400c0c5cf2cf7507585c", "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "68010065f81036801d0b2529", + "parentId": "6812400c0c5cf2cf7507585b", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b252b", + "_id": "6812400c0c5cf2cf7507585d", "_tpl": "637ba19df7ca6372bf2613d7", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b252c", + "_id": "6812400c0c5cf2cf7507585e", "_tpl": "62ed1921b3608410ef5a2c04", - "parentId": "68010065f81036801d0b252b", + "parentId": "6812400c0c5cf2cf7507585d", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b252d", + "_id": "6812400c0c5cf2cf7507585f", "_tpl": "637ba29bf7ca6372bf2613db", - "parentId": "68010065f81036801d0b2525", + "parentId": "6812400c0c5cf2cf75075857", "slotId": "mod_pistolgrip" } ], @@ -73603,6 +72141,1099 @@ "arenaLocations": [], "status": 0 }, + "5b477b6f86f7747290681823": { + "QuestName": "Gunsmith - Part 18", + "_id": "5b477b6f86f7747290681823", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5b477b6f86f7747290681823 acceptPlayerMessage", + "changeQuestMessageText": "5b477b6f86f7747290681823 changeQuestMessageText", + "completePlayerMessage": "5b477b6f86f7747290681823 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5b477f1486f7743009493232", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5a0ec13bfcdbcb00165aa685" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 600.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 50.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 350.0, + "compareMethod": "<=" + }, + "weight": { + "value": 5.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "57cff947245977638e6f2a19", + "5b30ac585acfc433000eb79c", + "59d6272486f77466146386ff", + "57cffb66245977632f391a99", + "5a9fbacda2750c00141e080f", + "5c07dd120db834001c39092d", + "5b0e794b5acfc47a877359b2" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5b4f0cce86f774287331639a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 33, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5b4f087886f77479806f2c61", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b47749f86f7746c5d6a5fd4", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5b477b6f86f7747290681823 description", + "failMessageText": "5b477b6f86f7747290681823 failMessageText", + "declinePlayerMessage": "5b477b6f86f7747290681823 declinePlayerMessage", + "name": "5b477b6f86f7747290681823 name", + "note": "5b477b6f86f7747290681823 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5b47863b86f7744d1c353203.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5b477b6f86f7747290681823 startedMessageText", + "successMessageText": "5b477b6f86f7747290681823 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 23100, + "id": "60cc797465e4664318606afa", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc79787c496e588343a6e2", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "5b4876c786f7746eb62fc13a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075861", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075861", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5b4876d886f7744a14343af4", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075863", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075863", + "_tpl": "5b3b99475acfc432ff4dcbee", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639af87d5573fd6cc27d9977", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075865", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075865", + "_tpl": "615d8f8567085e45ef1409ca", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639af88b7c898a131e1cff85", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075867", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075867", + "_tpl": "615d8f5dd92c473c770212ef", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5b48e79886f774517c2e658b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075868", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075868", + "_tpl": "5b07dd285acfc4001754240d" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "63a19d1ad6d4651e53602aec", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075869", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075869", + "_tpl": "615d8e9867085e45ef1409c6" + } + ], + "loyaltyLevel": 3, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "63966fe7ea74a47c2d3fc0e6": { + "QuestName": "Return the Favor", + "_id": "63966fe7ea74a47c2d3fc0e6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "63966fe7ea74a47c2d3fc0e6 acceptPlayerMessage", + "changeQuestMessageText": "63966fe7ea74a47c2d3fc0e6 changeQuestMessageText", + "completePlayerMessage": "63966fe7ea74a47c2d3fc0e6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639914b61c712b1e1d4dafcc", + "conditions": [ + { + "id": "639914eae101160ce056d656", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "63991504425b4c708e06d54b", + "dynamicLocale": false, + "zoneIds": [ + "quest_zone_keeper5" + ], + "conditionType": "InZone" + } + ] + }, + "id": "639914b61c712b1e1d4dafcb", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "639915f339cb4711771bedc6", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 35, + "zoneId": "place_keeper5_1", + "target": [ + "6389c8c5dbfd5e4b95197e6b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6399160cd3de3849057f512f", + "target": "639914b61c712b1e1d4dafcb", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "63991601deadb12b2d7c6027", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 35, + "zoneId": "place_keeper5_2", + "target": [ + "6389c8c5dbfd5e4b95197e6b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6399161739cb4711771bedc7", + "target": "639914b61c712b1e1d4dafcb", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "639afc31e4aa7349085cb746", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "63966fccac6f8f3c677b9d89", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 36000, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "63966fe7ea74a47c2d3fc0e6 description", + "failMessageText": "63966fe7ea74a47c2d3fc0e6 failMessageText", + "declinePlayerMessage": "63966fe7ea74a47c2d3fc0e6 declinePlayerMessage", + "name": "63966fe7ea74a47c2d3fc0e6 name", + "note": "63966fe7ea74a47c2d3fc0e6 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "any", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "63966fe7ea74a47c2d3fc0e6 startedMessageText", + "successMessageText": "63966fe7ea74a47c2d3fc0e6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.03, + "id": "63a6ceb308f1f30563550380", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a236108a536b63f82107f5", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507586b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507586b", + "_tpl": "6389c8fb46b54c634724d847", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a23418d6d4651e53602b01", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf7507586e", + "unknown": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507586d", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507586e", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 11 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "64e7b99017ab941a6f7bf9d7": { + "QuestName": "Gendarmerie - Mall Cop", + "_id": "64e7b99017ab941a6f7bf9d7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "64e7b99017ab941a6f7bf9d7 acceptPlayerMessage", + "changeQuestMessageText": "64e7b99017ab941a6f7bf9d7 changeQuestMessageText", + "completePlayerMessage": "64e7b99017ab941a6f7bf9d7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "64e7bc2c5e6d3e61ca2ca098", + "conditions": [ + { + "id": "64e7bc32aac4cd0a726562cd", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "5cadc190ae921500103bb3b6", + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65", + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147", + "6193a720f8ee7e52e42109ed", + "602a9740da11d6478d5a06dc", + "576a581d2459771e7b1bc4f1", + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051", + "5a17f98cfcdbcb0980087290", + "56d59856d2720bd8418b456a", + "56e0598dd2720bb5668b45a6", + "59f98b4986f7746f546d2cef", + "5abccb7dd8ce87001773e277", + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "633ec7c2a6918cb895019c6c", + "669fa3f88abd2662d80eee77", + "669fa409933e898cce0c2166", + "669fa3d876116c89840b1217", + "669fa39b48fc9f8db6035a0c", + "668fe5a998b5ad715703ddd6", + "66015072e9f84d5680039678" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "64e7bc62cd54ef058074cc4b", + "dynamicLocale": false, + "zoneIds": [ + "quest_zone_kill_stilo" + ], + "conditionType": "InZone" + } + ] + }, + "id": "64e7bc2c5e6d3e61ca2ca097", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "64f9b47b59e23103ff0e688e", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "59ca2eb686f77445a80ed049", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "64e7b99017ab941a6f7bf9d7 description", + "failMessageText": "64e7b99017ab941a6f7bf9d7 failMessageText", + "declinePlayerMessage": "64e7b99017ab941a6f7bf9d7 declinePlayerMessage", + "name": "64e7b99017ab941a6f7bf9d7 name", + "note": "64e7b99017ab941a6f7bf9d7 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/64f8c79e7e981f7f0110d440.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "64e7b99017ab941a6f7bf9d7 startedMessageText", + "successMessageText": "64e7b99017ab941a6f7bf9d7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 21500, + "id": "64e7c5034d49d23b2c3a4158", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "64f8c9b905cb58236609a355", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 120000, + "id": "64f8c9cf57e97a762372076d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075870", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075870", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 120000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64f8c9d97d39ff0e7624cd6a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075871", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075871", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075872", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075873", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075874", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075875", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075876", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075877", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "6812400c0c5cf2cf75075876", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075878", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "6812400c0c5cf2cf75075871", + "slotId": "mod_pistolgrip" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "64f8c9e1a9c59f365c4eae24", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507587d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507587a", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507587b", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507587c", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507587d", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "64f8c9ec33ff7561c876432f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075888", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075880", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075881", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075880", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075882", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075883", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075882", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075884", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075885", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075884", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075886", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075887", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075886", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075888", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075889", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075888", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "64f8c9f67e981f7f0110d507", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507588a", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507588a", + "_tpl": "59f98b4986f7746f546d2cef" + }, + { + "_id": "6812400c0c5cf2cf7507588b", + "_tpl": "5a27bad7c4a282000b15184b", + "parentId": "6812400c0c5cf2cf7507588a", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf7507588c", + "_tpl": "5a27b3d0c4a282000d721ec1", + "parentId": "6812400c0c5cf2cf7507588b", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf7507588d", + "_tpl": "5a27b6bec4a282000e496f78", + "parentId": "6812400c0c5cf2cf7507588c", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507588e", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "6812400c0c5cf2cf7507588a", + "slotId": "mod_magazine" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25e2d886f77442734d335e": { + "QuestName": "The Huntsman Path - Controller", + "_id": "5d25e2d886f77442734d335e", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25e2d886f77442734d335e acceptPlayerMessage", + "changeQuestMessageText": "5d25e2d886f77442734d335e changeQuestMessageText", + "completePlayerMessage": "5d25e2d886f77442734d335e completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d307fc886f77447f15f5b22", + "conditions": [ + { + "id": "5d307ff586f77447f340bce1", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [ + { + "bodyParts": [ + "Head", + "Chest", + "Stomach", + "LeftArm", + "RightArm", + "LeftLeg", + "RightLeg" + ], + "effects": [ + "Stun" + ] + } + ], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5d307fc886f77447f15f5b23", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d77695b86f7742fa901bc75", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25e2d886f77442734d335e description", + "failMessageText": "5d25e2d886f77442734d335e failMessageText", + "declinePlayerMessage": "5d25e2d886f77442734d335e declinePlayerMessage", + "name": "5d25e2d886f77442734d335e name", + "note": "5d25e2d886f77442734d335e note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d67c1e486f774131e206c3a.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25e2d886f77442734d335e startedMessageText", + "successMessageText": "5d25e2d886f77442734d335e successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7200, + "id": "60cca3e420a6283a506aeb47", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca3cd5f9e6175514de2d3", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "5d77662f86f774319c488823", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075890", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075890", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cca40b41fd1e14d71e2309", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075892", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075892", + "_tpl": "5dfe6104585a0c3e995c7b82", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "60e729cf5698ee7b05057439": { "QuestName": "Swift One", "_id": "60e729cf5698ee7b05057439", @@ -73981,6 +73612,30 @@ ], [ "675956062f6ddfe8ff0e2806" + ], + [ + "67ab4b2d6f7ae4aa550bbcf6" + ], + [ + "67ab3ea96d7ece17bf0096f6" + ], + [ + "67ab49aab9c7a1e18c095686" + ], + [ + "67ab3f146d7ece17bf0096ff" + ], + [ + "67ab2eecfe82855dcc0f2af6" + ], + [ + "67ab2f28dafe3b22670c9116" + ], + [ + "67ab2f5adafe3b22670c911f" + ], + [ + "67ab2f94dafe3b22670c912c" ] ], "IncludeNotEquippedItems": false, @@ -74091,12 +73746,12 @@ "id": "619d04b5c55ada1a24438f3a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b252f", + "target": "6812400c0c5cf2cf75075894", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b252f", + "_id": "6812400c0c5cf2cf75075894", "_tpl": "619bddffc9546643a67df6f0", "upd": { "StackObjectsCount": 1, @@ -74111,12 +73766,12 @@ "id": "61029f1637e8697a3e7a49f8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2534", + "target": "6812400c0c5cf2cf75075899", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2532", + "_id": "6812400c0c5cf2cf75075897", "_tpl": "6489848173c462723909a14b", "upd": { "StackObjectsCount": 1, @@ -74124,16 +73779,16 @@ } }, { - "_id": "68010065f81036801d0b2533", + "_id": "6812400c0c5cf2cf75075898", "_tpl": "5fc382a9d724d907e2077dab", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2532", + "parentId": "6812400c0c5cf2cf75075897", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2534", + "_id": "6812400c0c5cf2cf75075899", "_tpl": "6489848173c462723909a14b", "upd": { "StackObjectsCount": 1, @@ -74141,12 +73796,12 @@ } }, { - "_id": "68010065f81036801d0b2535", + "_id": "6812400c0c5cf2cf7507589a", "_tpl": "5fc382a9d724d907e2077dab", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2534", + "parentId": "6812400c0c5cf2cf75075899", "slotId": "cartridges" } ] @@ -74157,12 +73812,12 @@ "id": "61029f13e2795c58325bb367", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2540", + "target": "6812400c0c5cf2cf750758a5", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2538", + "_id": "6812400c0c5cf2cf7507589d", "_tpl": "6489851fc827d4637f01791b", "upd": { "StackObjectsCount": 1, @@ -74170,16 +73825,16 @@ } }, { - "_id": "68010065f81036801d0b2539", + "_id": "6812400c0c5cf2cf7507589e", "_tpl": "601aa3d2b2bcb34913271e6d", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2538", + "parentId": "6812400c0c5cf2cf7507589d", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b253a", + "_id": "6812400c0c5cf2cf7507589f", "_tpl": "6489851fc827d4637f01791b", "upd": { "StackObjectsCount": 1, @@ -74187,16 +73842,16 @@ } }, { - "_id": "68010065f81036801d0b253b", + "_id": "6812400c0c5cf2cf750758a0", "_tpl": "601aa3d2b2bcb34913271e6d", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b253a", + "parentId": "6812400c0c5cf2cf7507589f", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b253c", + "_id": "6812400c0c5cf2cf750758a1", "_tpl": "6489851fc827d4637f01791b", "upd": { "StackObjectsCount": 1, @@ -74204,16 +73859,16 @@ } }, { - "_id": "68010065f81036801d0b253d", + "_id": "6812400c0c5cf2cf750758a2", "_tpl": "601aa3d2b2bcb34913271e6d", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b253c", + "parentId": "6812400c0c5cf2cf750758a1", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b253e", + "_id": "6812400c0c5cf2cf750758a3", "_tpl": "6489851fc827d4637f01791b", "upd": { "StackObjectsCount": 1, @@ -74221,16 +73876,16 @@ } }, { - "_id": "68010065f81036801d0b253f", + "_id": "6812400c0c5cf2cf750758a4", "_tpl": "601aa3d2b2bcb34913271e6d", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b253e", + "parentId": "6812400c0c5cf2cf750758a3", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2540", + "_id": "6812400c0c5cf2cf750758a5", "_tpl": "6489851fc827d4637f01791b", "upd": { "StackObjectsCount": 1, @@ -74238,12 +73893,12 @@ } }, { - "_id": "68010065f81036801d0b2541", + "_id": "6812400c0c5cf2cf750758a6", "_tpl": "601aa3d2b2bcb34913271e6d", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2540", + "parentId": "6812400c0c5cf2cf750758a5", "slotId": "cartridges" } ] @@ -74259,6 +73914,393 @@ "arenaLocations": [], "status": 0 }, + "64f5e20652fc01298e2c61e3": { + "QuestName": "Beyond the Red Meat - Part 1", + "_id": "64f5e20652fc01298e2c61e3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "64f5e20652fc01298e2c61e3 acceptPlayerMessage", + "changeQuestMessageText": "64f5e20652fc01298e2c61e3 changeQuestMessageText", + "completePlayerMessage": "64f5e20652fc01298e2c61e3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "64f6a9e6dd44b6417729b535", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "64f69b4267e11a7c6206e010" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "64f6aa6cdd44b6417729b536", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "64f69b4267e11a7c6206e010" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "64f6aa73afbb7b781850f935", + "target": "64f6a9e6dd44b6417729b535", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "64f8cc7dc8626c7d46040423", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b478ff486f7744d184ecbbf", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "64f5e20652fc01298e2c61e3 description", + "failMessageText": "64f5e20652fc01298e2c61e3 failMessageText", + "declinePlayerMessage": "64f5e20652fc01298e2c61e3 declinePlayerMessage", + "name": "64f5e20652fc01298e2c61e3 name", + "note": "64f5e20652fc01298e2c61e3 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/64f8b78cb4918f39d363e1bf.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "64f5e20652fc01298e2c61e3 startedMessageText", + "successMessageText": "64f5e20652fc01298e2c61e3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18400, + "id": "64f6aaaabf4c727e9c7bde9a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "64f8cc8cb997eb4f42756178", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 80000, + "id": "64f8cc94b4918f39d363e402", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750758a8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750758a8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 80000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64f8cc9b794e3b36cd0f8c54", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750758a9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750758a9", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "StackObjectsCount": 2, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf750758aa", + "_tpl": "628b8d83717774443b15e248", + "parentId": "6812400c0c5cf2cf750758a9", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf750758ab", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "6812400c0c5cf2cf750758aa", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf750758ac", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "6812400c0c5cf2cf750758ab", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf750758ad", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "6812400c0c5cf2cf750758ac", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf750758ae", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "6812400c0c5cf2cf750758a9", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf750758af", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "6812400c0c5cf2cf750758a9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf750758b0", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "6812400c0c5cf2cf750758a9", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf750758b1", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6812400c0c5cf2cf750758b0", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf750758b2", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6812400c0c5cf2cf750758a9", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "64f8cca2c8626c7d46040424", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750758b7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750758b4", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758b5", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758b6", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758b7", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "64f8ccc057e97a762372076f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750758c4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750758ba", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758bb", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758ba", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750758bc", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758bd", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758bc", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750758be", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758bf", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758be", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750758c0", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758c1", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758c0", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750758c2", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758c3", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758c2", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750758c4", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758c5", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf750758c4", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "64f8ccccc8626c7d46040425", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750758c6", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750758c6", + "_tpl": "6130ca3fd92c473c77020dbd" + } + ], + "loyaltyLevel": 3, + "traderId": "58330581ace78e27b8b10cee" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5d25e45e86f77408251c4bfa": { "QuestName": "The Huntsman Path - Eraser - Part 2", "_id": "5d25e45e86f77408251c4bfa", @@ -74404,12 +74446,12 @@ "id": "5d667df386f774369120c2c0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2543", + "target": "6812400c0c5cf2cf750758c8", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2543", + "_id": "6812400c0c5cf2cf750758c8", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 80000 @@ -74423,12 +74465,12 @@ "id": "60ccaa18ac6eb02bc726de6c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2545", + "target": "6812400c0c5cf2cf750758ca", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2545", + "_id": "6812400c0c5cf2cf750758ca", "_tpl": "5d1b5e94d7ad1a2b865a96b0", "upd": { "StackObjectsCount": 1, @@ -74442,11 +74484,11 @@ "id": "60b7d6883effe14634395c38", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2546", + "target": "6812400c0c5cf2cf750758cb", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2546", + "_id": "6812400c0c5cf2cf750758cb", "_tpl": "606f2696f2cb2e02a42aceb1" } ], @@ -74679,12 +74721,12 @@ "id": "64f8ce4a794e3b36cd0f8dd1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2548", + "target": "6812400c0c5cf2cf750758cd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2548", + "_id": "6812400c0c5cf2cf750758cd", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 75000 @@ -74698,12 +74740,12 @@ "id": "64f8ce577d39ff0e7624ce2d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2549", + "target": "6812400c0c5cf2cf750758ce", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2549", + "_id": "6812400c0c5cf2cf750758ce", "_tpl": "5c501a4d2e221602b412b540", "upd": { "StackObjectsCount": 2, @@ -74714,51 +74756,51 @@ } }, { - "_id": "68010065f81036801d0b254a", + "_id": "6812400c0c5cf2cf750758cf", "_tpl": "5c5039be2e221602b177c9ff", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b254b", + "_id": "6812400c0c5cf2cf750758d0", "_tpl": "5f63405df5750b524b45f114", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b254c", + "_id": "6812400c0c5cf2cf750758d1", "_tpl": "5c503d0a2e221602b542b7ef", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b254d", + "_id": "6812400c0c5cf2cf750758d2", "_tpl": "5c503ad32e2216398b5aada2", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b254e", + "_id": "6812400c0c5cf2cf750758d3", "_tpl": "5c82342f2e221644f31c060e", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b254f", + "_id": "6812400c0c5cf2cf750758d4", "_tpl": "57f3a5ae2459772b0e0bf19e", - "parentId": "68010065f81036801d0b254e", + "parentId": "6812400c0c5cf2cf750758d3", "slotId": "mod_tactical" }, { - "_id": "68010065f81036801d0b2550", + "_id": "6812400c0c5cf2cf750758d5", "_tpl": "5f63407e1b231926f2329f15", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2551", + "_id": "6812400c0c5cf2cf750758d6", "_tpl": "5c503b1c2e221602b21d6e9d", - "parentId": "68010065f81036801d0b2549", + "parentId": "6812400c0c5cf2cf750758ce", "slotId": "mod_sight_rear" } ] @@ -74769,12 +74811,12 @@ "id": "64f8ce67a9c59f365c4eaee7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2556", + "target": "6812400c0c5cf2cf750758db", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2554", + "_id": "6812400c0c5cf2cf750758d9", "_tpl": "6570254fcfc010a0f5006a22", "upd": { "StackObjectsCount": 1, @@ -74782,16 +74824,16 @@ } }, { - "_id": "68010065f81036801d0b2555", + "_id": "6812400c0c5cf2cf750758da", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2554", + "parentId": "6812400c0c5cf2cf750758d9", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2556", + "_id": "6812400c0c5cf2cf750758db", "_tpl": "6570254fcfc010a0f5006a22", "upd": { "StackObjectsCount": 1, @@ -74799,12 +74841,12 @@ } }, { - "_id": "68010065f81036801d0b2557", + "_id": "6812400c0c5cf2cf750758dc", "_tpl": "5a6086ea4f39f99cd479502f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2556", + "parentId": "6812400c0c5cf2cf750758db", "slotId": "cartridges" } ] @@ -74814,11 +74856,11 @@ "id": "64f980c0c8626c7d460791ca", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2558", + "target": "6812400c0c5cf2cf750758dd", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2558", + "_id": "6812400c0c5cf2cf750758dd", "_tpl": "63fc44e2429a8a166c7f61e6" } ], @@ -74836,2704 +74878,6 @@ "arenaLocations": [], "status": 0 }, - "5b477b6f86f7747290681823": { - "QuestName": "Gunsmith - Part 18", - "_id": "5b477b6f86f7747290681823", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5b477b6f86f7747290681823 acceptPlayerMessage", - "changeQuestMessageText": "5b477b6f86f7747290681823 changeQuestMessageText", - "completePlayerMessage": "5b477b6f86f7747290681823 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5b477f1486f7743009493232", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5a0ec13bfcdbcb00165aa685" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 600.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 50.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 350.0, - "compareMethod": "<=" - }, - "weight": { - "value": 5.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "57cff947245977638e6f2a19", - "5b30ac585acfc433000eb79c", - "59d6272486f77466146386ff", - "57cffb66245977632f391a99", - "5a9fbacda2750c00141e080f", - "5c07dd120db834001c39092d", - "5b0e794b5acfc47a877359b2" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5b4f0cce86f774287331639a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 33, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5b4f087886f77479806f2c61", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b47749f86f7746c5d6a5fd4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5b477b6f86f7747290681823 description", - "failMessageText": "5b477b6f86f7747290681823 failMessageText", - "declinePlayerMessage": "5b477b6f86f7747290681823 declinePlayerMessage", - "name": "5b477b6f86f7747290681823 name", - "note": "5b477b6f86f7747290681823 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5b47863b86f7744d1c353203.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5b477b6f86f7747290681823 startedMessageText", - "successMessageText": "5b477b6f86f7747290681823 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 23100, - "id": "60cc797465e4664318606afa", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc79787c496e588343a6e2", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "5b4876c786f7746eb62fc13a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b255a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b255a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5b4876d886f7744a14343af4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b255c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b255c", - "_tpl": "5b3b99475acfc432ff4dcbee", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639af87d5573fd6cc27d9977", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b255e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b255e", - "_tpl": "615d8f8567085e45ef1409ca", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639af88b7c898a131e1cff85", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2560", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2560", - "_tpl": "615d8f5dd92c473c770212ef", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5b48e79886f774517c2e658b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2561", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2561", - "_tpl": "5b07dd285acfc4001754240d" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "63a19d1ad6d4651e53602aec", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2562", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2562", - "_tpl": "615d8e9867085e45ef1409c6" - } - ], - "loyaltyLevel": 3, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63966fe7ea74a47c2d3fc0e6": { - "QuestName": "Return the Favor", - "_id": "63966fe7ea74a47c2d3fc0e6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63966fe7ea74a47c2d3fc0e6 acceptPlayerMessage", - "changeQuestMessageText": "63966fe7ea74a47c2d3fc0e6 changeQuestMessageText", - "completePlayerMessage": "63966fe7ea74a47c2d3fc0e6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639914b61c712b1e1d4dafcc", - "conditions": [ - { - "id": "639914eae101160ce056d656", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "63991504425b4c708e06d54b", - "dynamicLocale": false, - "zoneIds": [ - "quest_zone_keeper5" - ], - "conditionType": "InZone" - } - ] - }, - "id": "639914b61c712b1e1d4dafcb", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "639915f339cb4711771bedc6", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 35, - "zoneId": "place_keeper5_1", - "target": [ - "6389c8c5dbfd5e4b95197e6b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6399160cd3de3849057f512f", - "target": "639914b61c712b1e1d4dafcb", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "63991601deadb12b2d7c6027", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 35, - "zoneId": "place_keeper5_2", - "target": [ - "6389c8c5dbfd5e4b95197e6b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6399161739cb4711771bedc7", - "target": "639914b61c712b1e1d4dafcb", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "639afc31e4aa7349085cb746", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63966fccac6f8f3c677b9d89", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 36000, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "63966fe7ea74a47c2d3fc0e6 description", - "failMessageText": "63966fe7ea74a47c2d3fc0e6 failMessageText", - "declinePlayerMessage": "63966fe7ea74a47c2d3fc0e6 declinePlayerMessage", - "name": "63966fe7ea74a47c2d3fc0e6 name", - "note": "63966fe7ea74a47c2d3fc0e6 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "any", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "63966fe7ea74a47c2d3fc0e6 startedMessageText", - "successMessageText": "63966fe7ea74a47c2d3fc0e6 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.03, - "id": "63a6ceb308f1f30563550380", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a236108a536b63f82107f5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2564", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2564", - "_tpl": "6389c8fb46b54c634724d847", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a23418d6d4651e53602b01", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b2567", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b2566", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2567", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ], - "loyaltyLevel": 2, - "traderId": 11 - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64e7b99017ab941a6f7bf9d7": { - "QuestName": "Gendarmerie - Mall Cop", - "_id": "64e7b99017ab941a6f7bf9d7", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64e7b99017ab941a6f7bf9d7 acceptPlayerMessage", - "changeQuestMessageText": "64e7b99017ab941a6f7bf9d7 changeQuestMessageText", - "completePlayerMessage": "64e7b99017ab941a6f7bf9d7 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "64e7bc2c5e6d3e61ca2ca098", - "conditions": [ - { - "id": "64e7bc32aac4cd0a726562cd", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [ - "5cadc190ae921500103bb3b6", - "5e81c3cbac2bb513793cdc75", - "5f36a0e5fbf956000b716b65", - "5d3eb3b0a4b93615055e84d2", - "5d67abc1a4b93614ec50137f", - "5a7ae0c351dfba0017554310", - "5b1fa9b25acfc40018633c01", - "63088377b5cd696784087147", - "6193a720f8ee7e52e42109ed", - "602a9740da11d6478d5a06dc", - "576a581d2459771e7b1bc4f1", - "5448bd6b4bdc2dfc2f8b4569", - "579204f224597773d619e051", - "5a17f98cfcdbcb0980087290", - "56d59856d2720bd8418b456a", - "56e0598dd2720bb5668b45a6", - "59f98b4986f7746f546d2cef", - "5abccb7dd8ce87001773e277", - "571a12c42459771f627b58a0", - "5b3b713c5acfc4330140bd8d", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "633ec7c2a6918cb895019c6c", - "669fa3f88abd2662d80eee77", - "669fa409933e898cce0c2166", - "669fa3d876116c89840b1217", - "669fa39b48fc9f8db6035a0c", - "668fe5a998b5ad715703ddd6", - "66015072e9f84d5680039678" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "64e7bc62cd54ef058074cc4b", - "dynamicLocale": false, - "zoneIds": [ - "quest_zone_kill_stilo" - ], - "conditionType": "InZone" - } - ] - }, - "id": "64e7bc2c5e6d3e61ca2ca097", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f9b47b59e23103ff0e688e", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "59ca2eb686f77445a80ed049", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "64e7b99017ab941a6f7bf9d7 description", - "failMessageText": "64e7b99017ab941a6f7bf9d7 failMessageText", - "declinePlayerMessage": "64e7b99017ab941a6f7bf9d7 declinePlayerMessage", - "name": "64e7b99017ab941a6f7bf9d7 name", - "note": "64e7b99017ab941a6f7bf9d7 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/64f8c79e7e981f7f0110d440.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64e7b99017ab941a6f7bf9d7 startedMessageText", - "successMessageText": "64e7b99017ab941a6f7bf9d7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 21500, - "id": "64e7c5034d49d23b2c3a4158", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "64f8c9b905cb58236609a355", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 120000, - "id": "64f8c9cf57e97a762372076d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2569", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2569", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 120000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64f8c9d97d39ff0e7624cd6a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b256a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b256a", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b256b", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b256c", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b256d", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b256e", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b256f", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2570", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "68010065f81036801d0b256f", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2571", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "68010065f81036801d0b256a", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "64f8c9e1a9c59f365c4eae24", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2576", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2573", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2574", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2575", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2576", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "64f8c9ec33ff7561c876432f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2581", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2579", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b257a", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2579", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b257b", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b257c", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b257b", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b257d", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b257e", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b257d", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b257f", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2580", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b257f", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2581", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2582", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2581", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "64f8c9f67e981f7f0110d507", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2583", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2583", - "_tpl": "59f98b4986f7746f546d2cef" - }, - { - "_id": "68010065f81036801d0b2584", - "_tpl": "5a27bad7c4a282000b15184b", - "parentId": "68010065f81036801d0b2583", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b2585", - "_tpl": "5a27b3d0c4a282000d721ec1", - "parentId": "68010065f81036801d0b2584", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b2586", - "_tpl": "5a27b6bec4a282000e496f78", - "parentId": "68010065f81036801d0b2585", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2587", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "68010065f81036801d0b2583", - "slotId": "mod_magazine" - } - ], - "loyaltyLevel": 4, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "657315e270bb0b8dba00cc48": { - "QuestName": "Burning Rubber", - "_id": "657315e270bb0b8dba00cc48", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "657315e270bb0b8dba00cc48 acceptPlayerMessage", - "changeQuestMessageText": "657315e270bb0b8dba00cc48 changeQuestMessageText", - "completePlayerMessage": "657315e270bb0b8dba00cc48 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65733e57200715fcb52ea937", - "conditions": [ - { - "id": "65733e7d085ac2c4f5269652", - "dynamicLocale": false, - "target": [ - "Sandbox", - "Sandbox_high" - ], - "conditionType": "Location" - }, - { - "id": "65733f147883616935f7d004", - "dynamicLocale": false, - "exitName": "Sandbox_VExit", - "conditionType": "ExitName" - }, - { - "id": "658d46baa1a0bddac249610f", - "dynamicLocale": false, - "status": [ - "Runner", - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "65733e571b7e7ed95fcd2f0c", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [], - "Fail": [] - }, - "description": "657315e270bb0b8dba00cc48 description", - "failMessageText": "657315e270bb0b8dba00cc48 failMessageText", - "declinePlayerMessage": "657315e270bb0b8dba00cc48 declinePlayerMessage", - "name": "657315e270bb0b8dba00cc48 name", - "note": "657315e270bb0b8dba00cc48 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "653e6760052c01c1c805532f", - "image": "/files/quest/icon/65899ce3fd239b582c211d31.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "657315e270bb0b8dba00cc48 startedMessageText", - "successMessageText": "657315e270bb0b8dba00cc48 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 5000, - "id": "658afeebec342e2bf028148e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2589", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2589", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 5000 - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 1900, - "id": "65846f2128ecbd11493fa1cf", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "65846f341e25c52cb72f8084", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 12000, - "id": "65846f431e25c52cb72f8085", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b258b", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b258b", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 12000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "65846f589622c723546f3d39", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b258d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b258d", - "_tpl": "6033fa48ffd42c541047f728", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "625d7005a4eb80027c4f2e09": { - "QuestName": "Knock-Knock", - "_id": "625d7005a4eb80027c4f2e09", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d7005a4eb80027c4f2e09 acceptPlayerMessage", - "changeQuestMessageText": "625d7005a4eb80027c4f2e09 changeQuestMessageText", - "completePlayerMessage": "625d7005a4eb80027c4f2e09 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ab617b87413d64ae0ac211", - "conditions": [ - { - "id": "63ab618d1287ef0b827d0c92", - "dynamicLocale": false, - "target": "meh_48_transponder_area_check_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63ab617b87413d64ae0ac210", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "62602c89a4eb80027c4f2e10", - "conditions": [ - { - "id": "62602c94f7308432be1d44cb", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "62602ca2c4874104f230c0cc", - "dynamicLocale": false, - "target": [ - "Lighthouse" - ], - "conditionType": "Location" - } - ] - }, - "id": "62602c89a4eb80027c4f2e0f", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Experience", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63ab61c7e842787ad2135717", - "target": "63ab617b87413d64ae0ac210", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [], - "Fail": [] - }, - "description": "625d7005a4eb80027c4f2e09 description", - "failMessageText": "625d7005a4eb80027c4f2e09 failMessageText", - "declinePlayerMessage": "625d7005a4eb80027c4f2e09 declinePlayerMessage", - "name": "625d7005a4eb80027c4f2e09 name", - "note": "625d7005a4eb80027c4f2e09 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/61ab4381e4bbb01db226bce5.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "625d7005a4eb80027c4f2e09 startedMessageText", - "successMessageText": "625d7005a4eb80027c4f2e09 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "63a56cfb92070115fa195529", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b258f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b258f", - "_tpl": "62e910aaf957f2915e0a5e36", - "upd": { - "StackObjectsCount": 1 - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 31300, - "id": "63a5d5b40aa9fb29da61b5eb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "63a5d56d08f1f305635502f2", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "639c6664ffadd8b53200331a", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": true - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64f83bd983cfca080a362c82": { - "QuestName": "Gunsmith - Part 25", - "_id": "64f83bd983cfca080a362c82", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f83bd983cfca080a362c82 acceptPlayerMessage", - "changeQuestMessageText": "64f83bd983cfca080a362c82 changeQuestMessageText", - "completePlayerMessage": "64f83bd983cfca080a362c82 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "64f841199a4f905106515448", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "64ca3d3954fc657e230529cc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 500.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 10.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 950.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "6491c6f6ef312a876705191b", - "6492d7847363b8a52206bc52", - "6492ef63cfcf7c89e701abf1", - "5cf638cbd7f00c06595bc936", - "646372518610c40fc20204e8" - ], - "hasItemFromCategory": [ - "55818b164bdc2ddc698b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f8cf4e57e97a762372082f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "64f83bcdde58fc437700d8fa", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 7200, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "64f83bd983cfca080a362c82 description", - "failMessageText": "64f83bd983cfca080a362c82 failMessageText", - "declinePlayerMessage": "64f83bd983cfca080a362c82 declinePlayerMessage", - "name": "64f83bd983cfca080a362c82 name", - "note": "64f83bd983cfca080a362c82 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/64f8b692c8626c7d460401b6.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64f83bd983cfca080a362c82 startedMessageText", - "successMessageText": "64f83bd983cfca080a362c82 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 35000, - "id": "64f8cf6605cb58236609a654", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "64f8cf6fc8626c7d4604042c", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "64f8cf7757e97a7623720830", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2595", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2591", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2592", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2593", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2594", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2595", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64f9809c33ff7561c87a32b1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2597", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2597", - "_tpl": "59fb023c86f7746d0d4b423c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "64f980a2d551582624581e57", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2598", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2598", - "_tpl": "5c1d0f4986f7744bb01837fa" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "66b87066e949465471126b26", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2599", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2599", - "_tpl": "64637076203536ad5600c990", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b259a", - "_tpl": "646371779f5f0ea59a04c204", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_pistolgrip" - }, - { - "_id": "68010065f81036801d0b259b", - "_tpl": "646371faf2404ab67905c8e9", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b259c", - "_tpl": "6492efb8cfcf7c89e701abf3", - "parentId": "68010065f81036801d0b259b", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b259d", - "_tpl": "646372518610c40fc20204e8", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b259e", - "_tpl": "646371a9f2404ab67905c8e6", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b259f", - "_tpl": "6464d870bb2c580352070cc4", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_bipod" - }, - { - "_id": "68010065f81036801d0b25a0", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "68010065f81036801d0b2599", - "slotId": "mod_sight_rear" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - }, - { - "availableInGameEditions": [], - "id": "664f24f152d0b8783f39de45", - "type": "Achievement", - "index": 0, - "target": "664f23e44702fd5db50ee732", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e44f86f77443e625e385": { - "QuestName": "The Huntsman Path - Eraser - Part 1", - "_id": "5d25e44f86f77443e625e385", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e44f86f77443e625e385 acceptPlayerMessage", - "changeQuestMessageText": "5d25e44f86f77443e625e385 changeQuestMessageText", - "completePlayerMessage": "5d25e44f86f77443e625e385 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d27369586f774457411b263", - "conditions": [ - { - "id": "5d667d2486f7744a2e70f046", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossGluhar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5d27369586f774457411b264", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d777eb086f7742fa732bf05", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "608a768d82e40b3c727fd17d", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e44f86f77443e625e385 description", - "failMessageText": "5d25e44f86f77443e625e385 failMessageText", - "declinePlayerMessage": "5d25e44f86f77443e625e385 declinePlayerMessage", - "name": "5d25e44f86f77443e625e385 name", - "note": "5d25e44f86f77443e625e385 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/5d6947c686f77452ac614b4b.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e44f86f77443e625e385 startedMessageText", - "successMessageText": "5d25e44f86f77443e625e385 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18300, - "id": "60cca92aac6eb02bc726de69", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca92e20a6283a506aeb4a", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200000, - "id": "5d667d7d86f774131e206b4d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25a2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25a2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 200000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5000, - "id": "5da9f5e386f77443dd3e5a8a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25a4", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25a4", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 5000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5da9f5b886f7741e324ead3c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25a6", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25a6", - "_tpl": "59fb023c86f7746d0d4b423c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e2cc86f77443e47ae019": { - "QuestName": "The Huntsman Path - Forest Cleaning", - "_id": "5d25e2cc86f77443e47ae019", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2cc86f77443e47ae019 acceptPlayerMessage", - "changeQuestMessageText": "5d25e2cc86f77443e47ae019 changeQuestMessageText", - "completePlayerMessage": "5d25e2cc86f77443e47ae019 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d2701b586f77469f1599fe1", - "conditions": [ - { - "id": "5d2701c086f7746a695c9b62", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5d2701b586f77469f1599fe2", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 30, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d7768bf86f774319c488824", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2b486f77409de05bba0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e2cc86f77443e47ae019 description", - "failMessageText": "5d25e2cc86f77443e47ae019 failMessageText", - "declinePlayerMessage": "5d25e2cc86f77443e47ae019 declinePlayerMessage", - "name": "5d25e2cc86f77443e47ae019 name", - "note": "5d25e2cc86f77443e47ae019 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5979f91c86f77402996bf9c2.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e2cc86f77443e47ae019 startedMessageText", - "successMessageText": "5d25e2cc86f77443e47ae019 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60cca37c646f74055e27653a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca3a31bdece56c249cbe7", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 55000, - "id": "5d6678cf86f774266f07fca3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25a8", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25a8", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 55000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cca38f41fd1e14d71e2308", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25a9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25a9", - "_tpl": "5e848cc2988a8701445df1e8", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b25aa", - "_tpl": "5e848d2eea0a7c419c2f9bfd", - "parentId": "68010065f81036801d0b25a9", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b25ab", - "_tpl": "5e848d51e4dbc5266a4ec63b", - "parentId": "68010065f81036801d0b25a9", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b25ac", - "_tpl": "5f647d9f8499b57dc40ddb93", - "parentId": "68010065f81036801d0b25a9", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b25ad", - "_tpl": "5e848db4681bea2ada00daa9", - "parentId": "68010065f81036801d0b25a9", - "slotId": "mod_stock" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "655b83e5769de97e1d62d119", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25b4", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25b0", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b25b1", - "_tpl": "5e85aa1a988a8701445df1f5", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b25b0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25b2", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b25b3", - "_tpl": "5e85aa1a988a8701445df1f5", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b25b2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25b4", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b25b5", - "_tpl": "5e85aa1a988a8701445df1f5", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b25b4", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e2a986f77409dd5cdf2a": { - "QuestName": "The Survivalist Path - Combat Medic", - "_id": "5d25e2a986f77409dd5cdf2a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2a986f77409dd5cdf2a acceptPlayerMessage", - "changeQuestMessageText": "5d25e2a986f77409dd5cdf2a changeQuestMessageText", - "completePlayerMessage": "5d25e2a986f77409dd5cdf2a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5d2605ef86f77469ef0f7622", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Vitality", - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d76336486f7744527181847", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e29d86f7740a22516326", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e2a986f77409dd5cdf2a description", - "failMessageText": "5d25e2a986f77409dd5cdf2a failMessageText", - "declinePlayerMessage": "5d25e2a986f77409dd5cdf2a declinePlayerMessage", - "name": "5d25e2a986f77409dd5cdf2a name", - "note": "5d25e2a986f77409dd5cdf2a note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d67b7ba86f774131e206c0c.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e2a986f77409dd5cdf2a startedMessageText", - "successMessageText": "5d25e2a986f77409dd5cdf2a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60cca281b2736c24b2118ba2", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca2849f89812e5b6aa884", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "60cca27b646f74055e276539", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25b7", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25b7", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "60cca272826ca0323464bd17", - "type": "Skill", - "index": 0, - "target": "Surgery", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e4b786f77408251c4bfc": { - "QuestName": "Fishing Place", - "_id": "5d25e4b786f77408251c4bfc", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e4b786f77408251c4bfc acceptPlayerMessage", - "changeQuestMessageText": "5d25e4b786f77408251c4bfc changeQuestMessageText", - "completePlayerMessage": "5d25e4b786f77408251c4bfc completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5d2f375186f7745916404955", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c94bbff86f7747ee735c08f" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d8a09d386f77410b4225d13", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c94bbff86f7747ee735c08f" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d778ebb86f7742fa732bf09", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e4ad86f77443e625e387", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "5d778ec586f7745041358b37", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e4b786f77408251c4bfc description", - "failMessageText": "5d25e4b786f77408251c4bfc failMessageText", - "declinePlayerMessage": "5d25e4b786f77408251c4bfc declinePlayerMessage", - "name": "5d25e4b786f77408251c4bfc name", - "note": "5d25e4b786f77408251c4bfc note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e4b786f77408251c4bfc startedMessageText", - "successMessageText": "5d25e4b786f77408251c4bfc successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18000, - "id": "60ccab9620a6283a506aeb4d", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60ccabccb2736c24b2118baa", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 40000, - "id": "60ccaba041fd1e14d71e2312", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25b9", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25b9", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 40000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec1a2840135590512408dfb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25ba", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25ba", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b25bb", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "68010065f81036801d0b25ba", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b25bc", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "68010065f81036801d0b25ba", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b25bd", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b25ba", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b25be", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "68010065f81036801d0b25bd", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b25bf", - "_tpl": "5a34fe59c4a282000b1521a2", - "parentId": "68010065f81036801d0b25be", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b25c0", - "_tpl": "5bfebc5e0db834001a6694e5", - "parentId": "68010065f81036801d0b25ba", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b25c1", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "68010065f81036801d0b25c0", - "slotId": "mod_scope" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60ccabb341fd1e14d71e2313", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25cc", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25cc", - "_tpl": "5ca2151486f774244a3b8d30", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25cd", - "_tpl": "6575dd3e9e27f4a85e081142", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b25ce", - "_tpl": "6575dd519e27f4a85e081146", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b25cf", - "_tpl": "6575dd64945bf78edd04c438", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b25d0", - "_tpl": "6575dd6e9d3a0ddf660b9047", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b25d1", - "_tpl": "6575dd769d3a0ddf660b904b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b25d2", - "_tpl": "6575dd800546f8b1de093df6", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b25d3", - "_tpl": "6575dd94945bf78edd04c43c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Groin_back" - }, - { - "_id": "68010065f81036801d0b25d4", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b25d5", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b25cc", - "slotId": "Back_plate" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "657315df034d76585f032e01": { - "QuestName": "Shooting Cans", - "_id": "657315df034d76585f032e01", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "657315df034d76585f032e01 acceptPlayerMessage", - "changeQuestMessageText": "657315df034d76585f032e01 changeQuestMessageText", - "completePlayerMessage": "657315df034d76585f032e01 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "657333fe247c40c82ab04f1a", - "conditions": [ - { - "id": "657334169f70b2e2aa1c5665", - "dynamicLocale": false, - "target": "Sandbox_2_Kord_exploration", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "657333fee3fbaa77d3b5cd7c", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6573340474f64d235ac33a6c", - "conditions": [ - { - "id": "65733423346b6b48d922a898", - "dynamicLocale": false, - "target": "Sandbox_2_AGS_exploration", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6573340403f471fb2bb12df1", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6573343184c6c54b433bcabb", - "conditions": [ - { - "id": "6573344703c2ad825170329c", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "658583dfb8bfa5ddc9742422", - "dynamicLocale": false, - "target": [ - "Sandbox", - "Sandbox_high" - ], - "conditionType": "Location" - } - ] - }, - "id": "657334311dbb8b7569bb83c4", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [], - "Fail": [] - }, - "description": "657315df034d76585f032e01 description", - "failMessageText": "657315df034d76585f032e01 failMessageText", - "declinePlayerMessage": "657315df034d76585f032e01 declinePlayerMessage", - "name": "657315df034d76585f032e01 name", - "note": "657315df034d76585f032e01 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "653e6760052c01c1c805532f", - "image": "/files/quest/icon/65899d03adeac0191c51e880.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "657315df034d76585f032e01 startedMessageText", - "successMessageText": "657315df034d76585f032e01 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 1600, - "id": "65846d662fd55f252109dbc7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "65846d739622c723546f3d36", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 13000, - "id": "65846d82cffa037bb167528f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25d7", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25d7", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 13000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658589954c2098671b4a175c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25d8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25d8", - "_tpl": "5bfd297f0db834001a669119", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b25d9", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "68010065f81036801d0b25d8", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b25da", - "_tpl": "5bfd35380db83400232fe5cc", - "parentId": "68010065f81036801d0b25d8", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b25db", - "_tpl": "5ae09bff5acfc4001562219d", - "parentId": "68010065f81036801d0b25d8", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b25dc", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "68010065f81036801d0b25db", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b25dd", - "_tpl": "5ae099925acfc4001a5fc7b3", - "parentId": "68010065f81036801d0b25db", - "slotId": "mod_sight_rear" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "65846da91e25c52cb72f8081", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25e4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25e0", - "_tpl": "64aceac0c4eda9354b0226b3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25e1", - "_tpl": "64b8f7968532cf95ee0a0dbf", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25e0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25e2", - "_tpl": "64aceac0c4eda9354b0226b3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25e3", - "_tpl": "64b8f7968532cf95ee0a0dbf", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25e2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25e4", - "_tpl": "64aceac0c4eda9354b0226b3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25e5", - "_tpl": "64b8f7968532cf95ee0a0dbf", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25e4", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5d25e4ad86f77443e625e387": { "QuestName": "Nostalgia", "_id": "5d25e4ad86f77443e625e387", @@ -77686,12 +75030,12 @@ "id": "5d667fec86f774368f43a1ff", "type": "Item", "index": 0, - "target": "68010065f81036801d0b25e7", + "target": "6812400c0c5cf2cf750758df", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b25e7", + "_id": "6812400c0c5cf2cf750758df", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 30000 @@ -77705,12 +75049,12 @@ "id": "5d6680d586f7743690020683", "type": "Item", "index": 0, - "target": "68010065f81036801d0b25e9", + "target": "6812400c0c5cf2cf750758e1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b25e9", + "_id": "6812400c0c5cf2cf750758e1", "_tpl": "590c60fc86f77412b13fddcf", "upd": { "StackObjectsCount": 1, @@ -77725,12 +75069,12 @@ "id": "5db2fe1c86f7747c5347c129", "type": "Item", "index": 0, - "target": "68010065f81036801d0b25eb", + "target": "6812400c0c5cf2cf750758e3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b25eb", + "_id": "6812400c0c5cf2cf750758e3", "_tpl": "5d8e15b686f774445103b190", "upd": { "StackObjectsCount": 1, @@ -77750,2051 +75094,6 @@ "arenaLocations": [], "status": 0 }, - "657315e1dccd301f1301416a": { - "QuestName": "Luxurious Life", - "_id": "657315e1dccd301f1301416a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "657315e1dccd301f1301416a acceptPlayerMessage", - "changeQuestMessageText": "657315e1dccd301f1301416a changeQuestMessageText", - "completePlayerMessage": "657315e1dccd301f1301416a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6575aa6767d93ca42e651048", - "conditions": [ - { - "id": "6575aa8478c645cf7746f16c", - "dynamicLocale": false, - "target": "Sandbox_3_Vino_exploration", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6575aa67197bd678a0c3f552", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "65817cabba2ba6ef71fc72ca", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "6582bd252b50c61c565828e2" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "65817cdb095fd7bedd05ff4e", - "target": "6575aa67197bd678a0c3f552", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "65817cd2881a7e07b3ec1249", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "6582bd252b50c61c565828e2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "65844139bb1d518e6d9aef5b", - "target": "65817cabba2ba6ef71fc72ca", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6584720c14e232a28cae583a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5936d90786f7742b1420ba5b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "657315e1dccd301f1301416a description", - "failMessageText": "657315e1dccd301f1301416a failMessageText", - "declinePlayerMessage": "657315e1dccd301f1301416a declinePlayerMessage", - "name": "657315e1dccd301f1301416a name", - "note": "657315e1dccd301f1301416a note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "653e6760052c01c1c805532f", - "image": "/files/quest/icon/65899d82c5998b6e94299024.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "657315e1dccd301f1301416a startedMessageText", - "successMessageText": "657315e1dccd301f1301416a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 1750, - "id": "65846e5c28ecbd11493fa1cd", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "65846e694f381a0ad975a860", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 14000, - "id": "65846e7ccffa037bb1675291", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25ed", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b25ed", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 14000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658589cebee11e5bb536411f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b25ee", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25ee", - "_tpl": "59e6152586f77473dc057aa1", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b25ef", - "_tpl": "59e649f986f77411d949b246", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b25f0", - "_tpl": "59e6284f86f77440d569536f", - "parentId": "68010065f81036801d0b25ef", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b25f1", - "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b25f2", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b25f3", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b25f4", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b25f5", - "_tpl": "59e6227d86f77440d64f5dc2", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b25f6", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "68010065f81036801d0b25ee", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "65846edd4d3b3d2e0e7e0f1d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2601", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b25f9", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25fa", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25f9", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25fb", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25fc", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25fb", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25fd", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b25fe", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25fd", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b25ff", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2600", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b25ff", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2601", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2602", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2601", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "65846efd5fd33e14795dfd47", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2606", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2604", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2605", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2606", - "_tpl": "59d625f086f774661516605d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "665eeca45d86b6c8aa03c79d": { - "QuestName": "Thirsty - Echo", - "_id": "665eeca45d86b6c8aa03c79d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "665eeca45d86b6c8aa03c79d acceptPlayerMessage", - "changeQuestMessageText": "665eeca45d86b6c8aa03c79d changeQuestMessageText", - "completePlayerMessage": "665eeca45d86b6c8aa03c79d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6660785f3dead1a987ce15a7", - "conditions": [ - { - "id": "6660787cdf41494f3b16f2c8", - "dynamicLocale": false, - "target": "2A2_unlock_4_discover", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6660785fc37356435d193ae4", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66607896f2ea02201517c203", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "666073159916667083033cb9" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6660789e6740b366e23e6068", - "target": "6660785fc37356435d193ae4", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666078bee6ed30ab2294f593", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "666073159916667083033cb9" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "666078c19bf83ccdcbd55a82", - "target": "66607896f2ea02201517c203", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66742a819857ebae1a6df739", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "665eec4a4dfc83b0ed0a9dca", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "665eeca45d86b6c8aa03c79d description", - "failMessageText": "665eeca45d86b6c8aa03c79d failMessageText", - "declinePlayerMessage": "665eeca45d86b6c8aa03c79d declinePlayerMessage", - "name": "665eeca45d86b6c8aa03c79d name", - "note": "665eeca45d86b6c8aa03c79d note", - "traderId": "54cb57776803fa99248b456e", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/66697ba8134bc4a35c0017fd.png", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "665eeca45d86b6c8aa03c79d startedMessageText", - "successMessageText": "665eeca45d86b6c8aa03c79d successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 11200, - "id": "66606ec7334d53707303f8d8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "66606f012f7aedcc900b0448", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 185000, - "id": "66606f7e334d53707303f8da", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2608", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2608", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 185000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "66606f47334d53707303f8d9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b260d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b260a", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b260b", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b260c", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b260d", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66606f552f7aedcc900b0449", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2610", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b260f", - "_tpl": "5ed51652f6c34d2cc26336a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2610", - "_tpl": "5ed51652f6c34d2cc26336a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e2ee86f77443e35162ea": { - "QuestName": "The Huntsman Path - Woods Keeper", - "_id": "5d25e2ee86f77443e35162ea", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2ee86f77443e35162ea acceptPlayerMessage", - "changeQuestMessageText": "5d25e2ee86f77443e35162ea changeQuestMessageText", - "completePlayerMessage": "5d25e2ee86f77443e35162ea completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d27276886f7740701348577", - "conditions": [ - { - "id": "5d27293d86f774483c7bdb18", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5d27276886f7740701348578", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5d2f464e498f71c8886f7656", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d08d21286f774736e7c94c3" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5d272a0b86f7745ba2701532", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d08d21286f774736e7c94c3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5d2f4664498f71bcb806043c", - "target": "5d2f464e498f71c8886f7656", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d77c65786f7742fa901bcc5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2b486f77409de05bba0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "62a9a17703555d0afc563f5a", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "596a0e1686f7741ddf17dbee", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e2ee86f77443e35162ea description", - "failMessageText": "5d25e2ee86f77443e35162ea failMessageText", - "declinePlayerMessage": "5d25e2ee86f77443e35162ea declinePlayerMessage", - "name": "5d25e2ee86f77443e35162ea name", - "note": "5d25e2ee86f77443e35162ea note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5d69470786f774238a38d844.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e2ee86f77443e35162ea startedMessageText", - "successMessageText": "5d25e2ee86f77443e35162ea successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18000, - "id": "60cca7bf826ca0323464bd19", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca7f8826ca0323464bd1a", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "5da9f68086f77441e90527b3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2615", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2612", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2613", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2614", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2615", - "_tpl": "5d6fc87386f77449db3db94e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5da9f69986f774421a5d6fe4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2617", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2617", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5da9f6ad86f7746c62550d6a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b261b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2619", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b261a", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b261b", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "64b66be38b66a1647d0a4756", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b261c", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b261c", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b261d", - "_tpl": "5d25af8f8abbc3055079fec5", - "parentId": "68010065f81036801d0b261c", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b261e", - "_tpl": "5cf13123d7f00c1085616a50", - "parentId": "68010065f81036801d0b261c", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b261f", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b261c", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2620", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b261f", - "slotId": "mod_muzzle" - } - ], - "loyaltyLevel": 3, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "64b66bd1d5887c2ce9561157", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2621", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2621", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2622", - "_tpl": "5d25a4a98abbc30b917421a4", - "parentId": "68010065f81036801d0b2621", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2623", - "_tpl": "5d25d0ac8abbc3054f3e61f7", - "parentId": "68010065f81036801d0b2621", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2624", - "_tpl": "671126a210d67adb5b08e925", - "parentId": "68010065f81036801d0b2623", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2625", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b2621", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2626", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b2625", - "slotId": "mod_muzzle" - } - ], - "loyaltyLevel": 3, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "64b66bd79c029513997be927", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2627", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2627", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2628", - "_tpl": "5ce69cbad7f00c00b61c5098", - "parentId": "68010065f81036801d0b2627", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2629", - "_tpl": "5cdeac22d7f00c000f26168f", - "parentId": "68010065f81036801d0b2627", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b262a", - "_tpl": "5cdeac42d7f00c000d36ba73", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b262b", - "_tpl": "5cdeac5cd7f00c000f261694", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b262c", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b262d", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b262e", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_mount_002" - }, - { - "_id": "68010065f81036801d0b262f", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "68010065f81036801d0b2629", - "slotId": "mod_mount_003" - }, - { - "_id": "68010065f81036801d0b2630", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b2627", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2631", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b2630", - "slotId": "mod_muzzle" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "64b66bdff83adb775979f8b9", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2632", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2632", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2633", - "_tpl": "5d25a6538abbc306c62e630d", - "parentId": "68010065f81036801d0b2632", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2634", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "68010065f81036801d0b2632", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2635", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "68010065f81036801d0b2634", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2636", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "68010065f81036801d0b2635", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2637", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "68010065f81036801d0b2634", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2638", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "68010065f81036801d0b2634", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2639", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2638", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b263a", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2638", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b263b", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2638", - "slotId": "mod_mount_002" - }, - { - "_id": "68010065f81036801d0b263c", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "68010065f81036801d0b2638", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b263d", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b2632", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b263e", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b263d", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b263f", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "68010065f81036801d0b2632", - "slotId": "mod_mount" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "665eeacf5d86b6c8aa03c79b": { - "QuestName": "Thirsty - Hounds", - "_id": "665eeacf5d86b6c8aa03c79b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "665eeacf5d86b6c8aa03c79b acceptPlayerMessage", - "changeQuestMessageText": "665eeacf5d86b6c8aa03c79b changeQuestMessageText", - "completePlayerMessage": "665eeacf5d86b6c8aa03c79b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "665eed28bc0516aecef437a2", - "conditions": [ - { - "id": "665eed628588a85efd33c119", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 22, - "to": 7 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "668e9a829b3cb1e28c4a7070", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "665eed28bdbf7b1f92394ecb", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 12, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66742bff616e79cdaaca611a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63a88045abf76d719f42d715", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "66742c07d8109e7d214a56a1", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "665eeacf5d86b6c8aa03c79b description", - "failMessageText": "665eeacf5d86b6c8aa03c79b failMessageText", - "declinePlayerMessage": "665eeacf5d86b6c8aa03c79b declinePlayerMessage", - "name": "665eeacf5d86b6c8aa03c79b name", - "note": "665eeacf5d86b6c8aa03c79b note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/66697b99134bc4a35c0017fb.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "665eeacf5d86b6c8aa03c79b startedMessageText", - "successMessageText": "665eeacf5d86b6c8aa03c79b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8500, - "id": "665eee022f7aedcc900b043b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "665eee134dfc83b0ed0a9dcd", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "665eee422f7aedcc900b043c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2646", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2642", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2643", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2642", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2644", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2645", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2644", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2646", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2647", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2646", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "66aa74571e5e199ecd094f18": { - "QuestName": "Secrets of Polikhim", - "_id": "66aa74571e5e199ecd094f18", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66aa74571e5e199ecd094f18 acceptPlayerMessage", - "changeQuestMessageText": "66aa74571e5e199ecd094f18 changeQuestMessageText", - "completePlayerMessage": "66aa74571e5e199ecd094f18 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66ab97a5c74ce045d6c32578", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66b22630a6b4e5ec7c02cdb7" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66aa74571e5e199ecd094f1d", - "conditions": [ - { - "id": "66aa5c2c2ba4b7b5dedbb17d", - "dynamicLocale": false, - "status": [ - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "66ab977e59878c8c51f5802a", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "66aa74571e5e199ecd094f1b", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66aa74571e5e199ecd094f20", - "conditions": [ - { - "id": "66aa649b55c319273e2024b9", - "dynamicLocale": false, - "target": [ - "factory4_night", - "factory4_day" - ], - "conditionType": "Location" - }, - { - "id": "66aa64a4fe6918271e244ebb", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "66aa74571e5e199ecd094f1e", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66ab97d56cb6e3bfd7c79fbc", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "Place_accurate_tools", - "target": [ - "66b22630a6b4e5ec7c02cdb7" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66b3509b1caa85f89713a2b1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa3a1c26f13bd04030f37", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "66aa74571e5e199ecd094f18 description", - "failMessageText": "66aa74571e5e199ecd094f18 failMessageText", - "declinePlayerMessage": "66aa74571e5e199ecd094f18 declinePlayerMessage", - "name": "66aa74571e5e199ecd094f18 name", - "note": "66aa74571e5e199ecd094f18 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "marathon", - "image": "/files/quest/icon/5979d36d86f7746d093ddd7a.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66aa74571e5e199ecd094f18 startedMessageText", - "successMessageText": "66aa74571e5e199ecd094f18 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 19400, - "id": "66b4e0fc0fab9765d1089f53", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "66b4e111d697bf761606285f", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 72000, - "id": "66b4e1267d633c785b02605e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2649", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2649", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 72000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66b4e13582fe17cf19023a63", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b264c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b264b", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b264c", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66b4e14056c691c729067924", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b264f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b264e", - "_tpl": "57347c2e24597744902c94a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b264f", - "_tpl": "57347c2e24597744902c94a1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66b4e14d204c6261cd0856f1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2653", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2651", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2652", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2653", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "65734c186dc1e402c80dc19e": { - "QuestName": "Dandies", - "_id": "65734c186dc1e402c80dc19e", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "65734c186dc1e402c80dc19e acceptPlayerMessage", - "changeQuestMessageText": "65734c186dc1e402c80dc19e changeQuestMessageText", - "completePlayerMessage": "65734c186dc1e402c80dc19e completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65734c186dc1e402c80dc1a3", - "conditions": [ - { - "id": "5979e7fe86f774311955e613", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "6576fdb75edfd11560169433", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "60bf74184a63fc79b60c57f6" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - }, - { - "id": "65771f8aced66ca8714c28fe", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "5aa2b9aee5b5b00015693121" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - }, - { - "id": "65771fa5cdb6fa1d87ce0a35", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "65734c186dc1e402c80dc1a2", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 30, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "657356c410becd24bc776f55", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "quest_zone_hide_barber1", - "target": [ - "60bf74184a63fc79b60c57f6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "658166f012763d4b9491e9b8", - "target": "65734c186dc1e402c80dc1a2", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "657356d0a95a1e7e1a8d8d99", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "quest_zone_hide_barber2", - "target": [ - "5aa2b9aee5b5b00015693121" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "658166f9aea170a561e6c7c9", - "target": "65734c186dc1e402c80dc1a2", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "65840730978b613065325ea1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639135a7e705511c8a4a1b78", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "65840733cfb06960fe6dc9c3", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 33, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "65734c186dc1e402c80dc19e description", - "failMessageText": "65734c186dc1e402c80dc19e failMessageText", - "declinePlayerMessage": "65734c186dc1e402c80dc19e declinePlayerMessage", - "name": "65734c186dc1e402c80dc19e name", - "note": "65734c186dc1e402c80dc19e note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/65899d5fb3613b5b1c66f4c4.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "65734c186dc1e402c80dc19e startedMessageText", - "successMessageText": "65734c186dc1e402c80dc19e successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 33000, - "id": "65734c186dc1e402c80dc1a4", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "65841414606b8d720b4b8f83", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 350000, - "id": "6584142e2c10f75d2c5a2f28", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2655", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2655", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 350000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658414460e40596ad2175a4c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2660", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2660", - "_tpl": "5ca2151486f774244a3b8d30", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2661", - "_tpl": "6575dd3e9e27f4a85e081142", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2662", - "_tpl": "6575dd519e27f4a85e081146", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b2663", - "_tpl": "6575dd64945bf78edd04c438", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2664", - "_tpl": "6575dd6e9d3a0ddf660b9047", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2665", - "_tpl": "6575dd769d3a0ddf660b904b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b2666", - "_tpl": "6575dd800546f8b1de093df6", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b2667", - "_tpl": "6575dd94945bf78edd04c43c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Groin_back" - }, - { - "_id": "68010065f81036801d0b2668", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2669", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2660", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "676493252a2479246ffd907b", - "type": "CustomizationDirect", - "index": 0, - "target": "675467aa81067119a10938cb", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "6578eb36e5020875d64645cd": { "QuestName": "The Huntsman Path - Crooked Cop", "_id": "6578eb36e5020875d64645cd", @@ -79982,12 +75281,12 @@ "id": "658415c65e9d963e11097413", "type": "Item", "index": 0, - "target": "68010065f81036801d0b266b", + "target": "6812400c0c5cf2cf750758e5", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b266b", + "_id": "6812400c0c5cf2cf750758e5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 150000 @@ -80001,12 +75300,12 @@ "id": "658415e566dec32da3132605", "type": "Item", "index": 0, - "target": "68010065f81036801d0b266d", + "target": "6812400c0c5cf2cf750758e7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b266d", + "_id": "6812400c0c5cf2cf750758e7", "_tpl": "5d235b4d86f7742e017bc88a", "upd": { "StackObjectsCount": 5 @@ -80020,12 +75319,12 @@ "id": "658415da0a500627c456f9e9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b266f", + "target": "6812400c0c5cf2cf750758e9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b266f", + "_id": "6812400c0c5cf2cf750758e9", "_tpl": "5c12613b86f7743bbe2c3f76", "upd": { "StackObjectsCount": 1, @@ -80040,12 +75339,12 @@ "id": "658589504127ec14c643cf4f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2670", + "target": "6812400c0c5cf2cf750758ea", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2670", + "_id": "6812400c0c5cf2cf750758ea", "_tpl": "627e14b21713922ded6f2c15", "upd": { "StackObjectsCount": 1, @@ -80055,98 +75354,98 @@ } }, { - "_id": "68010065f81036801d0b2671", + "_id": "6812400c0c5cf2cf750758eb", "_tpl": "628120fd5631d45211793c9f", - "parentId": "68010065f81036801d0b2670", + "parentId": "6812400c0c5cf2cf750758ea", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2672", + "_id": "6812400c0c5cf2cf750758ec", "_tpl": "62811e2510e26c1f344e6554", "upd": { "Foldable": { "Folded": false } }, - "parentId": "68010065f81036801d0b2670", + "parentId": "6812400c0c5cf2cf750758ea", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b2673", + "_id": "6812400c0c5cf2cf750758ed", "_tpl": "62811f828193841aca4a45c3", - "parentId": "68010065f81036801d0b2672", + "parentId": "6812400c0c5cf2cf750758ec", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2674", + "_id": "6812400c0c5cf2cf750758ee", "_tpl": "6281204f308cb521f87a8f9b", - "parentId": "68010065f81036801d0b2672", + "parentId": "6812400c0c5cf2cf750758ec", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2675", + "_id": "6812400c0c5cf2cf750758ef", "_tpl": "6281209662cba23f6c4d7a19", - "parentId": "68010065f81036801d0b2674", + "parentId": "6812400c0c5cf2cf750758ee", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2676", + "_id": "6812400c0c5cf2cf750758f0", "_tpl": "628120c21d5df4475f46a337", - "parentId": "68010065f81036801d0b2675", + "parentId": "6812400c0c5cf2cf750758ef", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2677", + "_id": "6812400c0c5cf2cf750758f1", "_tpl": "628120d309427b40ab14e76d", - "parentId": "68010065f81036801d0b2675", + "parentId": "6812400c0c5cf2cf750758ef", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2678", + "_id": "6812400c0c5cf2cf750758f2", "_tpl": "628120d309427b40ab14e76d", - "parentId": "68010065f81036801d0b2675", + "parentId": "6812400c0c5cf2cf750758ef", "slotId": "mod_mount_002" }, { - "_id": "68010065f81036801d0b2679", + "_id": "6812400c0c5cf2cf750758f3", "_tpl": "628120dd308cb521f87a8fa1", - "parentId": "68010065f81036801d0b2675", + "parentId": "6812400c0c5cf2cf750758ef", "slotId": "mod_mount_003" }, { - "_id": "68010065f81036801d0b267a", + "_id": "6812400c0c5cf2cf750758f4", "_tpl": "6281212a09427b40ab14e770", - "parentId": "68010065f81036801d0b2674", + "parentId": "6812400c0c5cf2cf750758ee", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b267b", + "_id": "6812400c0c5cf2cf750758f5", "_tpl": "62811fbf09427b40ab14e767", - "parentId": "68010065f81036801d0b2674", + "parentId": "6812400c0c5cf2cf750758ee", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b267c", + "_id": "6812400c0c5cf2cf750758f6", "_tpl": "628121434fa03b6b6c35dc6a", - "parentId": "68010065f81036801d0b267b", + "parentId": "6812400c0c5cf2cf750758f5", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b267d", + "_id": "6812400c0c5cf2cf750758f7", "_tpl": "62812081d23f207deb0ab216", - "parentId": "68010065f81036801d0b267c", + "parentId": "6812400c0c5cf2cf750758f6", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b267e", + "_id": "6812400c0c5cf2cf750758f8", "_tpl": "628120621d5df4475f46a335", - "parentId": "68010065f81036801d0b267d", + "parentId": "6812400c0c5cf2cf750758f7", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b267f", + "_id": "6812400c0c5cf2cf750758f9", "_tpl": "62811cd7308cb521f87a8f99", - "parentId": "68010065f81036801d0b2670", + "parentId": "6812400c0c5cf2cf750758ea", "slotId": "mod_charge" } ] @@ -80162,147 +75461,185 @@ "arenaLocations": [], "status": 0 }, - "5d25e2d886f77442734d335e": { - "QuestName": "The Huntsman Path - Controller", - "_id": "5d25e2d886f77442734d335e", + "64f83bd983cfca080a362c82": { + "QuestName": "Gunsmith - Part 25", + "_id": "64f83bd983cfca080a362c82", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2d886f77442734d335e acceptPlayerMessage", - "changeQuestMessageText": "5d25e2d886f77442734d335e changeQuestMessageText", - "completePlayerMessage": "5d25e2d886f77442734d335e completePlayerMessage", + "acceptPlayerMessage": "64f83bd983cfca080a362c82 acceptPlayerMessage", + "changeQuestMessageText": "64f83bd983cfca080a362c82 changeQuestMessageText", + "completePlayerMessage": "64f83bd983cfca080a362c82 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d307fc886f77447f15f5b22", - "conditions": [ - { - "id": "5d307ff586f77447f340bce1", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [ - { - "bodyParts": [ - "Head", - "Chest", - "Stomach", - "LeftArm", - "RightArm", - "LeftLeg", - "RightLeg" - ], - "effects": [ - "Stun" - ] - } - ], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5d307fc886f77447f15f5b23", + "conditionType": "WeaponAssembly", + "id": "64f841199a4f905106515448", "index": 0, "parentId": "", - "oneSessionOnly": false, "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, + "target": [ + "64ca3d3954fc657e230529cc" + ], "globalQuestCounterId": "", - "value": 2, + "value": 1, "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 500.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 10.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 950.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "6491c6f6ef312a876705191b", + "6492d7847363b8a52206bc52", + "6492ef63cfcf7c89e701abf1", + "5cf638cbd7f00c06595bc936", + "646372518610c40fc20204e8" + ], + "hasItemFromCategory": [ + "55818b164bdc2ddc698b456c" + ] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "5d77695b86f7742fa901bc75", + "id": "64f8cf4e57e97a762372082f", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", + "target": "64f83bcdde58fc437700d8fa", "status": [ 4 ], "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, + "availableAfter": 75600, + "dispersion": 7200, "visibilityConditions": [] } ], "Fail": [] }, - "description": "5d25e2d886f77442734d335e description", - "failMessageText": "5d25e2d886f77442734d335e failMessageText", - "declinePlayerMessage": "5d25e2d886f77442734d335e declinePlayerMessage", - "name": "5d25e2d886f77442734d335e name", - "note": "5d25e2d886f77442734d335e note", - "traderId": "5c0647fdd443bc2504c2d371", + "description": "64f83bd983cfca080a362c82 description", + "failMessageText": "64f83bd983cfca080a362c82 failMessageText", + "declinePlayerMessage": "64f83bd983cfca080a362c82 declinePlayerMessage", + "name": "64f83bd983cfca080a362c82 name", + "note": "64f83bd983cfca080a362c82 note", + "traderId": "5a7c2eca46aef81a7ca2145d", "location": "any", - "image": "/files/quest/icon/5d67c1e486f774131e206c3a.jpg", - "type": "Completion", + "image": "/files/quest/icon/64f8b692c8626c7d460401b6.jpg", + "type": "WeaponAssembly", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5d25e2d886f77442734d335e startedMessageText", - "successMessageText": "5d25e2d886f77442734d335e successMessageText", + "startedMessageText": "64f83bd983cfca080a362c82 startedMessageText", + "successMessageText": "64f83bd983cfca080a362c82 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7200, - "id": "60cca3e420a6283a506aeb47", + "value": 35000, + "id": "64f8cf6605cb58236609a654", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60cca3cd5f9e6175514de2d3", + "value": 0.04, + "id": "64f8cf6fc8626c7d4604042c", "type": "TraderStanding", "index": 0, - "target": "5c0647fdd443bc2504c2d371", + "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 50000, - "id": "5d77662f86f774319c488823", + "value": 5, + "id": "64f8cf7757e97a7623720830", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2681", + "target": "6812400c0c5cf2cf750758ff", "unknown": false, - "findInRaid": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2681", - "_tpl": "5449016a4bdc2d6f028b456f", + "_id": "6812400c0c5cf2cf750758fb", + "_tpl": "59faff1d86f7746c51718c9c", "upd": { - "StackObjectsCount": 50000 + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758fc", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758fd", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758fe", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750758ff", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true } } ] @@ -80310,22 +75647,110 @@ { "availableInGameEditions": [], "value": 1, - "id": "60cca40b41fd1e14d71e2309", + "id": "64f9809c33ff7561c87a32b1", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2683", + "target": "6812400c0c5cf2cf75075901", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2683", - "_tpl": "5dfe6104585a0c3e995c7b82", + "_id": "6812400c0c5cf2cf75075901", + "_tpl": "59fb023c86f7746d0d4b423c", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] + }, + { + "availableInGameEditions": [], + "id": "64f980a2d551582624581e57", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075902", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075902", + "_tpl": "5c1d0f4986f7744bb01837fa" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "66b87066e949465471126b26", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075903", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075903", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075904", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6812400c0c5cf2cf75075905", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075906", + "_tpl": "6492efb8cfcf7c89e701abf3", + "parentId": "6812400c0c5cf2cf75075905", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075907", + "_tpl": "646372518610c40fc20204e8", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075908", + "_tpl": "646371a9f2404ab67905c8e6", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075909", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_bipod" + }, + { + "_id": "6812400c0c5cf2cf7507590a", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "6812400c0c5cf2cf75075903", + "slotId": "mod_sight_rear" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + }, + { + "availableInGameEditions": [], + "id": "664f24f152d0b8783f39de45", + "type": "Achievement", + "index": 0, + "target": "664f23e44702fd5db50ee732", + "unknown": false } ], "Fail": [] @@ -80338,23 +75763,31 @@ "arenaLocations": [], "status": 0 }, - "625d6ffcaa168e51321d69d7": { - "QuestName": "Assessment - Part 1", - "_id": "625d6ffcaa168e51321d69d7", + "5d25e2b486f77409de05bba0": { + "QuestName": "The Huntsman Path - Secured Perimeter", + "_id": "5d25e2b486f77409de05bba0", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "625d6ffcaa168e51321d69d7 acceptPlayerMessage", - "changeQuestMessageText": "625d6ffcaa168e51321d69d7 changeQuestMessageText", - "completePlayerMessage": "625d6ffcaa168e51321d69d7 completePlayerMessage", + "acceptPlayerMessage": "5d25e2b486f77409de05bba0 acceptPlayerMessage", + "changeQuestMessageText": "5d25e2b486f77409de05bba0 changeQuestMessageText", + "completePlayerMessage": "5d25e2b486f77409de05bba0 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "625ed292c4874104f230c0c9", + "id": "5d26143c86f77469ef0f894b", "conditions": [ { - "id": "625ed2ac1ed3bb5bcc5bd9e7", + "id": "5d26149b86f77469f1599fdc", + "dynamicLocale": false, + "zoneIds": [ + "huntsman_013" + ], + "conditionType": "InZone" + }, + { + "id": "5d2c954586f77434292a5662", "dynamicLocale": false, "target": "AnyPmc", "compareMethod": ">=", @@ -80380,16 +75813,17 @@ "conditionType": "Kills" }, { - "id": "625ed2ceaa168e51321d69d8", + "id": "5d2c955186f774342b030482", "dynamicLocale": false, - "zoneIds": [ - "meh_44_eastLight_kill" + "target": [ + "factory4_day", + "factory4_night" ], - "conditionType": "InZone" + "conditionType": "Location" } ] }, - "id": "625ed292c4874104f230c0c8", + "id": "5d26143c86f77469ef0f894c", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -80397,7 +75831,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 15, + "value": 6, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -80406,11 +75840,26 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "6391e26cf8e5dd32bf4e3ab6", + "id": "5d763d7c86f774452073df77", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "625d6ffaf7308432be1d44c5", + "target": "5bc47dbf86f7741ee74e93b9", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "6389d6c4c3442f24872c1157", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5d25cf2686f77443e75488d4", "status": [ 4 ], @@ -80422,40 +75871,163 @@ ], "Fail": [] }, - "description": "625d6ffcaa168e51321d69d7 description", - "failMessageText": "625d6ffcaa168e51321d69d7 failMessageText", - "declinePlayerMessage": "625d6ffcaa168e51321d69d7 declinePlayerMessage", - "name": "625d6ffcaa168e51321d69d7 name", - "note": "625d6ffcaa168e51321d69d7 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/63ab1282435ab5742b4e40ac.jpg", - "type": "Elimination", + "description": "5d25e2b486f77409de05bba0 description", + "failMessageText": "5d25e2b486f77409de05bba0 failMessageText", + "declinePlayerMessage": "5d25e2b486f77409de05bba0 declinePlayerMessage", + "name": "5d25e2b486f77409de05bba0 name", + "note": "5d25e2b486f77409de05bba0 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/5d763d4886f774454e50d06d.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "625d6ffcaa168e51321d69d7 startedMessageText", - "successMessageText": "625d6ffcaa168e51321d69d7 successMessageText", + "startedMessageText": "5d25e2b486f77409de05bba0 startedMessageText", + "successMessageText": "5d25e2b486f77409de05bba0 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 23500, - "id": "63a5d4dd2b25f7513905c809", + "value": 9800, + "id": "60cca2c365e4664318606b6a", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "63a5d4e517cca5622401e0f4", + "value": 0.02, + "id": "60cca2b25f9e6175514de2d2", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5c0647fdd443bc2504c2d371", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 37000, + "id": "5d66738886f774131e206b3c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507590c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507590c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 37000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5d66739c86f774368e1b786a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507590f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507590e", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507590f", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5d6673ad86f774368d281a9e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075911", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075911", + "_tpl": "590c2e1186f77425357b6124", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5d6673bf86f7744dcc5e2990", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075914", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075913", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075914", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5d6673d386f7744a2e70f037", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075917", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075916", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075917", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] } ], "Fail": [] @@ -80468,31 +76040,1407 @@ "arenaLocations": [], "status": 0 }, - "658027799634223183395339": { - "QuestName": "No Swiping", - "_id": "658027799634223183395339", + "64e7b9bffd30422ed03dad38": { + "QuestName": "Gendarmerie - District Patrol", + "_id": "64e7b9bffd30422ed03dad38", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "658027799634223183395339 acceptPlayerMessage", - "changeQuestMessageText": "658027799634223183395339 changeQuestMessageText", - "completePlayerMessage": "658027799634223183395339 completePlayerMessage", + "acceptPlayerMessage": "64e7b9bffd30422ed03dad38 acceptPlayerMessage", + "changeQuestMessageText": "64e7b9bffd30422ed03dad38 changeQuestMessageText", + "completePlayerMessage": "64e7b9bffd30422ed03dad38 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "65802779963422318339533b", + "id": "64e7bdd52d369a1c01727230", "conditions": [ { - "id": "63a98d1b64b9631d9178274c", + "id": "64e7be8bfd30422ed03dad3a", "dynamicLocale": false, - "target": "q14_10_point_area", + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "5c07c60e0db834002330051f", + "5cadfbf7ae92152ac412eeef", + "606587252535c57a13424cfd", + "5447a9cd4bdc2dbd208b4567", + "5b0bbe4e5acfc40dc528a72d", + "5c488a752e221602b412af63", + "5dcbd56fdbd3d91b3e5468d5", + "6184055050224f204c1da540", + "618428466ef05c2ce828f218", + "6183afd850224f204c1da514", + "6165ac306ef05c2ce828ef74", + "5bb2475ed4351e00853264e3", + "623063e994fc3f7b302a9696", + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "6499849fc93611967b034949", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2", + "5d43021ca4b9362eab4b5e25", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1", + "628a60ae6b1d481ff772e9c8", + "628b5638ad252a16da6dd245", + "628b9c37a733087d0d7fe84b", + "5fbcc1d9016cce60e8341ab3", + "62e7c4fba689e8c9c50dfc38", + "63171672192e68c5460cebc5", + "5ae083b25acfc4001a5fc702", + "587e02ff24597743df3deaeb", + "5c501a4d2e221602b412b540", + "57c44b372459772d2b39b8ce", + "6410733d5dd49d77bd07847e", + "574d967124597745970e7c94", + "643ea5b23db6f9f57107d9fd", + "65290f395ae2ae97b80fdf2d", + "644674a13d52156624001fbc", + "645e0c6b3b381ede770e1cc9", + "651450ce0e00edc794068371", + "676176d362e0497044079f4c" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "64e7bea0220ee966bf425ece", + "dynamicLocale": false, + "zoneIds": [ + "quest_zone_kill_kardinal" + ], + "conditionType": "InZone" + } + ] + }, + "id": "64e7bdd52d369a1c0172722f", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 30, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "64f8d120b4918f39d363e584", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "64e7b9a4aac4cd0a726562cb", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "64e7b9bffd30422ed03dad38 description", + "failMessageText": "64e7b9bffd30422ed03dad38 failMessageText", + "declinePlayerMessage": "64e7b9bffd30422ed03dad38 declinePlayerMessage", + "name": "64e7b9bffd30422ed03dad38 name", + "note": "64e7b9bffd30422ed03dad38 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/64f8c8297e981f7f0110d501.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "64e7b9bffd30422ed03dad38 startedMessageText", + "successMessageText": "64e7b9bffd30422ed03dad38 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 25000, + "id": "64e7c47b7636ab2c00676c61", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "64f8c92e05cb58236609a354", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 185000, + "id": "64f8c93b57e97a76237206ae", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075919", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075919", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 185000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 16, + "id": "64f8c94633ff7561c876432d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507592a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507591b", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507591c", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507591d", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507591e", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507591f", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075920", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075921", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075922", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075923", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075924", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075925", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075926", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075927", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075928", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075929", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507592a", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64f8c9507d39ff0e7624cd68", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075935", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075935", + "_tpl": "5c0e625a86f7742d77340f62", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075936", + "_tpl": "65764275d8537eb26a0355e9", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075937", + "_tpl": "657642b0e6d5dd75f40688a5", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075938", + "_tpl": "6576434820cc24d17102b148", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075939", + "_tpl": "657643732bc38ef78e076477", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf7507593a", + "_tpl": "657643a220cc24d17102b14c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf7507593b", + "_tpl": "656f63c027aed95beb08f62c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf7507593c", + "_tpl": "656fafe3498d1b7e3e071da4", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Back_plate" + }, + { + "_id": "6812400c0c5cf2cf7507593d", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Left_side_plate" + }, + { + "_id": "6812400c0c5cf2cf7507593e", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075935", + "slotId": "Right_side_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b73d1c023e22044165de8", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf75075941", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075940", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "6812400c0c5cf2cf75075941", + "_tpl": "56dfef82d2720bbd668b4567", + "upd": { + "StackObjectsCount": 60 + } + } + ], + "loyaltyLevel": 3, + "traderId": 10 + }, + { + "availableInGameEditions": [], + "id": "64f8c95cb4918f39d363e340", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075942", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075942", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075943", + "_tpl": "649ec107961514b22506b10c", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf75075944", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075945", + "_tpl": "649ec127c93611967b034957", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075946", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6812400c0c5cf2cf75075945", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075947", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "6812400c0c5cf2cf75075946", + "slotId": "mod_tactical_000" + }, + { + "_id": "6812400c0c5cf2cf75075948", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "6812400c0c5cf2cf75075945", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400c0c5cf2cf75075949", + "_tpl": "64c196ad26a15b84aa07132f", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507594a", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf7507594b", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "6812400c0c5cf2cf7507594a", + "slotId": "mod_scope" + }, + { + "_id": "6812400c0c5cf2cf7507594c", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf7507594d", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "6812400c0c5cf2cf7507594c", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf7507594e", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf7507594f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "6812400c0c5cf2cf75075942", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25e2cc86f77443e47ae019": { + "QuestName": "The Huntsman Path - Forest Cleaning", + "_id": "5d25e2cc86f77443e47ae019", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25e2cc86f77443e47ae019 acceptPlayerMessage", + "changeQuestMessageText": "5d25e2cc86f77443e47ae019 changeQuestMessageText", + "completePlayerMessage": "5d25e2cc86f77443e47ae019 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d2701b586f77469f1599fe1", + "conditions": [ + { + "id": "5d2701c086f7746a695c9b62", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5d2701b586f77469f1599fe2", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 30, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d7768bf86f774319c488824", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2b486f77409de05bba0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25e2cc86f77443e47ae019 description", + "failMessageText": "5d25e2cc86f77443e47ae019 failMessageText", + "declinePlayerMessage": "5d25e2cc86f77443e47ae019 declinePlayerMessage", + "name": "5d25e2cc86f77443e47ae019 name", + "note": "5d25e2cc86f77443e47ae019 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5979f91c86f77402996bf9c2.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25e2cc86f77443e47ae019 startedMessageText", + "successMessageText": "5d25e2cc86f77443e47ae019 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60cca37c646f74055e27653a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca3a31bdece56c249cbe7", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 55000, + "id": "5d6678cf86f774266f07fca3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075951", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075951", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 55000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cca38f41fd1e14d71e2308", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075952", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075952", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075953", + "_tpl": "5e848d2eea0a7c419c2f9bfd", + "parentId": "6812400c0c5cf2cf75075952", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075954", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "parentId": "6812400c0c5cf2cf75075952", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075955", + "_tpl": "5f647d9f8499b57dc40ddb93", + "parentId": "6812400c0c5cf2cf75075952", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075956", + "_tpl": "5e848db4681bea2ada00daa9", + "parentId": "6812400c0c5cf2cf75075952", + "slotId": "mod_stock" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "655b83e5769de97e1d62d119", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507595d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075959", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507595a", + "_tpl": "5e85aa1a988a8701445df1f5", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075959", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507595b", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507595c", + "_tpl": "5e85aa1a988a8701445df1f5", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf7507595b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507595d", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507595e", + "_tpl": "5e85aa1a988a8701445df1f5", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf7507595d", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25e2ee86f77443e35162ea": { + "QuestName": "The Huntsman Path - Woods Keeper", + "_id": "5d25e2ee86f77443e35162ea", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25e2ee86f77443e35162ea acceptPlayerMessage", + "changeQuestMessageText": "5d25e2ee86f77443e35162ea changeQuestMessageText", + "completePlayerMessage": "5d25e2ee86f77443e35162ea completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d27276886f7740701348577", + "conditions": [ + { + "id": "5d27293d86f774483c7bdb18", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5d27276886f7740701348578", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5d2f464e498f71c8886f7656", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d08d21286f774736e7c94c3" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5d272a0b86f7745ba2701532", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d08d21286f774736e7c94c3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5d2f4664498f71bcb806043c", + "target": "5d2f464e498f71c8886f7656", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d77c65786f7742fa901bcc5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2b486f77409de05bba0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "62a9a17703555d0afc563f5a", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "596a0e1686f7741ddf17dbee", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25e2ee86f77443e35162ea description", + "failMessageText": "5d25e2ee86f77443e35162ea failMessageText", + "declinePlayerMessage": "5d25e2ee86f77443e35162ea declinePlayerMessage", + "name": "5d25e2ee86f77443e35162ea name", + "note": "5d25e2ee86f77443e35162ea note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5d69470786f774238a38d844.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25e2ee86f77443e35162ea startedMessageText", + "successMessageText": "5d25e2ee86f77443e35162ea successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18000, + "id": "60cca7bf826ca0323464bd19", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca7f8826ca0323464bd1a", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "5da9f68086f77441e90527b3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075963", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075960", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075961", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075962", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075963", + "_tpl": "5d6fc87386f77449db3db94e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5da9f69986f774421a5d6fe4", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075965", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075965", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5da9f6ad86f7746c62550d6a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075969", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075967", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075968", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075969", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "64b66be38b66a1647d0a4756", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507596a", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507596a", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf7507596b", + "_tpl": "5d25af8f8abbc3055079fec5", + "parentId": "6812400c0c5cf2cf7507596a", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf7507596c", + "_tpl": "5cf13123d7f00c1085616a50", + "parentId": "6812400c0c5cf2cf7507596a", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf7507596d", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf7507596a", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507596e", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf7507596d", + "slotId": "mod_muzzle" + } + ], + "loyaltyLevel": 3, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "64b66bd1d5887c2ce9561157", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf7507596f", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507596f", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075970", + "_tpl": "5d25a4a98abbc30b917421a4", + "parentId": "6812400c0c5cf2cf7507596f", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075971", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "parentId": "6812400c0c5cf2cf7507596f", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075972", + "_tpl": "671126a210d67adb5b08e925", + "parentId": "6812400c0c5cf2cf75075971", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075973", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf7507596f", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075974", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf75075973", + "slotId": "mod_muzzle" + } + ], + "loyaltyLevel": 3, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "64b66bd79c029513997be927", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075975", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075975", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075976", + "_tpl": "5ce69cbad7f00c00b61c5098", + "parentId": "6812400c0c5cf2cf75075975", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075977", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "6812400c0c5cf2cf75075975", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075978", + "_tpl": "5cdeac42d7f00c000d36ba73", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075979", + "_tpl": "5cdeac5cd7f00c000f261694", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf7507597a", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf7507597b", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf7507597c", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_mount_002" + }, + { + "_id": "6812400c0c5cf2cf7507597d", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6812400c0c5cf2cf75075977", + "slotId": "mod_mount_003" + }, + { + "_id": "6812400c0c5cf2cf7507597e", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf75075975", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507597f", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf7507597e", + "slotId": "mod_muzzle" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "64b66bdff83adb775979f8b9", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075980", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075980", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075981", + "_tpl": "5d25a6538abbc306c62e630d", + "parentId": "6812400c0c5cf2cf75075980", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075982", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "6812400c0c5cf2cf75075980", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075983", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "6812400c0c5cf2cf75075982", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075984", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "6812400c0c5cf2cf75075983", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075985", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6812400c0c5cf2cf75075982", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075986", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "6812400c0c5cf2cf75075982", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075987", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075986", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075988", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075986", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075989", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075986", + "slotId": "mod_mount_002" + }, + { + "_id": "6812400c0c5cf2cf7507598a", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "6812400c0c5cf2cf75075986", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400c0c5cf2cf7507598b", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf75075980", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507598c", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf7507598b", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf7507598d", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "6812400c0c5cf2cf75075980", + "slotId": "mod_mount" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "657315e1dccd301f1301416a": { + "QuestName": "Luxurious Life", + "_id": "657315e1dccd301f1301416a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "657315e1dccd301f1301416a acceptPlayerMessage", + "changeQuestMessageText": "657315e1dccd301f1301416a changeQuestMessageText", + "completePlayerMessage": "657315e1dccd301f1301416a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6575aa6767d93ca42e651048", + "conditions": [ + { + "id": "6575aa8478c645cf7746f16c", + "dynamicLocale": false, + "target": "Sandbox_3_Vino_exploration", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "65802779963422318339533a", + "id": "6575aa67197bd678a0c3f552", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -80506,845 +77454,10 @@ "isResetOnConditionFailed": false }, { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65802779963422318339533d", - "conditions": [ - { - "id": "6580282ea8340fcb15f6afe3", - "dynamicLocale": false, - "zoneIds": [ - "q14_10_kill" - ], - "conditionType": "InZone" - }, - { - "id": "6580286a258c63828afb10de", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "65802779963422318339533c", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "65817cabba2ba6ef71fc72ca", "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 25, - "visibilityConditions": [ - { - "id": "6581d03581612d7a0edff794", - "target": "65802779963422318339533a", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "65840c26c1ec9c6fb7119327", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b4795fb86f7745876267770", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "658027799634223183395339 description", - "failMessageText": "658027799634223183395339 failMessageText", - "declinePlayerMessage": "658027799634223183395339 declinePlayerMessage", - "name": "658027799634223183395339 name", - "note": "658027799634223183395339 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/658991921af57867a167fc0f.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "658027799634223183395339 startedMessageText", - "successMessageText": "658027799634223183395339 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 26000, - "id": "65802779963422318339533e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "658416b4606b8d720b4b8fd3", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 280000, - "id": "658416c39acefd03ac5ac9a8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2685", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2685", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 280000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658416d866ddfd17202b8bbf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2687", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2687", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658416ed606b8d720b4b8fd5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2689", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2689", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658416ff91a14b21510c7a47", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b268b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b268b", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6584170c0e150f7cea1cca5e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b268d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b268d", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6584171966ddfd17202b8bc0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b268f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b268f", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6578ec473dbd035d04531a8d": { - "QuestName": "Steady Signal", - "_id": "6578ec473dbd035d04531a8d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6578ec473dbd035d04531a8d acceptPlayerMessage", - "changeQuestMessageText": "6578ec473dbd035d04531a8d changeQuestMessageText", - "completePlayerMessage": "6578ec473dbd035d04531a8d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "6578ec473dbd035d04531a92", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "q14_8_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6578ec473dbd035d04531a93", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "q14_8_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6578ec473dbd035d04531a94", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "q14_8_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6578ed62da32cab3f79bb022", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "q14_8_4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6578ed7792685671c65edf07", - "index": 4, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "q14_8_5", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "65840c03bf1e0d11589e6fd5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac346e886f7741d6118b99b", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6578ec473dbd035d04531a8d description", - "failMessageText": "6578ec473dbd035d04531a8d failMessageText", - "declinePlayerMessage": "6578ec473dbd035d04531a8d declinePlayerMessage", - "name": "6578ec473dbd035d04531a8d name", - "note": "6578ec473dbd035d04531a8d note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/6589928750a60f28611a6eeb.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6578ec473dbd035d04531a8d startedMessageText", - "successMessageText": "6578ec473dbd035d04531a8d successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 14000, - "id": "6578ec473dbd035d04531a9a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6578ec473dbd035d04531a9b", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 48000, - "id": "6584163966dec32da313260c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2691", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2691", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 48000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658416540e40596ad2175e18", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2693", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2693", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6584165f0e150f7cea1cca59", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2695", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2695", - "_tpl": "5d0376a486f7747d8050965c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314a1920800278d0f6746": { - "QuestName": "Special Offer", - "_id": "666314a1920800278d0f6746", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314a1920800278d0f6746 acceptPlayerMessage", - "changeQuestMessageText": "666314a1920800278d0f6746 changeQuestMessageText", - "completePlayerMessage": "666314a1920800278d0f6746 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666976536518781b9feb2f28", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e997f0b86f7741ac73993e2" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6669766290442b8d8e0688b3", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e997f0b86f7741ac73993e2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6669769ff0cb253ff7649f27", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "609e860ebd219504d8507525" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666976ab1a6ef5fa7b813883", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "609e860ebd219504d8507525" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66697774640ec1284ed1621f", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628baf0b967de16aab5a4f36" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666977849154974010adb5ec", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628baf0b967de16aab5a4f36" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666977bfe975ac480a8f914e", - "index": 8, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628bc7fb408e2b2e9c0801b1" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666977ca5fa54985173f8e2c", - "index": 9, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628bc7fb408e2b2e9c0801b1" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666977f2dd6e511e9f33005a", - "index": 10, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628b9c7d45122232a872358f" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666978023255d2720cbdf76d", - "index": 11, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "628b9c7d45122232a872358f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66697426f43097de977dedcc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6663149f1d3ec95634095e75", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314a1920800278d0f6746 description", - "failMessageText": "666314a1920800278d0f6746 failMessageText", - "declinePlayerMessage": "666314a1920800278d0f6746 declinePlayerMessage", - "name": "666314a1920800278d0f6746 name", - "note": "666314a1920800278d0f6746 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314a1920800278d0f6746 startedMessageText", - "successMessageText": "666314a1920800278d0f6746 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 85500, - "id": "66743b5301b5600773078b53", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "66743b5b58678c865f0f029a", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 328000, - "id": "66743b707b0373b49700c519", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2697", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2697", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 328000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66743b8658678c865f0f029d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b269a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2699", - "_tpl": "5f60cd6cf2bcbb675b00dac6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b269a", - "_tpl": "5f60cd6cf2bcbb675b00dac6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66743ba07b0373b49700c51c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26a1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b269e", - "_tpl": "5ea17ca01412a1425304d1c0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b269f", - "_tpl": "657f9a55c6679fefb3051e19", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b269e", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b26a0", - "_tpl": "657f9a94ada5fadd1f07a589", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b269e", - "slotId": "Helmet_back" - }, - { - "_id": "68010065f81036801d0b26a1", - "_tpl": "5ea17ca01412a1425304d1c0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26a2", - "_tpl": "657f9a55c6679fefb3051e19", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b26a1", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b26a3", - "_tpl": "657f9a94ada5fadd1f07a589", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b26a1", - "slotId": "Helmet_back" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6663149f1d3ec95634095e75": { - "QuestName": "Circulate", - "_id": "6663149f1d3ec95634095e75", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6663149f1d3ec95634095e75 acceptPlayerMessage", - "changeQuestMessageText": "6663149f1d3ec95634095e75 changeQuestMessageText", - "completePlayerMessage": "6663149f1d3ec95634095e75 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "SellItemToTrader", - "dogtagLevel": 0, - "id": "666973ee1d80fbbbfeaf46c9", - "index": 0, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", @@ -81352,116 +77465,52 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5df8a4d786f77412672a1e3b", - "5ab8f04f86f774585f4237d8", - "59e763f286f7742ee57895da", - "61b9e1aaef9a1b5d6a79899a", - "5e997f0b86f7741ac73993e2", - "5ab8ebf186f7742d8b372e80", - "5ab8ee7786f7742d8f33f0b9", - "56e335e4d2720b6c058b456d", - "545cdae64bdc2d39198b4568", - "56e294cdd2720b603a8b4575", - "56e33634d2720bd8058b456b", - "6038d614d10cbf667352dd44", - "5b44c6ae86f7742d1627baea", - "5c0e774286f77468413cc5b2", - "628bc7fb408e2b2e9c0801b1", - "5e9dcf5986f7746c417435b3", - "656f198fb27298d6fd005466", - "60a272cc93ef783291411d8e", - "5f5e46b96bdad616ad46d613", - "5f5e467b0bc58666c37e7821", - "6034d2d697633951dc245ea6", - "628e1ffc83ec92260c0f437f", - "62a1b7fbc30cfa1d366af586", - "618bb76513f5097c8d5aa2d5", - "619cf0335771dd3c390269ae", - "618cfae774bb2d036a049e7c", - "5d5d940f86f7742797262046", - "5e4abc6786f77406812bd572", - "656e0436d44a1bb4220303a0", - "5c0e805e86f774683f3dd637", - "60a2828e8689911a226117f9", - "5f5e45cc5021ce62144be7aa", - "6034d103ca006d2dca39b3f0", - "656ddcf0f02d7bcea90bf395", - "639346cc1c8f182ad90c8972", - "5ca20d5986f774331e7c9602", - "544a5cde4bdc2d39388b456b", - "56e33680d2720be2748b4576", - "592c2d1a86f7746dbe2af32a", - "5ab8dced86f774646209ec87", - "5648a69d4bdc2ded0b8b457b", - "5929a2a086f7744f4b234d43", - "5d5d646386f7742797261fd9", - "5d5d87f786f77427997cfaef", - "5e4ac41886f77406a511c9a8", - "5c0e446786f7742013381639", - "5c0e3eb886f7742015526062", - "64a5366719bab53bd203bf33", - "603648ff5a45383c122086ac", - "6040dd4ddcf9592f401632d2", - "628dc750b910320f4c27a732", - "628d0618d1ba6e4fa07ce5a4", - "5e4abc1f86f774069619fbaa", - "5e9db13186f7742f845ee9d3", - "5c0e6a1586f77404597b4965", - "628b9784bcf6e2659e09b8a2", - "628baf0b967de16aab5a4f36", - "628b9c7d45122232a872358f", - "63611865ba5b90db0c0399d1", - "5fd4c60f875c30179f5d04c2", - "5b44cad286f77402a54ae7e5", - "64be7110bf597ba84a0a41ea", - "5b44c8ea86f7742d1627baf1", - "5c0e9f2c86f77432297fe0a3", - "6034d0230ca681766b6a0fb5", - "5fd4c5477a8d854fa0105061", - "60a3c70cde5f453f634816a3", - "60a3c68c37ea821725773ef5", - "5d5d85c586f774279a21cbdb", - "5fd4c4fa16cac650092f6771", - "5c0e722886f7740458316a57", - "5d5d8ca986f7742798716522", - "61bc85697113f767765c7fe7", - "5df8a42886f77412640e2e75", - "64be7095047e826eae02b0c1", - "639343fce101f4caa40a4ef3", - "60a621c49c197e4e8c4455e6", - "60a6220e953894617404b00a", - "61bcc89aef0f505f0c6cd0fc", - "609e860ebd219504d8507525", - "5e4abfed86f77406a2713cf7", - "5f5f41f56760b4138443b352", - "5ca20abf86f77418567a43f2", - "628cd624459354321c4b7fa2", - "5c0e746986f7741453628fe5", - "64a536392d2c4e6e970f4121", - "6034cf5fffd42c541047f72e", - "544a5caa4bdc2d1a388b4568", - "5ab8dab586f77441cd04f2a2", - "59e7643b86f7742cbf2c109a", - "572b7adb24597762ae139821", - "674da107c512807d1a0e7436", - "674da9cf0cb4bcde7103c07b", - "66b5f247af44ca0014063c02", - "674589d98dd67746010329e6" + "6582bd252b50c61c565828e2" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "65817cdb095fd7bedd05ff4e", + "target": "6575aa67197bd678a0c3f552", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "65817cd2881a7e07b3ec1249", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "6582bd252b50c61c565828e2" ], "globalQuestCounterId": "", - "value": 250, - "visibilityConditions": [], - "traderId": "5ac3b934156ae10c4430e83c" + "value": 1, + "visibilityConditions": [ + { + "id": "65844139bb1d518e6d9aef5b", + "target": "65817cabba2ba6ef71fc72ca", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "666973b4e9099946b1619bb0", + "id": "6584720c14e232a28cae583a", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "6663149cfd5ca9577902e037", + "target": "5936d90786f7742b1420ba5b", "status": [ 4 ], @@ -81473,28 +77522,28 @@ ], "Fail": [] }, - "description": "6663149f1d3ec95634095e75 description", - "failMessageText": "6663149f1d3ec95634095e75 failMessageText", - "declinePlayerMessage": "6663149f1d3ec95634095e75 declinePlayerMessage", - "name": "6663149f1d3ec95634095e75 name", - "note": "6663149f1d3ec95634095e75 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/6682a796c579ad50ad0fcc5d.png", - "type": "Loyalty", + "description": "657315e1dccd301f1301416a description", + "failMessageText": "657315e1dccd301f1301416a failMessageText", + "declinePlayerMessage": "657315e1dccd301f1301416a declinePlayerMessage", + "name": "657315e1dccd301f1301416a name", + "note": "657315e1dccd301f1301416a note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "653e6760052c01c1c805532f", + "image": "/files/quest/icon/65899d82c5998b6e94299024.jpg", + "type": "PickUp", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "6663149f1d3ec95634095e75 startedMessageText", - "successMessageText": "6663149f1d3ec95634095e75 successMessageText", + "startedMessageText": "657315e1dccd301f1301416a startedMessageText", + "successMessageText": "657315e1dccd301f1301416a successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 32000, - "id": "66743ac445cb67bd65077b35", + "value": 1750, + "id": "65846e5c28ecbd11493fa1cd", "type": "Experience", "index": 0, "unknown": false @@ -81502,52 +77551,228 @@ { "availableInGameEditions": [], "value": 0.01, - "id": "66743ad0bd1574a8b90712be", + "id": "65846e694f381a0ad975a860", "type": "TraderStanding", "index": 0, - "target": "5ac3b934156ae10c4430e83c", + "target": "54cb50c76803fa8b248b4571", "unknown": false }, { "availableInGameEditions": [], - "value": 264000, - "id": "66743ae6c4714a7a6e0d9c8a", + "value": 14000, + "id": "65846e7ccffa037bb1675291", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26a5", + "target": "6812400c0c5cf2cf7507598f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26a5", + "_id": "6812400c0c5cf2cf7507598f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 264000 + "StackObjectsCount": 14000 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "66743af1dceb304bf30b1ff9", + "value": 1, + "id": "658589cebee11e5bb536411f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26a8", + "target": "6812400c0c5cf2cf75075990", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26a7", - "_tpl": "5d1b376e86f774252519444e", + "_id": "6812400c0c5cf2cf75075990", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075991", + "_tpl": "59e649f986f77411d949b246", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf75075992", + "_tpl": "59e6284f86f77440d569536f", + "parentId": "6812400c0c5cf2cf75075991", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075993", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075994", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075995", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075996", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075997", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075998", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "6812400c0c5cf2cf75075990", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "65846edd4d3b3d2e0e7e0f1d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750759a3", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507599b", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b26a8", - "_tpl": "5d1b376e86f774252519444e", + "_id": "6812400c0c5cf2cf7507599c", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf7507599b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507599d", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507599e", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf7507599d", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507599f", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750759a0", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf7507599f", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750759a1", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750759a2", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf750759a1", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf750759a3", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750759a4", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf750759a3", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "65846efd5fd33e14795dfd47", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750759a8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750759a6", + "_tpl": "59d625f086f774661516605d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750759a7", + "_tpl": "59d625f086f774661516605d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750759a8", + "_tpl": "59d625f086f774661516605d", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -81566,6 +77791,121 @@ "arenaLocations": [], "status": 0 }, + "5d25e2a986f77409dd5cdf2a": { + "QuestName": "The Survivalist Path - Combat Medic", + "_id": "5d25e2a986f77409dd5cdf2a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25e2a986f77409dd5cdf2a acceptPlayerMessage", + "changeQuestMessageText": "5d25e2a986f77409dd5cdf2a changeQuestMessageText", + "completePlayerMessage": "5d25e2a986f77409dd5cdf2a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5d2605ef86f77469ef0f7622", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "Vitality", + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d76336486f7744527181847", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e29d86f7740a22516326", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25e2a986f77409dd5cdf2a description", + "failMessageText": "5d25e2a986f77409dd5cdf2a failMessageText", + "declinePlayerMessage": "5d25e2a986f77409dd5cdf2a declinePlayerMessage", + "name": "5d25e2a986f77409dd5cdf2a name", + "note": "5d25e2a986f77409dd5cdf2a note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d67b7ba86f774131e206c0c.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25e2a986f77409dd5cdf2a startedMessageText", + "successMessageText": "5d25e2a986f77409dd5cdf2a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60cca281b2736c24b2118ba2", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca2849f89812e5b6aa884", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "60cca27b646f74055e276539", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750759aa", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750759aa", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "60cca272826ca0323464bd17", + "type": "Skill", + "index": 0, + "target": "Surgery", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "625d70031ed3bb5bcc5bd9e5": { "QuestName": "Key to the Tower", "_id": "625d70031ed3bb5bcc5bd9e5", @@ -81920,12 +78260,12 @@ "id": "658410430e40596ad2171b7c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26aa", + "target": "6812400c0c5cf2cf750759ac", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26aa", + "_id": "6812400c0c5cf2cf750759ac", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 174000 @@ -81939,12 +78279,12 @@ "id": "658410690e150f7cea1cbd97", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26ac", + "target": "6812400c0c5cf2cf750759ae", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26ac", + "_id": "6812400c0c5cf2cf750759ae", "_tpl": "5d1b327086f7742525194449", "upd": { "StackObjectsCount": 1, @@ -81959,12 +78299,12 @@ "id": "6584107891a14b21510c5ebf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26b0", + "target": "6812400c0c5cf2cf750759b2", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26ae", + "_id": "6812400c0c5cf2cf750759b0", "_tpl": "5d1b39a386f774252339976f", "upd": { "StackObjectsCount": 1, @@ -81972,7 +78312,7 @@ } }, { - "_id": "68010065f81036801d0b26af", + "_id": "6812400c0c5cf2cf750759b1", "_tpl": "5d1b39a386f774252339976f", "upd": { "StackObjectsCount": 1, @@ -81980,7 +78320,7 @@ } }, { - "_id": "68010065f81036801d0b26b0", + "_id": "6812400c0c5cf2cf750759b2", "_tpl": "5d1b39a386f774252339976f", "upd": { "StackObjectsCount": 1, @@ -82026,7 +78366,7 @@ }, "id": "66aba85403e0ee3101042878", "index": 0, - "parentId": "", + "parentId": "66aba85403e0ee310104287a", "oneSessionOnly": true, "dynamicLocale": false, "type": "Discover", @@ -82229,12 +78569,12 @@ "id": "66b4e6bc03449f31fe0b8161", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26b2", + "target": "6812400c0c5cf2cf750759b4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26b2", + "_id": "6812400c0c5cf2cf750759b4", "_tpl": "5c94bbff86f7747ee735c08f", "upd": { "StackObjectsCount": 1, @@ -82268,12 +78608,12 @@ "id": "66b4e3246613a81cfa00af4f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26b4", + "target": "6812400c0c5cf2cf750759b6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26b4", + "_id": "6812400c0c5cf2cf750759b6", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 165000 @@ -82287,12 +78627,12 @@ "id": "66b4e33df6f89f9abe074921", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26b6", + "target": "6812400c0c5cf2cf750759b8", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26b6", + "_id": "6812400c0c5cf2cf750759b8", "_tpl": "5aafbcd986f7745e590fff23", "upd": { "StackObjectsCount": 1, @@ -82813,12 +79153,12 @@ "id": "6584148b9acefd03ac5ac994", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26b8", + "target": "6812400c0c5cf2cf750759ba", "unknown": true, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26b8", + "_id": "6812400c0c5cf2cf750759ba", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 600000 @@ -82837,1200 +79177,6 @@ "arenaLocations": [], "status": 0 }, - "5d25e44386f77409453bce7b": { - "QuestName": "The Huntsman Path - Evil Watchman", - "_id": "5d25e44386f77409453bce7b", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e44386f77409453bce7b acceptPlayerMessage", - "changeQuestMessageText": "5d25e44386f77409453bce7b changeQuestMessageText", - "completePlayerMessage": "5d25e44386f77409453bce7b completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d2733c586f7741dea4f3071", - "conditions": [ - { - "id": "5d27351e86f774457411b262", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5d27354086f77445722f1f9d", - "dynamicLocale": false, - "zoneIds": [ - "huntsman_020" - ], - "conditionType": "InZone" - }, - { - "id": "5d2c94f786f774342d57a662", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "5d2733c586f7741dea4f3072", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d77710186f774319c488825", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e44386f77409453bce7b description", - "failMessageText": "5d25e44386f77409453bce7b failMessageText", - "declinePlayerMessage": "5d25e44386f77409453bce7b declinePlayerMessage", - "name": "5d25e44386f77409453bce7b name", - "note": "5d25e44386f77409453bce7b note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/5d69474486f77414077d1cc8.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e44386f77409453bce7b startedMessageText", - "successMessageText": "5d25e44386f77409453bce7b successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10000, - "id": "60cca8fa65e4664318606b71", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca8fe5f9e6175514de2d6", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 75000, - "id": "5d667c4c86f774368f43a1f6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26ba", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26ba", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 75000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d667c8286f774369120c2b9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26bd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26bc", - "_tpl": "5c12613b86f7743bbe2c3f76", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26bd", - "_tpl": "5c12613b86f7743bbe2c3f76", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5d667ca186f774368e1b7879", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26bf", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26bf", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "64f83bb69878a0569d6ecfbe": { - "QuestName": "Gunsmith - Part 23", - "_id": "64f83bb69878a0569d6ecfbe", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64f83bb69878a0569d6ecfbe acceptPlayerMessage", - "changeQuestMessageText": "64f83bb69878a0569d6ecfbe changeQuestMessageText", - "completePlayerMessage": "64f83bb69878a0569d6ecfbe completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "64f83d0eed30ed471f49bcde", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "606587252535c57a13424cfd" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 300.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 30.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 73, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 350.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "5d00ef6dd7ad1a0940739b16", - "59f9d81586f7744c7506ee62", - "5a800961159bd4315e3a1657" - ], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "64f8d063c8626c7d46040667", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b47825886f77468074618d3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 7200, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "64f83bb69878a0569d6ecfbe description", - "failMessageText": "64f83bb69878a0569d6ecfbe failMessageText", - "declinePlayerMessage": "64f83bb69878a0569d6ecfbe declinePlayerMessage", - "name": "64f83bb69878a0569d6ecfbe name", - "note": "64f83bb69878a0569d6ecfbe note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/64f8b5fb7d39ff0e7624c6b4.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "64f83bb69878a0569d6ecfbe startedMessageText", - "successMessageText": "64f83bb69878a0569d6ecfbe successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 29500, - "id": "64f83d5f8b634877512e5190", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "64f8d03ab4918f39d363e4c4", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1300, - "id": "64f8d03133ff7561c87644b2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26c1", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26c1", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1300 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "64f8d04605cb58236609a655", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26c3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26c3", - "_tpl": "6478641c19d732620e045e17", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "64f8d04c7d39ff0e7624ceec", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b26c4", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b26c4", - "_tpl": "6065878ac9cf8012264142fd" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6672d9def1c88688a707d042": { - "QuestName": "Establish Contact", - "_id": "6672d9def1c88688a707d042", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6672d9def1c88688a707d042 acceptPlayerMessage", - "changeQuestMessageText": "6672d9def1c88688a707d042 changeQuestMessageText", - "completePlayerMessage": "6672d9def1c88688a707d042 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "TraderStanding", - "id": "66813c01decf4560581ca0c0", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "579dc571d53a0658a154fbec", - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "TraderStanding", - "id": "6672daa3a5f158174abeaab2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "579dc571d53a0658a154fbec", - "globalQuestCounterId": "", - "value": 4, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6672d9def1c88688a707d042 description", - "failMessageText": "6672d9def1c88688a707d042 failMessageText", - "declinePlayerMessage": "6672d9def1c88688a707d042 declinePlayerMessage", - "name": "6672d9def1c88688a707d042 name", - "note": "6672d9def1c88688a707d042 note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/61374f53857735719f2f0ca2.jpg", - "type": "Loyalty", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6672d9def1c88688a707d042 startedMessageText", - "successMessageText": "6672d9def1c88688a707d042 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8800, - "id": "66741e2f29da3476e604f4b0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66741e25c4714a7a6e0d9c79", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 600, - "id": "66741eeb15268503bf0fb609", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26c6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26c6", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 600 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "66b38c7bf85b8bf7250f9cb6": { - "QuestName": "Rough Tarkov", - "_id": "66b38c7bf85b8bf7250f9cb6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66b38c7bf85b8bf7250f9cb6 acceptPlayerMessage", - "changeQuestMessageText": "66b38c7bf85b8bf7250f9cb6 changeQuestMessageText", - "completePlayerMessage": "66b38c7bf85b8bf7250f9cb6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66b38c7bf85b8bf7250f9cb8", - "conditions": [ - { - "id": "66b38dcdad51502a41705f7e", - "dynamicLocale": false, - "target": "Woods_mine_quest", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "66b38c7bf85b8bf7250f9cb7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66b38de6fdca1053dec8f994", - "conditions": [ - { - "id": "66b38df3097ef60221acde97", - "dynamicLocale": false, - "target": "Sandbox_mine_quest", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "66b38de6a97d8cbafd711846", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66b393e4630e8a1353133e91", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d24b81486f77439c92d6ba8", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "66b38c7bf85b8bf7250f9cb6 description", - "failMessageText": "66b38c7bf85b8bf7250f9cb6 failMessageText", - "declinePlayerMessage": "66b38c7bf85b8bf7250f9cb6 declinePlayerMessage", - "name": "66b38c7bf85b8bf7250f9cb6 name", - "note": "66b38c7bf85b8bf7250f9cb6 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d66701986f7744a2e70f025.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66b38c7bf85b8bf7250f9cb6 startedMessageText", - "successMessageText": "66b38c7bf85b8bf7250f9cb6 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 4440, - "id": "66b3a3cf66265b5f5e02490c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "66b3a3dfec21e102040a048c", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 60000, - "id": "66b3a3f46592ade562098c53", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26c8", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26c8", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 60000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66b3a402721bbc88a70f1706", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26cb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26ca", - "_tpl": "666b11055a706400b717cfa5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26cb", - "_tpl": "666b11055a706400b717cfa5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25b6be86f77444001e1b89": { - "QuestName": "The Survivalist Path - Thrifty", - "_id": "5d25b6be86f77444001e1b89", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25b6be86f77444001e1b89 acceptPlayerMessage", - "changeQuestMessageText": "5d25b6be86f77444001e1b89 changeQuestMessageText", - "completePlayerMessage": "5d25b6be86f77444001e1b89 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5d25beca86f77409dd5cdbb3", - "index": 0, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "huntsman_005_1", - "target": [ - "590c5d4b86f774784e1b9c45" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5d25beeb86f77443fe45765f", - "index": 1, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "huntsman_005_1", - "target": [ - "5448fee04bdc2dbc018b4567" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5d2deedc86f77459121c3118", - "index": 2, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "huntsman_005_2", - "target": [ - "590c5d4b86f774784e1b9c45" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5d2defc586f774591510e6b9", - "index": 3, - "maxDurability": 0.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "huntsman_005_2", - "target": [ - "5448fee04bdc2dbc018b4567" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d76307886f774454c5360c1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25aed386f77442734d25d2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25b6be86f77444001e1b89 description", - "failMessageText": "5d25b6be86f77444001e1b89 failMessageText", - "declinePlayerMessage": "5d25b6be86f77444001e1b89 declinePlayerMessage", - "name": "5d25b6be86f77444001e1b89 name", - "note": "5d25b6be86f77444001e1b89 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25b6be86f77444001e1b89 startedMessageText", - "successMessageText": "5d25b6be86f77444001e1b89 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 4700, - "id": "60cc9f88826ca0323464bd14", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "60cc9f9f98b492706036460a", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 22000, - "id": "5d656dba86f774766e559dcc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26cd", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26cd", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 22000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d656ddc86f77476d6220ed8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26d0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26cf", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26d0", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec1a3db13e6fb78d4420dbe", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26d2", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26d2", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "62a6502a8ec41a51b34758de", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b26d3", - "unknown": true, - "items": [ - { - "_id": "68010065f81036801d0b26d3", - "_tpl": "590c5d4b86f774784e1b9c45" - } - ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25e2b486f77409de05bba0": { - "QuestName": "The Huntsman Path - Secured Perimeter", - "_id": "5d25e2b486f77409de05bba0", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e2b486f77409de05bba0 acceptPlayerMessage", - "changeQuestMessageText": "5d25e2b486f77409de05bba0 changeQuestMessageText", - "completePlayerMessage": "5d25e2b486f77409de05bba0 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d26143c86f77469ef0f894b", - "conditions": [ - { - "id": "5d26149b86f77469f1599fdc", - "dynamicLocale": false, - "zoneIds": [ - "huntsman_013" - ], - "conditionType": "InZone" - }, - { - "id": "5d2c954586f77434292a5662", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5d2c955186f774342b030482", - "dynamicLocale": false, - "target": [ - "factory4_day", - "factory4_night" - ], - "conditionType": "Location" - } - ] - }, - "id": "5d26143c86f77469ef0f894c", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 6, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d763d7c86f774452073df77", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5bc47dbf86f7741ee74e93b9", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6389d6c4c3442f24872c1157", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5d25cf2686f77443e75488d4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25e2b486f77409de05bba0 description", - "failMessageText": "5d25e2b486f77409de05bba0 failMessageText", - "declinePlayerMessage": "5d25e2b486f77409de05bba0 declinePlayerMessage", - "name": "5d25e2b486f77409de05bba0 name", - "note": "5d25e2b486f77409de05bba0 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/5d763d4886f774454e50d06d.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25e2b486f77409de05bba0 startedMessageText", - "successMessageText": "5d25e2b486f77409de05bba0 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9800, - "id": "60cca2c365e4664318606b6a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca2b25f9e6175514de2d2", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 37000, - "id": "5d66738886f774131e206b3c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26d5", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b26d5", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 37000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d66739c86f774368e1b786a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26d8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26d7", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26d8", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5d6673ad86f774368d281a9e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26da", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26da", - "_tpl": "590c2e1186f77425357b6124", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d6673bf86f7744dcc5e2990", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26dd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26dc", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26dd", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d6673d386f7744a2e70f037", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b26e0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b26df", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b26e0", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "66aa61663aa37705c5024277": { "QuestName": "Know Your Place", "_id": "66aa61663aa37705c5024277", @@ -84240,12 +79386,12 @@ "id": "66b4e0d7f6f89f9abe07491f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26e2", + "target": "6812400c0c5cf2cf750759bc", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26e2", + "_id": "6812400c0c5cf2cf750759bc", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 95000 @@ -84259,12 +79405,12 @@ "id": "66db273232d2d94379056b57", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26e5", + "target": "6812400c0c5cf2cf750759bf", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26e4", + "_id": "6812400c0c5cf2cf750759be", "_tpl": "66b5f6985891c84aab75ca76", "upd": { "StackObjectsCount": 1, @@ -84272,7 +79418,7 @@ } }, { - "_id": "68010065f81036801d0b26e5", + "_id": "6812400c0c5cf2cf750759bf", "_tpl": "66b5f6985891c84aab75ca76", "upd": { "StackObjectsCount": 1, @@ -84457,12 +79603,12 @@ "id": "5f0dc6a63204251cac71fe60", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26e7", + "target": "6812400c0c5cf2cf750759c1", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26e7", + "_id": "6812400c0c5cf2cf750759c1", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 115000 @@ -84476,12 +79622,12 @@ "id": "60ccae5465e4664318606b79", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26e9", + "target": "6812400c0c5cf2cf750759c3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26e9", + "_id": "6812400c0c5cf2cf750759c3", "_tpl": "5a1eaa87fcdbcb001865f75e", "upd": { "StackObjectsCount": 1, @@ -84496,12 +79642,12 @@ "id": "60ccae5ea7d63f18200a2527", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26f6", + "target": "6812400c0c5cf2cf750759d0", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26ed", + "_id": "6812400c0c5cf2cf750759c7", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1, @@ -84509,26 +79655,26 @@ } }, { - "_id": "68010065f81036801d0b26ee", + "_id": "6812400c0c5cf2cf750759c8", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b26ed", + "parentId": "6812400c0c5cf2cf750759c7", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b26ef", + "_id": "6812400c0c5cf2cf750759c9", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b26ed", + "parentId": "6812400c0c5cf2cf750759c7", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b26f0", + "_id": "6812400c0c5cf2cf750759ca", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1, @@ -84536,26 +79682,26 @@ } }, { - "_id": "68010065f81036801d0b26f1", + "_id": "6812400c0c5cf2cf750759cb", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b26f0", + "parentId": "6812400c0c5cf2cf750759ca", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b26f2", + "_id": "6812400c0c5cf2cf750759cc", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b26f0", + "parentId": "6812400c0c5cf2cf750759ca", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b26f3", + "_id": "6812400c0c5cf2cf750759cd", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1, @@ -84563,26 +79709,26 @@ } }, { - "_id": "68010065f81036801d0b26f4", + "_id": "6812400c0c5cf2cf750759ce", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b26f3", + "parentId": "6812400c0c5cf2cf750759cd", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b26f5", + "_id": "6812400c0c5cf2cf750759cf", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b26f3", + "parentId": "6812400c0c5cf2cf750759cd", "slotId": "cartridges", "location": 1 }, { - "_id": "68010065f81036801d0b26f6", + "_id": "6812400c0c5cf2cf750759d0", "_tpl": "64898838d5b4df6140000a20", "upd": { "StackObjectsCount": 1, @@ -84590,21 +79736,21 @@ } }, { - "_id": "68010065f81036801d0b26f7", + "_id": "6812400c0c5cf2cf750759d1", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b26f6", + "parentId": "6812400c0c5cf2cf750759d0", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b26f8", + "_id": "6812400c0c5cf2cf750759d2", "_tpl": "5d6e68a8a4b9360b6c0d54e2", "upd": { "StackObjectsCount": 5 }, - "parentId": "68010065f81036801d0b26f6", + "parentId": "6812400c0c5cf2cf750759d0", "slotId": "cartridges", "location": 1 } @@ -84616,12 +79762,12 @@ "id": "5f0dc3b40553f172ce0a1ff6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26fb", + "target": "6812400c0c5cf2cf750759d5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b26fa", + "_id": "6812400c0c5cf2cf750759d4", "_tpl": "5d02797c86f774203f38e30a", "upd": { "StackObjectsCount": 1, @@ -84629,7 +79775,7 @@ } }, { - "_id": "68010065f81036801d0b26fb", + "_id": "6812400c0c5cf2cf750759d5", "_tpl": "5d02797c86f774203f38e30a", "upd": { "StackObjectsCount": 1, @@ -84659,81 +79805,28 @@ "arenaLocations": [], "status": 0 }, - "64e7b9bffd30422ed03dad38": { - "QuestName": "Gendarmerie - District Patrol", - "_id": "64e7b9bffd30422ed03dad38", + "5d25e44f86f77443e625e385": { + "QuestName": "The Huntsman Path - Eraser - Part 1", + "_id": "5d25e44f86f77443e625e385", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "64e7b9bffd30422ed03dad38 acceptPlayerMessage", - "changeQuestMessageText": "64e7b9bffd30422ed03dad38 changeQuestMessageText", - "completePlayerMessage": "64e7b9bffd30422ed03dad38 completePlayerMessage", + "acceptPlayerMessage": "5d25e44f86f77443e625e385 acceptPlayerMessage", + "changeQuestMessageText": "5d25e44f86f77443e625e385 changeQuestMessageText", + "completePlayerMessage": "5d25e44f86f77443e625e385 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "64e7bdd52d369a1c01727230", + "id": "5d27369586f774457411b263", "conditions": [ { - "id": "64e7be8bfd30422ed03dad3a", + "id": "5d667d2486f7744a2e70f046", "dynamicLocale": false, - "target": "Any", + "target": "Savage", "compareMethod": ">=", - "value": 0, - "weapon": [ - "5c07c60e0db834002330051f", - "5cadfbf7ae92152ac412eeef", - "606587252535c57a13424cfd", - "5447a9cd4bdc2dbd208b4567", - "5b0bbe4e5acfc40dc528a72d", - "5c488a752e221602b412af63", - "5dcbd56fdbd3d91b3e5468d5", - "6184055050224f204c1da540", - "618428466ef05c2ce828f218", - "6183afd850224f204c1da514", - "6165ac306ef05c2ce828ef74", - "5bb2475ed4351e00853264e3", - "623063e994fc3f7b302a9696", - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "6499849fc93611967b034949", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2", - "5d43021ca4b9362eab4b5e25", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1", - "628a60ae6b1d481ff772e9c8", - "628b5638ad252a16da6dd245", - "628b9c37a733087d0d7fe84b", - "5fbcc1d9016cce60e8341ab3", - "62e7c4fba689e8c9c50dfc38", - "63171672192e68c5460cebc5", - "5ae083b25acfc4001a5fc702", - "587e02ff24597743df3deaeb", - "5c501a4d2e221602b412b540", - "57c44b372459772d2b39b8ce", - "6410733d5dd49d77bd07847e", - "574d967124597745970e7c94", - "643ea5b23db6f9f57107d9fd", - "65290f395ae2ae97b80fdf2d", - "644674a13d52156624001fbc", - "645e0c6b3b381ede770e1cc9", - "651450ce0e00edc794068371", - "676176d362e0497044079f4c" - ], + "value": 1, + "weapon": [], "distance": { "value": 0, "compareMethod": ">=" @@ -84743,7 +79836,9 @@ "enemyEquipmentInclusive": [], "enemyEquipmentExclusive": [], "weaponCaliber": [], - "savageRole": [], + "savageRole": [ + "bossGluhar" + ], "bodyPart": [], "daytime": { "from": 0, @@ -84752,18 +79847,10 @@ "enemyHealthEffects": [], "resetOnSessionEnd": false, "conditionType": "Kills" - }, - { - "id": "64e7bea0220ee966bf425ece", - "dynamicLocale": false, - "zoneIds": [ - "quest_zone_kill_kardinal" - ], - "conditionType": "InZone" } ] }, - "id": "64e7bdd52d369a1c0172722f", + "id": "5d27369586f774457411b264", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -84771,7 +79858,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 30, + "value": 1, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -84780,11 +79867,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "64f8d120b4918f39d363e584", + "id": "5d777eb086f7742fa732bf05", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "64e7b9a4aac4cd0a726562cb", + "target": "608a768d82e40b3c727fd17d", "status": [ 4 ], @@ -84796,196 +79883,75 @@ ], "Fail": [] }, - "description": "64e7b9bffd30422ed03dad38 description", - "failMessageText": "64e7b9bffd30422ed03dad38 failMessageText", - "declinePlayerMessage": "64e7b9bffd30422ed03dad38 declinePlayerMessage", - "name": "64e7b9bffd30422ed03dad38 name", - "note": "64e7b9bffd30422ed03dad38 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/64f8c8297e981f7f0110d501.jpg", - "type": "Elimination", + "description": "5d25e44f86f77443e625e385 description", + "failMessageText": "5d25e44f86f77443e625e385 failMessageText", + "declinePlayerMessage": "5d25e44f86f77443e625e385 declinePlayerMessage", + "name": "5d25e44f86f77443e625e385 name", + "note": "5d25e44f86f77443e625e385 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/5d6947c686f77452ac614b4b.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "64e7b9bffd30422ed03dad38 startedMessageText", - "successMessageText": "64e7b9bffd30422ed03dad38 successMessageText", + "startedMessageText": "5d25e44f86f77443e625e385 startedMessageText", + "successMessageText": "5d25e44f86f77443e625e385 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 25000, - "id": "64e7c47b7636ab2c00676c61", + "value": 18300, + "id": "60cca92aac6eb02bc726de69", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.04, - "id": "64f8c92e05cb58236609a354", + "value": 0.02, + "id": "60cca92e20a6283a506aeb4a", "type": "TraderStanding", "index": 0, - "target": "54cb50c76803fa8b248b4571", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 185000, - "id": "64f8c93b57e97a76237206ae", + "value": 200000, + "id": "5d667d7d86f774131e206b4d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b26fd", + "target": "6812400c0c5cf2cf750759d7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26fd", + "_id": "6812400c0c5cf2cf750759d7", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 185000 + "StackObjectsCount": 200000 } } ] }, { "availableInGameEditions": [], - "value": 16, - "id": "64f8c94633ff7561c876432d", + "value": 5000, + "id": "5da9f5e386f77443dd3e5a8a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b270e", + "target": "6812400c0c5cf2cf750759d9", "unknown": false, - "findInRaid": true, + "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b26ff", - "_tpl": "5d40407c86f774318526545a", + "_id": "6812400c0c5cf2cf750759d9", + "_tpl": "5696686a4bdc2da3298b456a", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2700", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2701", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2702", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2703", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2704", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2705", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2706", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2707", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2708", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2709", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b270a", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b270b", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b270c", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b270d", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b270e", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 5000 } } ] @@ -84993,229 +79959,22 @@ { "availableInGameEditions": [], "value": 1, - "id": "64f8c9507d39ff0e7624cd68", + "id": "5da9f5b886f7741e324ead3c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2719", + "target": "6812400c0c5cf2cf750759db", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2719", - "_tpl": "5c0e625a86f7742d77340f62", + "_id": "6812400c0c5cf2cf750759db", + "_tpl": "59fb023c86f7746d0d4b423c", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b271a", - "_tpl": "65764275d8537eb26a0355e9", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b271b", - "_tpl": "657642b0e6d5dd75f40688a5", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b271c", - "_tpl": "6576434820cc24d17102b148", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b271d", - "_tpl": "657643732bc38ef78e076477", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b271e", - "_tpl": "657643a220cc24d17102b14c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b271f", - "_tpl": "656f63c027aed95beb08f62c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2720", - "_tpl": "656fafe3498d1b7e3e071da4", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b2721", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Left_side_plate" - }, - { - "_id": "68010065f81036801d0b2722", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2719", - "slotId": "Right_side_plate" } ] - }, - { - "availableInGameEditions": [], - "id": "655b73d1c023e22044165de8", - "type": "ProductionScheme", - "index": 0, - "target": "68010065f81036801d0b2725", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2724", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "68010065f81036801d0b2725", - "_tpl": "56dfef82d2720bbd668b4567", - "upd": { - "StackObjectsCount": 60 - } - } - ], - "loyaltyLevel": 3, - "traderId": 10 - }, - { - "availableInGameEditions": [], - "id": "64f8c95cb4918f39d363e340", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2726", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2726", - "_tpl": "6499849fc93611967b034949", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2727", - "_tpl": "649ec107961514b22506b10c", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2728", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2729", - "_tpl": "649ec127c93611967b034957", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b272a", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "68010065f81036801d0b2729", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b272b", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "68010065f81036801d0b272a", - "slotId": "mod_tactical_000" - }, - { - "_id": "68010065f81036801d0b272c", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "68010065f81036801d0b2729", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b272d", - "_tpl": "64c196ad26a15b84aa07132f", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b272e", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b272f", - "_tpl": "609a63b6e2ff132951242d09", - "parentId": "68010065f81036801d0b272e", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2730", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b2731", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "68010065f81036801d0b2730", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2732", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2733", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "68010065f81036801d0b2726", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 4, - "traderId": "54cb50c76803fa8b248b4571" } ], "Fail": [] @@ -85383,12 +80142,12 @@ "id": "5d84db5486f77430da397b76", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2735", + "target": "6812400c0c5cf2cf750759dd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2735", + "_id": "6812400c0c5cf2cf750759dd", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -85402,12 +80161,12 @@ "id": "5ec1a23ab5549c7b5203b5b2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2739", + "target": "6812400c0c5cf2cf750759e1", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2737", + "_id": "6812400c0c5cf2cf750759df", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -85415,7 +80174,7 @@ } }, { - "_id": "68010065f81036801d0b2738", + "_id": "6812400c0c5cf2cf750759e0", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -85423,7 +80182,7 @@ } }, { - "_id": "68010065f81036801d0b2739", + "_id": "6812400c0c5cf2cf750759e1", "_tpl": "590c657e86f77412b013051d", "upd": { "StackObjectsCount": 1, @@ -85438,12 +80197,12 @@ "id": "60ccaa9d65e4664318606b73", "type": "Item", "index": 0, - "target": "68010065f81036801d0b273d", + "target": "6812400c0c5cf2cf750759e5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b273b", + "_id": "6812400c0c5cf2cf750759e3", "_tpl": "5751a89d24597722aa0e8db0", "upd": { "StackObjectsCount": 1, @@ -85451,7 +80210,7 @@ } }, { - "_id": "68010065f81036801d0b273c", + "_id": "6812400c0c5cf2cf750759e4", "_tpl": "5751a89d24597722aa0e8db0", "upd": { "StackObjectsCount": 1, @@ -85459,7 +80218,7 @@ } }, { - "_id": "68010065f81036801d0b273d", + "_id": "6812400c0c5cf2cf750759e5", "_tpl": "5751a89d24597722aa0e8db0", "upd": { "StackObjectsCount": 1, @@ -85482,11 +80241,11 @@ "id": "5d8cbc2a86f77444521784d3", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b273e", + "target": "6812400c0c5cf2cf750759e6", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b273e", + "_id": "6812400c0c5cf2cf750759e6", "_tpl": "5d02797c86f774203f38e30a" } ], @@ -85582,6 +80341,15 @@ "Transit" ], "conditionType": "ExitStatus" + }, + { + "id": "680ba585572aeb956feb728c", + "dynamicLocale": false, + "target": [ + "Sandbox_high", + "Sandbox" + ], + "conditionType": "Location" } ] }, @@ -85598,34 +80366,6 @@ "isNecessary": false, "isResetOnConditionFailed": false }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66aa5c8886ef8a6e70859c02", - "conditions": [ - { - "id": "66aa5d0380e5041975392fd5", - "dynamicLocale": false, - "target": "Check_primorsky", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "66aa5c88c085db7d8158db4a", - "index": 3, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, { "completeInSeconds": 0, "conditionType": "CounterCreator", @@ -85643,7 +80383,7 @@ }, "id": "66b0e57eddc25d8d17e3e3c0", "index": 4, - "parentId": "", + "parentId": "66aa5c8ba8c36eaef492ef92", "oneSessionOnly": true, "dynamicLocale": false, "type": "Completion", @@ -85683,13 +80423,8 @@ "value": 1, "visibilityConditions": [ { - "id": "66c48c4d22c506cf8643dcef", - "target": "66b0e57eddc25d8d17e3e3c0", - "conditionType": "CompleteCondition" - }, - { - "id": "66c48c640a25c2e866f5752a", - "target": "66aa5c88c085db7d8158db4a", + "id": "680ba5294e5d34423b270f6d", + "target": "66aa5be8035c6a410dc570b2", "conditionType": "CompleteCondition" } ], @@ -85757,12 +80492,12 @@ "id": "66b4dfcbf6f89f9abe07491e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2740", + "target": "6812400c0c5cf2cf750759e8", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2740", + "_id": "6812400c0c5cf2cf750759e8", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 900 @@ -85776,12 +80511,12 @@ "id": "66b4dfe9b8f225f73e01984b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2742", + "target": "6812400c0c5cf2cf750759ea", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2742", + "_id": "6812400c0c5cf2cf750759ea", "_tpl": "590c621186f774138d11ea29", "upd": { "StackObjectsCount": 1, @@ -85796,12 +80531,12 @@ "id": "66b4e05a3be206d24c0dfe22", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2744", + "target": "6812400c0c5cf2cf750759ec", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2744", + "_id": "6812400c0c5cf2cf750759ec", "_tpl": "590c37d286f77443be3d7827", "upd": { "StackObjectsCount": 1, @@ -85816,12 +80551,12 @@ "id": "66b4e06382fe17cf19023a61", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2746", + "target": "6812400c0c5cf2cf750759ee", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2746", + "_id": "6812400c0c5cf2cf750759ee", "_tpl": "590c392f86f77444754deb29", "upd": { "StackObjectsCount": 1, @@ -85961,12 +80696,12 @@ "id": "5d667b7686f774368d281aab", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2748", + "target": "6812400c0c5cf2cf750759f0", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2748", + "_id": "6812400c0c5cf2cf750759f0", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 80000 @@ -85980,12 +80715,12 @@ "id": "60cca79cb2736c24b2118ba5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b274c", + "target": "6812400c0c5cf2cf750759f4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b274a", + "_id": "6812400c0c5cf2cf750759f2", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -85993,7 +80728,7 @@ } }, { - "_id": "68010065f81036801d0b274b", + "_id": "6812400c0c5cf2cf750759f3", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -86001,7 +80736,7 @@ } }, { - "_id": "68010065f81036801d0b274c", + "_id": "6812400c0c5cf2cf750759f4", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -86016,12 +80751,12 @@ "id": "60cca77820a6283a506aeb49", "type": "Item", "index": 0, - "target": "68010065f81036801d0b274f", + "target": "6812400c0c5cf2cf750759f7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b274e", + "_id": "6812400c0c5cf2cf750759f6", "_tpl": "59fafb5d86f774067a6f2084", "upd": { "StackObjectsCount": 1, @@ -86029,7 +80764,7 @@ } }, { - "_id": "68010065f81036801d0b274f", + "_id": "6812400c0c5cf2cf750759f7", "_tpl": "59fafb5d86f774067a6f2084", "upd": { "StackObjectsCount": 1, @@ -86044,12 +80779,12 @@ "id": "60cca785f81cc57f471718aa", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2751", + "target": "6812400c0c5cf2cf750759f9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2751", + "_id": "6812400c0c5cf2cf750759f9", "_tpl": "590c5c9f86f77477c91c36e7", "upd": { "StackObjectsCount": 1, @@ -86069,132 +80804,104 @@ "arenaLocations": [], "status": 0 }, - "665eec4a4dfc83b0ed0a9dca": { - "QuestName": "Thirsty - Delivery", - "_id": "665eec4a4dfc83b0ed0a9dca", + "5d25c81b86f77443e625dd71": { + "QuestName": "The Survivalist Path - Wounded Beast", + "_id": "5d25c81b86f77443e625dd71", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "665eec4a4dfc83b0ed0a9dca acceptPlayerMessage", - "changeQuestMessageText": "665eec4a4dfc83b0ed0a9dca changeQuestMessageText", - "completePlayerMessage": "665eec4a4dfc83b0ed0a9dca completePlayerMessage", + "acceptPlayerMessage": "5d25c81b86f77443e625dd71 acceptPlayerMessage", + "changeQuestMessageText": "5d25c81b86f77443e625dd71 changeQuestMessageText", + "completePlayerMessage": "5d25c81b86f77443e625dd71 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "6661a145ba58791a4cdfdd4f", + "id": "5d25c8c986f77443e47ad479", "conditions": [ { - "id": "6661a1555a8799639e1e7573", + "id": "5d25c8ed86f7740a21220d15", "dynamicLocale": false, - "target": "place_2A2_unlock_3_woods", + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Head", + "Chest", + "Stomach", + "LeftArm", + "RightArm", + "LeftLeg", + "RightLeg" + ], + "effects": [ + "Pain" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 0, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + }, + { + "id": "5d25c91186f77443e625dd72", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", "value": 1, - "conditionType": "VisitPlace" + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" } ] }, - "id": "6661a14545909ae2e92ca2d5", + "id": "5d25c8c986f77443e47ad47a", "index": 0, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 3, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6661a170945719c63f28d9c6", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_2A2_unlock_3_woods", - "target": [ - "59fafb5d86f774067a6f2084" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6661a174c228eebe7e420494", - "target": "6661a14545909ae2e92ca2d5", - "conditionType": "CompleteCondition" - } - ] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6661a18a941c96280465a8c7", - "conditions": [ - { - "id": "6661a1952b26769022fa1881", - "dynamicLocale": false, - "target": "place_2A2_unlock_3_customs", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6661a18a12e8457716d59f5d", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6661a1a1b1953d6c96da8f0e", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_2A2_unlock_3_customs", - "target": [ - "59fafb5d86f774067a6f2084" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6661a1aaecee3dda99b9b9d5", - "target": "6661a18a12e8457716d59f5d", - "conditionType": "CompleteCondition" - } - ] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "66742a14307c58a7f5c1f363", + "id": "5d7630e286f774452173421a", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "665eec1f5e47a79f8605565a", + "target": "5d25bfd086f77442734d3007", "status": [ 4 ], @@ -86206,44 +80913,851 @@ ], "Fail": [] }, - "description": "665eec4a4dfc83b0ed0a9dca description", - "failMessageText": "665eec4a4dfc83b0ed0a9dca failMessageText", - "declinePlayerMessage": "665eec4a4dfc83b0ed0a9dca declinePlayerMessage", - "name": "665eec4a4dfc83b0ed0a9dca name", - "note": "665eec4a4dfc83b0ed0a9dca note", - "traderId": "58330581ace78e27b8b10cee", + "description": "5d25c81b86f77443e625dd71 description", + "failMessageText": "5d25c81b86f77443e625dd71 failMessageText", + "declinePlayerMessage": "5d25c81b86f77443e625dd71 declinePlayerMessage", + "name": "5d25c81b86f77443e625dd71 name", + "note": "5d25c81b86f77443e625dd71 note", + "traderId": "5c0647fdd443bc2504c2d371", "location": "any", - "image": "/files/quest/icon/66697ba352260cae8d0b035a.png", + "image": "/files/quest/icon/5d67b41686f774368e1b78df.jpg", "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "665eec4a4dfc83b0ed0a9dca startedMessageText", - "successMessageText": "665eec4a4dfc83b0ed0a9dca successMessageText", + "startedMessageText": "5d25c81b86f77443e625dd71 startedMessageText", + "successMessageText": "5d25c81b86f77443e625dd71 successMessageText", "rewards": { - "Started": [ + "Started": [], + "Success": [ { "availableInGameEditions": [], - "value": 2, - "id": "6671dde4fb3e3e541b06b35f", + "value": 5800, + "id": "60cca0195f9e6175514de2cf", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca057826ca0323464bd16", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 65000, + "id": "5daef03f86f77426fa0a54f8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2754", + "target": "6812400c0c5cf2cf750759fb", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750759fb", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 65000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "60cca03d826ca0323464bd15", + "type": "Skill", + "index": 0, + "target": "StressResistance", + "unknown": false + }, + { + "availableInGameEditions": [], + "id": "63a1a0a8423c8970de41981b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750759fc", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750759fc", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf750759fd", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf750759fe", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf750759ff", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075a00", + "_tpl": "6259c3387d6aab70bc23a18d", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075a01", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "6812400c0c5cf2cf75075a00", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075a02", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf75075a03", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075a04", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "6812400c0c5cf2cf750759fc", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "676497c3105230ddf0a278a1", + "type": "CustomizationDirect", + "index": 0, + "target": "67585bf5428877c04c038ee3", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "64f83bb69878a0569d6ecfbe": { + "QuestName": "Gunsmith - Part 23", + "_id": "64f83bb69878a0569d6ecfbe", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "64f83bb69878a0569d6ecfbe acceptPlayerMessage", + "changeQuestMessageText": "64f83bb69878a0569d6ecfbe changeQuestMessageText", + "completePlayerMessage": "64f83bb69878a0569d6ecfbe completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "64f83d0eed30ed471f49bcde", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "606587252535c57a13424cfd" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 300.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 30.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 73, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 350.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "5d00ef6dd7ad1a0940739b16", + "59f9d81586f7744c7506ee62", + "5a800961159bd4315e3a1657" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "64f8d063c8626c7d46040667", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b47825886f77468074618d3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 7200, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "64f83bb69878a0569d6ecfbe description", + "failMessageText": "64f83bb69878a0569d6ecfbe failMessageText", + "declinePlayerMessage": "64f83bb69878a0569d6ecfbe declinePlayerMessage", + "name": "64f83bb69878a0569d6ecfbe name", + "note": "64f83bb69878a0569d6ecfbe note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/64f8b5fb7d39ff0e7624c6b4.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "64f83bb69878a0569d6ecfbe startedMessageText", + "successMessageText": "64f83bb69878a0569d6ecfbe successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 29500, + "id": "64f83d5f8b634877512e5190", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "64f8d03ab4918f39d363e4c4", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1300, + "id": "64f8d03133ff7561c87644b2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a06", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a06", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1300 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "64f8d04605cb58236609a655", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a08", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2753", - "_tpl": "59fafb5d86f774067a6f2084", + "_id": "6812400c0c5cf2cf75075a08", + "_tpl": "6478641c19d732620e045e17", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "64f8d04c7d39ff0e7624ceec", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075a09", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a09", + "_tpl": "6065878ac9cf8012264142fd" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "657315df034d76585f032e01": { + "QuestName": "Shooting Cans", + "_id": "657315df034d76585f032e01", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "657315df034d76585f032e01 acceptPlayerMessage", + "changeQuestMessageText": "657315df034d76585f032e01 changeQuestMessageText", + "completePlayerMessage": "657315df034d76585f032e01 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "657333fe247c40c82ab04f1a", + "conditions": [ + { + "id": "657334169f70b2e2aa1c5665", + "dynamicLocale": false, + "target": "Sandbox_2_Kord_exploration", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "657333fee3fbaa77d3b5cd7c", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6573340474f64d235ac33a6c", + "conditions": [ + { + "id": "65733423346b6b48d922a898", + "dynamicLocale": false, + "target": "Sandbox_2_AGS_exploration", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6573340403f471fb2bb12df1", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6573343184c6c54b433bcabb", + "conditions": [ + { + "id": "6573344703c2ad825170329c", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "658583dfb8bfa5ddc9742422", + "dynamicLocale": false, + "target": [ + "Sandbox", + "Sandbox_high" + ], + "conditionType": "Location" + } + ] + }, + "id": "657334311dbb8b7569bb83c4", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [], + "Fail": [] + }, + "description": "657315df034d76585f032e01 description", + "failMessageText": "657315df034d76585f032e01 failMessageText", + "declinePlayerMessage": "657315df034d76585f032e01 declinePlayerMessage", + "name": "657315df034d76585f032e01 name", + "note": "657315df034d76585f032e01 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "653e6760052c01c1c805532f", + "image": "/files/quest/icon/65899d03adeac0191c51e880.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "657315df034d76585f032e01 startedMessageText", + "successMessageText": "657315df034d76585f032e01 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 1600, + "id": "65846d662fd55f252109dbc7", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "65846d739622c723546f3d36", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 13000, + "id": "65846d82cffa037bb167528f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a0b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a0b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 13000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658589954c2098671b4a175c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a0c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a0c", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075a0d", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "6812400c0c5cf2cf75075a0c", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075a0e", + "_tpl": "5bfd35380db83400232fe5cc", + "parentId": "6812400c0c5cf2cf75075a0c", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075a0f", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "6812400c0c5cf2cf75075a0c", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075a10", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "6812400c0c5cf2cf75075a0f", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075a11", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "6812400c0c5cf2cf75075a0f", + "slotId": "mod_sight_rear" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "65846da91e25c52cb72f8081", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a18", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a14", + "_tpl": "64aceac0c4eda9354b0226b3", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2754", - "_tpl": "59fafb5d86f774067a6f2084", + "_id": "6812400c0c5cf2cf75075a15", + "_tpl": "64b8f7968532cf95ee0a0dbf", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075a14", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075a16", + "_tpl": "64aceac0c4eda9354b0226b3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a17", + "_tpl": "64b8f7968532cf95ee0a0dbf", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075a16", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075a18", + "_tpl": "64aceac0c4eda9354b0226b3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a19", + "_tpl": "64b8f7968532cf95ee0a0dbf", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075a18", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6578ec473dbd035d04531a8d": { + "QuestName": "Steady Signal", + "_id": "6578ec473dbd035d04531a8d", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6578ec473dbd035d04531a8d acceptPlayerMessage", + "changeQuestMessageText": "6578ec473dbd035d04531a8d changeQuestMessageText", + "completePlayerMessage": "6578ec473dbd035d04531a8d completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "6578ec473dbd035d04531a92", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "q14_8_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6578ec473dbd035d04531a93", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "q14_8_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6578ec473dbd035d04531a94", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "q14_8_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6578ed62da32cab3f79bb022", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "q14_8_4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6578ed7792685671c65edf07", + "index": 4, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "q14_8_5", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "65840c03bf1e0d11589e6fd5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac346e886f7741d6118b99b", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6578ec473dbd035d04531a8d description", + "failMessageText": "6578ec473dbd035d04531a8d failMessageText", + "declinePlayerMessage": "6578ec473dbd035d04531a8d declinePlayerMessage", + "name": "6578ec473dbd035d04531a8d name", + "note": "6578ec473dbd035d04531a8d note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/6589928750a60f28611a6eeb.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6578ec473dbd035d04531a8d startedMessageText", + "successMessageText": "6578ec473dbd035d04531a8d successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 14000, + "id": "6578ec473dbd035d04531a9a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6578ec473dbd035d04531a9b", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 48000, + "id": "6584163966dec32da313260c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a1b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a1b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 48000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658416540e40596ad2175e18", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a1d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a1d", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6584165f0e150f7cea1cca59", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a1f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a1f", + "_tpl": "5d0376a486f7747d8050965c", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -86252,11 +81766,252 @@ ] } ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314a1920800278d0f6746": { + "QuestName": "Special Offer", + "_id": "666314a1920800278d0f6746", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314a1920800278d0f6746 acceptPlayerMessage", + "changeQuestMessageText": "666314a1920800278d0f6746 changeQuestMessageText", + "completePlayerMessage": "666314a1920800278d0f6746 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666976536518781b9feb2f28", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e997f0b86f7741ac73993e2" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6669766290442b8d8e0688b3", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e997f0b86f7741ac73993e2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6669769ff0cb253ff7649f27", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "609e860ebd219504d8507525" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666976ab1a6ef5fa7b813883", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "609e860ebd219504d8507525" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66697774640ec1284ed1621f", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628baf0b967de16aab5a4f36" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666977849154974010adb5ec", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628baf0b967de16aab5a4f36" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666977bfe975ac480a8f914e", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628bc7fb408e2b2e9c0801b1" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666977ca5fa54985173f8e2c", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628bc7fb408e2b2e9c0801b1" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666977f2dd6e511e9f33005a", + "index": 10, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628b9c7d45122232a872358f" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666978023255d2720cbdf76d", + "index": 11, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "628b9c7d45122232a872358f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66697426f43097de977dedcc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6663149f1d3ec95634095e75", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314a1920800278d0f6746 description", + "failMessageText": "666314a1920800278d0f6746 failMessageText", + "declinePlayerMessage": "666314a1920800278d0f6746 declinePlayerMessage", + "name": "666314a1920800278d0f6746 name", + "note": "666314a1920800278d0f6746 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314a1920800278d0f6746 startedMessageText", + "successMessageText": "666314a1920800278d0f6746 successMessageText", + "rewards": { + "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 14200, - "id": "6660630b5e47a79f86055662", + "value": 85500, + "id": "66743b5301b5600773078b53", "type": "Experience", "index": 0, "unknown": false @@ -86264,27 +82019,525 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "6660631a2f7aedcc900b0442", + "id": "66743b5b58678c865f0f029a", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "5ac3b934156ae10c4430e83c", "unknown": false }, { "availableInGameEditions": [], - "value": 55000, - "id": "666063622f7aedcc900b0444", + "value": 328000, + "id": "66743b707b0373b49700c519", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2756", + "target": "6812400c0c5cf2cf75075a21", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2756", + "_id": "6812400c0c5cf2cf75075a21", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 55000 + "StackObjectsCount": 328000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66743b8658678c865f0f029d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a24", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a23", + "_tpl": "5f60cd6cf2bcbb675b00dac6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a24", + "_tpl": "5f60cd6cf2bcbb675b00dac6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66743ba07b0373b49700c51c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a2b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a28", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a29", + "_tpl": "657f9a55c6679fefb3051e19", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a28", + "slotId": "Helmet_top" + }, + { + "_id": "6812400c0c5cf2cf75075a2a", + "_tpl": "657f9a94ada5fadd1f07a589", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a28", + "slotId": "Helmet_back" + }, + { + "_id": "6812400c0c5cf2cf75075a2b", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a2c", + "_tpl": "657f9a55c6679fefb3051e19", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a2b", + "slotId": "Helmet_top" + }, + { + "_id": "6812400c0c5cf2cf75075a2d", + "_tpl": "657f9a94ada5fadd1f07a589", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a2b", + "slotId": "Helmet_back" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6663149f1d3ec95634095e75": { + "QuestName": "Circulate", + "_id": "6663149f1d3ec95634095e75", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6663149f1d3ec95634095e75 acceptPlayerMessage", + "changeQuestMessageText": "6663149f1d3ec95634095e75 changeQuestMessageText", + "completePlayerMessage": "6663149f1d3ec95634095e75 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "SellItemToTrader", + "dogtagLevel": 0, + "id": "666973ee1d80fbbbfeaf46c9", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5df8a4d786f77412672a1e3b", + "5ab8f04f86f774585f4237d8", + "59e763f286f7742ee57895da", + "61b9e1aaef9a1b5d6a79899a", + "5e997f0b86f7741ac73993e2", + "5ab8ebf186f7742d8b372e80", + "5ab8ee7786f7742d8f33f0b9", + "56e335e4d2720b6c058b456d", + "545cdae64bdc2d39198b4568", + "56e294cdd2720b603a8b4575", + "56e33634d2720bd8058b456b", + "6038d614d10cbf667352dd44", + "5b44c6ae86f7742d1627baea", + "5c0e774286f77468413cc5b2", + "628bc7fb408e2b2e9c0801b1", + "5e9dcf5986f7746c417435b3", + "656f198fb27298d6fd005466", + "60a272cc93ef783291411d8e", + "5f5e46b96bdad616ad46d613", + "5f5e467b0bc58666c37e7821", + "6034d2d697633951dc245ea6", + "628e1ffc83ec92260c0f437f", + "62a1b7fbc30cfa1d366af586", + "618bb76513f5097c8d5aa2d5", + "619cf0335771dd3c390269ae", + "618cfae774bb2d036a049e7c", + "5d5d940f86f7742797262046", + "5e4abc6786f77406812bd572", + "656e0436d44a1bb4220303a0", + "5c0e805e86f774683f3dd637", + "60a2828e8689911a226117f9", + "5f5e45cc5021ce62144be7aa", + "6034d103ca006d2dca39b3f0", + "656ddcf0f02d7bcea90bf395", + "639346cc1c8f182ad90c8972", + "5ca20d5986f774331e7c9602", + "544a5cde4bdc2d39388b456b", + "56e33680d2720be2748b4576", + "592c2d1a86f7746dbe2af32a", + "5ab8dced86f774646209ec87", + "5648a69d4bdc2ded0b8b457b", + "5929a2a086f7744f4b234d43", + "5d5d646386f7742797261fd9", + "5d5d87f786f77427997cfaef", + "5e4ac41886f77406a511c9a8", + "5c0e446786f7742013381639", + "5c0e3eb886f7742015526062", + "64a5366719bab53bd203bf33", + "603648ff5a45383c122086ac", + "6040dd4ddcf9592f401632d2", + "628dc750b910320f4c27a732", + "628d0618d1ba6e4fa07ce5a4", + "5e4abc1f86f774069619fbaa", + "5e9db13186f7742f845ee9d3", + "5c0e6a1586f77404597b4965", + "628b9784bcf6e2659e09b8a2", + "628baf0b967de16aab5a4f36", + "628b9c7d45122232a872358f", + "63611865ba5b90db0c0399d1", + "5fd4c60f875c30179f5d04c2", + "5b44cad286f77402a54ae7e5", + "64be7110bf597ba84a0a41ea", + "5b44c8ea86f7742d1627baf1", + "5c0e9f2c86f77432297fe0a3", + "6034d0230ca681766b6a0fb5", + "5fd4c5477a8d854fa0105061", + "60a3c70cde5f453f634816a3", + "60a3c68c37ea821725773ef5", + "5d5d85c586f774279a21cbdb", + "5fd4c4fa16cac650092f6771", + "5c0e722886f7740458316a57", + "5d5d8ca986f7742798716522", + "61bc85697113f767765c7fe7", + "5df8a42886f77412640e2e75", + "64be7095047e826eae02b0c1", + "639343fce101f4caa40a4ef3", + "60a621c49c197e4e8c4455e6", + "60a6220e953894617404b00a", + "61bcc89aef0f505f0c6cd0fc", + "609e860ebd219504d8507525", + "5e4abfed86f77406a2713cf7", + "5f5f41f56760b4138443b352", + "5ca20abf86f77418567a43f2", + "628cd624459354321c4b7fa2", + "5c0e746986f7741453628fe5", + "64a536392d2c4e6e970f4121", + "6034cf5fffd42c541047f72e", + "544a5caa4bdc2d1a388b4568", + "5ab8dab586f77441cd04f2a2", + "59e7643b86f7742cbf2c109a", + "572b7adb24597762ae139821", + "674da107c512807d1a0e7436", + "674da9cf0cb4bcde7103c07b", + "66b5f247af44ca0014063c02", + "674589d98dd67746010329e6" + ], + "globalQuestCounterId": "", + "value": 250, + "visibilityConditions": [], + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "666973b4e9099946b1619bb0", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6663149cfd5ca9577902e037", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6663149f1d3ec95634095e75 description", + "failMessageText": "6663149f1d3ec95634095e75 failMessageText", + "declinePlayerMessage": "6663149f1d3ec95634095e75 declinePlayerMessage", + "name": "6663149f1d3ec95634095e75 name", + "note": "6663149f1d3ec95634095e75 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/6682a796c579ad50ad0fcc5d.png", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6663149f1d3ec95634095e75 startedMessageText", + "successMessageText": "6663149f1d3ec95634095e75 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 32000, + "id": "66743ac445cb67bd65077b35", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "66743ad0bd1574a8b90712be", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 264000, + "id": "66743ae6c4714a7a6e0d9c8a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a2f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a2f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 264000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66743af1dceb304bf30b1ff9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a32", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a31", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a32", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "665eeca45d86b6c8aa03c79d": { + "QuestName": "Thirsty - Echo", + "_id": "665eeca45d86b6c8aa03c79d", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "665eeca45d86b6c8aa03c79d acceptPlayerMessage", + "changeQuestMessageText": "665eeca45d86b6c8aa03c79d changeQuestMessageText", + "completePlayerMessage": "665eeca45d86b6c8aa03c79d completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6660785f3dead1a987ce15a7", + "conditions": [ + { + "id": "6660787cdf41494f3b16f2c8", + "dynamicLocale": false, + "target": "2A2_unlock_4_discover", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6660785fc37356435d193ae4", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66607896f2ea02201517c203", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "666073159916667083033cb9" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6660789e6740b366e23e6068", + "target": "6660785fc37356435d193ae4", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666078bee6ed30ab2294f593", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "666073159916667083033cb9" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "666078c19bf83ccdcbd55a82", + "target": "66607896f2ea02201517c203", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66742a819857ebae1a6df739", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "665eec4a4dfc83b0ed0a9dca", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "665eeca45d86b6c8aa03c79d description", + "failMessageText": "665eeca45d86b6c8aa03c79d failMessageText", + "declinePlayerMessage": "665eeca45d86b6c8aa03c79d declinePlayerMessage", + "name": "665eeca45d86b6c8aa03c79d name", + "note": "665eeca45d86b6c8aa03c79d note", + "traderId": "54cb57776803fa99248b456e", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/66697ba8134bc4a35c0017fd.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "665eeca45d86b6c8aa03c79d startedMessageText", + "successMessageText": "665eeca45d86b6c8aa03c79d successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 11200, + "id": "66606ec7334d53707303f8d8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "66606f012f7aedcc900b0448", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 185000, + "id": "66606f7e334d53707303f8da", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a34", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a34", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 185000 } } ] @@ -86292,46 +82545,941 @@ { "availableInGameEditions": [], "value": 4, - "id": "6660632f5e47a79f86055663", + "id": "66606f47334d53707303f8d9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b275b", + "target": "6812400c0c5cf2cf75075a39", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2758", - "_tpl": "57505f6224597709a92585a9", + "_id": "6812400c0c5cf2cf75075a36", + "_tpl": "5c0fa877d174af02a012e1cf", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2759", - "_tpl": "57505f6224597709a92585a9", + "_id": "6812400c0c5cf2cf75075a37", + "_tpl": "5c0fa877d174af02a012e1cf", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b275a", - "_tpl": "57505f6224597709a92585a9", + "_id": "6812400c0c5cf2cf75075a38", + "_tpl": "5c0fa877d174af02a012e1cf", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b275b", - "_tpl": "57505f6224597709a92585a9", + "_id": "6812400c0c5cf2cf75075a39", + "_tpl": "5c0fa877d174af02a012e1cf", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66606f552f7aedcc900b0449", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a3c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a3b", + "_tpl": "5ed51652f6c34d2cc26336a1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a3c", + "_tpl": "5ed51652f6c34d2cc26336a1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "665eeacf5d86b6c8aa03c79b": { + "QuestName": "Thirsty - Hounds", + "_id": "665eeacf5d86b6c8aa03c79b", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "665eeacf5d86b6c8aa03c79b acceptPlayerMessage", + "changeQuestMessageText": "665eeacf5d86b6c8aa03c79b changeQuestMessageText", + "completePlayerMessage": "665eeacf5d86b6c8aa03c79b completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "665eed28bc0516aecef437a2", + "conditions": [ + { + "id": "665eed628588a85efd33c119", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 22, + "to": 7 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "668e9a829b3cb1e28c4a7070", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "665eed28bdbf7b1f92394ecb", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66742bff616e79cdaaca611a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "63a88045abf76d719f42d715", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "66742c07d8109e7d214a56a1", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "665eeacf5d86b6c8aa03c79b description", + "failMessageText": "665eeacf5d86b6c8aa03c79b failMessageText", + "declinePlayerMessage": "665eeacf5d86b6c8aa03c79b declinePlayerMessage", + "name": "665eeacf5d86b6c8aa03c79b name", + "note": "665eeacf5d86b6c8aa03c79b note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/66697b99134bc4a35c0017fb.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "665eeacf5d86b6c8aa03c79b startedMessageText", + "successMessageText": "665eeacf5d86b6c8aa03c79b successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8500, + "id": "665eee022f7aedcc900b043b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "665eee134dfc83b0ed0a9dcd", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "665eee422f7aedcc900b043c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a43", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a3f", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a40", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075a3f", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075a41", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a42", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075a41", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075a43", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a44", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075a43", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66aa74571e5e199ecd094f18": { + "QuestName": "Secrets of Polikhim", + "_id": "66aa74571e5e199ecd094f18", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66aa74571e5e199ecd094f18 acceptPlayerMessage", + "changeQuestMessageText": "66aa74571e5e199ecd094f18 changeQuestMessageText", + "completePlayerMessage": "66aa74571e5e199ecd094f18 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66ab97a5c74ce045d6c32578", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66b22630a6b4e5ec7c02cdb7" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66aa74571e5e199ecd094f1d", + "conditions": [ + { + "id": "66aa5c2c2ba4b7b5dedbb17d", + "dynamicLocale": false, + "status": [ + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "66ab977e59878c8c51f5802a", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "66aa74571e5e199ecd094f1b", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66aa74571e5e199ecd094f20", + "conditions": [ + { + "id": "66aa649b55c319273e2024b9", + "dynamicLocale": false, + "target": [ + "factory4_night", + "factory4_day" + ], + "conditionType": "Location" + }, + { + "id": "66aa64a4fe6918271e244ebb", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "66aa74571e5e199ecd094f1e", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66ab97d56cb6e3bfd7c79fbc", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "Place_accurate_tools", + "target": [ + "66b22630a6b4e5ec7c02cdb7" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66b3509b1caa85f89713a2b1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa3a1c26f13bd04030f37", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "66aa74571e5e199ecd094f18 description", + "failMessageText": "66aa74571e5e199ecd094f18 failMessageText", + "declinePlayerMessage": "66aa74571e5e199ecd094f18 declinePlayerMessage", + "name": "66aa74571e5e199ecd094f18 name", + "note": "66aa74571e5e199ecd094f18 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "marathon", + "image": "/files/quest/icon/5979d36d86f7746d093ddd7a.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66aa74571e5e199ecd094f18 startedMessageText", + "successMessageText": "66aa74571e5e199ecd094f18 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 19400, + "id": "66b4e0fc0fab9765d1089f53", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "66b4e111d697bf761606285f", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 72000, + "id": "66b4e1267d633c785b02605e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a46", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a46", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 72000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66b4e13582fe17cf19023a63", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a49", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a48", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a49", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66b4e14056c691c729067924", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a4c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a4b", + "_tpl": "57347c2e24597744902c94a1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a4c", + "_tpl": "57347c2e24597744902c94a1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66b4e14d204c6261cd0856f1", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a50", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a4e", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a4f", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a50", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "65734c186dc1e402c80dc19e": { + "QuestName": "Dandies", + "_id": "65734c186dc1e402c80dc19e", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "65734c186dc1e402c80dc19e acceptPlayerMessage", + "changeQuestMessageText": "65734c186dc1e402c80dc19e changeQuestMessageText", + "completePlayerMessage": "65734c186dc1e402c80dc19e completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65734c186dc1e402c80dc1a3", + "conditions": [ + { + "id": "5979e7fe86f774311955e613", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "6576fdb75edfd11560169433", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "60bf74184a63fc79b60c57f6" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + }, + { + "id": "65771f8aced66ca8714c28fe", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5aa2b9aee5b5b00015693121" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + }, + { + "id": "65771fa5cdb6fa1d87ce0a35", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + } + ] + }, + "id": "65734c186dc1e402c80dc1a2", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 30, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "657356c410becd24bc776f55", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "quest_zone_hide_barber1", + "target": [ + "60bf74184a63fc79b60c57f6" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "658166f012763d4b9491e9b8", + "target": "65734c186dc1e402c80dc1a2", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "657356d0a95a1e7e1a8d8d99", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "quest_zone_hide_barber2", + "target": [ + "5aa2b9aee5b5b00015693121" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "658166f9aea170a561e6c7c9", + "target": "65734c186dc1e402c80dc1a2", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "65840730978b613065325ea1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639135a7e705511c8a4a1b78", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "65840733cfb06960fe6dc9c3", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 33, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "65734c186dc1e402c80dc19e description", + "failMessageText": "65734c186dc1e402c80dc19e failMessageText", + "declinePlayerMessage": "65734c186dc1e402c80dc19e declinePlayerMessage", + "name": "65734c186dc1e402c80dc19e name", + "note": "65734c186dc1e402c80dc19e note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/65899d5fb3613b5b1c66f4c4.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "65734c186dc1e402c80dc19e startedMessageText", + "successMessageText": "65734c186dc1e402c80dc19e successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 33000, + "id": "65734c186dc1e402c80dc1a4", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "65841414606b8d720b4b8f83", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 350000, + "id": "6584142e2c10f75d2c5a2f28", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a52", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a52", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 350000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658414460e40596ad2175a4c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a5d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a5d", + "_tpl": "5ca2151486f774244a3b8d30", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a5e", + "_tpl": "6575dd3e9e27f4a85e081142", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075a5f", + "_tpl": "6575dd519e27f4a85e081146", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075a60", + "_tpl": "6575dd64945bf78edd04c438", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075a61", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075a62", + "_tpl": "6575dd769d3a0ddf660b904b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf75075a63", + "_tpl": "6575dd800546f8b1de093df6", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf75075a64", + "_tpl": "6575dd94945bf78edd04c43c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Groin_back" + }, + { + "_id": "6812400c0c5cf2cf75075a65", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075a66", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075a5d", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "676493252a2479246ffd907b", + "type": "CustomizationDirect", + "index": 0, + "target": "675467aa81067119a10938cb", + "unknown": false } ], "Fail": [] @@ -86562,12 +83710,12 @@ "id": "5d667ee286f7744a2e70f04a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b275d", + "target": "6812400c0c5cf2cf75075a68", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b275d", + "_id": "6812400c0c5cf2cf75075a68", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -86581,12 +83729,12 @@ "id": "60ccaae365e4664318606b74", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2763", + "target": "6812400c0c5cf2cf75075a6e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b275f", + "_id": "6812400c0c5cf2cf75075a6a", "_tpl": "5751487e245977207e26a315", "upd": { "StackObjectsCount": 1, @@ -86594,7 +83742,7 @@ } }, { - "_id": "68010065f81036801d0b2760", + "_id": "6812400c0c5cf2cf75075a6b", "_tpl": "5751487e245977207e26a315", "upd": { "StackObjectsCount": 1, @@ -86602,7 +83750,7 @@ } }, { - "_id": "68010065f81036801d0b2761", + "_id": "6812400c0c5cf2cf75075a6c", "_tpl": "5751487e245977207e26a315", "upd": { "StackObjectsCount": 1, @@ -86610,7 +83758,7 @@ } }, { - "_id": "68010065f81036801d0b2762", + "_id": "6812400c0c5cf2cf75075a6d", "_tpl": "5751487e245977207e26a315", "upd": { "StackObjectsCount": 1, @@ -86618,7 +83766,7 @@ } }, { - "_id": "68010065f81036801d0b2763", + "_id": "6812400c0c5cf2cf75075a6e", "_tpl": "5751487e245977207e26a315", "upd": { "StackObjectsCount": 1, @@ -86633,12 +83781,12 @@ "id": "60ccaaf5646f74055e27653f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2769", + "target": "6812400c0c5cf2cf75075a74", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2765", + "_id": "6812400c0c5cf2cf75075a70", "_tpl": "575146b724597720a27126d5", "upd": { "StackObjectsCount": 1, @@ -86646,7 +83794,7 @@ } }, { - "_id": "68010065f81036801d0b2766", + "_id": "6812400c0c5cf2cf75075a71", "_tpl": "575146b724597720a27126d5", "upd": { "StackObjectsCount": 1, @@ -86654,7 +83802,7 @@ } }, { - "_id": "68010065f81036801d0b2767", + "_id": "6812400c0c5cf2cf75075a72", "_tpl": "575146b724597720a27126d5", "upd": { "StackObjectsCount": 1, @@ -86662,7 +83810,7 @@ } }, { - "_id": "68010065f81036801d0b2768", + "_id": "6812400c0c5cf2cf75075a73", "_tpl": "575146b724597720a27126d5", "upd": { "StackObjectsCount": 1, @@ -86670,7 +83818,7 @@ } }, { - "_id": "68010065f81036801d0b2769", + "_id": "6812400c0c5cf2cf75075a74", "_tpl": "575146b724597720a27126d5", "upd": { "StackObjectsCount": 1, @@ -86690,522 +83838,23 @@ "arenaLocations": [], "status": 0 }, - "5d25bfd086f77442734d3007": { - "QuestName": "The Survivalist Path - Zhivchik", - "_id": "5d25bfd086f77442734d3007", + "5d25e44386f77409453bce7b": { + "QuestName": "The Huntsman Path - Evil Watchman", + "_id": "5d25e44386f77409453bce7b", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25bfd086f77442734d3007 acceptPlayerMessage", - "changeQuestMessageText": "5d25bfd086f77442734d3007 changeQuestMessageText", - "completePlayerMessage": "5d25bfd086f77442734d3007 completePlayerMessage", + "acceptPlayerMessage": "5d25e44386f77409453bce7b acceptPlayerMessage", + "changeQuestMessageText": "5d25e44386f77409453bce7b changeQuestMessageText", + "completePlayerMessage": "5d25e44386f77409453bce7b completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5d25c5a186f77443fe457660", + "id": "5d2733c586f7741dea4f3071", "conditions": [ { - "id": "5d25c5d086f77408251c4224", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Stomach" - ], - "effects": [ - "Dehydration" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 300, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - }, - { - "id": "629f119690948017ee17c2e2", - "dynamicLocale": false, - "target": [ - "laboratory", - "bigmap", - "Sandbox", - "RezervBase", - "Interchange", - "Shoreline", - "Woods", - "TarkovStreets", - "Lighthouse" - ], - "conditionType": "Location" - } - ] - }, - "id": "5d25c5a186f77443fe457661", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Experience", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d9f035086f7741cac4a9712", - "conditions": [ - { - "id": "5d9f035a86f7741cab6b0182", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "5d9f035086f7741cac4a9713", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5d9f036886f7741cac4a9714", - "target": "5d25c5a186f77443fe457661", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5dadc99686f7744b0f1b1d2a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25b6be86f77444001e1b89", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25bfd086f77442734d3007 description", - "failMessageText": "5d25bfd086f77442734d3007 failMessageText", - "declinePlayerMessage": "5d25bfd086f77442734d3007 declinePlayerMessage", - "name": "5d25bfd086f77442734d3007 name", - "note": "5d25bfd086f77442734d3007 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d67b3ed86f7744a2e70f15c.jpg", - "type": "Experience", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25bfd086f77442734d3007 startedMessageText", - "successMessageText": "5d25bfd086f77442734d3007 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5700, - "id": "60cc9fda98b492706036460b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc9fdf646f74055e276536", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "5d6654a886f77427135f3a13", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b276b", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b276b", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5d6654db86f77472690db3c3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b276e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b276d", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b276e", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ebfc121a1032866196c9386", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2771", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2770", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2771", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "66631489acf8442f8b05319f": { - "QuestName": "Friend Among Strangers", - "_id": "66631489acf8442f8b05319f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66631489acf8442f8b05319f acceptPlayerMessage", - "changeQuestMessageText": "66631489acf8442f8b05319f changeQuestMessageText", - "completePlayerMessage": "66631489acf8442f8b05319f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6667193a79761eb8d8d659f3", - "conditions": [ - { - "id": "6667195db6e41f2c0889f564", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "6667193a41b0135d2df10fd9", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 7, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6672db1167c7ac55793635b8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6672d9def1c88688a707d042", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6667196a2b80181270b3dcb1", - "conditions": [ - { - "id": "666719748daea2529ebdb755", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "6667196a74bbc3a671ef49f8", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] - }, - "description": "66631489acf8442f8b05319f description", - "failMessageText": "66631489acf8442f8b05319f failMessageText", - "declinePlayerMessage": "66631489acf8442f8b05319f declinePlayerMessage", - "name": "66631489acf8442f8b05319f name", - "note": "66631489acf8442f8b05319f note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", - "type": "Elimination", - "isKey": false, - "restartable": true, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66631489acf8442f8b05319f startedMessageText", - "successMessageText": "66631489acf8442f8b05319f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25600, - "id": "66742040dbd6ff58100ee5de", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "66742049c4714a7a6e0d9c7e", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1200, - "id": "66742058c4714a7a6e0d9c7f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2773", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2773", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1200 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6674206358678c865f0f028a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2776", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2775", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2776", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25d2c186f77443e35162e5": { - "QuestName": "The Survivalist Path - Cold Blooded", - "_id": "5d25d2c186f77443e35162e5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25d2c186f77443e35162e5 acceptPlayerMessage", - "changeQuestMessageText": "5d25d2c186f77443e35162e5 changeQuestMessageText", - "completePlayerMessage": "5d25d2c186f77443e35162e5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d25d4e786f77442734d335c", - "conditions": [ - { - "id": "5d25d5b086f77408251c4bf7", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Head", - "Chest", - "Stomach", - "LeftArm", - "RightArm", - "LeftLeg", - "RightLeg" - ], - "effects": [ - "Tremor" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 0, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - }, - { - "id": "5d309d2986f7740be0755214", + "id": "5d27351e86f774457411b262", "dynamicLocale": false, "target": "AnyPmc", "compareMethod": ">=", @@ -87221,9 +83870,7 @@ "enemyEquipmentExclusive": [], "weaponCaliber": [], "savageRole": [], - "bodyPart": [ - "Head" - ], + "bodyPart": [], "daytime": { "from": 0, "to": 0 @@ -87231,10 +83878,26 @@ "enemyHealthEffects": [], "resetOnSessionEnd": false, "conditionType": "Kills" + }, + { + "id": "5d27354086f77445722f1f9d", + "dynamicLocale": false, + "zoneIds": [ + "huntsman_020" + ], + "conditionType": "InZone" + }, + { + "id": "5d2c94f786f774342d57a662", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" } ] }, - "id": "5d25d4e786f77442734d335d", + "id": "5d2733c586f7741dea4f3072", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -87242,7 +83905,7 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 2, + "value": 5, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -87251,11 +83914,11 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "5d76322786f774454e50d062", + "id": "5d77710186f774319c488825", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25c81b86f77443e625dd71", + "target": "5d25e2cc86f77443e47ae019", "status": [ 4 ], @@ -87267,28 +83930,28 @@ ], "Fail": [] }, - "description": "5d25d2c186f77443e35162e5 description", - "failMessageText": "5d25d2c186f77443e35162e5 failMessageText", - "declinePlayerMessage": "5d25d2c186f77443e35162e5 declinePlayerMessage", - "name": "5d25d2c186f77443e35162e5 name", - "note": "5d25d2c186f77443e35162e5 note", + "description": "5d25e44386f77409453bce7b description", + "failMessageText": "5d25e44386f77409453bce7b failMessageText", + "declinePlayerMessage": "5d25e44386f77409453bce7b declinePlayerMessage", + "name": "5d25e44386f77409453bce7b name", + "note": "5d25e44386f77409453bce7b note", "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/5d69474486f77414077d1cc8.jpg", "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5d25d2c186f77443e35162e5 startedMessageText", - "successMessageText": "5d25d2c186f77443e35162e5 successMessageText", + "startedMessageText": "5d25e44386f77409453bce7b startedMessageText", + "successMessageText": "5d25e44386f77409453bce7b successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 5900, - "id": "60cca1601bdece56c249cbe6", + "value": 10000, + "id": "60cca8fa65e4664318606b71", "type": "Experience", "index": 0, "unknown": false @@ -87296,7 +83959,7 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "60cca17bac6eb02bc726de62", + "id": "60cca8fe5f9e6175514de2d6", "type": "TraderStanding", "index": 0, "target": "5c0647fdd443bc2504c2d371", @@ -87305,15 +83968,15 @@ { "availableInGameEditions": [], "value": 75000, - "id": "60cca16520a6283a506aeb44", + "id": "5d667c4c86f774368f43a1f6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2778", + "target": "6812400c0c5cf2cf75075a76", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2778", + "_id": "6812400c0c5cf2cf75075a76", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 75000 @@ -87323,12 +83986,788 @@ }, { "availableInGameEditions": [], - "value": 100, - "id": "60cca17241fd1e14d71e2304", - "type": "Skill", + "value": 2, + "id": "5d667c8286f774369120c2b9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a79", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a78", + "_tpl": "5c12613b86f7743bbe2c3f76", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a79", + "_tpl": "5c12613b86f7743bbe2c3f76", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5d667ca186f774368e1b7879", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a7b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a7b", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6672d9def1c88688a707d042": { + "QuestName": "Establish Contact", + "_id": "6672d9def1c88688a707d042", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6672d9def1c88688a707d042 acceptPlayerMessage", + "changeQuestMessageText": "6672d9def1c88688a707d042 changeQuestMessageText", + "completePlayerMessage": "6672d9def1c88688a707d042 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "TraderStanding", + "id": "66813c01decf4560581ca0c0", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "579dc571d53a0658a154fbec", + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "TraderStanding", + "id": "6672daa3a5f158174abeaab2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "579dc571d53a0658a154fbec", + "globalQuestCounterId": "", + "value": 4, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6672d9def1c88688a707d042 description", + "failMessageText": "6672d9def1c88688a707d042 failMessageText", + "declinePlayerMessage": "6672d9def1c88688a707d042 declinePlayerMessage", + "name": "6672d9def1c88688a707d042 name", + "note": "6672d9def1c88688a707d042 note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/61374f53857735719f2f0ca2.jpg", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6672d9def1c88688a707d042 startedMessageText", + "successMessageText": "6672d9def1c88688a707d042 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8800, + "id": "66741e2f29da3476e604f4b0", + "type": "Experience", "index": 0, - "target": "StressResistance", "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66741e25c4714a7a6e0d9c79", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 600, + "id": "66741eeb15268503bf0fb609", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a7d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a7d", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 600 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66b38c7bf85b8bf7250f9cb6": { + "QuestName": "Rough Tarkov", + "_id": "66b38c7bf85b8bf7250f9cb6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66b38c7bf85b8bf7250f9cb6 acceptPlayerMessage", + "changeQuestMessageText": "66b38c7bf85b8bf7250f9cb6 changeQuestMessageText", + "completePlayerMessage": "66b38c7bf85b8bf7250f9cb6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66b38c7bf85b8bf7250f9cb8", + "conditions": [ + { + "id": "66b38dcdad51502a41705f7e", + "dynamicLocale": false, + "target": "Woods_mine_quest", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "66b38c7bf85b8bf7250f9cb7", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66b38de6fdca1053dec8f994", + "conditions": [ + { + "id": "66b38df3097ef60221acde97", + "dynamicLocale": false, + "target": "Sandbox_mine_quest", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "66b38de6a97d8cbafd711846", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66b393e4630e8a1353133e91", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d24b81486f77439c92d6ba8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "66b38c7bf85b8bf7250f9cb6 description", + "failMessageText": "66b38c7bf85b8bf7250f9cb6 failMessageText", + "declinePlayerMessage": "66b38c7bf85b8bf7250f9cb6 declinePlayerMessage", + "name": "66b38c7bf85b8bf7250f9cb6 name", + "note": "66b38c7bf85b8bf7250f9cb6 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d66701986f7744a2e70f025.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66b38c7bf85b8bf7250f9cb6 startedMessageText", + "successMessageText": "66b38c7bf85b8bf7250f9cb6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4440, + "id": "66b3a3cf66265b5f5e02490c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "66b3a3dfec21e102040a048c", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 60000, + "id": "66b3a3f46592ade562098c53", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a7f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a7f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 60000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66b3a402721bbc88a70f1706", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a82", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a81", + "_tpl": "666b11055a706400b717cfa5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a82", + "_tpl": "666b11055a706400b717cfa5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25b6be86f77444001e1b89": { + "QuestName": "The Survivalist Path - Thrifty", + "_id": "5d25b6be86f77444001e1b89", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25b6be86f77444001e1b89 acceptPlayerMessage", + "changeQuestMessageText": "5d25b6be86f77444001e1b89 changeQuestMessageText", + "completePlayerMessage": "5d25b6be86f77444001e1b89 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5d25beca86f77409dd5cdbb3", + "index": 0, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "huntsman_005_1", + "target": [ + "590c5d4b86f774784e1b9c45" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5d25beeb86f77443fe45765f", + "index": 1, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "huntsman_005_1", + "target": [ + "5448fee04bdc2dbc018b4567" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5d2deedc86f77459121c3118", + "index": 2, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "huntsman_005_2", + "target": [ + "590c5d4b86f774784e1b9c45" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5d2defc586f774591510e6b9", + "index": 3, + "maxDurability": 0.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "huntsman_005_2", + "target": [ + "5448fee04bdc2dbc018b4567" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d76307886f774454c5360c1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25aed386f77442734d25d2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25b6be86f77444001e1b89 description", + "failMessageText": "5d25b6be86f77444001e1b89 failMessageText", + "declinePlayerMessage": "5d25b6be86f77444001e1b89 declinePlayerMessage", + "name": "5d25b6be86f77444001e1b89 name", + "note": "5d25b6be86f77444001e1b89 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/59675e7b86f77414b25fb049.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25b6be86f77444001e1b89 startedMessageText", + "successMessageText": "5d25b6be86f77444001e1b89 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4700, + "id": "60cc9f88826ca0323464bd14", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc9f9f98b492706036460a", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 22000, + "id": "5d656dba86f774766e559dcc", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a84", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a84", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 22000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5d656ddc86f77476d6220ed8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a87", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a86", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a87", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ec1a3db13e6fb78d4420dbe", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a89", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a89", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "62a6502a8ec41a51b34758de", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075a8a", + "unknown": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a8a", + "_tpl": "590c5d4b86f774784e1b9c45" + } + ], + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60c0c018f7afb4354815096a": { + "QuestName": "The Huntsman Path - Factory Chief", + "_id": "60c0c018f7afb4354815096a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60c0c018f7afb4354815096a acceptPlayerMessage", + "changeQuestMessageText": "60c0c018f7afb4354815096a changeQuestMessageText", + "completePlayerMessage": "60c0c018f7afb4354815096a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "60c0d187938d68438757cda1", + "conditions": [ + { + "id": "60c0d1ca5438bf3b0555d648", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossTagilla", + "followerTagilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "60c0d187938d68438757cda2", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "60cfa590f81cc57f471718cc", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "60a7acf20c5cb24b01346648", + "675aae1c26dc64e17800fee6" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60cfa5a85f9e6175514de2e3", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "60a7acf20c5cb24b01346648", + "675aae1c26dc64e17800fee6" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "60cfa4ee1bdece56c249cbf5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "629f0dd114061f307437fc9f", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3477486f7741d651d6885", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60c0c018f7afb4354815096a description", + "failMessageText": "60c0c018f7afb4354815096a failMessageText", + "declinePlayerMessage": "60c0c018f7afb4354815096a declinePlayerMessage", + "name": "60c0c018f7afb4354815096a name", + "note": "60c0c018f7afb4354815096a note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/60cb3814f09d61072d6cf211.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60c0c018f7afb4354815096a startedMessageText", + "successMessageText": "60c0c018f7afb4354815096a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 16000, + "id": "60cfa670f81cc57f471718cd", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cfa6b99f89812e5b6aa890", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 700000, + "id": "60cfa6a5ac6eb02bc726de72", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a8c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a8c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 700000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60d329c720a6283a506aec3c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075a8e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075a8e", + "_tpl": "5448ba0b4bdc2d02308b456c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] } ], "Fail": [] @@ -87574,12 +85013,12 @@ "id": "63a236352c2d4f2e480780a7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b277a", + "target": "6812400c0c5cf2cf75075a90", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b277a", + "_id": "6812400c0c5cf2cf75075a90", "_tpl": "6389c7750ef44505c87f5996", "upd": { "StackObjectsCount": 1, @@ -87603,12 +85042,12 @@ "id": "6401dd694a16b5e0b40bf55e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b277c", + "target": "6812400c0c5cf2cf75075a92", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b277c", + "_id": "6812400c0c5cf2cf75075a92", "_tpl": "5c0530ee86f774697952d952", "upd": { "StackObjectsCount": 1, @@ -87623,12 +85062,12 @@ "id": "6401dd6de258ee678309db86", "type": "Item", "index": 0, - "target": "68010065f81036801d0b277e", + "target": "6812400c0c5cf2cf75075a94", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b277e", + "_id": "6812400c0c5cf2cf75075a94", "_tpl": "5c0530ee86f774697952d952", "upd": { "StackObjectsCount": 1, @@ -87643,12 +85082,12 @@ "id": "6401dd7000bb14f7cb0d535d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2780", + "target": "6812400c0c5cf2cf75075a96", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2780", + "_id": "6812400c0c5cf2cf75075a96", "_tpl": "5c0530ee86f774697952d952", "upd": { "StackObjectsCount": 1, @@ -87662,11 +85101,11 @@ "id": "658065e887fcd209a464cda9", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2781", + "target": "6812400c0c5cf2cf75075a97", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2781", + "_id": "6812400c0c5cf2cf75075a97", "_tpl": "5b4329f05acfc47a86086aa1" } ], @@ -87684,61 +85123,132 @@ "arenaLocations": [], "status": 0 }, - "665eec1f5e47a79f8605565a": { - "QuestName": "Thirsty - Breadwinner", - "_id": "665eec1f5e47a79f8605565a", + "665eec4a4dfc83b0ed0a9dca": { + "QuestName": "Thirsty - Delivery", + "_id": "665eec4a4dfc83b0ed0a9dca", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "665eec1f5e47a79f8605565a acceptPlayerMessage", - "changeQuestMessageText": "665eec1f5e47a79f8605565a changeQuestMessageText", - "completePlayerMessage": "665eec1f5e47a79f8605565a completePlayerMessage", + "acceptPlayerMessage": "665eec4a4dfc83b0ed0a9dca acceptPlayerMessage", + "changeQuestMessageText": "665eec4a4dfc83b0ed0a9dca changeQuestMessageText", + "completePlayerMessage": "665eec4a4dfc83b0ed0a9dca completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "665ef4d93bd11acd294ac48c", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6661a145ba58791a4cdfdd4f", + "conditions": [ + { + "id": "6661a1555a8799639e1e7573", + "dynamicLocale": false, + "target": "place_2A2_unlock_3_woods", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6661a14545909ae2e92ca2d5", "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "59fafb5d86f774067a6f2084" - ], - "countInRaid": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false }, { - "conditionType": "HandoverItem", + "conditionType": "LeaveItemAtLocation", "dogtagLevel": 0, - "id": "665ef4f08f3a505364a8ab09", + "id": "6661a170945719c63f28d9c6", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": true, + "onlyFoundInRaid": false, "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_2A2_unlock_3_woods", "target": [ "59fafb5d86f774067a6f2084" ], "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] + "value": 1, + "visibilityConditions": [ + { + "id": "6661a174c228eebe7e420494", + "target": "6661a14545909ae2e92ca2d5", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6661a18a941c96280465a8c7", + "conditions": [ + { + "id": "6661a1952b26769022fa1881", + "dynamicLocale": false, + "target": "place_2A2_unlock_3_customs", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6661a18a12e8457716d59f5d", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6661a1a1b1953d6c96da8f0e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_2A2_unlock_3_customs", + "target": [ + "59fafb5d86f774067a6f2084" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6661a1aaecee3dda99b9b9d5", + "target": "6661a18a12e8457716d59f5d", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "66742a8e5f0ca18a91eda68f", + "id": "66742a14307c58a7f5c1f363", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "665eeacf5d86b6c8aa03c79b", + "target": "665eec1f5e47a79f8605565a", "status": [ 4 ], @@ -87750,749 +85260,44 @@ ], "Fail": [] }, - "description": "665eec1f5e47a79f8605565a description", - "failMessageText": "665eec1f5e47a79f8605565a failMessageText", - "declinePlayerMessage": "665eec1f5e47a79f8605565a declinePlayerMessage", - "name": "665eec1f5e47a79f8605565a name", - "note": "665eec1f5e47a79f8605565a note", + "description": "665eec4a4dfc83b0ed0a9dca description", + "failMessageText": "665eec4a4dfc83b0ed0a9dca failMessageText", + "declinePlayerMessage": "665eec4a4dfc83b0ed0a9dca declinePlayerMessage", + "name": "665eec4a4dfc83b0ed0a9dca name", + "note": "665eec4a4dfc83b0ed0a9dca note", "traderId": "58330581ace78e27b8b10cee", "location": "any", - "image": "/files/quest/icon/66697b9f6978601041000809.png", - "type": "PickUp", + "image": "/files/quest/icon/66697ba352260cae8d0b035a.png", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "665eec1f5e47a79f8605565a startedMessageText", - "successMessageText": "665eec1f5e47a79f8605565a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9600, - "id": "665ef5945e47a79f8605565f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "665ef59e2f7aedcc900b043f", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "665ef5b15e47a79f86055660", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2783", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2783", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 200 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "665ef5c42f7aedcc900b0440", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2785", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2785", - "_tpl": "5d1b371186f774253763a656", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "66b38e144f2ab7cc530c3fe7": { - "QuestName": "Every Hunter Knows This", - "_id": "66b38e144f2ab7cc530c3fe7", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66b38e144f2ab7cc530c3fe7 acceptPlayerMessage", - "changeQuestMessageText": "66b38e144f2ab7cc530c3fe7 changeQuestMessageText", - "completePlayerMessage": "66b38e144f2ab7cc530c3fe7 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66b38e144f2ab7cc530c3fe9", - "conditions": [ - { - "id": "66b38dcdad51502a41705f7e", - "dynamicLocale": false, - "target": "Check_mine_zone_factory", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "66b38e144f2ab7cc530c3fe8", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66b38e144f2ab7cc530c3feb", - "conditions": [ - { - "id": "66b38df3097ef60221acde97", - "dynamicLocale": false, - "target": "Check_mine_zone_custom", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "66b38e144f2ab7cc530c3fea", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66b3939feb7103408a599272", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "66b38c7bf85b8bf7250f9cb6", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "66b38e144f2ab7cc530c3fe7 description", - "failMessageText": "66b38e144f2ab7cc530c3fe7 failMessageText", - "declinePlayerMessage": "66b38e144f2ab7cc530c3fe7 declinePlayerMessage", - "name": "66b38e144f2ab7cc530c3fe7 name", - "note": "66b38e144f2ab7cc530c3fe7 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d66701986f7744a2e70f025.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66b38e144f2ab7cc530c3fe7 startedMessageText", - "successMessageText": "66b38e144f2ab7cc530c3fe7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5800, - "id": "66b3a4beaa4a19c4f90881d8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "66b3a4c834f21cc7fc07648f", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 32000, - "id": "66b3a4dc32bc3e9d7e0d2d64", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2787", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2787", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 32000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "66bb20b7aa15b97cb803a7de", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2788", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2788", - "_tpl": "666b11055a706400b717cfa5" - } - ], - "loyaltyLevel": 1, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6573397ef3f8344c4575cd87": { - "QuestName": "Properties All Around", - "_id": "6573397ef3f8344c4575cd87", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6573397ef3f8344c4575cd87 acceptPlayerMessage", - "changeQuestMessageText": "6573397ef3f8344c4575cd87 changeQuestMessageText", - "completePlayerMessage": "6573397ef3f8344c4575cd87 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6573397ef3f8344c4575cd89", - "conditions": [ - { - "id": "63a98d1b64b9631d9178274c", - "dynamicLocale": false, - "target": "fond_quest", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6573397ef3f8344c4575cd88", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6581676e7a18ff402fd23e68", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "657acb2ac900be5902191ac9" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6583180b087e3d9662e61497", - "target": "6573397ef3f8344c4575cd88", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "658167a0e53c40116f8632fa", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "657acb2ac900be5902191ac9" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "65872082aa49a684766e55cb", - "target": "6581676e7a18ff402fd23e68", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "65840ed0d1c1c3b6f68fc017", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "64f5aac4b63b74469b6c14c2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6573397ef3f8344c4575cd87 description", - "failMessageText": "6573397ef3f8344c4575cd87 failMessageText", - "declinePlayerMessage": "6573397ef3f8344c4575cd87 declinePlayerMessage", - "name": "6573397ef3f8344c4575cd87 name", - "note": "6573397ef3f8344c4575cd87 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/65899ca16a2e1b55682ab961.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6573397ef3f8344c4575cd87 startedMessageText", - "successMessageText": "6573397ef3f8344c4575cd87 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 11600, - "id": "6573397ef3f8344c4575cd8e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "65840f4266dec32da3131886", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 84000, - "id": "65840f620e40596ad2171b6a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b278a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b278a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 84000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "658590469ed860361159fa4f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b278b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b278b", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b278c", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b278d", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b278e", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b278f", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2790", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2791", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "68010065f81036801d0b2790", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2792", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "68010065f81036801d0b278b", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "65840f950a500627c456d9c7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b279b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2795", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2796", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2795", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2797", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2798", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2797", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2799", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b279a", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2799", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b279b", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b279c", - "_tpl": "5a269f97c4a282000b151807", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b279b", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "65840fb966ddfd17202b6e06", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27a0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b279e", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b279f", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27a0", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314a31cd52e3d040a2e76": { - "QuestName": "Combat Proven", - "_id": "666314a31cd52e3d040a2e76", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314a31cd52e3d040a2e76 acceptPlayerMessage", - "changeQuestMessageText": "666314a31cd52e3d040a2e76 changeQuestMessageText", - "completePlayerMessage": "666314a31cd52e3d040a2e76 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6669abb870e0328366d3a95a", - "conditions": [ - { - "id": "6669abf2c9adc91c4b60061b", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBoar", - "bossBully", - "bossGluhar", - "bossKilla", - "bossKojaniy", - "bossKolontay", - "bossSanitar", - "bossTagilla", - "bossZryachiy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "6669ac18de9a775893d4b2f3", - "dynamicLocale": false, - "equipmentInclusive": [ - [ - "628baf0b967de16aab5a4f36" - ], - [ - "628b9c7d45122232a872358f" - ], - [ - "628b9784bcf6e2659e09b8a2" - ] - ], - "equipmentExclusive": [], - "IncludeNotEquippedItems": false, - "conditionType": "Equipment" - } - ] - }, - "id": "6669abb8dac5788ebd0ff74a", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6669a8a7465be3423719b01f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314a1920800278d0f6746", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314a31cd52e3d040a2e76 description", - "failMessageText": "666314a31cd52e3d040a2e76 failMessageText", - "declinePlayerMessage": "666314a31cd52e3d040a2e76 declinePlayerMessage", - "name": "666314a31cd52e3d040a2e76 name", - "note": "666314a31cd52e3d040a2e76 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/6682a79f3d914aa3b20e13cb.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314a31cd52e3d040a2e76 startedMessageText", - "successMessageText": "666314a31cd52e3d040a2e76 successMessageText", + "startedMessageText": "665eec4a4dfc83b0ed0a9dca startedMessageText", + "successMessageText": "665eec4a4dfc83b0ed0a9dca successMessageText", "rewards": { "Started": [ { "availableInGameEditions": [], - "value": 1, - "id": "6669aad8920800278d0f676c", + "value": 2, + "id": "6671dde4fb3e3e541b06b35f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b27a2", + "target": "6812400c0c5cf2cf75075a9a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b27a2", - "_tpl": "628baf0b967de16aab5a4f36", + "_id": "6812400c0c5cf2cf75075a99", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075a9a", + "_tpl": "59fafb5d86f774067a6f2084", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -88504,8 +85309,8 @@ "Success": [ { "availableInGameEditions": [], - "value": 92000, - "id": "66743bb9bd1574a8b90712c8", + "value": 14200, + "id": "6660630b5e47a79f86055662", "type": "Experience", "index": 0, "unknown": false @@ -88513,1414 +85318,68 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "66743bc401b5600773078b5c", + "id": "6660631a2f7aedcc900b0442", "type": "TraderStanding", "index": 0, - "target": "5ac3b934156ae10c4430e83c", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 340000, - "id": "66743bdbdbd6ff58100ee629", + "value": 55000, + "id": "666063622f7aedcc900b0444", "type": "Item", "index": 0, - "target": "68010065f81036801d0b27a4", + "target": "6812400c0c5cf2cf75075a9c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b27a4", + "_id": "6812400c0c5cf2cf75075a9c", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 340000 + "StackObjectsCount": 55000 } } ] }, { "availableInGameEditions": [], - "value": 3, - "id": "66743be801b5600773078b5d", + "value": 4, + "id": "6660632f5e47a79f86055663", "type": "Item", "index": 0, - "target": "68010065f81036801d0b27ba", + "target": "6812400c0c5cf2cf75075aa1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b27ac", - "_tpl": "628d0618d1ba6e4fa07ce5a4", + "_id": "6812400c0c5cf2cf75075a9e", + "_tpl": "57505f6224597709a92585a9", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b27ad", - "_tpl": "657322988c1cc6dcd9098b2d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b27ae", - "_tpl": "657322a4cea9255e21023651", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b27af", - "_tpl": "657322acd9d89ff7ac0d961b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b27b0", - "_tpl": "657322b7d9d89ff7ac0d961f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b27b1", - "_tpl": "656f664200d62bcd2e024077", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b27b2", - "_tpl": "657b2797c3dbcb01d60c35ea", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ac", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b27b3", - "_tpl": "628d0618d1ba6e4fa07ce5a4", + "_id": "6812400c0c5cf2cf75075a9f", + "_tpl": "57505f6224597709a92585a9", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b27b4", - "_tpl": "657322988c1cc6dcd9098b2d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b27b5", - "_tpl": "657322a4cea9255e21023651", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b27b6", - "_tpl": "657322acd9d89ff7ac0d961b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b27b7", - "_tpl": "657322b7d9d89ff7ac0d961f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b27b8", - "_tpl": "656f664200d62bcd2e024077", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b27b9", - "_tpl": "657b2797c3dbcb01d60c35ea", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27b3", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b27ba", - "_tpl": "628d0618d1ba6e4fa07ce5a4", + "_id": "6812400c0c5cf2cf75075aa0", + "_tpl": "57505f6224597709a92585a9", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b27bb", - "_tpl": "657322988c1cc6dcd9098b2d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b27bc", - "_tpl": "657322a4cea9255e21023651", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b27bd", - "_tpl": "657322acd9d89ff7ac0d961b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b27be", - "_tpl": "657322b7d9d89ff7ac0d961f", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b27bf", - "_tpl": "656f664200d62bcd2e024077", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b27c0", - "_tpl": "657b2797c3dbcb01d60c35ea", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b27ba", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "6764939bbe89532a75b424a2", - "type": "CustomizationDirect", - "index": 0, - "target": "6754666c76e1f2b24c0cc956", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25c81b86f77443e625dd71": { - "QuestName": "The Survivalist Path - Wounded Beast", - "_id": "5d25c81b86f77443e625dd71", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25c81b86f77443e625dd71 acceptPlayerMessage", - "changeQuestMessageText": "5d25c81b86f77443e625dd71 changeQuestMessageText", - "completePlayerMessage": "5d25c81b86f77443e625dd71 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d25c8c986f77443e47ad479", - "conditions": [ - { - "id": "5d25c8ed86f7740a21220d15", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Head", - "Chest", - "Stomach", - "LeftArm", - "RightArm", - "LeftLeg", - "RightLeg" - ], - "effects": [ - "Pain" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 0, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - }, - { - "id": "5d25c91186f77443e625dd72", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "5d25c8c986f77443e47ad47a", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d7630e286f774452173421a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25bfd086f77442734d3007", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5d25c81b86f77443e625dd71 description", - "failMessageText": "5d25c81b86f77443e625dd71 failMessageText", - "declinePlayerMessage": "5d25c81b86f77443e625dd71 declinePlayerMessage", - "name": "5d25c81b86f77443e625dd71 name", - "note": "5d25c81b86f77443e625dd71 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "any", - "image": "/files/quest/icon/5d67b41686f774368e1b78df.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25c81b86f77443e625dd71 startedMessageText", - "successMessageText": "5d25c81b86f77443e625dd71 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5800, - "id": "60cca0195f9e6175514de2cf", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca057826ca0323464bd16", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 65000, - "id": "5daef03f86f77426fa0a54f8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27c2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27c2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 65000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "60cca03d826ca0323464bd15", - "type": "Skill", - "index": 0, - "target": "StressResistance", - "unknown": false - }, - { - "availableInGameEditions": [], - "id": "63a1a0a8423c8970de41981b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b27c3", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b27c3", - "_tpl": "6259b864ebedf17603599e88", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b27c4", - "_tpl": "6259c2c1d714855d182bad85", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b27c5", - "_tpl": "6259c4347d6aab70bc23a190", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b27c6", - "_tpl": "625ff2ccb8c587128c1a01dd", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b27c7", - "_tpl": "6259c3387d6aab70bc23a18d", - "upd": { - "Foldable": { - "Folded": false - } - }, - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b27c8", - "_tpl": "6259c3d8012d6678ec38eeb8", - "parentId": "68010065f81036801d0b27c7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b27c9", - "_tpl": "625ed7c64d9b6612df732146", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b27ca", - "_tpl": "625ebcef6f53af4aa66b44dc", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b27cb", - "_tpl": "625ec45bb14d7326ac20f572", - "parentId": "68010065f81036801d0b27c3", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 2, - "traderId": "5c0647fdd443bc2504c2d371" - }, - { - "availableInGameEditions": [], - "id": "676497c3105230ddf0a278a1", - "type": "CustomizationDirect", - "index": 0, - "target": "67585bf5428877c04c038ee3", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639872f9decada40426d3447": { - "QuestName": "Gunsmith - Part 4", - "_id": "639872f9decada40426d3447", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639872f9decada40426d3447 acceptPlayerMessage", - "changeQuestMessageText": "639872f9decada40426d3447 changeQuestMessageText", - "completePlayerMessage": "639872f9decada40426d3447 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "63987404e5163c24b3029356", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "587e02ff24597743df3deaeb" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 600.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 35.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 20, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 350.0, - "compareMethod": "<=" - }, - "weight": { - "value": 6.0, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "639aea505b759c65a34764e5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac2426c86f774138762edfe", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "639aea3c2a994a11600df095", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ac2428686f77412450b42bf", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "639aea5d5573fd6cc27d9975", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 9, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639872f9decada40426d3447 description", - "failMessageText": "639872f9decada40426d3447 failMessageText", - "declinePlayerMessage": "639872f9decada40426d3447 declinePlayerMessage", - "name": "639872f9decada40426d3447 name", - "note": "639872f9decada40426d3447 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/63aae970f83fd6083938904e.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639872f9decada40426d3447 startedMessageText", - "successMessageText": "639872f9decada40426d3447 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 3600, - "id": "6398a324eee7ff72370f7dd8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "6398a34edecada40426d344a", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 25000, - "id": "6398a300e11ec11ff5504038", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27cd", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27cd", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 25000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6398a400cd51826f7a069b87", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27d0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27cf", - "_tpl": "590c5a7286f7747884343aea", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27d0", - "_tpl": "590c5a7286f7747884343aea", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6398a40dddab1d61bf383d15", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27d2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27d2", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6398a424c8f8cc12a47b02a7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27d4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27d4", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5d25cf2686f77443e75488d4": { - "QuestName": "The Survivalist Path - Tough Guy", - "_id": "5d25cf2686f77443e75488d4", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25cf2686f77443e75488d4 acceptPlayerMessage", - "changeQuestMessageText": "5d25cf2686f77443e75488d4 changeQuestMessageText", - "completePlayerMessage": "5d25cf2686f77443e75488d4 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d25d09286f77444001e284b", - "conditions": [ - { - "id": "5d25d0b186f77408251c422f", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": true, - "conditionType": "Kills" - }, - { - "id": "5d3079e386f77447f00acc3d", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5d25d09286f77444001e284c", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5d9c941f86f7743554286958", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25c81b86f77443e625dd71", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d25d0d186f7740a22515974", - "conditions": [ - { - "id": "5d25d14786f77409de05b575", - "dynamicLocale": false, - "target": [ - "590c661e86f7741e566b646a", - "590c678286f77426c9660122", - "590c657e86f77412b013051d", - "5755356824597772cb798962", - "544fb45d4bdc2dee738b4568", - "590c695186f7741e566b64a2", - "5751a89d24597722aa0e8db0", - "5af0548586f7743a532b7e99", - "544fb3f34bdc2d03748b456a", - "544fb37f4bdc2dee738b4567", - "5755383e24597772cb798966", - "544fb25a4bdc2dfb738b4567", - "5751a25924597722c463c472", - "5d02778e86f774203e7dedbe", - "5af0454c86f7746bf20992e8", - "544fb3364bdc2d34748b456a", - "5af0454c86f7746bf20992e8", - "5d02797c86f774203f38e30a", - "5c10c8fd86f7743d7d706df3", - "5c0e530286f7747fa1419862", - "5c0e531286f7747fa54205c2", - "5c0e531d86f7747fa23f4d42", - "5c0e533786f7747fa23f4d47", - "5c0e534186f7747fa1419867", - "60098ad7c2240c0fe85c570a", - "5e8488fa988a8701445df1e4", - "5fca138c2a7b221b2852a5c6", - "5fca13ca637ee0341a484f46", - "5e831507ea0a7c419c2f9bd9", - "5ed5166ad380ab312177c100", - "60098af40accd37ef2175f27", - "5ed5160a87bb8443d10680b5", - "5ed515c8d380ab312177c0fa", - "5ed515f6915ec335206e4152", - "5ed51652f6c34d2cc26336a1", - "5ed515e03a40a50460332579", - "5ed515ece452db0eb56fc028", - "637b60c3b7afa97bfc3d7001", - "637b6179104668754b72f8f5", - "637b6251104668754b72f8f9", - "637b612fb7afa97bfc3d7005", - "637b620db7afa97bfc3d7009", - "66507eabf5ddb0818b085b68" - ], - "compareMethod": ">=", - "value": 1, - "conditionType": "UseItem" - }, - { - "id": "5de766fb020b3a0a5a187f13", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5d25d0d186f7740a22515975", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] - }, - "description": "5d25cf2686f77443e75488d4 description", - "failMessageText": "5d25cf2686f77443e75488d4 failMessageText", - "declinePlayerMessage": "5d25cf2686f77443e75488d4 declinePlayerMessage", - "name": "5d25cf2686f77443e75488d4 name", - "note": "5d25cf2686f77443e75488d4 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5d67b49186f774266f0867b3.jpg", - "type": "Completion", - "isKey": false, - "restartable": true, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5d25cf2686f77443e75488d4 startedMessageText", - "successMessageText": "5d25cf2686f77443e75488d4 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 7000, - "id": "60cca0eaa7d63f18200a251a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cca1365f9e6175514de2d0", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 40000, - "id": "5d66711886f774131e206b33", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27d6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27d6", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 40000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5d66714286f774368f43a1e0", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27d8", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27d8", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "5d66716986f774266f07fc92", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27dc", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27da", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27db", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27dc", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 100, - "id": "60cca107a7d63f18200a251b", - "type": "Skill", - "index": 0, - "target": "Perception", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa3910c828825de06d69f": { - "QuestName": "A Healthy Alternative", - "_id": "669fa3910c828825de06d69f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa3910c828825de06d69f acceptPlayerMessage", - "changeQuestMessageText": "669fa3910c828825de06d69f changeQuestMessageText", - "completePlayerMessage": "669fa3910c828825de06d69f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "669faef62c68a5925a36fccc", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66c0b39ca1f68fcc1d0c0cc3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa24dc0f10ce8d6dd14ff8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa38fad7f1eac2607ed46", - "status": [ - 2 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "66a2e44f81ce653e06688365", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa38fad7f1eac2607ed46", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "669fa3910c828825de06d69f description", - "failMessageText": "669fa3910c828825de06d69f failMessageText", - "declinePlayerMessage": "669fa3910c828825de06d69f declinePlayerMessage", - "name": "669fa3910c828825de06d69f name", - "note": "669fa3910c828825de06d69f note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa3910c828825de06d69f startedMessageText", - "successMessageText": "669fa3910c828825de06d69f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13500, - "id": "66aa24ec30c6d0aae40a9f69", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa24fbc4c5c04798003b13", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 86000, - "id": "66aa253c58f762935c03db1d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27de", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27de", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 86000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66aa25d891b0a8c9680fdbc2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27e1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27e0", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27e1", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60c0c018f7afb4354815096a": { - "QuestName": "The Huntsman Path - Factory Chief", - "_id": "60c0c018f7afb4354815096a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60c0c018f7afb4354815096a acceptPlayerMessage", - "changeQuestMessageText": "60c0c018f7afb4354815096a changeQuestMessageText", - "completePlayerMessage": "60c0c018f7afb4354815096a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "60c0d187938d68438757cda1", - "conditions": [ - { - "id": "60c0d1ca5438bf3b0555d648", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossTagilla", - "followerTagilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "60c0d187938d68438757cda2", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "60cfa590f81cc57f471718cc", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "60a7acf20c5cb24b01346648", - "675aae1c26dc64e17800fee6" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60cfa5a85f9e6175514de2e3", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "60a7acf20c5cb24b01346648", - "675aae1c26dc64e17800fee6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "60cfa4ee1bdece56c249cbf5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "629f0dd114061f307437fc9f", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3477486f7741d651d6885", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60c0c018f7afb4354815096a description", - "failMessageText": "60c0c018f7afb4354815096a failMessageText", - "declinePlayerMessage": "60c0c018f7afb4354815096a declinePlayerMessage", - "name": "60c0c018f7afb4354815096a name", - "note": "60c0c018f7afb4354815096a note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/60cb3814f09d61072d6cf211.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60c0c018f7afb4354815096a startedMessageText", - "successMessageText": "60c0c018f7afb4354815096a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 16000, - "id": "60cfa670f81cc57f471718cd", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cfa6b99f89812e5b6aa890", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 700000, - "id": "60cfa6a5ac6eb02bc726de72", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27e3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27e3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 700000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60d329c720a6283a506aec3c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27e5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27e5", - "_tpl": "5448ba0b4bdc2d02308b456c", + "_id": "6812400c0c5cf2cf75075aa1", + "_tpl": "57505f6224597709a92585a9", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -90063,12 +85522,12 @@ "id": "60cc9e6c98b4927060364609", "type": "Item", "index": 0, - "target": "68010065f81036801d0b27e7", + "target": "6812400c0c5cf2cf75075aa3", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b27e7", + "_id": "6812400c0c5cf2cf75075aa3", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 50000 @@ -90082,12 +85541,12 @@ "id": "60cc9eb1b2736c24b2118ba0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b27e9", + "target": "6812400c0c5cf2cf75075aa5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b27e9", + "_id": "6812400c0c5cf2cf75075aa5", "_tpl": "5e2af37686f774755a234b65", "upd": { "StackObjectsCount": 1, @@ -90107,3723 +85566,6 @@ "arenaLocations": [], "status": 0 }, - "66631493312343839d032d22": { - "QuestName": "Small Business - Part 3", - "_id": "66631493312343839d032d22", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66631493312343839d032d22 acceptPlayerMessage", - "changeQuestMessageText": "66631493312343839d032d22 changeQuestMessageText", - "completePlayerMessage": "66631493312343839d032d22 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "666733e0c62a5c652f3c4b45", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "unkown_mark_2", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "666733e3f2c2969cf600991b", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_peacemaker_007_2_N3", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "666733e565831d5bafa18bbb", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_peacemaker_007_2_N2", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "666733e7430c8972d6a5f438", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_peacemaker_007_2_N2_1", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6667338266dc03cc04ef1153", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6663149196a9349baa021baa", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "66631493312343839d032d22 description", - "failMessageText": "66631493312343839d032d22 failMessageText", - "declinePlayerMessage": "66631493312343839d032d22 declinePlayerMessage", - "name": "66631493312343839d032d22 name", - "note": "66631493312343839d032d22 note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66631493312343839d032d22 startedMessageText", - "successMessageText": "66631493312343839d032d22 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 30000, - "id": "6674228529da3476e604f4b7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "6674228fdceb304bf30b1ff2", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [ - "tournament_live", - "tournament", - "standard", - "press_edition", - "left_behind", - "prepare_for_escape", - "exhibition", - "edge_of_darkness", - "develop" - ], - "value": 2000, - "id": "6682b19d36c4afb83a0ff0d9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27eb", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27eb", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 2000 - } - } - ] - }, - { - "availableInGameEditions": [ - "develop", - "edge_of_darkness", - "exhibition", - "left_behind", - "prepare_for_escape", - "press_edition", - "standard", - "tournament_live", - "tournament" - ], - "value": 1, - "id": "66797fc869825e8dc200217c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27ed", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27ed", - "_tpl": "65ddcc9cfa85b9f17d0dfb07", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa39ee749756c920d02c8": { - "QuestName": "All Is Revealed", - "_id": "669fa39ee749756c920d02c8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa39ee749756c920d02c8 acceptPlayerMessage", - "changeQuestMessageText": "669fa39ee749756c920d02c8 changeQuestMessageText", - "completePlayerMessage": "669fa39ee749756c920d02c8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "669fb6c859bdae826f7325d4", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "669fac549b0ce3feae01a137" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66a7eebed6bac3ecc16f7d6b", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "669fac549b0ce3feae01a137" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa3afdeb23739ed385f1a8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa3a1c26f13bd04030f37", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa39ee749756c920d02c8 description", - "failMessageText": "669fa39ee749756c920d02c8 failMessageText", - "declinePlayerMessage": "669fa39ee749756c920d02c8 declinePlayerMessage", - "name": "669fa39ee749756c920d02c8 name", - "note": "669fa39ee749756c920d02c8 note", - "traderId": "54cb57776803fa99248b456e", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acec97ec21e102040a047d.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa39ee749756c920d02c8 startedMessageText", - "successMessageText": "669fa39ee749756c920d02c8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 17200, - "id": "66aa3b0664ea11e84c065d5f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa3b10e749756c920d3370", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 63000, - "id": "66aa3b1c91b0a8c9680fdbcb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27ef", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27ef", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 63000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66aa3b2b64ea11e84c065d60", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27f1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27f1", - "_tpl": "590c60fc86f77412b13fddcf", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6663148ca9290f9e0806cca1": { - "QuestName": "Immunity", - "_id": "6663148ca9290f9e0806cca1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6663148ca9290f9e0806cca1 acceptPlayerMessage", - "changeQuestMessageText": "6663148ca9290f9e0806cca1 changeQuestMessageText", - "completePlayerMessage": "6663148ca9290f9e0806cca1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "666719fcaf3dde7223ac57d5", - "conditions": [ - { - "id": "66671c4f297809457fe5e6a7", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "6672e2859b857136e1bc6f48", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Stomach" - ], - "effects": [ - "Intoxication" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 0, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - } - ] - }, - "id": "666719fc7c5ae40e6adcf43e", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "666719d04091c71c6d736f5d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "66631489acf8442f8b05319f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6663148ca9290f9e0806cca1 description", - "failMessageText": "6663148ca9290f9e0806cca1 failMessageText", - "declinePlayerMessage": "6663148ca9290f9e0806cca1 declinePlayerMessage", - "name": "6663148ca9290f9e0806cca1 name", - "note": "6663148ca9290f9e0806cca1 note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6663148ca9290f9e0806cca1 startedMessageText", - "successMessageText": "6663148ca9290f9e0806cca1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 28000, - "id": "667420a7f4584e58770d8a94", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667420b4f4584e58770d8a95", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1150, - "id": "667420d07b0373b49700c508", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27f3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b27f3", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1150 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "667420db29da3476e604f4b5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27f9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27f5", - "_tpl": "5fca138c2a7b221b2852a5c6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27f6", - "_tpl": "5fca138c2a7b221b2852a5c6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27f7", - "_tpl": "5fca138c2a7b221b2852a5c6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27f8", - "_tpl": "5fca138c2a7b221b2852a5c6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b27f9", - "_tpl": "5fca138c2a7b221b2852a5c6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4493d86f7744b8e15aa8f": { - "QuestName": "Database - Part 2", - "_id": "5ae4493d86f7744b8e15aa8f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4493d86f7744b8e15aa8f acceptPlayerMessage", - "changeQuestMessageText": "5ae4493d86f7744b8e15aa8f changeQuestMessageText", - "completePlayerMessage": "5ae4493d86f7744b8e15aa8f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b5bd86f774307c29df37", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a25386f7746dd946e6d9" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b63286f774229110402d", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a25386f7746dd946e6d9" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae9b64a86f77450fb040b1c", - "target": "5ae9b5bd86f774307c29df37", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af415c386f7745c267423a7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae4493486f7744efa289417", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4493d86f7744b8e15aa8f description", - "failMessageText": "5ae4493d86f7744b8e15aa8f failMessageText", - "declinePlayerMessage": "5ae4493d86f7744b8e15aa8f declinePlayerMessage", - "name": "5ae4493d86f7744b8e15aa8f name", - "note": "5ae4493d86f7744b8e15aa8f note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a7d286f7744748710d74.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4493d86f7744b8e15aa8f startedMessageText", - "successMessageText": "5ae4493d86f7744b8e15aa8f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8500, - "id": "60cc833a77dc197c774254e0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc8343e3d0247e625dab8b", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc835e98b49270603645f3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27fb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27fb", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc836c77dc197c774254e3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b27fd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b27fd", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b8876b71eeb7c4168c634", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b27fe", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b27fe", - "_tpl": "5d5d646386f7742797261fd9" - } - ], - "loyaltyLevel": 2, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae448e586f7744dcf0c2a67": { - "QuestName": "Big Sale", - "_id": "5ae448e586f7744dcf0c2a67", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae448e586f7744dcf0c2a67 acceptPlayerMessage", - "changeQuestMessageText": "5ae448e586f7744dcf0c2a67 changeQuestMessageText", - "completePlayerMessage": "5ae448e586f7744dcf0c2a67 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae4508386f7741250488336", - "conditions": [ - { - "id": "5ae4509b86f774282006e469", - "dynamicLocale": false, - "target": "place_SALE_03_AVOKADO", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ae4508386f7741250488337", - "index": 0, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae450db86f7741250488358", - "conditions": [ - { - "id": "5ae450e286f7740f6409d278", - "dynamicLocale": false, - "target": "place_SALE_03_KOSTIN", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ae450db86f7741250488359", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae450ee86f7740f9307859c", - "conditions": [ - { - "id": "5ae450f686f774125048835f", - "dynamicLocale": false, - "target": "place_SALE_03_TREND", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ae450ee86f7740f9307859d", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae4510786f7740fa614399e", - "conditions": [ - { - "id": "5ae4511086f7740f6409d289", - "dynamicLocale": false, - "target": "place_SALE_03_DINO", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ae4510786f7740fa614399f", - "index": 3, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae4511d86f7740ffc31ccb4", - "conditions": [ - { - "id": "5ae4512686f774400872565c", - "dynamicLocale": false, - "target": "place_SALE_03_TOPBRAND", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "5ae4511d86f7740ffc31ccb5", - "index": 4, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae4514986f7740e915d218b", - "conditions": [ - { - "id": "5ae4515086f7741250488375", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ae4516386f774282006e4ad", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ae4514986f7740e915d218c", - "index": 5, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae4516f86f7740e915d2196", - "target": "5ae4508386f7741250488337", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4517386f774282006e4b3", - "target": "5ae450db86f7741250488359", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4517786f774282006e4b5", - "target": "5ae450ee86f7740f9307859d", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4517c86f7740fa61439c0", - "target": "5ae4510786f7740fa614399f", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4518286f7740ffc31ccd8", - "target": "5ae4511d86f7740ffc31ccb5", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4155d86f7745b5e2aba63", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448a386f7744d3730fff0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae448e586f7744dcf0c2a67 description", - "failMessageText": "5ae448e586f7744dcf0c2a67 failMessageText", - "declinePlayerMessage": "5ae448e586f7744dcf0c2a67 declinePlayerMessage", - "name": "5ae448e586f7744dcf0c2a67 name", - "note": "5ae448e586f7744dcf0c2a67 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae448e586f7744dcf0c2a67 startedMessageText", - "successMessageText": "5ae448e586f7744dcf0c2a67 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8200, - "id": "60cc8192af2e5506c37822d1", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc81997c496e588343a6f7", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "60cc819ff09d61072d6d0112", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2800", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2800", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc81af6a2a1958fc52321c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2802", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2802", - "_tpl": "5d5d940f86f7742797262046", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa3a1c26f13bd04030f37": { - "QuestName": "Capacity Check", - "_id": "669fa3a1c26f13bd04030f37", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa3a1c26f13bd04030f37 acceptPlayerMessage", - "changeQuestMessageText": "669fa3a1c26f13bd04030f37 changeQuestMessageText", - "completePlayerMessage": "669fa3a1c26f13bd04030f37 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66a0e7581ad4ff329a13ebc8", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_10_1", - "target": [ - "590c2e1186f77425357b6124" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66a0e75bd9cb07ea69e018c7", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_10_2", - "target": [ - "590c2e1186f77425357b6124" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66a0e75df6e0911101eed474", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_10_3", - "target": [ - "590c2e1186f77425357b6124" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa37922fc57b00186835ec", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa394e0c9f9fafa082897", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "66aa379db03a317f0540a160", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ac345dc86f774288030817f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa3a1c26f13bd04030f37 description", - "failMessageText": "669fa3a1c26f13bd04030f37 failMessageText", - "declinePlayerMessage": "669fa3a1c26f13bd04030f37 declinePlayerMessage", - "name": "669fa3a1c26f13bd04030f37 name", - "note": "669fa3a1c26f13bd04030f37 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acecc4ec21e102040a047f.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa3a1c26f13bd04030f37 startedMessageText", - "successMessageText": "669fa3a1c26f13bd04030f37 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 16500, - "id": "66aa37bc1e5e199ecd094f0d", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa37c730c6d0aae40a9f71", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 58000, - "id": "66aa37d458f762935c03db20", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2804", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2804", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 58000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66aa3812e0c9f9fafa08366d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2805", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2805", - "_tpl": "618428466ef05c2ce828f218", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b2806", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b2805", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2807", - "_tpl": "61840d85568c120fdd2962a5", - "parentId": "68010065f81036801d0b2805", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2808", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "68010065f81036801d0b2805", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2809", - "_tpl": "6183fd911cb55961fa0fdce9", - "parentId": "68010065f81036801d0b2808", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b280a", - "_tpl": "618407a850224f204c1da549", - "parentId": "68010065f81036801d0b2809", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b280b", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "68010065f81036801d0b2809", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b280c", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "68010065f81036801d0b2808", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b280d", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "68010065f81036801d0b2808", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b280e", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "68010065f81036801d0b2808", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b280f", - "_tpl": "61825d06d92c473c770215de", - "parentId": "68010065f81036801d0b2805", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2810", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "68010065f81036801d0b280f", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b2811", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "68010065f81036801d0b2810", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2812", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "68010065f81036801d0b280f", - "slotId": "mod_stock_002" - }, - { - "_id": "68010065f81036801d0b2813", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "68010065f81036801d0b2805", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa383891b0a8c9680fdbca", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2817", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2815", - "_tpl": "61840d85568c120fdd2962a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2816", - "_tpl": "61840d85568c120fdd2962a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2817", - "_tpl": "61840d85568c120fdd2962a5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa38fac4c5c04798003b1c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b281e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b281a", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b281b", - "_tpl": "54527a984bdc2d4e668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b281a", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b281c", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b281d", - "_tpl": "54527a984bdc2d4e668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b281c", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b281e", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b281f", - "_tpl": "54527a984bdc2d4e668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b281e", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac244eb86f7741356335af1": { - "QuestName": "Gunsmith - Part 7", - "_id": "5ac244eb86f7741356335af1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac244eb86f7741356335af1 acceptPlayerMessage", - "changeQuestMessageText": "5ac244eb86f7741356335af1 changeQuestMessageText", - "completePlayerMessage": "5ac244eb86f7741356335af1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5accdfdb86f77412265cbfc9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5447a9cd4bdc2dbd208b4567" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 800.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 47.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 60, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 300.0, - "compareMethod": "<=" - }, - "weight": { - "value": 3.8, - "compareMethod": "<=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf37fa86f7741844039008", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "638dbfc336b3b72c944e2f85", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5ae3270f86f77445ba41d4dd", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac244eb86f7741356335af1 description", - "failMessageText": "5ac244eb86f7741356335af1 failMessageText", - "declinePlayerMessage": "5ac244eb86f7741356335af1 declinePlayerMessage", - "name": "5ac244eb86f7741356335af1 name", - "note": "5ac244eb86f7741356335af1 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4e02986f774617a185ef2.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac244eb86f7741356335af1 startedMessageText", - "successMessageText": "5ac244eb86f7741356335af1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6300, - "id": "60cc765e65e4664318606af0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "60cc7663f09d61072d6d00ba", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 500, - "id": "5acb81e486f77456247a352e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2821", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2821", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5acb821486f77455360eafa7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2823", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2823", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6398aaa0cd51826f7a069b88", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2825", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2825", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19bb4fcae11642e50f9b7", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2826", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2826", - "_tpl": "56eabcd4d2720b66698b4574" - } - ], - "loyaltyLevel": 2, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa399033a3ce9870338a8": { - "QuestName": "Possessor", - "_id": "669fa399033a3ce9870338a8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa399033a3ce9870338a8 acceptPlayerMessage", - "changeQuestMessageText": "669fa399033a3ce9870338a8 changeQuestMessageText", - "completePlayerMessage": "669fa399033a3ce9870338a8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "669fb4a56e66d3d79183a5c9", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66c0b90c8398582e4b0c2e27" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "669fb4b21f2e5268651cc96a", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66c0b90c8398582e4b0c2e27" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa21174aeb059fb0bdbe04", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59675ea386f77414b32bded2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa399033a3ce9870338a8 description", - "failMessageText": "669fa399033a3ce9870338a8 failMessageText", - "declinePlayerMessage": "669fa399033a3ce9870338a8 declinePlayerMessage", - "name": "669fa399033a3ce9870338a8 name", - "note": "669fa399033a3ce9870338a8 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acec55f85b8bf7250f9cad.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa399033a3ce9870338a8 startedMessageText", - "successMessageText": "669fa399033a3ce9870338a8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 7300, - "id": "66aa21428b4a64b33204376e", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa22a3e0c9f9fafa083668", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 47000, - "id": "66aa22b21e5e199ecd094f07", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2828", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2828", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 47000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66aa22c091b0a8c9680fdbbf", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b282a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b282a", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6663149196a9349baa021baa": { - "QuestName": "Small Business - Part 2", - "_id": "6663149196a9349baa021baa", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6663149196a9349baa021baa acceptPlayerMessage", - "changeQuestMessageText": "6663149196a9349baa021baa changeQuestMessageText", - "completePlayerMessage": "6663149196a9349baa021baa completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66673229eebaa9483fff502a", - "conditions": [ - { - "id": "666732c4e2a9401fd8247255", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBoar", - "followerBoarClose1", - "followerBoarClose2", - "followerGluharAssault", - "followerGluharScout", - "followerBully", - "followerGluharSecurity", - "followerGluharSnipe", - "followerKojaniy", - "followerKolontayAssault", - "followerKolontaySecurity", - "followerSanitar", - "followerStormtrooper", - "bossBoarSniper" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "666732298477f79f3f6ea229", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "666731a6b166f5dfa6ff6b1e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6663148ed7f171c4c20226c1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6667323f7240038a4bb453b3", - "conditions": [ - { - "id": "66673293ce77f77ae3aad3d2", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBoar", - "bossBully", - "bossGluhar", - "bossKilla", - "bossKnight", - "bossKojaniy", - "bossKolontay", - "bossSanitar", - "bossTagilla", - "bossZryachiy", - "followerBigPipe", - "followerBirdEye", - "bossPartisan" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "6667323ff686168c451ad02c", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ] - }, - "description": "6663149196a9349baa021baa description", - "failMessageText": "6663149196a9349baa021baa failMessageText", - "declinePlayerMessage": "6663149196a9349baa021baa declinePlayerMessage", - "name": "6663149196a9349baa021baa name", - "note": "6663149196a9349baa021baa note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", - "type": "Elimination", - "isKey": false, - "restartable": true, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6663149196a9349baa021baa startedMessageText", - "successMessageText": "6663149196a9349baa021baa successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 36800, - "id": "667421677b0373b49700c509", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.04, - "id": "6674217015268503bf0fb60b", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2200, - "id": "6674217cf4584e58770d8a97", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b282c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b282c", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 2200 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6674218858678c865f0f028c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b282f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b282e", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b282f", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314a50aa5c7436c00908a": { - "QuestName": "Old Patterns", - "_id": "666314a50aa5c7436c00908a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314a50aa5c7436c00908a acceptPlayerMessage", - "changeQuestMessageText": "666314a50aa5c7436c00908a changeQuestMessageText", - "completePlayerMessage": "666314a50aa5c7436c00908a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6669acb8c4d34bd547a4d2ac", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "59faff1d86f7746c51718c9c" - ], - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6669ac64f3d3418d0260c026", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314a31cd52e3d040a2e76", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314a50aa5c7436c00908a description", - "failMessageText": "666314a50aa5c7436c00908a failMessageText", - "declinePlayerMessage": "666314a50aa5c7436c00908a declinePlayerMessage", - "name": "666314a50aa5c7436c00908a name", - "note": "666314a50aa5c7436c00908a note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Loyalty", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314a50aa5c7436c00908a startedMessageText", - "successMessageText": "666314a50aa5c7436c00908a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.01, - "id": "66743bfbf4584e58770d8aeb", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [ - "left_behind", - "prepare_for_escape", - "press_edition", - "standard", - "edge_of_darkness" - ], - "id": "6682724b2388eb5c9e059d62", - "type": "Pockets", - "index": 0, - "target": "65e080be269cbd5c5005e529", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae448f286f77448d73c0131": { - "QuestName": "The Blood of War - Part 1", - "_id": "5ae448f286f77448d73c0131", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae448f286f77448d73c0131 acceptPlayerMessage", - "changeQuestMessageText": "5ae448f286f77448d73c0131 changeQuestMessageText", - "completePlayerMessage": "5ae448f286f77448d73c0131 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "5ae452c086f774336a397578", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_WARBLOOD_04_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5ae452de86f77450595c4333", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_WARBLOOD_04_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "5ae452fa86f774336a39758e", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "place_WARBLOOD_04_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae4531986f774177033c3e5", - "conditions": [ - { - "id": "5ae4531f86f77417eb43f0d8", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5ae4532486f77418215460fb", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ae4531986f774177033c3e6", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae4532a86f774336a39759e", - "target": "5ae452c086f774336a397578", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4532e86f774184a254940", - "target": "5ae452de86f77450595c4333", - "conditionType": "CompleteCondition" - }, - { - "id": "5ae4533286f7741b747a04d9", - "target": "5ae452fa86f774336a39758e", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5b50761b88a4507f45121125", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448e586f7744dcf0c2a67", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6389fa44c3442f24872c1159", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448bf86f7744d733e55ee", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae448f286f77448d73c0131 description", - "failMessageText": "5ae448f286f77448d73c0131 failMessageText", - "declinePlayerMessage": "5ae448f286f77448d73c0131 declinePlayerMessage", - "name": "5ae448f286f77448d73c0131 name", - "note": "5ae448f286f77448d73c0131 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae448f286f77448d73c0131 startedMessageText", - "successMessageText": "5ae448f286f77448d73c0131 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 7500, - "id": "5c95109a86f77455192fa44c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc81da7c496e588343a6f9", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 60000, - "id": "5ae9ad3986f77458b06d5625", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2831", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2831", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 60000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc82077c496e588343a6fb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2834", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2833", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2834", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b951f32b0b1645e6f54cd", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2835", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2835", - "_tpl": "6038d614d10cbf667352dd44" - } - ], - "loyaltyLevel": 2, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6663148ed7f171c4c20226c1": { - "QuestName": "Small Business - Part 1", - "_id": "6663148ed7f171c4c20226c1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6663148ed7f171c4c20226c1 acceptPlayerMessage", - "changeQuestMessageText": "6663148ed7f171c4c20226c1 changeQuestMessageText", - "completePlayerMessage": "6663148ed7f171c4c20226c1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666729738d4b7a9182ad4a89", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c67ab0d37ca5135388f4b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66672a1a928cfea6db3ff6cb", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c67ab0d37ca5135388f4b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66672a99bf7a7a1fcee35af0", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c66e40b2de553b618d4b8" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66672a9e351098ce6dee9d3e", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c66e40b2de553b618d4b8" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66672b010cf940754acb3a83", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572c82ad599021091c6118" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66672b18eba38faad31d29c3", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572c82ad599021091c6118" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66672b3330d5ad1d58cc1e95", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572be36a723f7f005a066e" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66672b47d515c72d9075fe64", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572be36a723f7f005a066e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66672b7dd70d15a60bb41e04", - "index": 8, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c67782a1356436041c9c5" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66672b88a8236f9caf29c39e", - "index": 9, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c67782a1356436041c9c5" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6667306ec19fb654f22fa05a", - "index": 10, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c673673a43e23e857aebd" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6667308a456e86f33c87437c", - "index": 11, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c673673a43e23e857aebd" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666730b475bbbbfd5049b7da", - "index": 12, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572cbdad599021091c611a" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "666730d6386cf75012a431f2", - "index": 13, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572cbdad599021091c611a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "666730f88db8c7927a859959", - "index": 14, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c669103999d3c810c025b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6667310584936a1238607d39", - "index": 15, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "655c669103999d3c810c025b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66673136b23cfc3ecab865d6", - "index": 16, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572b8d80b1cd4b6a67847f" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6667314ae24cc783e69ad784", - "index": 17, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "66572b8d80b1cd4b6a67847f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "666728de99692fd05d986403", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6663148ca9290f9e0806cca1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6663148ed7f171c4c20226c1 description", - "failMessageText": "6663148ed7f171c4c20226c1 failMessageText", - "declinePlayerMessage": "6663148ed7f171c4c20226c1 declinePlayerMessage", - "name": "6663148ed7f171c4c20226c1 name", - "note": "6663148ed7f171c4c20226c1 note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6663148ed7f171c4c20226c1 startedMessageText", - "successMessageText": "6663148ed7f171c4c20226c1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 22800, - "id": "667420fd45cb67bd65077b2c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "6674210301b5600773078b48", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1800, - "id": "66742110dbd6ff58100ee5df", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2837", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2837", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1800 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6674211df4584e58770d8a96", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b283b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2839", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b283a", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b283b", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "66ab970848ddbe9d4a0c49a8": { - "QuestName": "Special Comms", - "_id": "66ab970848ddbe9d4a0c49a8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "66ab970848ddbe9d4a0c49a8 acceptPlayerMessage", - "changeQuestMessageText": "66ab970848ddbe9d4a0c49a8 changeQuestMessageText", - "completePlayerMessage": "66ab970848ddbe9d4a0c49a8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66ab9c5c60199cdb0902f8cc", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "Place_item_tools_woods", - "target": [ - "5d0375ff86f774186372f685" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66ab9c78e192b852d889e2bf", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "Place_item_tools_woods", - "target": [ - "619cbfeb6b8a1b37a54eebfa" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66ab970848ddbe9d4a0c49ad", - "conditions": [ - { - "id": "66aa5c2c2ba4b7b5dedbb17d", - "dynamicLocale": false, - "status": [ - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "66ab9c3ed412c1e8df3948ff", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "66ab970848ddbe9d4a0c49ab", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66ab9c914a7cba3ea786ce58", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "Place_item_tools_rezerve", - "target": [ - "5d0375ff86f774186372f685" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66ab9c7ea3a7219e87d4b75e", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "Place_item_tools_rezerve", - "target": [ - "619cbfeb6b8a1b37a54eebfa" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66b35339e342383cb849b7e6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "60896b7bfa70fc097863b8f5", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "66ab970848ddbe9d4a0c49a8 description", - "failMessageText": "66ab970848ddbe9d4a0c49a8 failMessageText", - "declinePlayerMessage": "66ab970848ddbe9d4a0c49a8 declinePlayerMessage", - "name": "66ab970848ddbe9d4a0c49a8 name", - "note": "66ab970848ddbe9d4a0c49a8 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "marathon", - "image": "/files/quest/icon/5d77a10586f7745041358b41.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "66ab970848ddbe9d4a0c49a8 startedMessageText", - "successMessageText": "66ab970848ddbe9d4a0c49a8 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 2, - "id": "66b4e17203449f31fe0b815e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b283e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b283d", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b283e", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66b4e17d0fab9765d1089f54", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2841", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2840", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2841", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 12800, - "id": "66b4e18ad697bf7616062860", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66b4e1df03449f31fe0b815f", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 32000, - "id": "66b4e1ee5ff24fbf230014e2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2843", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2843", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 32000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66b4e20782fe17cf19023a64", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2844", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2844", - "_tpl": "588892092459774ac91d4b11", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2845", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "68010065f81036801d0b2844", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2846", - "_tpl": "5888956924597752983e182d", - "parentId": "68010065f81036801d0b2844", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2847", - "_tpl": "5888996c24597754281f9419", - "parentId": "68010065f81036801d0b2846", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2848", - "_tpl": "5888976c24597754281f93f5", - "parentId": "68010065f81036801d0b2846", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2849", - "_tpl": "57c55f172459772d27602381", - "parentId": "68010065f81036801d0b2844", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b284a", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "68010065f81036801d0b2844", - "slotId": "mod_stock" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66b4e2187d633c785b026060", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b284e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b284c", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b284d", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b284e", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66b4e23a204c6261cd0856f2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2855", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2851", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2852", - "_tpl": "5e023e53d4353e3302577c4c", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2851", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2853", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2854", - "_tpl": "5e023e53d4353e3302577c4c", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2853", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2855", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2856", - "_tpl": "5e023e53d4353e3302577c4c", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2855", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa3979b0ce3feae01a130": { - "QuestName": "Claustrophobia", - "_id": "669fa3979b0ce3feae01a130", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa3979b0ce3feae01a130 acceptPlayerMessage", - "changeQuestMessageText": "669fa3979b0ce3feae01a130 changeQuestMessageText", - "completePlayerMessage": "669fa3979b0ce3feae01a130 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "669fb1ff1aefeabc40e9b336", - "conditions": [ - { - "id": "669fb3b1b041bd8adb9cfe06", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "64748cb8de82c85eaf0a273a", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "60db29ce99594040e04c4a27", - "66ffa9b66e19cc902401c5e8", - "67124dcfa3541f2a1f0e788b" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "66a2e2ce0d9f705feb2ee72c", - "dynamicLocale": false, - "zoneIds": [ - "nf2024_4_zone_kill1" - ], - "conditionType": "InZone" - } - ] - }, - "id": "669fb1ffe34e78d618792b41", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa3b5d39badb72cf499df7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa3979b0ce3feae01a130 description", - "failMessageText": "669fa3979b0ce3feae01a130 failMessageText", - "declinePlayerMessage": "669fa3979b0ce3feae01a130 declinePlayerMessage", - "name": "669fa3979b0ce3feae01a130 name", - "note": "669fa3979b0ce3feae01a130 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acec41aa4a19c4f90881ca.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa3979b0ce3feae01a130 startedMessageText", - "successMessageText": "669fa3979b0ce3feae01a130 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25400, - "id": "66aa3b6a8b4a64b33204377b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "66aa3b73c26f13bd0403281f", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 89000, - "id": "66aa3b80e0c9f9fafa08366e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2858", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2858", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 89000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "66aa3b9e30c6d0aae40a9f73", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b285b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b285a", - "_tpl": "5b2388675acfc4771e1be0be", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b285b", - "_tpl": "5b2388675acfc4771e1be0be", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "671a59e43d73dac1360765cc": { - "QuestName": "Dangerous Props", - "_id": "671a59e43d73dac1360765cc", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "671a59e43d73dac1360765cc acceptPlayerMessage", - "changeQuestMessageText": "671a59e43d73dac1360765cc changeQuestMessageText", - "completePlayerMessage": "671a59e43d73dac1360765cc completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "671ac68e12c0462931ecebe2", - "conditions": [ - { - "id": "671ac6fdbe99a966448e33bc", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [ - "66ffa9b66e19cc902401c5e8", - "67124dcfa3541f2a1f0e788b" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "671ac68e30609eb2c7e9a7f7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "671b6d0a760e7e277d0b982c", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "671a49f77d49aea42c029b5f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "671a59e43d73dac1360765cc description", - "failMessageText": "671a59e43d73dac1360765cc failMessageText", - "declinePlayerMessage": "671a59e43d73dac1360765cc declinePlayerMessage", - "name": "671a59e43d73dac1360765cc name", - "note": "671a59e43d73dac1360765cc note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/671f916cc05619cdf408bc6c.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "671a59e43d73dac1360765cc startedMessageText", - "successMessageText": "671a59e43d73dac1360765cc successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "671b6f2eac3004308ebcb9b3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b285c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b285c", - "_tpl": "66ffa9b66e19cc902401c5e8", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b285d", - "_tpl": "66ffac9e316b08f6840a73e6", - "parentId": "68010065f81036801d0b285c", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b285e", - "_tpl": "6709133fa532466d5403fb7c", - "parentId": "68010065f81036801d0b285c", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b285f", - "_tpl": "670fced86a7e274b1a0964e8", - "parentId": "68010065f81036801d0b285c", - "slotId": "mod_barrel" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 39900, - "id": "671b6f42bdc0b163a3727ce5", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "671b6f493d4ac78735b3991b", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 130000, - "id": "671b6f50829014d3f1518d4c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2861", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2861", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 130000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "671b6f60d4fcd37a10595f6c", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2862", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2862", - "_tpl": "67124dcfa3541f2a1f0e788b", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2863", - "_tpl": "670fd23798663bc4b10e911a", - "parentId": "68010065f81036801d0b2862", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2864", - "_tpl": "66ffaab91f7492c901027bb8", - "parentId": "68010065f81036801d0b2862", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2865", - "_tpl": "670fd03dc424cf758f006946", - "parentId": "68010065f81036801d0b2862", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2866", - "_tpl": "670fd0eed8d4eae4790c818a", - "parentId": "68010065f81036801d0b2865", - "slotId": "mod_muzzle" - } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5d25aed386f77442734d25d2": { "QuestName": "The Survivalist Path - Unprotected but Dangerous", "_id": "5d25aed386f77442734d25d2", @@ -94138,12 +85880,12 @@ "id": "60cc9ef8f81cc57f471718a4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2868", + "target": "6812400c0c5cf2cf75075aa7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2868", + "_id": "6812400c0c5cf2cf75075aa7", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -94157,12 +85899,12 @@ "id": "60e2e0bcfd4472578b21defa", "type": "Item", "index": 0, - "target": "68010065f81036801d0b287d", + "target": "6812400c0c5cf2cf75075abc", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b286b", + "_id": "6812400c0c5cf2cf75075aaa", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94170,16 +85912,16 @@ } }, { - "_id": "68010065f81036801d0b286c", + "_id": "6812400c0c5cf2cf75075aab", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b286b", + "parentId": "6812400c0c5cf2cf75075aaa", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b286d", + "_id": "6812400c0c5cf2cf75075aac", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94187,16 +85929,16 @@ } }, { - "_id": "68010065f81036801d0b286e", + "_id": "6812400c0c5cf2cf75075aad", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b286d", + "parentId": "6812400c0c5cf2cf75075aac", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b286f", + "_id": "6812400c0c5cf2cf75075aae", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94204,16 +85946,16 @@ } }, { - "_id": "68010065f81036801d0b2870", + "_id": "6812400c0c5cf2cf75075aaf", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b286f", + "parentId": "6812400c0c5cf2cf75075aae", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2871", + "_id": "6812400c0c5cf2cf75075ab0", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94221,16 +85963,16 @@ } }, { - "_id": "68010065f81036801d0b2872", + "_id": "6812400c0c5cf2cf75075ab1", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2871", + "parentId": "6812400c0c5cf2cf75075ab0", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2873", + "_id": "6812400c0c5cf2cf75075ab2", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94238,16 +85980,16 @@ } }, { - "_id": "68010065f81036801d0b2874", + "_id": "6812400c0c5cf2cf75075ab3", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2873", + "parentId": "6812400c0c5cf2cf75075ab2", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2875", + "_id": "6812400c0c5cf2cf75075ab4", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94255,16 +85997,16 @@ } }, { - "_id": "68010065f81036801d0b2876", + "_id": "6812400c0c5cf2cf75075ab5", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2875", + "parentId": "6812400c0c5cf2cf75075ab4", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2877", + "_id": "6812400c0c5cf2cf75075ab6", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94272,16 +86014,16 @@ } }, { - "_id": "68010065f81036801d0b2878", + "_id": "6812400c0c5cf2cf75075ab7", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2877", + "parentId": "6812400c0c5cf2cf75075ab6", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2879", + "_id": "6812400c0c5cf2cf75075ab8", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94289,16 +86031,16 @@ } }, { - "_id": "68010065f81036801d0b287a", + "_id": "6812400c0c5cf2cf75075ab9", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2879", + "parentId": "6812400c0c5cf2cf75075ab8", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b287b", + "_id": "6812400c0c5cf2cf75075aba", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94306,16 +86048,16 @@ } }, { - "_id": "68010065f81036801d0b287c", + "_id": "6812400c0c5cf2cf75075abb", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b287b", + "parentId": "6812400c0c5cf2cf75075aba", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b287d", + "_id": "6812400c0c5cf2cf75075abc", "_tpl": "64ace9d9b5bf5e95f50a4c1d", "upd": { "StackObjectsCount": 1, @@ -94323,12 +86065,12 @@ } }, { - "_id": "68010065f81036801d0b287e", + "_id": "6812400c0c5cf2cf75075abd", "_tpl": "64b7af5a8532cf95ee0a0dbd", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b287d", + "parentId": "6812400c0c5cf2cf75075abc", "slotId": "cartridges" } ] @@ -94339,63 +86081,63 @@ "id": "60cc9f449f89812e5b6aa883", "type": "Item", "index": 0, - "target": "68010065f81036801d0b287f", + "target": "6812400c0c5cf2cf75075abe", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b287f", + "_id": "6812400c0c5cf2cf75075abe", "_tpl": "5abcbc27d8ce8700182eceeb", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2880", + "_id": "6812400c0c5cf2cf75075abf", "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_gas_block" }, { - "_id": "68010065f81036801d0b2881", + "_id": "6812400c0c5cf2cf75075ac0", "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "68010065f81036801d0b2880", + "parentId": "6812400c0c5cf2cf75075abf", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2882", + "_id": "6812400c0c5cf2cf75075ac1", "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2883", + "_id": "6812400c0c5cf2cf75075ac2", "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_pistol_grip_akms" }, { - "_id": "68010065f81036801d0b2884", + "_id": "6812400c0c5cf2cf75075ac3", "_tpl": "59d6507c86f7741b846413a2", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2885", + "_id": "6812400c0c5cf2cf75075ac4", "_tpl": "59d650cf86f7741b846413a4", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2886", + "_id": "6812400c0c5cf2cf75075ac5", "_tpl": "5abcd472d8ce8700166032ae", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_stock_akms" }, { - "_id": "68010065f81036801d0b2887", + "_id": "6812400c0c5cf2cf75075ac6", "_tpl": "5a0060fc86f7745793204432", - "parentId": "68010065f81036801d0b287f", + "parentId": "6812400c0c5cf2cf75075abe", "slotId": "mod_magazine" } ] @@ -94411,6 +86153,3264 @@ "arenaLocations": [], "status": 0 }, + "6573397ef3f8344c4575cd87": { + "QuestName": "Properties All Around", + "_id": "6573397ef3f8344c4575cd87", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6573397ef3f8344c4575cd87 acceptPlayerMessage", + "changeQuestMessageText": "6573397ef3f8344c4575cd87 changeQuestMessageText", + "completePlayerMessage": "6573397ef3f8344c4575cd87 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6573397ef3f8344c4575cd89", + "conditions": [ + { + "id": "63a98d1b64b9631d9178274c", + "dynamicLocale": false, + "target": "fond_quest", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6573397ef3f8344c4575cd88", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6581676e7a18ff402fd23e68", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "657acb2ac900be5902191ac9" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6583180b087e3d9662e61497", + "target": "6573397ef3f8344c4575cd88", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "658167a0e53c40116f8632fa", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "657acb2ac900be5902191ac9" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "65872082aa49a684766e55cb", + "target": "6581676e7a18ff402fd23e68", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "65840ed0d1c1c3b6f68fc017", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "64f5aac4b63b74469b6c14c2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6573397ef3f8344c4575cd87 description", + "failMessageText": "6573397ef3f8344c4575cd87 failMessageText", + "declinePlayerMessage": "6573397ef3f8344c4575cd87 declinePlayerMessage", + "name": "6573397ef3f8344c4575cd87 name", + "note": "6573397ef3f8344c4575cd87 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/65899ca16a2e1b55682ab961.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6573397ef3f8344c4575cd87 startedMessageText", + "successMessageText": "6573397ef3f8344c4575cd87 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 11600, + "id": "6573397ef3f8344c4575cd8e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "65840f4266dec32da3131886", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 84000, + "id": "65840f620e40596ad2171b6a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ac8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ac8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 84000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658590469ed860361159fa4f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ac9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ac9", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075aca", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075acb", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075acc", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075acd", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075ace", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075acf", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "6812400c0c5cf2cf75075ace", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075ad0", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "6812400c0c5cf2cf75075ac9", + "slotId": "mod_pistolgrip" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "65840f950a500627c456d9c7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ad9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ad3", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ad4", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075ad3", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075ad5", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ad6", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075ad5", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075ad7", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ad8", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075ad7", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075ad9", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ada", + "_tpl": "5a269f97c4a282000b151807", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075ad9", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "65840fb966ddfd17202b6e06", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ade", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075adc", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075add", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ade", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "625d6ffcaa168e51321d69d7": { + "QuestName": "Assessment - Part 1", + "_id": "625d6ffcaa168e51321d69d7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "625d6ffcaa168e51321d69d7 acceptPlayerMessage", + "changeQuestMessageText": "625d6ffcaa168e51321d69d7 changeQuestMessageText", + "completePlayerMessage": "625d6ffcaa168e51321d69d7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "625ed292c4874104f230c0c9", + "conditions": [ + { + "id": "625ed2ac1ed3bb5bcc5bd9e7", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "625ed2ceaa168e51321d69d8", + "dynamicLocale": false, + "zoneIds": [ + "meh_44_eastLight_kill" + ], + "conditionType": "InZone" + } + ] + }, + "id": "625ed292c4874104f230c0c8", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6391e26cf8e5dd32bf4e3ab6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "625d6ffaf7308432be1d44c5", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "625d6ffcaa168e51321d69d7 description", + "failMessageText": "625d6ffcaa168e51321d69d7 failMessageText", + "declinePlayerMessage": "625d6ffcaa168e51321d69d7 declinePlayerMessage", + "name": "625d6ffcaa168e51321d69d7 name", + "note": "625d6ffcaa168e51321d69d7 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/63ab1282435ab5742b4e40ac.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "625d6ffcaa168e51321d69d7 startedMessageText", + "successMessageText": "625d6ffcaa168e51321d69d7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 23500, + "id": "63a5d4dd2b25f7513905c809", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "63a5d4e517cca5622401e0f4", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "658027799634223183395339": { + "QuestName": "No Swiping", + "_id": "658027799634223183395339", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "658027799634223183395339 acceptPlayerMessage", + "changeQuestMessageText": "658027799634223183395339 changeQuestMessageText", + "completePlayerMessage": "658027799634223183395339 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65802779963422318339533b", + "conditions": [ + { + "id": "63a98d1b64b9631d9178274c", + "dynamicLocale": false, + "target": "q14_10_point_area", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "65802779963422318339533a", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65802779963422318339533d", + "conditions": [ + { + "id": "6580282ea8340fcb15f6afe3", + "dynamicLocale": false, + "zoneIds": [ + "q14_10_kill" + ], + "conditionType": "InZone" + }, + { + "id": "6580286a258c63828afb10de", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "65802779963422318339533c", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 25, + "visibilityConditions": [ + { + "id": "6581d03581612d7a0edff794", + "target": "65802779963422318339533a", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "65840c26c1ec9c6fb7119327", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b4795fb86f7745876267770", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "658027799634223183395339 description", + "failMessageText": "658027799634223183395339 failMessageText", + "declinePlayerMessage": "658027799634223183395339 declinePlayerMessage", + "name": "658027799634223183395339 name", + "note": "658027799634223183395339 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/658991921af57867a167fc0f.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "658027799634223183395339 startedMessageText", + "successMessageText": "658027799634223183395339 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 26000, + "id": "65802779963422318339533e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "658416b4606b8d720b4b8fd3", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 280000, + "id": "658416c39acefd03ac5ac9a8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ae0", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ae0", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 280000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658416d866ddfd17202b8bbf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ae2", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ae2", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658416ed606b8d720b4b8fd5", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ae4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ae4", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "658416ff91a14b21510c7a47", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ae6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ae6", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6584170c0e150f7cea1cca5e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ae8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ae8", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6584171966ddfd17202b8bc0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075aea", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075aea", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "665eec1f5e47a79f8605565a": { + "QuestName": "Thirsty - Breadwinner", + "_id": "665eec1f5e47a79f8605565a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "665eec1f5e47a79f8605565a acceptPlayerMessage", + "changeQuestMessageText": "665eec1f5e47a79f8605565a changeQuestMessageText", + "completePlayerMessage": "665eec1f5e47a79f8605565a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "665ef4d93bd11acd294ac48c", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59fafb5d86f774067a6f2084" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "665ef4f08f3a505364a8ab09", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59fafb5d86f774067a6f2084" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66742a8e5f0ca18a91eda68f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "665eeacf5d86b6c8aa03c79b", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "665eec1f5e47a79f8605565a description", + "failMessageText": "665eec1f5e47a79f8605565a failMessageText", + "declinePlayerMessage": "665eec1f5e47a79f8605565a declinePlayerMessage", + "name": "665eec1f5e47a79f8605565a name", + "note": "665eec1f5e47a79f8605565a note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/66697b9f6978601041000809.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "665eec1f5e47a79f8605565a startedMessageText", + "successMessageText": "665eec1f5e47a79f8605565a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9600, + "id": "665ef5945e47a79f8605565f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "665ef59e2f7aedcc900b043f", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "665ef5b15e47a79f86055660", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075aec", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075aec", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 200 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "665ef5c42f7aedcc900b0440", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075aee", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075aee", + "_tpl": "5d1b371186f774253763a656", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66b38e144f2ab7cc530c3fe7": { + "QuestName": "Every Hunter Knows This", + "_id": "66b38e144f2ab7cc530c3fe7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66b38e144f2ab7cc530c3fe7 acceptPlayerMessage", + "changeQuestMessageText": "66b38e144f2ab7cc530c3fe7 changeQuestMessageText", + "completePlayerMessage": "66b38e144f2ab7cc530c3fe7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66b38e144f2ab7cc530c3fe9", + "conditions": [ + { + "id": "66b38dcdad51502a41705f7e", + "dynamicLocale": false, + "target": "Check_mine_zone_factory", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "66b38e144f2ab7cc530c3fe8", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66b38e144f2ab7cc530c3feb", + "conditions": [ + { + "id": "66b38df3097ef60221acde97", + "dynamicLocale": false, + "target": "Check_mine_zone_custom", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "66b38e144f2ab7cc530c3fea", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66b3939feb7103408a599272", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "66b38c7bf85b8bf7250f9cb6", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "66b38e144f2ab7cc530c3fe7 description", + "failMessageText": "66b38e144f2ab7cc530c3fe7 failMessageText", + "declinePlayerMessage": "66b38e144f2ab7cc530c3fe7 declinePlayerMessage", + "name": "66b38e144f2ab7cc530c3fe7 name", + "note": "66b38e144f2ab7cc530c3fe7 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d66701986f7744a2e70f025.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66b38e144f2ab7cc530c3fe7 startedMessageText", + "successMessageText": "66b38e144f2ab7cc530c3fe7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5800, + "id": "66b3a4beaa4a19c4f90881d8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "66b3a4c834f21cc7fc07648f", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 32000, + "id": "66b3a4dc32bc3e9d7e0d2d64", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075af0", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075af0", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 32000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "66bb20b7aa15b97cb803a7de", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075af1", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075af1", + "_tpl": "666b11055a706400b717cfa5" + } + ], + "loyaltyLevel": 1, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25bfd086f77442734d3007": { + "QuestName": "The Survivalist Path - Zhivchik", + "_id": "5d25bfd086f77442734d3007", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25bfd086f77442734d3007 acceptPlayerMessage", + "changeQuestMessageText": "5d25bfd086f77442734d3007 changeQuestMessageText", + "completePlayerMessage": "5d25bfd086f77442734d3007 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d25c5a186f77443fe457660", + "conditions": [ + { + "id": "5d25c5d086f77408251c4224", + "dynamicLocale": false, + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Stomach" + ], + "effects": [ + "Dehydration" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 300, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + }, + { + "id": "629f119690948017ee17c2e2", + "dynamicLocale": false, + "target": [ + "laboratory", + "bigmap", + "Sandbox", + "RezervBase", + "Interchange", + "Shoreline", + "Woods", + "TarkovStreets", + "Lighthouse" + ], + "conditionType": "Location" + } + ] + }, + "id": "5d25c5a186f77443fe457661", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Experience", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d9f035086f7741cac4a9712", + "conditions": [ + { + "id": "5d9f035a86f7741cab6b0182", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "5d9f035086f7741cac4a9713", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5d9f036886f7741cac4a9714", + "target": "5d25c5a186f77443fe457661", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5dadc99686f7744b0f1b1d2a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25b6be86f77444001e1b89", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25bfd086f77442734d3007 description", + "failMessageText": "5d25bfd086f77442734d3007 failMessageText", + "declinePlayerMessage": "5d25bfd086f77442734d3007 declinePlayerMessage", + "name": "5d25bfd086f77442734d3007 name", + "note": "5d25bfd086f77442734d3007 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d67b3ed86f7744a2e70f15c.jpg", + "type": "Experience", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25bfd086f77442734d3007 startedMessageText", + "successMessageText": "5d25bfd086f77442734d3007 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5700, + "id": "60cc9fda98b492706036460b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc9fdf646f74055e276536", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "5d6654a886f77427135f3a13", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075af3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075af3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5d6654db86f77472690db3c3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075af6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075af5", + "_tpl": "5c0fa877d174af02a012e1cf", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075af6", + "_tpl": "5c0fa877d174af02a012e1cf", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ebfc121a1032866196c9386", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075af9", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075af8", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075af9", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66631489acf8442f8b05319f": { + "QuestName": "Friend Among Strangers", + "_id": "66631489acf8442f8b05319f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66631489acf8442f8b05319f acceptPlayerMessage", + "changeQuestMessageText": "66631489acf8442f8b05319f changeQuestMessageText", + "completePlayerMessage": "66631489acf8442f8b05319f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6667193a79761eb8d8d659f3", + "conditions": [ + { + "id": "6667195db6e41f2c0889f564", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "6667193a41b0135d2df10fd9", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 7, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6672db1167c7ac55793635b8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6672d9def1c88688a707d042", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6667196a2b80181270b3dcb1", + "conditions": [ + { + "id": "666719748daea2529ebdb755", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "6667196a74bbc3a671ef49f8", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] + }, + "description": "66631489acf8442f8b05319f description", + "failMessageText": "66631489acf8442f8b05319f failMessageText", + "declinePlayerMessage": "66631489acf8442f8b05319f declinePlayerMessage", + "name": "66631489acf8442f8b05319f name", + "note": "66631489acf8442f8b05319f note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", + "type": "Elimination", + "isKey": false, + "restartable": true, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66631489acf8442f8b05319f startedMessageText", + "successMessageText": "66631489acf8442f8b05319f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 25600, + "id": "66742040dbd6ff58100ee5de", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "66742049c4714a7a6e0d9c7e", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1200, + "id": "66742058c4714a7a6e0d9c7f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075afb", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075afb", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1200 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6674206358678c865f0f028a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075afe", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075afd", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075afe", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25d2c186f77443e35162e5": { + "QuestName": "The Survivalist Path - Cold Blooded", + "_id": "5d25d2c186f77443e35162e5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25d2c186f77443e35162e5 acceptPlayerMessage", + "changeQuestMessageText": "5d25d2c186f77443e35162e5 changeQuestMessageText", + "completePlayerMessage": "5d25d2c186f77443e35162e5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d25d4e786f77442734d335c", + "conditions": [ + { + "id": "5d25d5b086f77408251c4bf7", + "dynamicLocale": false, + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Head", + "Chest", + "Stomach", + "LeftArm", + "RightArm", + "LeftLeg", + "RightLeg" + ], + "effects": [ + "Tremor" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 0, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + }, + { + "id": "5d309d2986f7740be0755214", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5d25d4e786f77442734d335d", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d76322786f774454e50d062", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25c81b86f77443e625dd71", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25d2c186f77443e35162e5 description", + "failMessageText": "5d25d2c186f77443e35162e5 failMessageText", + "declinePlayerMessage": "5d25d2c186f77443e35162e5 declinePlayerMessage", + "name": "5d25d2c186f77443e35162e5 name", + "note": "5d25d2c186f77443e35162e5 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5ae4a7dd86f77448464ed2b2.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25d2c186f77443e35162e5 startedMessageText", + "successMessageText": "5d25d2c186f77443e35162e5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60cca1601bdece56c249cbe6", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca17bac6eb02bc726de62", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "60cca16520a6283a506aeb44", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b00", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b00", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "60cca17241fd1e14d71e2304", + "type": "Skill", + "index": 0, + "target": "StressResistance", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314a31cd52e3d040a2e76": { + "QuestName": "Combat Proven", + "_id": "666314a31cd52e3d040a2e76", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314a31cd52e3d040a2e76 acceptPlayerMessage", + "changeQuestMessageText": "666314a31cd52e3d040a2e76 changeQuestMessageText", + "completePlayerMessage": "666314a31cd52e3d040a2e76 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6669abb870e0328366d3a95a", + "conditions": [ + { + "id": "6669abf2c9adc91c4b60061b", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBoar", + "bossBully", + "bossGluhar", + "bossKilla", + "bossKojaniy", + "bossKolontay", + "bossSanitar", + "bossTagilla", + "bossZryachiy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "6669ac18de9a775893d4b2f3", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "628baf0b967de16aab5a4f36" + ], + [ + "628b9c7d45122232a872358f" + ], + [ + "628b9784bcf6e2659e09b8a2" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + } + ] + }, + "id": "6669abb8dac5788ebd0ff74a", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6669a8a7465be3423719b01f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314a1920800278d0f6746", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314a31cd52e3d040a2e76 description", + "failMessageText": "666314a31cd52e3d040a2e76 failMessageText", + "declinePlayerMessage": "666314a31cd52e3d040a2e76 declinePlayerMessage", + "name": "666314a31cd52e3d040a2e76 name", + "note": "666314a31cd52e3d040a2e76 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/6682a79f3d914aa3b20e13cb.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314a31cd52e3d040a2e76 startedMessageText", + "successMessageText": "666314a31cd52e3d040a2e76 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "6669aad8920800278d0f676c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b02", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b02", + "_tpl": "628baf0b967de16aab5a4f36", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 92000, + "id": "66743bb9bd1574a8b90712c8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "66743bc401b5600773078b5c", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 340000, + "id": "66743bdbdbd6ff58100ee629", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b04", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b04", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 340000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66743be801b5600773078b5d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b1a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b0c", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b0d", + "_tpl": "657322988c1cc6dcd9098b2d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075b0e", + "_tpl": "657322a4cea9255e21023651", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075b0f", + "_tpl": "657322acd9d89ff7ac0d961b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075b10", + "_tpl": "657322b7d9d89ff7ac0d961f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075b11", + "_tpl": "656f664200d62bcd2e024077", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075b12", + "_tpl": "657b2797c3dbcb01d60c35ea", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b0c", + "slotId": "Back_plate" + }, + { + "_id": "6812400c0c5cf2cf75075b13", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b14", + "_tpl": "657322988c1cc6dcd9098b2d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075b15", + "_tpl": "657322a4cea9255e21023651", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075b16", + "_tpl": "657322acd9d89ff7ac0d961b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075b17", + "_tpl": "657322b7d9d89ff7ac0d961f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075b18", + "_tpl": "656f664200d62bcd2e024077", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075b19", + "_tpl": "657b2797c3dbcb01d60c35ea", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b13", + "slotId": "Back_plate" + }, + { + "_id": "6812400c0c5cf2cf75075b1a", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b1b", + "_tpl": "657322988c1cc6dcd9098b2d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075b1c", + "_tpl": "657322a4cea9255e21023651", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075b1d", + "_tpl": "657322acd9d89ff7ac0d961b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075b1e", + "_tpl": "657322b7d9d89ff7ac0d961f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075b1f", + "_tpl": "656f664200d62bcd2e024077", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075b20", + "_tpl": "657b2797c3dbcb01d60c35ea", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075b1a", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "6764939bbe89532a75b424a2", + "type": "CustomizationDirect", + "index": 0, + "target": "6754666c76e1f2b24c0cc956", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66ab970848ddbe9d4a0c49a8": { + "QuestName": "Special Comms", + "_id": "66ab970848ddbe9d4a0c49a8", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66ab970848ddbe9d4a0c49a8 acceptPlayerMessage", + "changeQuestMessageText": "66ab970848ddbe9d4a0c49a8 changeQuestMessageText", + "completePlayerMessage": "66ab970848ddbe9d4a0c49a8 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66ab9c5c60199cdb0902f8cc", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "Place_item_tools_woods", + "target": [ + "5d0375ff86f774186372f685" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66ab9c78e192b852d889e2bf", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "Place_item_tools_woods", + "target": [ + "619cbfeb6b8a1b37a54eebfa" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66ab970848ddbe9d4a0c49ad", + "conditions": [ + { + "id": "66aa5c2c2ba4b7b5dedbb17d", + "dynamicLocale": false, + "status": [ + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "66ab9c3ed412c1e8df3948ff", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "66ab970848ddbe9d4a0c49ab", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66ab9c914a7cba3ea786ce58", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "Place_item_tools_rezerve", + "target": [ + "5d0375ff86f774186372f685" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66ab9c7ea3a7219e87d4b75e", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "Place_item_tools_rezerve", + "target": [ + "619cbfeb6b8a1b37a54eebfa" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66b35339e342383cb849b7e6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "60896b7bfa70fc097863b8f5", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "66ab970848ddbe9d4a0c49a8 description", + "failMessageText": "66ab970848ddbe9d4a0c49a8 failMessageText", + "declinePlayerMessage": "66ab970848ddbe9d4a0c49a8 declinePlayerMessage", + "name": "66ab970848ddbe9d4a0c49a8 name", + "note": "66ab970848ddbe9d4a0c49a8 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "marathon", + "image": "/files/quest/icon/5d77a10586f7745041358b41.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66ab970848ddbe9d4a0c49a8 startedMessageText", + "successMessageText": "66ab970848ddbe9d4a0c49a8 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 2, + "id": "66b4e17203449f31fe0b815e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b23", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b22", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b23", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66b4e17d0fab9765d1089f54", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b26", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b25", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b26", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 12800, + "id": "66b4e18ad697bf7616062860", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66b4e1df03449f31fe0b815f", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 32000, + "id": "66b4e1ee5ff24fbf230014e2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b28", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b28", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 32000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66b4e20782fe17cf19023a64", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b29", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b29", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075b2a", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6812400c0c5cf2cf75075b29", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075b2b", + "_tpl": "5888956924597752983e182d", + "parentId": "6812400c0c5cf2cf75075b29", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075b2c", + "_tpl": "5888996c24597754281f9419", + "parentId": "6812400c0c5cf2cf75075b2b", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075b2d", + "_tpl": "5888976c24597754281f93f5", + "parentId": "6812400c0c5cf2cf75075b2b", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075b2e", + "_tpl": "57c55f172459772d27602381", + "parentId": "6812400c0c5cf2cf75075b29", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075b2f", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "6812400c0c5cf2cf75075b29", + "slotId": "mod_stock" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66b4e2187d633c785b026060", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b33", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b31", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b32", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b33", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66b4e23a204c6261cd0856f2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b3a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b36", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b37", + "_tpl": "5e023e53d4353e3302577c4c", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075b36", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075b38", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b39", + "_tpl": "5e023e53d4353e3302577c4c", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075b38", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075b3a", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b3b", + "_tpl": "5e023e53d4353e3302577c4c", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075b3a", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa3910c828825de06d69f": { + "QuestName": "A Healthy Alternative", + "_id": "669fa3910c828825de06d69f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa3910c828825de06d69f acceptPlayerMessage", + "changeQuestMessageText": "669fa3910c828825de06d69f changeQuestMessageText", + "completePlayerMessage": "669fa3910c828825de06d69f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "669faef62c68a5925a36fccc", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66c0b39ca1f68fcc1d0c0cc3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa24dc0f10ce8d6dd14ff8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa38fad7f1eac2607ed46", + "status": [ + 2 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "66a2e44f81ce653e06688365", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa38fad7f1eac2607ed46", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "669fa3910c828825de06d69f description", + "failMessageText": "669fa3910c828825de06d69f failMessageText", + "declinePlayerMessage": "669fa3910c828825de06d69f declinePlayerMessage", + "name": "669fa3910c828825de06d69f name", + "note": "669fa3910c828825de06d69f note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa3910c828825de06d69f startedMessageText", + "successMessageText": "669fa3910c828825de06d69f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13500, + "id": "66aa24ec30c6d0aae40a9f69", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa24fbc4c5c04798003b13", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 86000, + "id": "66aa253c58f762935c03db1d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b3d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b3d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 86000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "66aa25d891b0a8c9680fdbc2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b40", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b3f", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b40", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5d25cf2686f77443e75488d4": { + "QuestName": "The Survivalist Path - Tough Guy", + "_id": "5d25cf2686f77443e75488d4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25cf2686f77443e75488d4 acceptPlayerMessage", + "changeQuestMessageText": "5d25cf2686f77443e75488d4 changeQuestMessageText", + "completePlayerMessage": "5d25cf2686f77443e75488d4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d25d09286f77444001e284b", + "conditions": [ + { + "id": "5d25d0b186f77408251c422f", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": true, + "conditionType": "Kills" + }, + { + "id": "5d3079e386f77447f00acc3d", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5d25d09286f77444001e284c", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5d9c941f86f7743554286958", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25c81b86f77443e625dd71", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d25d0d186f7740a22515974", + "conditions": [ + { + "id": "5d25d14786f77409de05b575", + "dynamicLocale": false, + "target": [ + "590c661e86f7741e566b646a", + "590c678286f77426c9660122", + "590c657e86f77412b013051d", + "5755356824597772cb798962", + "544fb45d4bdc2dee738b4568", + "590c695186f7741e566b64a2", + "5751a89d24597722aa0e8db0", + "5af0548586f7743a532b7e99", + "544fb3f34bdc2d03748b456a", + "544fb37f4bdc2dee738b4567", + "5755383e24597772cb798966", + "544fb25a4bdc2dfb738b4567", + "5751a25924597722c463c472", + "5d02778e86f774203e7dedbe", + "5af0454c86f7746bf20992e8", + "544fb3364bdc2d34748b456a", + "5af0454c86f7746bf20992e8", + "5d02797c86f774203f38e30a", + "5c10c8fd86f7743d7d706df3", + "5c0e530286f7747fa1419862", + "5c0e531286f7747fa54205c2", + "5c0e531d86f7747fa23f4d42", + "5c0e533786f7747fa23f4d47", + "5c0e534186f7747fa1419867", + "60098ad7c2240c0fe85c570a", + "5e8488fa988a8701445df1e4", + "5fca138c2a7b221b2852a5c6", + "5fca13ca637ee0341a484f46", + "5e831507ea0a7c419c2f9bd9", + "5ed5166ad380ab312177c100", + "60098af40accd37ef2175f27", + "5ed5160a87bb8443d10680b5", + "5ed515c8d380ab312177c0fa", + "5ed515f6915ec335206e4152", + "5ed51652f6c34d2cc26336a1", + "5ed515e03a40a50460332579", + "5ed515ece452db0eb56fc028", + "637b60c3b7afa97bfc3d7001", + "637b6179104668754b72f8f5", + "637b6251104668754b72f8f9", + "637b612fb7afa97bfc3d7005", + "637b620db7afa97bfc3d7009", + "66507eabf5ddb0818b085b68" + ], + "compareMethod": ">=", + "value": 1, + "conditionType": "UseItem" + }, + { + "id": "5de766fb020b3a0a5a187f13", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5d25d0d186f7740a22515975", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] + }, + "description": "5d25cf2686f77443e75488d4 description", + "failMessageText": "5d25cf2686f77443e75488d4 failMessageText", + "declinePlayerMessage": "5d25cf2686f77443e75488d4 declinePlayerMessage", + "name": "5d25cf2686f77443e75488d4 name", + "note": "5d25cf2686f77443e75488d4 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5d67b49186f774266f0867b3.jpg", + "type": "Completion", + "isKey": false, + "restartable": true, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25cf2686f77443e75488d4 startedMessageText", + "successMessageText": "5d25cf2686f77443e75488d4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7000, + "id": "60cca0eaa7d63f18200a251a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cca1365f9e6175514de2d0", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 40000, + "id": "5d66711886f774131e206b33", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b42", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b42", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 40000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5d66714286f774368f43a1e0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b44", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b44", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "5d66716986f774266f07fc92", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b48", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b46", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b47", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b48", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "60cca107a7d63f18200a251b", + "type": "Skill", + "index": 0, + "target": "Perception", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639872f9decada40426d3447": { + "QuestName": "Gunsmith - Part 4", + "_id": "639872f9decada40426d3447", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639872f9decada40426d3447 acceptPlayerMessage", + "changeQuestMessageText": "639872f9decada40426d3447 changeQuestMessageText", + "completePlayerMessage": "639872f9decada40426d3447 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "63987404e5163c24b3029356", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "587e02ff24597743df3deaeb" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 600.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 35.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 20, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 350.0, + "compareMethod": "<=" + }, + "weight": { + "value": 6.0, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "639aea505b759c65a34764e5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac2426c86f774138762edfe", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "639aea3c2a994a11600df095", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ac2428686f77412450b42bf", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "639aea5d5573fd6cc27d9975", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 9, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639872f9decada40426d3447 description", + "failMessageText": "639872f9decada40426d3447 failMessageText", + "declinePlayerMessage": "639872f9decada40426d3447 declinePlayerMessage", + "name": "639872f9decada40426d3447 name", + "note": "639872f9decada40426d3447 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/63aae970f83fd6083938904e.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639872f9decada40426d3447 startedMessageText", + "successMessageText": "639872f9decada40426d3447 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 3600, + "id": "6398a324eee7ff72370f7dd8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "6398a34edecada40426d344a", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 25000, + "id": "6398a300e11ec11ff5504038", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b4a", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b4a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 25000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398a400cd51826f7a069b87", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b4d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b4c", + "_tpl": "590c5a7286f7747884343aea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b4d", + "_tpl": "590c5a7286f7747884343aea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6398a40dddab1d61bf383d15", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b4f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b4f", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6398a424c8f8cc12a47b02a7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b51", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b51", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "665eeca92f7aedcc900b0437": { "QuestName": "Thirsty - Secrets", "_id": "665eeca92f7aedcc900b0437", @@ -94544,11 +89544,11 @@ "id": "6671de23baf4e04a020c7322", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b2889", + "target": "6812400c0c5cf2cf75075b53", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b2889", + "_id": "6812400c0c5cf2cf75075b53", "_tpl": "66507eabf5ddb0818b085b68", "upd": { "StackObjectsCount": 1, @@ -94570,103 +89570,95 @@ "arenaLocations": [], "status": 0 }, - "5ae3277186f7745973054106": { - "QuestName": "Gunsmith - Part 8", - "_id": "5ae3277186f7745973054106", + "669fa3979b0ce3feae01a130": { + "QuestName": "Claustrophobia", + "_id": "669fa3979b0ce3feae01a130", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae3277186f7745973054106 acceptPlayerMessage", - "changeQuestMessageText": "5ae3277186f7745973054106 changeQuestMessageText", - "completePlayerMessage": "5ae3277186f7745973054106 completePlayerMessage", + "acceptPlayerMessage": "669fa3979b0ce3feae01a130 acceptPlayerMessage", + "changeQuestMessageText": "669fa3979b0ce3feae01a130 changeQuestMessageText", + "completePlayerMessage": "669fa3979b0ce3feae01a130 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "WeaponAssembly", - "id": "5ae3570b86f7746efa6b4494", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "669fb1ff1aefeabc40e9b336", + "conditions": [ + { + "id": "669fb3b1b041bd8adb9cfe06", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "64748cb8de82c85eaf0a273a", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "60db29ce99594040e04c4a27", + "66ffa9b66e19cc902401c5e8", + "67124dcfa3541f2a1f0e788b" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "66a2e2ce0d9f705feb2ee72c", + "dynamicLocale": false, + "zoneIds": [ + "nf2024_4_zone_kill1" + ], + "conditionType": "InZone" + } + ] + }, + "id": "669fb1ffe34e78d618792b41", "index": 0, "parentId": "", + "oneSessionOnly": false, "dynamicLocale": false, - "target": [ - "5ab8e9fcd8ce870019439434" - ], + "type": "Elimination", + "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 5, "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 65.0, - "compareMethod": ">=" - }, - "height": { - "value": 2, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 30, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 275.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 5, - "compareMethod": ">=" - }, - "containsItems": [ - "5649ab884bdc2ded0b8b457f", - "5649af884bdc2d1b2b8b4589", - "5649ae4a4bdc2d1b2b8b4588", - "59ecc3dd86f7746dc827481c", - "5bed61680db834001d2c45ab", - "5efaf417aeb21837e749c7f2", - "5c1bc4812e22164bef5cfde7", - "5a5f1ce64f39f90b401987bc" - ], - "hasItemFromCategory": [] + "isNecessary": false, + "isResetOnConditionFailed": false } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af413b686f774522c7a6791", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "5af413ae86f774522e3438a5", + "id": "66aa3b5d39badb72cf499df7", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac244eb86f7741356335af1", + "target": "5d25e2cc86f77443e47ae019", "status": [ 4 ], @@ -94678,56 +89670,56 @@ ], "Fail": [] }, - "description": "5ae3277186f7745973054106 description", - "failMessageText": "5ae3277186f7745973054106 failMessageText", - "declinePlayerMessage": "5ae3277186f7745973054106 declinePlayerMessage", - "name": "5ae3277186f7745973054106 name", - "note": "5ae3277186f7745973054106 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ae327a086f7745c7b3f2f38.jpg", - "type": "WeaponAssembly", + "description": "669fa3979b0ce3feae01a130 description", + "failMessageText": "669fa3979b0ce3feae01a130 failMessageText", + "declinePlayerMessage": "669fa3979b0ce3feae01a130 declinePlayerMessage", + "name": "669fa3979b0ce3feae01a130 name", + "note": "669fa3979b0ce3feae01a130 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acec41aa4a19c4f90881ca.png", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5ae3277186f7745973054106 startedMessageText", - "successMessageText": "5ae3277186f7745973054106 successMessageText", + "startedMessageText": "669fa3979b0ce3feae01a130 startedMessageText", + "successMessageText": "669fa3979b0ce3feae01a130 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 8600, - "id": "60cc77e2179f8541b8469268", + "value": 25400, + "id": "66aa3b6a8b4a64b33204377b", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60cc77ed98b49270603645d5", + "value": 0.03, + "id": "66aa3b73c26f13bd0403281f", "type": "TraderStanding", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 75000, - "id": "5ae9972186f77439b61d2aef", + "value": 89000, + "id": "66aa3b80e0c9f9fafa08366e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b288b", + "target": "6812400c0c5cf2cf75075b55", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b288b", + "_id": "6812400c0c5cf2cf75075b55", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 75000 + "StackObjectsCount": 89000 } } ] @@ -94735,104 +89727,262 @@ { "availableInGameEditions": [], "value": 2, - "id": "6398abefddab1d61bf383d17", + "id": "66aa3b9e30c6d0aae40a9f73", "type": "Item", "index": 0, - "target": "68010065f81036801d0b288e", + "target": "6812400c0c5cf2cf75075b58", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b288d", - "_tpl": "5a957c3fa2750c00137fa5f7", + "_id": "6812400c0c5cf2cf75075b57", + "_tpl": "5b2388675acfc4771e1be0be", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b288e", - "_tpl": "5a957c3fa2750c00137fa5f7", + "_id": "6812400c0c5cf2cf75075b58", + "_tpl": "5b2388675acfc4771e1be0be", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] - }, + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "671a59e43d73dac1360765cc": { + "QuestName": "Dangerous Props", + "_id": "671a59e43d73dac1360765cc", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "671a59e43d73dac1360765cc acceptPlayerMessage", + "changeQuestMessageText": "671a59e43d73dac1360765cc changeQuestMessageText", + "completePlayerMessage": "671a59e43d73dac1360765cc completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "671ac68e12c0462931ecebe2", + "conditions": [ + { + "id": "671ac6fdbe99a966448e33bc", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "66ffa9b66e19cc902401c5e8", + "67124dcfa3541f2a1f0e788b" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "671ac68e30609eb2c7e9a7f7", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "671b6d0a760e7e277d0b982c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "671a49f77d49aea42c029b5f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "671a59e43d73dac1360765cc description", + "failMessageText": "671a59e43d73dac1360765cc failMessageText", + "declinePlayerMessage": "671a59e43d73dac1360765cc declinePlayerMessage", + "name": "671a59e43d73dac1360765cc name", + "note": "671a59e43d73dac1360765cc note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/671f916cc05619cdf408bc6c.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "671a59e43d73dac1360765cc startedMessageText", + "successMessageText": "671a59e43d73dac1360765cc successMessageText", + "rewards": { + "Started": [ { "availableInGameEditions": [], - "value": 2, - "id": "6398ac0c93ae507d5858c3aa", + "value": 1, + "id": "671b6f2eac3004308ebcb9b3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2891", + "target": "6812400c0c5cf2cf75075b59", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2890", - "_tpl": "5f633f791b231926f2329f13", + "_id": "6812400c0c5cf2cf75075b59", + "_tpl": "66ffa9b66e19cc902401c5e8", "upd": { "StackObjectsCount": 1, - "SpawnedInSession": true + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } } }, { - "_id": "68010065f81036801d0b2891", - "_tpl": "5f633f791b231926f2329f13", + "_id": "6812400c0c5cf2cf75075b5a", + "_tpl": "66ffac9e316b08f6840a73e6", + "parentId": "6812400c0c5cf2cf75075b59", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075b5b", + "_tpl": "6709133fa532466d5403fb7c", + "parentId": "6812400c0c5cf2cf75075b59", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075b5c", + "_tpl": "670fced86a7e274b1a0964e8", + "parentId": "6812400c0c5cf2cf75075b59", + "slotId": "mod_barrel" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 39900, + "id": "671b6f42bdc0b163a3727ce5", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "671b6f493d4ac78735b3991b", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 130000, + "id": "671b6f50829014d3f1518d4c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b5e", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b5e", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 130000 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "6398ac34e11ec11ff550403a", - "type": "Item", + "id": "671b6f60d4fcd37a10595f6c", + "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2896", - "unknown": true, - "findInRaid": true, + "target": "6812400c0c5cf2cf75075b5f", + "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2894", - "_tpl": "57372bd3245977670b7cd243", + "_id": "6812400c0c5cf2cf75075b5f", + "_tpl": "67124dcfa3541f2a1f0e788b", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } } }, { - "_id": "68010065f81036801d0b2895", - "_tpl": "56dff026d2720bb8668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2894", - "slotId": "cartridges" + "_id": "6812400c0c5cf2cf75075b60", + "_tpl": "670fd23798663bc4b10e911a", + "parentId": "6812400c0c5cf2cf75075b5f", + "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2896", - "_tpl": "57372bd3245977670b7cd243", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } + "_id": "6812400c0c5cf2cf75075b61", + "_tpl": "66ffaab91f7492c901027bb8", + "parentId": "6812400c0c5cf2cf75075b5f", + "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2897", - "_tpl": "56dff026d2720bb8668b4567", - "upd": { - "StackObjectsCount": 30 - }, - "parentId": "68010065f81036801d0b2896", - "slotId": "cartridges" + "_id": "6812400c0c5cf2cf75075b62", + "_tpl": "670fd03dc424cf758f006946", + "parentId": "6812400c0c5cf2cf75075b5f", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075b63", + "_tpl": "670fd0eed8d4eae4790c818a", + "parentId": "6812400c0c5cf2cf75075b62", + "slotId": "mod_muzzle" } - ] + ], + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" } ], "Fail": [] @@ -94997,12 +90147,12 @@ "id": "5d66943d86f774131e206b66", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2899", + "target": "6812400c0c5cf2cf75075b65", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2899", + "_id": "6812400c0c5cf2cf75075b65", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 16000 @@ -95016,12 +90166,12 @@ "id": "5d66944e86f7744dcc5e2f75", "type": "Item", "index": 0, - "target": "68010065f81036801d0b289d", + "target": "6812400c0c5cf2cf75075b69", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b289b", + "_id": "6812400c0c5cf2cf75075b67", "_tpl": "590c31c586f774245e3141b2", "upd": { "StackObjectsCount": 1, @@ -95029,7 +90179,7 @@ } }, { - "_id": "68010065f81036801d0b289c", + "_id": "6812400c0c5cf2cf75075b68", "_tpl": "590c31c586f774245e3141b2", "upd": { "StackObjectsCount": 1, @@ -95037,7 +90187,7 @@ } }, { - "_id": "68010065f81036801d0b289d", + "_id": "6812400c0c5cf2cf75075b69", "_tpl": "590c31c586f774245e3141b2", "upd": { "StackObjectsCount": 1, @@ -95052,12 +90202,12 @@ "id": "5d66946686f774368d281b03", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28a1", + "target": "6812400c0c5cf2cf75075b6d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b289f", + "_id": "6812400c0c5cf2cf75075b6b", "_tpl": "59e35ef086f7741777737012", "upd": { "StackObjectsCount": 1, @@ -95065,7 +90215,7 @@ } }, { - "_id": "68010065f81036801d0b28a0", + "_id": "6812400c0c5cf2cf75075b6c", "_tpl": "59e35ef086f7741777737012", "upd": { "StackObjectsCount": 1, @@ -95073,7 +90223,7 @@ } }, { - "_id": "68010065f81036801d0b28a1", + "_id": "6812400c0c5cf2cf75075b6d", "_tpl": "59e35ef086f7741777737012", "upd": { "StackObjectsCount": 1, @@ -95088,12 +90238,12 @@ "id": "5d66947c86f774131e206b68", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28a3", + "target": "6812400c0c5cf2cf75075b6f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28a3", + "_id": "6812400c0c5cf2cf75075b6f", "_tpl": "5d1b39a386f774252339976f", "upd": { "StackObjectsCount": 1, @@ -95108,12 +90258,12 @@ "id": "60ccacd55f9e6175514de2de", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28a6", + "target": "6812400c0c5cf2cf75075b72", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28a5", + "_id": "6812400c0c5cf2cf75075b71", "_tpl": "5d1b309586f77425227d1676", "upd": { "StackObjectsCount": 1, @@ -95121,7 +90271,7 @@ } }, { - "_id": "68010065f81036801d0b28a6", + "_id": "6812400c0c5cf2cf75075b72", "_tpl": "5d1b309586f77425227d1676", "upd": { "StackObjectsCount": 1, @@ -95547,12 +90697,12 @@ "id": "66aa36ea023055273703d88c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28a8", + "target": "6812400c0c5cf2cf75075b74", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28a8", + "_id": "6812400c0c5cf2cf75075b74", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 46000 @@ -95566,12 +90716,12 @@ "id": "66aa3700fb57cc8a5404ac64", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28ac", + "target": "6812400c0c5cf2cf75075b78", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28aa", + "_id": "6812400c0c5cf2cf75075b76", "_tpl": "590c5bbd86f774785762df04", "upd": { "StackObjectsCount": 1, @@ -95579,7 +90729,7 @@ } }, { - "_id": "68010065f81036801d0b28ab", + "_id": "6812400c0c5cf2cf75075b77", "_tpl": "590c5bbd86f774785762df04", "upd": { "StackObjectsCount": 1, @@ -95587,7 +90737,7 @@ } }, { - "_id": "68010065f81036801d0b28ac", + "_id": "6812400c0c5cf2cf75075b78", "_tpl": "590c5bbd86f774785762df04", "upd": { "StackObjectsCount": 1, @@ -95602,12 +90752,12 @@ "id": "66aa370ce749756c920d336e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28b0", + "target": "6812400c0c5cf2cf75075b7c", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28ae", + "_id": "6812400c0c5cf2cf75075b7a", "_tpl": "590a3c0a86f774385a33c450", "upd": { "StackObjectsCount": 1, @@ -95615,7 +90765,7 @@ } }, { - "_id": "68010065f81036801d0b28af", + "_id": "6812400c0c5cf2cf75075b7b", "_tpl": "590a3c0a86f774385a33c450", "upd": { "StackObjectsCount": 1, @@ -95623,7 +90773,7 @@ } }, { - "_id": "68010065f81036801d0b28b0", + "_id": "6812400c0c5cf2cf75075b7c", "_tpl": "590a3c0a86f774385a33c450", "upd": { "StackObjectsCount": 1, @@ -95643,6 +90793,4341 @@ "arenaLocations": [], "status": 0 }, + "669fa39ee749756c920d02c8": { + "QuestName": "All Is Revealed", + "_id": "669fa39ee749756c920d02c8", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa39ee749756c920d02c8 acceptPlayerMessage", + "changeQuestMessageText": "669fa39ee749756c920d02c8 changeQuestMessageText", + "completePlayerMessage": "669fa39ee749756c920d02c8 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "669fb6c859bdae826f7325d4", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "669fac549b0ce3feae01a137" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66a7eebed6bac3ecc16f7d6b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "669fac549b0ce3feae01a137" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa3afdeb23739ed385f1a8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa3a1c26f13bd04030f37", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "669fa39ee749756c920d02c8 description", + "failMessageText": "669fa39ee749756c920d02c8 failMessageText", + "declinePlayerMessage": "669fa39ee749756c920d02c8 declinePlayerMessage", + "name": "669fa39ee749756c920d02c8 name", + "note": "669fa39ee749756c920d02c8 note", + "traderId": "54cb57776803fa99248b456e", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acec97ec21e102040a047d.png", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa39ee749756c920d02c8 startedMessageText", + "successMessageText": "669fa39ee749756c920d02c8 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 17200, + "id": "66aa3b0664ea11e84c065d5f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa3b10e749756c920d3370", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 63000, + "id": "66aa3b1c91b0a8c9680fdbcb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b7e", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b7e", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 63000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66aa3b2b64ea11e84c065d60", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b80", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b80", + "_tpl": "590c60fc86f77412b13fddcf", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa3a1c26f13bd04030f37": { + "QuestName": "Capacity Check", + "_id": "669fa3a1c26f13bd04030f37", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa3a1c26f13bd04030f37 acceptPlayerMessage", + "changeQuestMessageText": "669fa3a1c26f13bd04030f37 changeQuestMessageText", + "completePlayerMessage": "669fa3a1c26f13bd04030f37 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66a0e7581ad4ff329a13ebc8", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_10_1", + "target": [ + "590c2e1186f77425357b6124" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66a0e75bd9cb07ea69e018c7", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_10_2", + "target": [ + "590c2e1186f77425357b6124" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66a0e75df6e0911101eed474", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_10_3", + "target": [ + "590c2e1186f77425357b6124" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa37922fc57b00186835ec", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa394e0c9f9fafa082897", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "66aa379db03a317f0540a160", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ac345dc86f774288030817f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "669fa3a1c26f13bd04030f37 description", + "failMessageText": "669fa3a1c26f13bd04030f37 failMessageText", + "declinePlayerMessage": "669fa3a1c26f13bd04030f37 declinePlayerMessage", + "name": "669fa3a1c26f13bd04030f37 name", + "note": "669fa3a1c26f13bd04030f37 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acecc4ec21e102040a047f.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa3a1c26f13bd04030f37 startedMessageText", + "successMessageText": "669fa3a1c26f13bd04030f37 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 16500, + "id": "66aa37bc1e5e199ecd094f0d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa37c730c6d0aae40a9f71", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 58000, + "id": "66aa37d458f762935c03db20", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b82", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b82", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 58000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66aa3812e0c9f9fafa08366d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b83", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b83", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400c0c5cf2cf75075b84", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6812400c0c5cf2cf75075b83", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075b85", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "6812400c0c5cf2cf75075b83", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075b86", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "6812400c0c5cf2cf75075b83", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075b87", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "6812400c0c5cf2cf75075b86", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075b88", + "_tpl": "618407a850224f204c1da549", + "parentId": "6812400c0c5cf2cf75075b87", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075b89", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6812400c0c5cf2cf75075b87", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075b8a", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6812400c0c5cf2cf75075b86", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075b8b", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6812400c0c5cf2cf75075b86", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075b8c", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6812400c0c5cf2cf75075b86", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075b8d", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6812400c0c5cf2cf75075b83", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075b8e", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6812400c0c5cf2cf75075b8d", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf75075b8f", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6812400c0c5cf2cf75075b8e", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075b90", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6812400c0c5cf2cf75075b8d", + "slotId": "mod_stock_002" + }, + { + "_id": "6812400c0c5cf2cf75075b91", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6812400c0c5cf2cf75075b83", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa383891b0a8c9680fdbca", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b95", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b93", + "_tpl": "61840d85568c120fdd2962a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b94", + "_tpl": "61840d85568c120fdd2962a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b95", + "_tpl": "61840d85568c120fdd2962a5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa38fac4c5c04798003b1c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b9c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b98", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b99", + "_tpl": "54527a984bdc2d4e668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075b98", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075b9a", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b9b", + "_tpl": "54527a984bdc2d4e668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075b9a", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075b9c", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075b9d", + "_tpl": "54527a984bdc2d4e668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075b9c", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6663148ca9290f9e0806cca1": { + "QuestName": "Immunity", + "_id": "6663148ca9290f9e0806cca1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6663148ca9290f9e0806cca1 acceptPlayerMessage", + "changeQuestMessageText": "6663148ca9290f9e0806cca1 changeQuestMessageText", + "completePlayerMessage": "6663148ca9290f9e0806cca1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "666719fcaf3dde7223ac57d5", + "conditions": [ + { + "id": "66671c4f297809457fe5e6a7", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "6672e2859b857136e1bc6f48", + "dynamicLocale": false, + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Stomach" + ], + "effects": [ + "Intoxication" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 0, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + } + ] + }, + "id": "666719fc7c5ae40e6adcf43e", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "666719d04091c71c6d736f5d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "66631489acf8442f8b05319f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6663148ca9290f9e0806cca1 description", + "failMessageText": "6663148ca9290f9e0806cca1 failMessageText", + "declinePlayerMessage": "6663148ca9290f9e0806cca1 declinePlayerMessage", + "name": "6663148ca9290f9e0806cca1 name", + "note": "6663148ca9290f9e0806cca1 note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6663148ca9290f9e0806cca1 startedMessageText", + "successMessageText": "6663148ca9290f9e0806cca1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 28000, + "id": "667420a7f4584e58770d8a94", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667420b4f4584e58770d8a95", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1150, + "id": "667420d07b0373b49700c508", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075b9f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075b9f", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1150 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "667420db29da3476e604f4b5", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ba5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ba1", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ba2", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ba3", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ba4", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ba5", + "_tpl": "5fca138c2a7b221b2852a5c6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "66631493312343839d032d22": { + "QuestName": "Small Business - Part 3", + "_id": "66631493312343839d032d22", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "66631493312343839d032d22 acceptPlayerMessage", + "changeQuestMessageText": "66631493312343839d032d22 changeQuestMessageText", + "completePlayerMessage": "66631493312343839d032d22 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "666733e0c62a5c652f3c4b45", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "unkown_mark_2", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "666733e3f2c2969cf600991b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_peacemaker_007_2_N3", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "666733e565831d5bafa18bbb", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_peacemaker_007_2_N2", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "666733e7430c8972d6a5f438", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_peacemaker_007_2_N2_1", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6667338266dc03cc04ef1153", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6663149196a9349baa021baa", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "66631493312343839d032d22 description", + "failMessageText": "66631493312343839d032d22 failMessageText", + "declinePlayerMessage": "66631493312343839d032d22 declinePlayerMessage", + "name": "66631493312343839d032d22 name", + "note": "66631493312343839d032d22 note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "66631493312343839d032d22 startedMessageText", + "successMessageText": "66631493312343839d032d22 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 30000, + "id": "6674228529da3476e604f4b7", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "6674228fdceb304bf30b1ff2", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [ + "tournament_live", + "tournament", + "standard", + "press_edition", + "left_behind", + "prepare_for_escape", + "exhibition", + "edge_of_darkness", + "develop" + ], + "value": 2000, + "id": "6682b19d36c4afb83a0ff0d9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ba7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ba7", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 2000 + } + } + ] + }, + { + "availableInGameEditions": [ + "develop", + "edge_of_darkness", + "exhibition", + "left_behind", + "prepare_for_escape", + "press_edition", + "standard", + "tournament_live", + "tournament" + ], + "value": 1, + "id": "66797fc869825e8dc200217c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ba9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ba9", + "_tpl": "65ddcc9cfa85b9f17d0dfb07", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4493d86f7744b8e15aa8f": { + "QuestName": "Database - Part 2", + "_id": "5ae4493d86f7744b8e15aa8f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4493d86f7744b8e15aa8f acceptPlayerMessage", + "changeQuestMessageText": "5ae4493d86f7744b8e15aa8f changeQuestMessageText", + "completePlayerMessage": "5ae4493d86f7744b8e15aa8f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b5bd86f774307c29df37", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a25386f7746dd946e6d9" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b63286f774229110402d", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a25386f7746dd946e6d9" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae9b64a86f77450fb040b1c", + "target": "5ae9b5bd86f774307c29df37", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af415c386f7745c267423a7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4493486f7744efa289417", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4493d86f7744b8e15aa8f description", + "failMessageText": "5ae4493d86f7744b8e15aa8f failMessageText", + "declinePlayerMessage": "5ae4493d86f7744b8e15aa8f declinePlayerMessage", + "name": "5ae4493d86f7744b8e15aa8f name", + "note": "5ae4493d86f7744b8e15aa8f note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a7d286f7744748710d74.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4493d86f7744b8e15aa8f startedMessageText", + "successMessageText": "5ae4493d86f7744b8e15aa8f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8500, + "id": "60cc833a77dc197c774254e0", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc8343e3d0247e625dab8b", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc835e98b49270603645f3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bab", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bab", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc836c77dc197c774254e3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bad", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bad", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b8876b71eeb7c4168c634", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075bae", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bae", + "_tpl": "5d5d646386f7742797261fd9" + } + ], + "loyaltyLevel": 2, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac2426c86f774138762edfe": { + "QuestName": "Gunsmith - Part 2", + "_id": "5ac2426c86f774138762edfe", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac2426c86f774138762edfe acceptPlayerMessage", + "changeQuestMessageText": "5ac2426c86f774138762edfe changeQuestMessageText", + "completePlayerMessage": "5ac2426c86f774138762edfe completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5accd9b686f774112d7173d1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "57dc2fa62459775949412633" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 100.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 58.0, + "compareMethod": ">=" + }, + "height": { + "value": 2, + "compareMethod": "<=" + }, + "magazineCapacity": { + "value": 60, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 550.0, + "compareMethod": "<=" + }, + "weight": { + "value": 3.5, + "compareMethod": "<=" + }, + "width": { + "value": 3, + "compareMethod": "<=" + }, + "containsItems": [ + "57ffa9f4245977728561e844" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf37a186f7741843346d0c", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf37ad86f77418420befe6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac23c6186f7741247042bad", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac2426c86f774138762edfe description", + "failMessageText": "5ac2426c86f774138762edfe failMessageText", + "declinePlayerMessage": "5ac2426c86f774138762edfe declinePlayerMessage", + "name": "5ac2426c86f774138762edfe name", + "note": "5ac2426c86f774138762edfe note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ae3260986f7745b3e3bf2a7.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac2426c86f774138762edfe startedMessageText", + "successMessageText": "5ac2426c86f774138762edfe successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "5ad07e8f86f7742f92462779", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075baf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075baf", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400c0c5cf2cf75075bb0", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075bb1", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075bb2", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075bb3", + "_tpl": "57dc324a24597759501edc20", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075bb4", + "_tpl": "57dc334d245977597164366f", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075bb5", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "6812400c0c5cf2cf75075baf", + "slotId": "mod_gas_block" + }, + { + "_id": "6812400c0c5cf2cf75075bb6", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "6812400c0c5cf2cf75075bb5", + "slotId": "mod_handguard" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 2000, + "id": "5c950c8086f77455192fa441", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc752f77dc197c774254c0", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 15000, + "id": "5acb80b286f7742b0b02e96a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bb8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bb8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 15000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc754798b49270603645d0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bbb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bba", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bbb", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc759b6a2a1958fc523200", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bbe", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bbd", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bbe", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "63989e07cd51826f7a069b86", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bc1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bc0", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bc1", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19b07fcae11642e50f9b2", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075bc2", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bc2", + "_tpl": "5cbda392ae92155f3c17c39f" + } + ], + "loyaltyLevel": 1, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa399033a3ce9870338a8": { + "QuestName": "Possessor", + "_id": "669fa399033a3ce9870338a8", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa399033a3ce9870338a8 acceptPlayerMessage", + "changeQuestMessageText": "669fa399033a3ce9870338a8 changeQuestMessageText", + "completePlayerMessage": "669fa399033a3ce9870338a8 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "669fb4a56e66d3d79183a5c9", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66c0b90c8398582e4b0c2e27" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "669fb4b21f2e5268651cc96a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66c0b90c8398582e4b0c2e27" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa21174aeb059fb0bdbe04", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59675ea386f77414b32bded2", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "669fa399033a3ce9870338a8 description", + "failMessageText": "669fa399033a3ce9870338a8 failMessageText", + "declinePlayerMessage": "669fa399033a3ce9870338a8 declinePlayerMessage", + "name": "669fa399033a3ce9870338a8 name", + "note": "669fa399033a3ce9870338a8 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acec55f85b8bf7250f9cad.png", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa399033a3ce9870338a8 startedMessageText", + "successMessageText": "669fa399033a3ce9870338a8 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7300, + "id": "66aa21428b4a64b33204376e", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa22a3e0c9f9fafa083668", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 47000, + "id": "66aa22b21e5e199ecd094f07", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bc4", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bc4", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 47000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66aa22c091b0a8c9680fdbbf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bc6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bc6", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6663149196a9349baa021baa": { + "QuestName": "Small Business - Part 2", + "_id": "6663149196a9349baa021baa", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6663149196a9349baa021baa acceptPlayerMessage", + "changeQuestMessageText": "6663149196a9349baa021baa changeQuestMessageText", + "completePlayerMessage": "6663149196a9349baa021baa completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66673229eebaa9483fff502a", + "conditions": [ + { + "id": "666732c4e2a9401fd8247255", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBoar", + "followerBoarClose1", + "followerBoarClose2", + "followerGluharAssault", + "followerGluharScout", + "followerBully", + "followerGluharSecurity", + "followerGluharSnipe", + "followerKojaniy", + "followerKolontayAssault", + "followerKolontaySecurity", + "followerSanitar", + "followerStormtrooper", + "bossBoarSniper" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "666732298477f79f3f6ea229", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "666731a6b166f5dfa6ff6b1e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6663148ed7f171c4c20226c1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6667323f7240038a4bb453b3", + "conditions": [ + { + "id": "66673293ce77f77ae3aad3d2", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBoar", + "bossBully", + "bossGluhar", + "bossKilla", + "bossKnight", + "bossKojaniy", + "bossKolontay", + "bossSanitar", + "bossTagilla", + "bossZryachiy", + "followerBigPipe", + "followerBirdEye", + "bossPartisan" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "6667323ff686168c451ad02c", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ] + }, + "description": "6663149196a9349baa021baa description", + "failMessageText": "6663149196a9349baa021baa failMessageText", + "declinePlayerMessage": "6663149196a9349baa021baa declinePlayerMessage", + "name": "6663149196a9349baa021baa name", + "note": "6663149196a9349baa021baa note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", + "type": "Elimination", + "isKey": false, + "restartable": true, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6663149196a9349baa021baa startedMessageText", + "successMessageText": "6663149196a9349baa021baa successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 36800, + "id": "667421677b0373b49700c509", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.04, + "id": "6674217015268503bf0fb60b", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2200, + "id": "6674217cf4584e58770d8a97", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bc8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bc8", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 2200 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6674218858678c865f0f028c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bcb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bca", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bcb", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314a50aa5c7436c00908a": { + "QuestName": "Old Patterns", + "_id": "666314a50aa5c7436c00908a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314a50aa5c7436c00908a acceptPlayerMessage", + "changeQuestMessageText": "666314a50aa5c7436c00908a changeQuestMessageText", + "completePlayerMessage": "666314a50aa5c7436c00908a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6669acb8c4d34bd547a4d2ac", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "59faff1d86f7746c51718c9c" + ], + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6669ac64f3d3418d0260c026", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314a31cd52e3d040a2e76", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314a50aa5c7436c00908a description", + "failMessageText": "666314a50aa5c7436c00908a failMessageText", + "declinePlayerMessage": "666314a50aa5c7436c00908a declinePlayerMessage", + "name": "666314a50aa5c7436c00908a name", + "note": "666314a50aa5c7436c00908a note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314a50aa5c7436c00908a startedMessageText", + "successMessageText": "666314a50aa5c7436c00908a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.01, + "id": "66743bfbf4584e58770d8aeb", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [ + "left_behind", + "prepare_for_escape", + "press_edition", + "standard", + "edge_of_darkness" + ], + "id": "6682724b2388eb5c9e059d62", + "type": "Pockets", + "index": 0, + "target": "65e080be269cbd5c5005e529", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae448f286f77448d73c0131": { + "QuestName": "The Blood of War - Part 1", + "_id": "5ae448f286f77448d73c0131", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae448f286f77448d73c0131 acceptPlayerMessage", + "changeQuestMessageText": "5ae448f286f77448d73c0131 changeQuestMessageText", + "completePlayerMessage": "5ae448f286f77448d73c0131 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "5ae452c086f774336a397578", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_WARBLOOD_04_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5ae452de86f77450595c4333", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_WARBLOOD_04_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "5ae452fa86f774336a39758e", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "place_WARBLOOD_04_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae4531986f774177033c3e5", + "conditions": [ + { + "id": "5ae4531f86f77417eb43f0d8", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ae4532486f77418215460fb", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ae4531986f774177033c3e6", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae4532a86f774336a39759e", + "target": "5ae452c086f774336a397578", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4532e86f774184a254940", + "target": "5ae452de86f77450595c4333", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4533286f7741b747a04d9", + "target": "5ae452fa86f774336a39758e", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5b50761b88a4507f45121125", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448e586f7744dcf0c2a67", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "6389fa44c3442f24872c1159", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448bf86f7744d733e55ee", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae448f286f77448d73c0131 description", + "failMessageText": "5ae448f286f77448d73c0131 failMessageText", + "declinePlayerMessage": "5ae448f286f77448d73c0131 declinePlayerMessage", + "name": "5ae448f286f77448d73c0131 name", + "note": "5ae448f286f77448d73c0131 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae448f286f77448d73c0131 startedMessageText", + "successMessageText": "5ae448f286f77448d73c0131 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7500, + "id": "5c95109a86f77455192fa44c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc81da7c496e588343a6f9", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 60000, + "id": "5ae9ad3986f77458b06d5625", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bcd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bcd", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 60000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc82077c496e588343a6fb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bd0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bcf", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bd0", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b951f32b0b1645e6f54cd", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075bd1", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bd1", + "_tpl": "6038d614d10cbf667352dd44" + } + ], + "loyaltyLevel": 2, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae448e586f7744dcf0c2a67": { + "QuestName": "Big Sale", + "_id": "5ae448e586f7744dcf0c2a67", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae448e586f7744dcf0c2a67 acceptPlayerMessage", + "changeQuestMessageText": "5ae448e586f7744dcf0c2a67 changeQuestMessageText", + "completePlayerMessage": "5ae448e586f7744dcf0c2a67 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae4508386f7741250488336", + "conditions": [ + { + "id": "5ae4509b86f774282006e469", + "dynamicLocale": false, + "target": "place_SALE_03_AVOKADO", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ae4508386f7741250488337", + "index": 0, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae450db86f7741250488358", + "conditions": [ + { + "id": "5ae450e286f7740f6409d278", + "dynamicLocale": false, + "target": "place_SALE_03_KOSTIN", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ae450db86f7741250488359", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae450ee86f7740f9307859c", + "conditions": [ + { + "id": "5ae450f686f774125048835f", + "dynamicLocale": false, + "target": "place_SALE_03_TREND", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ae450ee86f7740f9307859d", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae4510786f7740fa614399e", + "conditions": [ + { + "id": "5ae4511086f7740f6409d289", + "dynamicLocale": false, + "target": "place_SALE_03_DINO", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ae4510786f7740fa614399f", + "index": 3, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae4511d86f7740ffc31ccb4", + "conditions": [ + { + "id": "5ae4512686f774400872565c", + "dynamicLocale": false, + "target": "place_SALE_03_TOPBRAND", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "5ae4511d86f7740ffc31ccb5", + "index": 4, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae4514986f7740e915d218b", + "conditions": [ + { + "id": "5ae4515086f7741250488375", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5ae4516386f774282006e4ad", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ae4514986f7740e915d218c", + "index": 5, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae4516f86f7740e915d2196", + "target": "5ae4508386f7741250488337", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4517386f774282006e4b3", + "target": "5ae450db86f7741250488359", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4517786f774282006e4b5", + "target": "5ae450ee86f7740f9307859d", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4517c86f7740fa61439c0", + "target": "5ae4510786f7740fa614399f", + "conditionType": "CompleteCondition" + }, + { + "id": "5ae4518286f7740ffc31ccd8", + "target": "5ae4511d86f7740ffc31ccb5", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4155d86f7745b5e2aba63", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448a386f7744d3730fff0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae448e586f7744dcf0c2a67 description", + "failMessageText": "5ae448e586f7744dcf0c2a67 failMessageText", + "declinePlayerMessage": "5ae448e586f7744dcf0c2a67 declinePlayerMessage", + "name": "5ae448e586f7744dcf0c2a67 name", + "note": "5ae448e586f7744dcf0c2a67 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae448e586f7744dcf0c2a67 startedMessageText", + "successMessageText": "5ae448e586f7744dcf0c2a67 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8200, + "id": "60cc8192af2e5506c37822d1", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc81997c496e588343a6f7", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "60cc819ff09d61072d6d0112", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bd3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bd3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc81af6a2a1958fc52321c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bd5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bd5", + "_tpl": "5d5d940f86f7742797262046", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa3a3ad7f1eac2607ed48": { + "QuestName": "Health Care Privacy - Part 6", + "_id": "669fa3a3ad7f1eac2607ed48", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa3a3ad7f1eac2607ed48 acceptPlayerMessage", + "changeQuestMessageText": "669fa3a3ad7f1eac2607ed48 changeQuestMessageText", + "completePlayerMessage": "669fa3a3ad7f1eac2607ed48 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66a0f391676953651bd8b796", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66a0f0926fee20fa70036da6" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66a0f37f04fb80a0bfdbaf60", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66a0f0926fee20fa70036da6" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa3bf17e77460dc8413d3a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a68669a86f774255929b4d4", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "669fa3a3ad7f1eac2607ed48 description", + "failMessageText": "669fa3a3ad7f1eac2607ed48 failMessageText", + "declinePlayerMessage": "669fa3a3ad7f1eac2607ed48 declinePlayerMessage", + "name": "669fa3a3ad7f1eac2607ed48 name", + "note": "669fa3a3ad7f1eac2607ed48 note", + "traderId": "54cb57776803fa99248b456e", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acecda66265b5f5e0248f9.png", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa3a3ad7f1eac2607ed48 startedMessageText", + "successMessageText": "669fa3a3ad7f1eac2607ed48 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9300, + "id": "66aa3c001e5e199ecd094f11", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa3c0b30c6d0aae40a9f74", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 32000, + "id": "66aa3c16c4c5c04798003b1e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bd7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bd7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 32000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa3c2064ea11e84c065d61", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bdb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bd9", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bda", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bdb", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5eaaaa7c93afa0558f3b5a1c": { + "QuestName": "The Survivalist Path - Junkie", + "_id": "5eaaaa7c93afa0558f3b5a1c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5eaaaa7c93afa0558f3b5a1c acceptPlayerMessage", + "changeQuestMessageText": "5eaaaa7c93afa0558f3b5a1c changeQuestMessageText", + "completePlayerMessage": "5eaaaa7c93afa0558f3b5a1c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5d25dc2286f77443e7549027", + "conditions": [ + { + "id": "5d25dc3486f77408251c4bf8", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5d25dfb686f77444001e2e47", + "dynamicLocale": false, + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Head" + ], + "effects": [ + "Stimulator" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 0, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + }, + { + "id": "5edbb78c15eff66872602c4f", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "5eaaaa7c93afa0558f3b5a1f", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5eaaaa7c93afa0558f3b5a1e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2a986f77409dd5cdf2a", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5eaaaa7c93afa0558f3b5a1c description", + "failMessageText": "5eaaaa7c93afa0558f3b5a1c failMessageText", + "declinePlayerMessage": "5eaaaa7c93afa0558f3b5a1c declinePlayerMessage", + "name": "5eaaaa7c93afa0558f3b5a1c name", + "note": "5eaaaa7c93afa0558f3b5a1c note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5969f96786f7741dde183a4f.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5eaaaa7c93afa0558f3b5a1c startedMessageText", + "successMessageText": "5eaaaa7c93afa0558f3b5a1c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5900, + "id": "60ccad69646f74055e276544", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60ccad6d20a6283a506aeb4f", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "5eaaaa7c93afa0558f3b5a21", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bdd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bdd", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "5eaaaa7c93afa0558f3b5a23", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bea", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075be0", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075be1", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075be0", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075be2", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075be3", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075be2", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075be4", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075be5", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075be4", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075be6", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075be7", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075be6", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075be8", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075be9", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075be8", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075bea", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075beb", + "_tpl": "5c0d591486f7744c505b416f", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075bea", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "5eaaaa7c93afa0558f3b5a24", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bf4", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bee", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bef", + "_tpl": "5c0d5ae286f7741e46554302", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075bee", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075bf0", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bf1", + "_tpl": "5c0d5ae286f7741e46554302", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075bf0", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075bf2", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bf3", + "_tpl": "5c0d5ae286f7741e46554302", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075bf2", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075bf4", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bf5", + "_tpl": "5c0d5ae286f7741e46554302", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075bf4", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60ccadb198b4927060364616", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bf9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bf9", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075bfa", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400c0c5cf2cf75075bf9", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075bfb", + "_tpl": "56dff061d2720bb5668b4567", + "upd": { + "StackObjectsCount": 60 + }, + "parentId": "6812400c0c5cf2cf75075bf9", + "slotId": "cartridges", + "location": 1 + } + ] + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "5eaac4031d3e441928571bbc", + "type": "Skill", + "index": 0, + "target": "Metabolism", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae3277186f7745973054106": { + "QuestName": "Gunsmith - Part 8", + "_id": "5ae3277186f7745973054106", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae3277186f7745973054106 acceptPlayerMessage", + "changeQuestMessageText": "5ae3277186f7745973054106 changeQuestMessageText", + "completePlayerMessage": "5ae3277186f7745973054106 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5ae3570b86f7746efa6b4494", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5ab8e9fcd8ce870019439434" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 65.0, + "compareMethod": ">=" + }, + "height": { + "value": 2, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 30, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 275.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 5, + "compareMethod": ">=" + }, + "containsItems": [ + "5649ab884bdc2ded0b8b457f", + "5649af884bdc2d1b2b8b4589", + "5649ae4a4bdc2d1b2b8b4588", + "59ecc3dd86f7746dc827481c", + "5bed61680db834001d2c45ab", + "5efaf417aeb21837e749c7f2", + "5c1bc4812e22164bef5cfde7", + "5a5f1ce64f39f90b401987bc" + ], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5af413b686f774522c7a6791", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 17, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af413ae86f774522e3438a5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac244eb86f7741356335af1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae3277186f7745973054106 description", + "failMessageText": "5ae3277186f7745973054106 failMessageText", + "declinePlayerMessage": "5ae3277186f7745973054106 declinePlayerMessage", + "name": "5ae3277186f7745973054106 name", + "note": "5ae3277186f7745973054106 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ae327a086f7745c7b3f2f38.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae3277186f7745973054106 startedMessageText", + "successMessageText": "5ae3277186f7745973054106 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8600, + "id": "60cc77e2179f8541b8469268", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc77ed98b49270603645d5", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "5ae9972186f77439b61d2aef", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075bfd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bfd", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398abefddab1d61bf383d17", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c00", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075bff", + "_tpl": "5a957c3fa2750c00137fa5f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c00", + "_tpl": "5a957c3fa2750c00137fa5f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398ac0c93ae507d5858c3aa", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c03", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c02", + "_tpl": "5f633f791b231926f2329f13", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c03", + "_tpl": "5f633f791b231926f2329f13", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398ac34e11ec11ff550403a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c08", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c06", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c07", + "_tpl": "56dff026d2720bb8668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075c06", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c08", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c09", + "_tpl": "56dff026d2720bb8668b4567", + "upd": { + "StackObjectsCount": 30 + }, + "parentId": "6812400c0c5cf2cf75075c08", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac244eb86f7741356335af1": { + "QuestName": "Gunsmith - Part 7", + "_id": "5ac244eb86f7741356335af1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac244eb86f7741356335af1 acceptPlayerMessage", + "changeQuestMessageText": "5ac244eb86f7741356335af1 changeQuestMessageText", + "completePlayerMessage": "5ac244eb86f7741356335af1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5accdfdb86f77412265cbfc9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5447a9cd4bdc2dbd208b4567" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 800.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 47.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 60, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 300.0, + "compareMethod": "<=" + }, + "weight": { + "value": 3.8, + "compareMethod": "<=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf37fa86f7741844039008", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "638dbfc336b3b72c944e2f85", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "5ae3270f86f77445ba41d4dd", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac244eb86f7741356335af1 description", + "failMessageText": "5ac244eb86f7741356335af1 failMessageText", + "declinePlayerMessage": "5ac244eb86f7741356335af1 declinePlayerMessage", + "name": "5ac244eb86f7741356335af1 name", + "note": "5ac244eb86f7741356335af1 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4e02986f774617a185ef2.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac244eb86f7741356335af1 startedMessageText", + "successMessageText": "5ac244eb86f7741356335af1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6300, + "id": "60cc765e65e4664318606af0", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc7663f09d61072d6d00ba", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 500, + "id": "5acb81e486f77456247a352e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c0b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c0b", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5acb821486f77455360eafa7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c0d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c0d", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6398aaa0cd51826f7a069b88", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c0f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c0f", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19bb4fcae11642e50f9b7", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075c10", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c10", + "_tpl": "56eabcd4d2720b66698b4574" + } + ], + "loyaltyLevel": 2, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6663148ed7f171c4c20226c1": { + "QuestName": "Small Business - Part 1", + "_id": "6663148ed7f171c4c20226c1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6663148ed7f171c4c20226c1 acceptPlayerMessage", + "changeQuestMessageText": "6663148ed7f171c4c20226c1 changeQuestMessageText", + "completePlayerMessage": "6663148ed7f171c4c20226c1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666729738d4b7a9182ad4a89", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c67ab0d37ca5135388f4b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66672a1a928cfea6db3ff6cb", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c67ab0d37ca5135388f4b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66672a99bf7a7a1fcee35af0", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c66e40b2de553b618d4b8" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66672a9e351098ce6dee9d3e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c66e40b2de553b618d4b8" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66672b010cf940754acb3a83", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572c82ad599021091c6118" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66672b18eba38faad31d29c3", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572c82ad599021091c6118" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66672b3330d5ad1d58cc1e95", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572be36a723f7f005a066e" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66672b47d515c72d9075fe64", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572be36a723f7f005a066e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66672b7dd70d15a60bb41e04", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c67782a1356436041c9c5" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66672b88a8236f9caf29c39e", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c67782a1356436041c9c5" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6667306ec19fb654f22fa05a", + "index": 10, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c673673a43e23e857aebd" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6667308a456e86f33c87437c", + "index": 11, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c673673a43e23e857aebd" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666730b475bbbbfd5049b7da", + "index": 12, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572cbdad599021091c611a" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "666730d6386cf75012a431f2", + "index": 13, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572cbdad599021091c611a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "666730f88db8c7927a859959", + "index": 14, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c669103999d3c810c025b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6667310584936a1238607d39", + "index": 15, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "655c669103999d3c810c025b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "66673136b23cfc3ecab865d6", + "index": 16, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572b8d80b1cd4b6a67847f" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6667314ae24cc783e69ad784", + "index": 17, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "66572b8d80b1cd4b6a67847f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "666728de99692fd05d986403", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6663148ca9290f9e0806cca1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6663148ed7f171c4c20226c1 description", + "failMessageText": "6663148ed7f171c4c20226c1 failMessageText", + "declinePlayerMessage": "6663148ed7f171c4c20226c1 declinePlayerMessage", + "name": "6663148ed7f171c4c20226c1 name", + "note": "6663148ed7f171c4c20226c1 note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6682a78f75d2dfc8330a07e2.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6663148ed7f171c4c20226c1 startedMessageText", + "successMessageText": "6663148ed7f171c4c20226c1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 22800, + "id": "667420fd45cb67bd65077b2c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "6674210301b5600773078b48", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1800, + "id": "66742110dbd6ff58100ee5df", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c12", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c12", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1800 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6674211df4584e58770d8a96", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c16", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c14", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c15", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c16", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4490786f7744ca822adcc": { + "QuestName": "Dressed to Kill", + "_id": "5ae4490786f7744ca822adcc", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4490786f7744ca822adcc acceptPlayerMessage", + "changeQuestMessageText": "5ae4490786f7744ca822adcc changeQuestMessageText", + "completePlayerMessage": "5ae4490786f7744ca822adcc completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5fd89799c54dc00f463272d3", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5aa2b9ede5b5b000137b758b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5fd89729a8c881276c560433", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7708286f7742cbd762753" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae4543686f7742dc043c903", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e7708286f7742cbd762753" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae454a086f7742be909a81a", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5aa2b9ede5b5b000137b758b" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4157f86f7745f696ebd3d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448f286f77448d73c0131", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4490786f7744ca822adcc description", + "failMessageText": "5ae4490786f7744ca822adcc failMessageText", + "declinePlayerMessage": "5ae4490786f7744ca822adcc declinePlayerMessage", + "name": "5ae4490786f7744ca822adcc name", + "note": "5ae4490786f7744ca822adcc note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4490786f7744ca822adcc startedMessageText", + "successMessageText": "5ae4490786f7744ca822adcc successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8400, + "id": "60cc82313e4e974efa345d7d", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc82622b555f16df5c41d6", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 21000, + "id": "5ae9ad9086f7743a4f5b99da", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c18", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c18", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 21000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ae9add286f7743a46263f54", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c21", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c21", + "_tpl": "5ab8e79e86f7742d8b372e78", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c22", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075c23", + "_tpl": "657326978c1cc6dcd9098b56", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075c24", + "_tpl": "657326a28c1cc6dcd9098b5a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075c25", + "_tpl": "657326b08c1cc6dcd9098b5e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075c26", + "_tpl": "657326bc5d3a3129fb05f36b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf75075c27", + "_tpl": "656f611f94b480b8a500c0db", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075c28", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075c21", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc8248179f8541b846927f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c2a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c2a", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "6663149cfd5ca9577902e037": { "QuestName": "The Invisible Hand", "_id": "6663149cfd5ca9577902e037", @@ -95853,12 +95338,12 @@ "id": "66743b307b0373b49700c514", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28b2", + "target": "6812400c0c5cf2cf75075c2c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28b2", + "_id": "6812400c0c5cf2cf75075c2c", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 86000 @@ -95872,12 +95357,12 @@ "id": "667052a79ae6c277d202e2e4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28b4", + "target": "6812400c0c5cf2cf75075c2e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28b4", + "_id": "6812400c0c5cf2cf75075c2e", "_tpl": "5d235a5986f77443f6329bc6", "upd": { "StackObjectsCount": 1, @@ -96040,12 +95525,12 @@ "id": "5acb80e686f7744e66123c96", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28b6", + "target": "6812400c0c5cf2cf75075c30", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28b6", + "_id": "6812400c0c5cf2cf75075c30", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 250 @@ -96059,12 +95544,12 @@ "id": "63989ecf700117662d337be6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28b9", + "target": "6812400c0c5cf2cf75075c33", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28b8", + "_id": "6812400c0c5cf2cf75075c32", "_tpl": "626bb8532c923541184624b4", "upd": { "StackObjectsCount": 1, @@ -96072,7 +95557,7 @@ } }, { - "_id": "68010065f81036801d0b28b9", + "_id": "6812400c0c5cf2cf75075c33", "_tpl": "626bb8532c923541184624b4", "upd": { "StackObjectsCount": 1, @@ -96087,12 +95572,12 @@ "id": "63989f07eee7ff72370f7dd7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28bc", + "target": "6812400c0c5cf2cf75075c36", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28bb", + "_id": "6812400c0c5cf2cf75075c35", "_tpl": "5fce0cf655375d18a253eff0", "upd": { "StackObjectsCount": 1, @@ -96100,7 +95585,7 @@ } }, { - "_id": "68010065f81036801d0b28bc", + "_id": "6812400c0c5cf2cf75075c36", "_tpl": "5fce0cf655375d18a253eff0", "upd": { "StackObjectsCount": 1, @@ -96114,59 +95599,59 @@ "id": "63a19b1dfcae11642e50f9b3", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b28bd", + "target": "6812400c0c5cf2cf75075c37", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b28bd", + "_id": "6812400c0c5cf2cf75075c37", "_tpl": "5a7ae0c351dfba0017554310" }, { - "_id": "68010065f81036801d0b28be", + "_id": "6812400c0c5cf2cf75075c38", "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "68010065f81036801d0b28bd", + "parentId": "6812400c0c5cf2cf75075c37", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b28bf", + "_id": "6812400c0c5cf2cf75075c39", "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "68010065f81036801d0b28bd", + "parentId": "6812400c0c5cf2cf75075c37", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b28c0", + "_id": "6812400c0c5cf2cf75075c3a", "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "68010065f81036801d0b28bd", + "parentId": "6812400c0c5cf2cf75075c37", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b28c1", + "_id": "6812400c0c5cf2cf75075c3b", "_tpl": "5a71e0fb8dc32e00094b97f2", - "parentId": "68010065f81036801d0b28c0", + "parentId": "6812400c0c5cf2cf75075c3a", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b28c2", + "_id": "6812400c0c5cf2cf75075c3c", "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "68010065f81036801d0b28c0", + "parentId": "6812400c0c5cf2cf75075c3a", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b28c3", + "_id": "6812400c0c5cf2cf75075c3d", "_tpl": "5a7b32a2e899ef00135e345a", - "parentId": "68010065f81036801d0b28c0", + "parentId": "6812400c0c5cf2cf75075c3a", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b28c4", + "_id": "6812400c0c5cf2cf75075c3e", "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "68010065f81036801d0b28bd", + "parentId": "6812400c0c5cf2cf75075c37", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b28c5", + "_id": "6812400c0c5cf2cf75075c3f", "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "68010065f81036801d0b28bd", + "parentId": "6812400c0c5cf2cf75075c37", "slotId": "mod_tactical" } ], @@ -96184,19 +95669,19 @@ "arenaLocations": [], "status": 0 }, - "671a49f77d49aea42c029b5f": { - "QuestName": "Irresistible", - "_id": "671a49f77d49aea42c029b5f", + "669fa3a08b4a64b332041ff7": { + "QuestName": "Dragnet", + "_id": "669fa3a08b4a64b332041ff7", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "671a49f77d49aea42c029b5f acceptPlayerMessage", - "changeQuestMessageText": "671a49f77d49aea42c029b5f changeQuestMessageText", - "completePlayerMessage": "671a49f77d49aea42c029b5f completePlayerMessage", + "acceptPlayerMessage": "669fa3a08b4a64b332041ff7 acceptPlayerMessage", + "changeQuestMessageText": "669fa3a08b4a64b332041ff7 changeQuestMessageText", + "completePlayerMessage": "669fa3a08b4a64b332041ff7 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "671a5941cb557f8656561a12", + "id": "66a0e692281e56a89b717b7d", "index": 0, "maxDurability": 100.0, "minDurability": 0.0, @@ -96205,7 +95690,7 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "671a406a6d315b526708f103" + "66a0e523e749756c920d02d0" ], "countInRaid": false, "globalQuestCounterId": "", @@ -96215,7 +95700,7 @@ { "conditionType": "HandoverItem", "dogtagLevel": 0, - "id": "671a598e596272a846fa862a", + "id": "66a0e69ec03c2dad1a84993a", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, @@ -96224,7 +95709,7 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "671a406a6d315b526708f103" + "66a0e523e749756c920d02d0" ], "globalQuestCounterId": "", "value": 1, @@ -96234,13 +95719,14 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "671b6d87195fd9b73685ff6f", + "id": "66aa319ae3494ba703d885db", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5c0bdb5286f774166e38eed4", + "target": "669fa38fad7f1eac2607ed46", "status": [ - 4 + 4, + 5 ], "globalQuestCounterId": "", "availableAfter": 0, @@ -96250,28 +95736,28 @@ ], "Fail": [] }, - "description": "671a49f77d49aea42c029b5f description", - "failMessageText": "671a49f77d49aea42c029b5f failMessageText", - "declinePlayerMessage": "671a49f77d49aea42c029b5f declinePlayerMessage", - "name": "671a49f77d49aea42c029b5f name", - "note": "671a49f77d49aea42c029b5f note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", - "type": "Exploration", + "description": "669fa3a08b4a64b332041ff7 description", + "failMessageText": "669fa3a08b4a64b332041ff7 failMessageText", + "declinePlayerMessage": "669fa3a08b4a64b332041ff7 declinePlayerMessage", + "name": "669fa3a08b4a64b332041ff7 name", + "note": "669fa3a08b4a64b332041ff7 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acecb632bc3e9d7e0d2d57.png", + "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "671a49f77d49aea42c029b5f startedMessageText", - "successMessageText": "671a49f77d49aea42c029b5f successMessageText", + "startedMessageText": "669fa3a08b4a64b332041ff7 startedMessageText", + "successMessageText": "669fa3a08b4a64b332041ff7 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 32000, - "id": "671b6ed92200cd81569d6a58", + "value": 17300, + "id": "66aa31a464ea11e84c065d5b", "type": "Experience", "index": 0, "unknown": false @@ -96279,46 +95765,46 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "671b6ee569a1850e806ceb1e", + "id": "66aa31c2c26f13bd04032818", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 80000, - "id": "671b6ef25a60a4122a9e9973", + "value": 92000, + "id": "66aa31d3fb57cc8a5404ac5c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28c7", + "target": "6812400c0c5cf2cf75075c41", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28c7", + "_id": "6812400c0c5cf2cf75075c41", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 80000 + "StackObjectsCount": 92000 } } ] }, { "availableInGameEditions": [], - "id": "671b6f16d8a7ca038f55fdc3", - "type": "AssortmentUnlock", + "value": 1, + "id": "66aa31e9023055273703d885", + "type": "Item", "index": 0, - "target": "68010065f81036801d0b28c8", - "unknown": true, + "target": "6812400c0c5cf2cf75075c42", + "unknown": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28c8", - "_tpl": "66ffa9b66e19cc902401c5e8", + "_id": "6812400c0c5cf2cf75075c42", + "_tpl": "5aafa857e5b5b00018480968", "upd": { - "FireMode": { - "FireMode": "single" - }, + "StackObjectsCount": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 @@ -96326,26 +95812,198 @@ } }, { - "_id": "68010065f81036801d0b28c9", - "_tpl": "66ffac9e316b08f6840a73e6", - "parentId": "68010065f81036801d0b28c8", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b28ca", - "_tpl": "66ffaab91f7492c901027bb8", - "parentId": "68010065f81036801d0b28c8", + "_id": "6812400c0c5cf2cf75075c43", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "6812400c0c5cf2cf75075c42", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b28cb", - "_tpl": "66ffac601f7492c901027bbb", - "parentId": "68010065f81036801d0b28c8", + "_id": "6812400c0c5cf2cf75075c44", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "6812400c0c5cf2cf75075c42", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075c45", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "6812400c0c5cf2cf75075c44", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf75075c46", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "6812400c0c5cf2cf75075c42", "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075c47", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "6812400c0c5cf2cf75075c46", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075c48", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "6812400c0c5cf2cf75075c47", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075c49", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "6812400c0c5cf2cf75075c42", + "slotId": "mod_sight_rear" } - ], - "loyaltyLevel": 4, - "traderId": "58330581ace78e27b8b10cee" + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa32131e5e199ecd094f0a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c4d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c4b", + "_tpl": "5addcce35acfc4001a5fc635", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c4c", + "_tpl": "5addcce35acfc4001a5fc635", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c4d", + "_tpl": "5addcce35acfc4001a5fc635", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "66aa3238fb57cc8a5404ac5d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c5a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c50", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c51", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c50", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c52", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c53", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c52", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c54", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c55", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c54", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c56", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c57", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c56", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c58", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c59", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c58", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c5a", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c5b", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c5a", + "slotId": "cartridges" + } + ] } ], "Fail": [] @@ -96455,12 +96113,12 @@ "id": "66aa35f9c26f13bd0403281c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28cf", + "target": "6812400c0c5cf2cf75075c5f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28cd", + "_id": "6812400c0c5cf2cf75075c5d", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -96468,7 +96126,7 @@ } }, { - "_id": "68010065f81036801d0b28ce", + "_id": "6812400c0c5cf2cf75075c5e", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -96476,7 +96134,7 @@ } }, { - "_id": "68010065f81036801d0b28cf", + "_id": "6812400c0c5cf2cf75075c5f", "_tpl": "5991b51486f77447b112d44f", "upd": { "StackObjectsCount": 1, @@ -96510,12 +96168,12 @@ "id": "66aa358e1e5e199ecd094f0c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28d1", + "target": "6812400c0c5cf2cf75075c61", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28d1", + "_id": "6812400c0c5cf2cf75075c61", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -96529,12 +96187,12 @@ "id": "66aa359a30c6d0aae40a9f6f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28d4", + "target": "6812400c0c5cf2cf75075c64", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28d3", + "_id": "6812400c0c5cf2cf75075c63", "_tpl": "5d1b327086f7742525194449", "upd": { "StackObjectsCount": 1, @@ -96542,7 +96200,7 @@ } }, { - "_id": "68010065f81036801d0b28d4", + "_id": "6812400c0c5cf2cf75075c64", "_tpl": "5d1b327086f7742525194449", "upd": { "StackObjectsCount": 1, @@ -96557,12 +96215,12 @@ "id": "66aa35a2c4c5c04798003b18", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28d7", + "target": "6812400c0c5cf2cf75075c67", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28d6", + "_id": "6812400c0c5cf2cf75075c66", "_tpl": "5d1c774f86f7746d6620f8db", "upd": { "StackObjectsCount": 1, @@ -96570,7 +96228,7 @@ } }, { - "_id": "68010065f81036801d0b28d7", + "_id": "6812400c0c5cf2cf75075c67", "_tpl": "5d1c774f86f7746d6620f8db", "upd": { "StackObjectsCount": 1, @@ -96590,173 +96248,6 @@ "arenaLocations": [], "status": 0 }, - "669fa3a3ad7f1eac2607ed48": { - "QuestName": "Health Care Privacy - Part 6", - "_id": "669fa3a3ad7f1eac2607ed48", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa3a3ad7f1eac2607ed48 acceptPlayerMessage", - "changeQuestMessageText": "669fa3a3ad7f1eac2607ed48 changeQuestMessageText", - "completePlayerMessage": "669fa3a3ad7f1eac2607ed48 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66a0f391676953651bd8b796", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66a0f0926fee20fa70036da6" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66a0f37f04fb80a0bfdbaf60", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66a0f0926fee20fa70036da6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa3bf17e77460dc8413d3a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a68669a86f774255929b4d4", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa3a3ad7f1eac2607ed48 description", - "failMessageText": "669fa3a3ad7f1eac2607ed48 failMessageText", - "declinePlayerMessage": "669fa3a3ad7f1eac2607ed48 declinePlayerMessage", - "name": "669fa3a3ad7f1eac2607ed48 name", - "note": "669fa3a3ad7f1eac2607ed48 note", - "traderId": "54cb57776803fa99248b456e", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acecda66265b5f5e0248f9.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa3a3ad7f1eac2607ed48 startedMessageText", - "successMessageText": "669fa3a3ad7f1eac2607ed48 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9300, - "id": "66aa3c001e5e199ecd094f11", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa3c0b30c6d0aae40a9f74", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 32000, - "id": "66aa3c16c4c5c04798003b1e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b28d9", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b28d9", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 32000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa3c2064ea11e84c065d61", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b28dd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b28db", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b28dc", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b28dd", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "6744a4717e3818d5bb0680bb": { "QuestName": "Stabilize Business", "_id": "6744a4717e3818d5bb0680bb", @@ -96914,12 +96405,12 @@ "id": "67584fb93b7efbba34245aed", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28df", + "target": "6812400c0c5cf2cf75075c69", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b28df", + "_id": "6812400c0c5cf2cf75075c69", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 124000 @@ -96942,12 +96433,12 @@ "id": "67584fe64b890dcf32cfbf03", "type": "Item", "index": 0, - "target": "68010065f81036801d0b28ec", + "target": "6812400c0c5cf2cf75075c76", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b28ec", + "_id": "6812400c0c5cf2cf75075c76", "_tpl": "5b44cf1486f77431723e3d05", "upd": { "StackObjectsCount": 1, @@ -96955,102 +96446,102 @@ } }, { - "_id": "68010065f81036801d0b28ed", + "_id": "6812400c0c5cf2cf75075c77", "_tpl": "6575c3b3dc9932aed601c5f4", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b28ee", + "_id": "6812400c0c5cf2cf75075c78", "_tpl": "6575c3beefc786cd9101a5ed", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b28ef", + "_id": "6812400c0c5cf2cf75075c79", "_tpl": "6575c3cdc6700bd6b40e8a90", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b28f0", + "_id": "6812400c0c5cf2cf75075c7a", "_tpl": "6575c3dfdc9932aed601c5f8", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b28f1", + "_id": "6812400c0c5cf2cf75075c7b", "_tpl": "6575c3ec52b7f8c76a05ee39", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Collar" }, { - "_id": "68010065f81036801d0b28f2", + "_id": "6812400c0c5cf2cf75075c7c", "_tpl": "6575c3fd52b7f8c76a05ee3d", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Shoulder_l" }, { - "_id": "68010065f81036801d0b28f3", + "_id": "6812400c0c5cf2cf75075c7d", "_tpl": "6575c40c52b7f8c76a05ee41", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Shoulder_r" }, { - "_id": "68010065f81036801d0b28f4", + "_id": "6812400c0c5cf2cf75075c7e", "_tpl": "656fa8d700d62bcd2e024084", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b28f5", + "_id": "6812400c0c5cf2cf75075c7f", "_tpl": "656fa8d700d62bcd2e024084", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Back_plate" }, { - "_id": "68010065f81036801d0b28f6", + "_id": "6812400c0c5cf2cf75075c80", "_tpl": "6557458f83942d705f0c4962", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Left_side_plate" }, { - "_id": "68010065f81036801d0b28f7", + "_id": "6812400c0c5cf2cf75075c81", "_tpl": "6557458f83942d705f0c4962", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b28ec", + "parentId": "6812400c0c5cf2cf75075c76", "slotId": "Right_side_plate" } ] @@ -97066,712 +96557,23 @@ "arenaLocations": [], "status": 0 }, - "5eaaaa7c93afa0558f3b5a1c": { - "QuestName": "The Survivalist Path - Junkie", - "_id": "5eaaaa7c93afa0558f3b5a1c", + "5ac23c6186f7741247042bad": { + "QuestName": "Gunsmith - Part 1", + "_id": "5ac23c6186f7741247042bad", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5eaaaa7c93afa0558f3b5a1c acceptPlayerMessage", - "changeQuestMessageText": "5eaaaa7c93afa0558f3b5a1c changeQuestMessageText", - "completePlayerMessage": "5eaaaa7c93afa0558f3b5a1c completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5d25dc2286f77443e7549027", - "conditions": [ - { - "id": "5d25dc3486f77408251c4bf8", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5d25dfb686f77444001e2e47", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Head" - ], - "effects": [ - "Stimulator" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 0, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - }, - { - "id": "5edbb78c15eff66872602c4f", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "5eaaaa7c93afa0558f3b5a1f", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 15, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5eaaaa7c93afa0558f3b5a1e", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2a986f77409dd5cdf2a", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5eaaaa7c93afa0558f3b5a1c description", - "failMessageText": "5eaaaa7c93afa0558f3b5a1c failMessageText", - "declinePlayerMessage": "5eaaaa7c93afa0558f3b5a1c declinePlayerMessage", - "name": "5eaaaa7c93afa0558f3b5a1c name", - "note": "5eaaaa7c93afa0558f3b5a1c note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5969f96786f7741dde183a4f.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5eaaaa7c93afa0558f3b5a1c startedMessageText", - "successMessageText": "5eaaaa7c93afa0558f3b5a1c successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5900, - "id": "60ccad69646f74055e276544", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60ccad6d20a6283a506aeb4f", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "5eaaaa7c93afa0558f3b5a21", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b28f9", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b28f9", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "5eaaaa7c93afa0558f3b5a23", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2906", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b28fc", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b28fd", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b28fc", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b28fe", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b28ff", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b28fe", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2900", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2901", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2900", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2902", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2903", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2902", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2904", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2905", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2904", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2906", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2907", - "_tpl": "5c0d591486f7744c505b416f", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2906", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "5eaaaa7c93afa0558f3b5a24", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2910", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b290a", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b290b", - "_tpl": "5c0d5ae286f7741e46554302", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b290a", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b290c", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b290d", - "_tpl": "5c0d5ae286f7741e46554302", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b290c", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b290e", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b290f", - "_tpl": "5c0d5ae286f7741e46554302", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b290e", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2910", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2911", - "_tpl": "5c0d5ae286f7741e46554302", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2910", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60ccadb198b4927060364616", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2915", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2915", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2916", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2915", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2917", - "_tpl": "56dff061d2720bb5668b4567", - "upd": { - "StackObjectsCount": 60 - }, - "parentId": "68010065f81036801d0b2915", - "slotId": "cartridges", - "location": 1 - } - ] - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "5eaac4031d3e441928571bbc", - "type": "Skill", - "index": 0, - "target": "Metabolism", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4490786f7744ca822adcc": { - "QuestName": "Dressed to Kill", - "_id": "5ae4490786f7744ca822adcc", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4490786f7744ca822adcc acceptPlayerMessage", - "changeQuestMessageText": "5ae4490786f7744ca822adcc changeQuestMessageText", - "completePlayerMessage": "5ae4490786f7744ca822adcc completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5fd89799c54dc00f463272d3", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5aa2b9ede5b5b000137b758b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5fd89729a8c881276c560433", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7708286f7742cbd762753" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae4543686f7742dc043c903", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e7708286f7742cbd762753" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae454a086f7742be909a81a", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5aa2b9ede5b5b000137b758b" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4157f86f7745f696ebd3d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448f286f77448d73c0131", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4490786f7744ca822adcc description", - "failMessageText": "5ae4490786f7744ca822adcc failMessageText", - "declinePlayerMessage": "5ae4490786f7744ca822adcc declinePlayerMessage", - "name": "5ae4490786f7744ca822adcc name", - "note": "5ae4490786f7744ca822adcc note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4490786f7744ca822adcc startedMessageText", - "successMessageText": "5ae4490786f7744ca822adcc successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8400, - "id": "60cc82313e4e974efa345d7d", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc82622b555f16df5c41d6", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 21000, - "id": "5ae9ad9086f7743a4f5b99da", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2919", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2919", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 21000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ae9add286f7743a46263f54", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2922", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2922", - "_tpl": "5ab8e79e86f7742d8b372e78", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2923", - "_tpl": "65732688d9d89ff7ac0d9c4c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2924", - "_tpl": "657326978c1cc6dcd9098b56", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b2925", - "_tpl": "657326a28c1cc6dcd9098b5a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2926", - "_tpl": "657326b08c1cc6dcd9098b5e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2927", - "_tpl": "657326bc5d3a3129fb05f36b", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Collar" - }, - { - "_id": "68010065f81036801d0b2928", - "_tpl": "656f611f94b480b8a500c0db", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2929", - "_tpl": "65573fa5655447403702a816", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2922", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc8248179f8541b846927f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b292b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b292b", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac2426c86f774138762edfe": { - "QuestName": "Gunsmith - Part 2", - "_id": "5ac2426c86f774138762edfe", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac2426c86f774138762edfe acceptPlayerMessage", - "changeQuestMessageText": "5ac2426c86f774138762edfe changeQuestMessageText", - "completePlayerMessage": "5ac2426c86f774138762edfe completePlayerMessage", + "acceptPlayerMessage": "5ac23c6186f7741247042bad acceptPlayerMessage", + "changeQuestMessageText": "5ac23c6186f7741247042bad changeQuestMessageText", + "completePlayerMessage": "5ac23c6186f7741247042bad completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "WeaponAssembly", - "id": "5accd9b686f774112d7173d1", + "id": "5accd5e386f77463027e9397", "index": 0, "parentId": "", "dynamicLocale": false, "target": [ - "57dc2fa62459775949412633" + "54491c4f4bdc2db1078b4568" ], "globalQuestCounterId": "", "value": 1, @@ -97785,7 +96587,7 @@ "compareMethod": ">=" }, "effectiveDistance": { - "value": 100.0, + "value": 0.0, "compareMethod": ">=" }, "emptyTacticalSlot": { @@ -97793,15 +96595,15 @@ "compareMethod": ">=" }, "ergonomics": { - "value": 58.0, + "value": 47.0, "compareMethod": ">=" }, "height": { - "value": 2, + "value": 1, "compareMethod": "<=" }, "magazineCapacity": { - "value": 60, + "value": 5, "compareMethod": ">=" }, "muzzleVelocity": { @@ -97809,42 +96611,314 @@ "compareMethod": ">=" }, "recoil": { - "value": 550.0, + "value": 850.0, "compareMethod": "<=" }, "weight": { - "value": 3.5, - "compareMethod": "<=" + "value": 0.0, + "compareMethod": ">=" }, "width": { - "value": 3, + "value": 4, "compareMethod": "<=" }, - "containsItems": [ - "57ffa9f4245977728561e844" - ], - "hasItemFromCategory": [] + "containsItems": [], + "hasItemFromCategory": [ + "55818b164bdc2ddc698b456c" + ] } ], "AvailableForStart": [ { "conditionType": "Level", - "id": "5acf37a186f7741843346d0c", + "id": "639afb227c898a131e1cff88", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 5, + "value": 2, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5acf37ad86f77418420befe6", + "id": "6584716a8540aea26decc8c0", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "657315e4a6af4ab4b50f3459", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac23c6186f7741247042bad description", + "failMessageText": "5ac23c6186f7741247042bad failMessageText", + "declinePlayerMessage": "5ac23c6186f7741247042bad declinePlayerMessage", + "name": "5ac23c6186f7741247042bad name", + "note": "5ac23c6186f7741247042bad note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4dc0486f77442000164e5.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac23c6186f7741247042bad startedMessageText", + "successMessageText": "5ac23c6186f7741247042bad successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 800, + "id": "60cc74a92b555f16df5c41af", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc74ac65e4664318606aeb", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 10000, + "id": "5acb7fb386f77417d0797dd2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c83", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c83", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 10000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639898a3eee7ff72370f7dd6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c85", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c85", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639898b08871e1272b10ccf8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c87", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c87", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "639898da05aa481907106506", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075c8b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c8b", + "_tpl": "65702469c5d7d4cb4d07855b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075c8c", + "_tpl": "5d6e68c4a4b9361b93413f79", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075c8b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075c8d", + "_tpl": "5d6e68c4a4b9361b93413f79", + "upd": { + "StackObjectsCount": 5 + }, + "parentId": "6812400c0c5cf2cf75075c8b", + "slotId": "cartridges", + "location": 1 + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19af0fcae11642e50f9b1", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075c8e", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075c8e", + "_tpl": "56ea8d2fd2720b7c698b4570" + } + ], + "loyaltyLevel": 1, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6740b60c60a98cad1b0e0aa0": { + "QuestName": "Another Shipping Delay", + "_id": "6740b60c60a98cad1b0e0aa0", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage", + "changeQuestMessageText": "6740b60c60a98cad1b0e0aa0 changeQuestMessageText", + "completePlayerMessage": "6740b60c60a98cad1b0e0aa0 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6740b64fb23faec48e2f7eb4", + "conditions": [ + { + "id": "6740b6543d5346fc3021cc14", + "dynamicLocale": false, + "target": "Lost_caravan", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "6740b64f024f0e44fbed2c48", + "index": 3, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6740b66001a6b656f14474af", + "conditions": [ + { + "id": "6740b66cfe308638cdb86ff9", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner", + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "6740b679272d08c313ab80c2", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "6740b66079ff8ea717dad584", + "index": 4, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6740b6343d2bcc1820e59c3f", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5ac23c6186f7741247042bad", + "target": "6740a02a69a58fceba0ff399", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "6740b62f1ae62325e059dcb1", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "673f6027352b4da8e00322d2", "status": [ 4 ], @@ -97856,227 +96930,261 @@ ], "Fail": [] }, - "description": "5ac2426c86f774138762edfe description", - "failMessageText": "5ac2426c86f774138762edfe failMessageText", - "declinePlayerMessage": "5ac2426c86f774138762edfe declinePlayerMessage", - "name": "5ac2426c86f774138762edfe name", - "note": "5ac2426c86f774138762edfe note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ae3260986f7745b3e3bf2a7.jpg", - "type": "WeaponAssembly", + "description": "6740b60c60a98cad1b0e0aa0 description", + "failMessageText": "6740b60c60a98cad1b0e0aa0 failMessageText", + "declinePlayerMessage": "6740b60c60a98cad1b0e0aa0 declinePlayerMessage", + "name": "6740b60c60a98cad1b0e0aa0 name", + "note": "6740b60c60a98cad1b0e0aa0 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Discover", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5ac2426c86f774138762edfe startedMessageText", - "successMessageText": "5ac2426c86f774138762edfe successMessageText", + "startedMessageText": "6740b60c60a98cad1b0e0aa0 startedMessageText", + "successMessageText": "6740b60c60a98cad1b0e0aa0 successMessageText", "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "5ad07e8f86f7742f92462779", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b292c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b292c", - "_tpl": "57dc2fa62459775949412633", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b292d", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b292e", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b292f", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2930", - "_tpl": "57dc324a24597759501edc20", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2931", - "_tpl": "57dc334d245977597164366f", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2932", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "68010065f81036801d0b292c", - "slotId": "mod_gas_block" - }, - { - "_id": "68010065f81036801d0b2933", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "68010065f81036801d0b2932", - "slotId": "mod_handguard" - } - ] - } - ], + "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 2000, - "id": "5c950c8086f77455192fa441", + "value": 12800, + "id": "67584ef9ed9cde0dd79ca6f7", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "60cc752f77dc197c774254c0", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 15000, - "id": "5acb80b286f7742b0b02e96a", + "value": 67000, + "id": "67584f0b3b207caa22ab5ca4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2935", + "target": "6812400c0c5cf2cf75075c90", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2935", + "_id": "6812400c0c5cf2cf75075c90", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 15000 + "StackObjectsCount": 67000 } } ] }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67584f18ffc68b67ca38960a", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, { "availableInGameEditions": [], "value": 2, - "id": "60cc754798b49270603645d0", + "id": "67584f2725614a25f64fd6fd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2938", + "target": "6812400c0c5cf2cf75075c93", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2937", - "_tpl": "5c06782b86f77426df5407d2", + "_id": "6812400c0c5cf2cf75075c92", + "_tpl": "66b5f693acff495a294927e3", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2938", - "_tpl": "5c06782b86f77426df5407d2", + "_id": "6812400c0c5cf2cf75075c93", + "_tpl": "66b5f693acff495a294927e3", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } } ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "671a49f77d49aea42c029b5f": { + "QuestName": "Irresistible", + "_id": "671a49f77d49aea42c029b5f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "671a49f77d49aea42c029b5f acceptPlayerMessage", + "changeQuestMessageText": "671a49f77d49aea42c029b5f changeQuestMessageText", + "completePlayerMessage": "671a49f77d49aea42c029b5f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "671a5941cb557f8656561a12", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "671a406a6d315b526708f103" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "671a598e596272a846fa862a", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "671a406a6d315b526708f103" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "671b6d87195fd9b73685ff6f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5c0bdb5286f774166e38eed4", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "671a49f77d49aea42c029b5f description", + "failMessageText": "671a49f77d49aea42c029b5f failMessageText", + "declinePlayerMessage": "671a49f77d49aea42c029b5f declinePlayerMessage", + "name": "671a49f77d49aea42c029b5f name", + "note": "671a49f77d49aea42c029b5f note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/59c274ae86f77475060a9341.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "671a49f77d49aea42c029b5f startedMessageText", + "successMessageText": "671a49f77d49aea42c029b5f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 32000, + "id": "671b6ed92200cd81569d6a58", + "type": "Experience", + "index": 0, + "unknown": false }, { "availableInGameEditions": [], - "value": 2, - "id": "60cc759b6a2a1958fc523200", + "value": 0.02, + "id": "671b6ee569a1850e806ceb1e", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 80000, + "id": "671b6ef25a60a4122a9e9973", "type": "Item", "index": 0, - "target": "68010065f81036801d0b293b", + "target": "6812400c0c5cf2cf75075c95", "unknown": false, - "findInRaid": true, + "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b293a", - "_tpl": "5c06779c86f77426e00dd782", + "_id": "6812400c0c5cf2cf75075c95", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b293b", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true + "StackObjectsCount": 80000 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "63989e07cd51826f7a069b86", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b293e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b293d", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b293e", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19b07fcae11642e50f9b2", + "id": "671b6f16d8a7ca038f55fdc3", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b293f", - "unknown": false, + "target": "6812400c0c5cf2cf75075c96", + "unknown": true, "items": [ { - "_id": "68010065f81036801d0b293f", - "_tpl": "5cbda392ae92155f3c17c39f" + "_id": "6812400c0c5cf2cf75075c96", + "_tpl": "66ffa9b66e19cc902401c5e8", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075c97", + "_tpl": "66ffac9e316b08f6840a73e6", + "parentId": "6812400c0c5cf2cf75075c96", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075c98", + "_tpl": "66ffaab91f7492c901027bb8", + "parentId": "6812400c0c5cf2cf75075c96", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075c99", + "_tpl": "66ffac601f7492c901027bbb", + "parentId": "6812400c0c5cf2cf75075c96", + "slotId": "mod_barrel" } ], - "loyaltyLevel": 1, - "traderId": "54cb50c76803fa8b248b4571" + "loyaltyLevel": 4, + "traderId": "58330581ace78e27b8b10cee" } ], "Fail": [] @@ -98698,12 +97806,12 @@ "id": "66df253a7742b164490f6da5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2941", + "target": "6812400c0c5cf2cf75075c9b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2941", + "_id": "6812400c0c5cf2cf75075c9b", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 200000 @@ -98717,12 +97825,12 @@ "id": "66debee39e5fb2d57a0d6597", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2943", + "target": "6812400c0c5cf2cf75075c9d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2943", + "_id": "6812400c0c5cf2cf75075c9d", "_tpl": "66bc98a01a47be227a5e956e", "upd": { "StackObjectsCount": 1 @@ -98886,12 +97994,12 @@ "id": "5ae9948986f77445200ecb4f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2945", + "target": "6812400c0c5cf2cf75075c9f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2945", + "_id": "6812400c0c5cf2cf75075c9f", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 300 @@ -98905,12 +98013,12 @@ "id": "6398a86cddab1d61bf383d16", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2949", + "target": "6812400c0c5cf2cf75075ca3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2947", + "_id": "6812400c0c5cf2cf75075ca1", "_tpl": "5d1c819a86f774771b0acd6c", "upd": { "StackObjectsCount": 1, @@ -98918,7 +98026,7 @@ } }, { - "_id": "68010065f81036801d0b2948", + "_id": "6812400c0c5cf2cf75075ca2", "_tpl": "5d1c819a86f774771b0acd6c", "upd": { "StackObjectsCount": 1, @@ -98926,7 +98034,7 @@ } }, { - "_id": "68010065f81036801d0b2949", + "_id": "6812400c0c5cf2cf75075ca3", "_tpl": "5d1c819a86f774771b0acd6c", "upd": { "StackObjectsCount": 1, @@ -98940,11 +98048,11 @@ "id": "63a19b5efcae11642e50f9b5", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b294a", + "target": "6812400c0c5cf2cf75075ca4", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b294a", + "_id": "6812400c0c5cf2cf75075ca4", "_tpl": "5aafbde786f774389d0cbc0f" } ], @@ -98962,3296 +98070,6 @@ "arenaLocations": [], "status": 0 }, - "5ae3270f86f77445ba41d4dd": { - "QuestName": "Gunsmith - Part 6", - "_id": "5ae3270f86f77445ba41d4dd", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae3270f86f77445ba41d4dd acceptPlayerMessage", - "changeQuestMessageText": "5ae3270f86f77445ba41d4dd changeQuestMessageText", - "completePlayerMessage": "5ae3270f86f77445ba41d4dd completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5ae3550b86f7741cf44fc799", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "59d6088586f774275f37482f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 800.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 40.0, - "compareMethod": ">=" - }, - "height": { - "value": 0, - "compareMethod": ">=" - }, - "magazineCapacity": { - "value": 0, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 400.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 0, - "compareMethod": ">=" - }, - "containsItems": [ - "59f8a37386f7747af3328f06", - "59d6272486f77466146386ff" - ], - "hasItemFromCategory": [ - "550aa4cd4bdc2dd8348b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af4139286f774522e34389b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 14, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5af4136586f774551341dc75", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae3267986f7742a413592fe", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 75600, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae3270f86f77445ba41d4dd description", - "failMessageText": "5ae3270f86f77445ba41d4dd failMessageText", - "declinePlayerMessage": "5ae3270f86f77445ba41d4dd declinePlayerMessage", - "name": "5ae3270f86f77445ba41d4dd name", - "note": "5ae3270f86f77445ba41d4dd note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ae3274386f7745b4246b387.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae3270f86f77445ba41d4dd startedMessageText", - "successMessageText": "5ae3270f86f77445ba41d4dd successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5800, - "id": "60cc77b92b555f16df5c41b8", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "60cc77c43e4e974efa345d25", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 50000, - "id": "5ae9964b86f77439b61d2571", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b294c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b294c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 50000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "5ae9966686f77439bf37d95a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b294f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b294e", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b294f", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6398a94993ae507d5858c3a9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2952", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2951", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2952", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6398a9bbe11ec11ff5504039", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2959", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2955", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2956", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2955", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2957", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2958", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2957", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2959", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b295a", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2959", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19b9bfcae11642e50f9b6", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b295b", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b295b", - "_tpl": "5a0c59791526d8dba737bba7" - } - ], - "loyaltyLevel": 2, - "traderId": "54cb50c76803fa8b248b4571" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5e4d515e86f77438b2195244": { - "QuestName": "Textile - Part 2", - "_id": "5e4d515e86f77438b2195244", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5e4d515e86f77438b2195244 acceptPlayerMessage", - "changeQuestMessageText": "5e4d515e86f77438b2195244 changeQuestMessageText", - "completePlayerMessage": "5e4d515e86f77438b2195244 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b2195245", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af47786f7746d404f3aaa" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b2195246", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af47786f7746d404f3aaa" - ], - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b2195247", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af41e86f774755a234b67" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b2195248", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af41e86f774755a234b67" - ], - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b2195249", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af29386f7746d4159f077" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5e4d515e86f77438b219524a", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5e2af29386f7746d4159f077" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5e58dd9086f7747c2639ee43", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5e383a6386f77465910ce1f3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5e4d515e86f77438b2195244 description", - "failMessageText": "5e4d515e86f77438b2195244 failMessageText", - "declinePlayerMessage": "5e4d515e86f77438b2195244 declinePlayerMessage", - "name": "5e4d515e86f77438b2195244 name", - "note": "5e4d515e86f77438b2195244 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5e4d3a5186f77464185227f3.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5e4d515e86f77438b2195244 startedMessageText", - "successMessageText": "5e4d515e86f77438b2195244 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 34300, - "id": "640f23daa318bf61ce0da273", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 100000, - "id": "5e58ddad86f7747c2639ee44", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b295d", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b295d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 100000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5e58e25786f7740bef574f07", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b295f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b295f", - "_tpl": "5c0e774286f77468413cc5b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "608974d01a66564e74191fc0": { - "QuestName": "A Fuel Matter", - "_id": "608974d01a66564e74191fc0", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "608974d01a66564e74191fc0 acceptPlayerMessage", - "changeQuestMessageText": "608974d01a66564e74191fc0 changeQuestMessageText", - "completePlayerMessage": "608974d01a66564e74191fc0 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "60a4dc7e4e734e57d07fb335", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "baraholshik_fuel_area_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "60b90232ec7c6f5eb510c195", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 10, - "zoneId": "baraholshik_fuel_area_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bfe32c61c4b541b381da8", - "conditions": [ - { - "id": "60a29875d90e89467e385633", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - }, - { - "id": "60a299220b00f16d2d63dea4", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "608bfe32c61c4b541b381da9", - "index": 2, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "60a5028d42bd1607c81ab923", - "target": "60a4dc7e4e734e57d07fb335", - "conditionType": "CompleteCondition" - }, - { - "id": "60b9f085a9c5f27bcf28d613", - "target": "60b90232ec7c6f5eb510c195", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "60bf7284fd95cb3dfc36841f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448f286f77448d73c0131", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "60bf7293b73d016d6838ad85", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "608974d01a66564e74191fc0 description", - "failMessageText": "608974d01a66564e74191fc0 failMessageText", - "declinePlayerMessage": "608974d01a66564e74191fc0 declinePlayerMessage", - "name": "608974d01a66564e74191fc0 name", - "note": "608974d01a66564e74191fc0 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c373e753bc0f18316351fe.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "608974d01a66564e74191fc0 startedMessageText", - "successMessageText": "608974d01a66564e74191fc0 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8200, - "id": "60bf6c03db5461623517068b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60bf6c109903f107aa251f26", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "60bf6c39bf90bf6b431e8950", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2961", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2961", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60bf6c29d4526a054d42e109", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2964", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2963", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2964", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6740b60c60a98cad1b0e0aa0": { - "QuestName": "Another Shipping Delay", - "_id": "6740b60c60a98cad1b0e0aa0", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6740b60c60a98cad1b0e0aa0 acceptPlayerMessage", - "changeQuestMessageText": "6740b60c60a98cad1b0e0aa0 changeQuestMessageText", - "completePlayerMessage": "6740b60c60a98cad1b0e0aa0 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6740b64fb23faec48e2f7eb4", - "conditions": [ - { - "id": "6740b6543d5346fc3021cc14", - "dynamicLocale": false, - "target": "Lost_caravan", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "6740b64f024f0e44fbed2c48", - "index": 3, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6740b66001a6b656f14474af", - "conditions": [ - { - "id": "6740b66cfe308638cdb86ff9", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner", - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "6740b679272d08c313ab80c2", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "6740b66079ff8ea717dad584", - "index": 4, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6740b6343d2bcc1820e59c3f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6740a02a69a58fceba0ff399", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6740b62f1ae62325e059dcb1", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "673f6027352b4da8e00322d2", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6740b60c60a98cad1b0e0aa0 description", - "failMessageText": "6740b60c60a98cad1b0e0aa0 failMessageText", - "declinePlayerMessage": "6740b60c60a98cad1b0e0aa0 declinePlayerMessage", - "name": "6740b60c60a98cad1b0e0aa0 name", - "note": "6740b60c60a98cad1b0e0aa0 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6740b60c60a98cad1b0e0aa0 startedMessageText", - "successMessageText": "6740b60c60a98cad1b0e0aa0 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 12800, - "id": "67584ef9ed9cde0dd79ca6f7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 67000, - "id": "67584f0b3b207caa22ab5ca4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2966", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2966", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 67000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67584f18ffc68b67ca38960a", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67584f2725614a25f64fd6fd", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2969", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2968", - "_tpl": "66b5f693acff495a294927e3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2969", - "_tpl": "66b5f693acff495a294927e3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac23c6186f7741247042bad": { - "QuestName": "Gunsmith - Part 1", - "_id": "5ac23c6186f7741247042bad", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac23c6186f7741247042bad acceptPlayerMessage", - "changeQuestMessageText": "5ac23c6186f7741247042bad changeQuestMessageText", - "completePlayerMessage": "5ac23c6186f7741247042bad completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "5accd5e386f77463027e9397", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "54491c4f4bdc2db1078b4568" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "value": 0.0, - "compareMethod": ">=" - }, - "durability": { - "value": 60.0, - "compareMethod": ">=" - }, - "effectiveDistance": { - "value": 0.0, - "compareMethod": ">=" - }, - "emptyTacticalSlot": { - "value": 0, - "compareMethod": ">=" - }, - "ergonomics": { - "value": 47.0, - "compareMethod": ">=" - }, - "height": { - "value": 1, - "compareMethod": "<=" - }, - "magazineCapacity": { - "value": 5, - "compareMethod": ">=" - }, - "muzzleVelocity": { - "value": 0.0, - "compareMethod": ">=" - }, - "recoil": { - "value": 850.0, - "compareMethod": "<=" - }, - "weight": { - "value": 0.0, - "compareMethod": ">=" - }, - "width": { - "value": 4, - "compareMethod": "<=" - }, - "containsItems": [], - "hasItemFromCategory": [ - "55818b164bdc2ddc698b456c" - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "639afb227c898a131e1cff88", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 2, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6584716a8540aea26decc8c0", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "657315e4a6af4ab4b50f3459", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac23c6186f7741247042bad description", - "failMessageText": "5ac23c6186f7741247042bad failMessageText", - "declinePlayerMessage": "5ac23c6186f7741247042bad declinePlayerMessage", - "name": "5ac23c6186f7741247042bad name", - "note": "5ac23c6186f7741247042bad note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4dc0486f77442000164e5.jpg", - "type": "WeaponAssembly", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac23c6186f7741247042bad startedMessageText", - "successMessageText": "5ac23c6186f7741247042bad successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 800, - "id": "60cc74a92b555f16df5c41af", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "60cc74ac65e4664318606aeb", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 10000, - "id": "5acb7fb386f77417d0797dd2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b296b", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b296b", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 10000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639898a3eee7ff72370f7dd6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b296d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b296d", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639898b08871e1272b10ccf8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b296f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b296f", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "639898da05aa481907106506", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2973", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2973", - "_tpl": "65702469c5d7d4cb4d07855b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2974", - "_tpl": "5d6e68c4a4b9361b93413f79", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2973", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2975", - "_tpl": "5d6e68c4a4b9361b93413f79", - "upd": { - "StackObjectsCount": 5 - }, - "parentId": "68010065f81036801d0b2973", - "slotId": "cartridges", - "location": 1 - } - ] - }, - { - "availableInGameEditions": [], - "id": "63a19af0fcae11642e50f9b1", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2976", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2976", - "_tpl": "56ea8d2fd2720b7c698b4570" - } - ], - "loyaltyLevel": 1, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa39c64ea11e84c0642a6": { - "QuestName": "The Walls Have Eyes", - "_id": "669fa39c64ea11e84c0642a6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa39c64ea11e84c0642a6 acceptPlayerMessage", - "changeQuestMessageText": "669fa39c64ea11e84c0642a6 changeQuestMessageText", - "completePlayerMessage": "669fa39c64ea11e84c0642a6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "669fb5c58c03e61e1a33ddf0", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_7_1", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "669fb5c7d5fbaaa7b285e83d", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_7_2", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "669fb5c9d798aa41b9bd60b5", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_7_3", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa32da94e387ba878a128a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa395c4c5c04798002497", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa39c64ea11e84c0642a6 description", - "failMessageText": "669fa39c64ea11e84c0642a6 failMessageText", - "declinePlayerMessage": "669fa39c64ea11e84c0642a6 declinePlayerMessage", - "name": "669fa39c64ea11e84c0642a6 name", - "note": "669fa39c64ea11e84c0642a6 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acec801d8e1083b303f5a9.png", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa39c64ea11e84c0642a6 startedMessageText", - "successMessageText": "669fa39c64ea11e84c0642a6 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa32f030c6d0aae40a9f6d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b297a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2978", - "_tpl": "5b4391a586f7745321235ab2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2979", - "_tpl": "5b4391a586f7745321235ab2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b297a", - "_tpl": "5b4391a586f7745321235ab2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 7200, - "id": "66aa330964ea11e84c065d5c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa33111e5e199ecd094f0b", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 550, - "id": "66aa331cc26f13bd0403281a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b297c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b297c", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 550 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66aa3333fb57cc8a5404ac60", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b297d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b297d", - "_tpl": "5fb64bc92b1b027b1f50bcf2", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b297e", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b297f", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b2980", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2981", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2982", - "_tpl": "5fb65363d1409e5ca04b54f5", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2983", - "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "68010065f81036801d0b2982", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2984", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b2985", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2986", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b297d", - "slotId": "mod_mount_002" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa3360fb57cc8a5404ac61", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b298a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2988", - "_tpl": "5fb651dc85f90547f674b6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2989", - "_tpl": "5fb651dc85f90547f674b6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b298a", - "_tpl": "5fb651dc85f90547f674b6f4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa3374023055273703d889", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2991", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b298d", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b298e", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b298d", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b298f", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2990", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b298f", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2991", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2992", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2991", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae448bf86f7744d733e55ee": { - "QuestName": "Make ULTRA Great Again", - "_id": "5ae448bf86f7744d733e55ee", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae448bf86f7744d733e55ee acceptPlayerMessage", - "changeQuestMessageText": "5ae448bf86f7744d733e55ee changeQuestMessageText", - "completePlayerMessage": "5ae448bf86f7744d733e55ee completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ae44ecd86f77414a13c970d", - "conditions": [ - { - "id": "5ae44ef386f774149f15ed84", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "5ae44efd86f774149d4cc6a4", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ae44ecd86f77414a13c970e", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 25, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af4154186f7745c2674236d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448a386f7744d3730fff0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae448bf86f7744d733e55ee description", - "failMessageText": "5ae448bf86f7744d733e55ee failMessageText", - "declinePlayerMessage": "5ae448bf86f7744d733e55ee declinePlayerMessage", - "name": "5ae448bf86f7744d733e55ee name", - "note": "5ae448bf86f7744d733e55ee note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae448bf86f7744d733e55ee startedMessageText", - "successMessageText": "5ae448bf86f7744d733e55ee successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 9800, - "id": "5c95108086f774551617863f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc8116e3d0247e625dab82", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 25000, - "id": "60cc81283e4e974efa345d7b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2994", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2994", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 25000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "60cc813e77dc197c774254d6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2998", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2996", - "_tpl": "59e7643b86f7742cbf2c109a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2997", - "_tpl": "59e7643b86f7742cbf2c109a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2998", - "_tpl": "59e7643b86f7742cbf2c109a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "629f0aad14061f307437fc61", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "674492b6909d2013670a347a": { - "QuestName": "Ask for Directions", - "_id": "674492b6909d2013670a347a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "674492b6909d2013670a347a acceptPlayerMessage", - "changeQuestMessageText": "674492b6909d2013670a347a changeQuestMessageText", - "completePlayerMessage": "674492b6909d2013670a347a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "674492e56e8d2d5239a3fd37", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Path_mountains_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "674492ebf6f84f7d09ef1abb", - "index": 4, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Path_mountains_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "674492f0636d0661476732f2", - "index": 5, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Path_mountains_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "674492f30f45cb752f21df39", - "index": 6, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Path_mountains_4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67449355adb14eb7c6404c68", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6740b60c60a98cad1b0e0aa0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "674492b6909d2013670a347a description", - "failMessageText": "674492b6909d2013670a347a failMessageText", - "declinePlayerMessage": "674492b6909d2013670a347a declinePlayerMessage", - "name": "674492b6909d2013670a347a name", - "note": "674492b6909d2013670a347a note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "5704e4dad2720bb55b8b4567", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "674492b6909d2013670a347a startedMessageText", - "successMessageText": "674492b6909d2013670a347a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 13200, - "id": "67584f3808b35eb3c013d101", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 85000, - "id": "67584f46c9be1367ca5ed48f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b299a", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b299a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 85000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67584f4edf59ad0564f90521", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67584f5d6656eb04186b41f9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b299c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b299c", - "_tpl": "5e2aedd986f7746d404f3aa4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67584f6816fd4d1dad2f4a81", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b299e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b299e", - "_tpl": "5e2aedd986f7746d404f3aa4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac3460c86f7742880308185": { - "QuestName": "Farming - Part 2", - "_id": "5ac3460c86f7742880308185", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac3460c86f7742880308185 acceptPlayerMessage", - "changeQuestMessageText": "5ac3460c86f7742880308185 changeQuestMessageText", - "completePlayerMessage": "5ac3460c86f7742880308185 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac502a786f7740bde1b000c", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e36c6f86f774176c10a2a7" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5055a86f7745cae22b582", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59e36c6f86f774176c10a2a7" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac505c386f7740be0424d19", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347cd0245977445a2d6ff1" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac505e186f7740bdf2ceabe", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347cd0245977445a2d6ff1" - ], - "globalQuestCounterId": "", - "value": 4, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ac5061386f77417e429ce7a", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3b0486f7743954552bdb" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ac5062586f774587c327395", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a3b0486f7743954552bdb" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf3b0986f7741bb8378499", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf3b1286f77418420bf36b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac345dc86f774288030817f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac3460c86f7742880308185 description", - "failMessageText": "5ac3460c86f7742880308185 failMessageText", - "declinePlayerMessage": "5ac3460c86f7742880308185 declinePlayerMessage", - "name": "5ac3460c86f7742880308185 name", - "note": "5ac3460c86f7742880308185 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac3460c86f7742880308185 startedMessageText", - "successMessageText": "5ac3460c86f7742880308185 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 5500, - "id": "60cc7a6065e4664318606afe", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc7a857c496e588343a6e6", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 15000, - "id": "5acb7ded86f77417d079736e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29a0", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b29a0", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 15000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc7a7a65e4664318606aff", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29a1", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29a1", - "_tpl": "5cadfbf7ae92152ac412eeef", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b29a2", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "68010065f81036801d0b29a1", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b29a3", - "_tpl": "5caf1041ae92157c28402e3f", - "parentId": "68010065f81036801d0b29a1", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b29a4", - "_tpl": "5caf16a2ae92152ac412efbc", - "parentId": "68010065f81036801d0b29a1", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b29a5", - "_tpl": "5cdaa99dd7f00c002412d0b2", - "parentId": "68010065f81036801d0b29a1", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b29a6", - "_tpl": "5cda9bcfd7f00c0c0b53e900", - "parentId": "68010065f81036801d0b29a5", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b29a7", - "_tpl": "5caf1691ae92152ac412efb9", - "parentId": "68010065f81036801d0b29a1", - "slotId": "mod_scope" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ec19ff686f7561e047757af", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29a9", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29a9", - "_tpl": "5d1b2ffd86f77425243e8d17", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ac345dc86f774288030817f": { - "QuestName": "Farming - Part 1", - "_id": "5ac345dc86f774288030817f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ac345dc86f774288030817f acceptPlayerMessage", - "changeQuestMessageText": "5ac345dc86f774288030817f changeQuestMessageText", - "completePlayerMessage": "5ac345dc86f774288030817f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5ac7a4ba86f77409f3423628", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_SADOVOD_01_1", - "target": [ - "590c2e1186f77425357b6124" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "5ac7a51a86f774738a4ffc96", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 20, - "zoneId": "place_SADOVOD_01_2", - "target": [ - "590c2e1186f77425357b6124" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "5ac7a5d586f774383111ee62", - "conditions": [ - { - "id": "5ac7a5e086f774383054c362", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner" - ], - "conditionType": "ExitStatus" - }, - { - "id": "5b7ff33786f7744b99464500", - "dynamicLocale": false, - "target": [ - "factory4_day", - "factory4_night" - ], - "conditionType": "Location" - } - ] - }, - "id": "5ac7a5d586f774383111ee63", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ac7a5f486f774382e6fce02", - "target": "5ac7a4ba86f77409f3423628", - "conditionType": "CompleteCondition" - }, - { - "id": "5ac7a5fb86f7743e1e142464", - "target": "5ac7a51a86f774738a4ffc96", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5acf388786f7741cdb2f7ef9", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 12, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5acf390d86f774184403900f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac23c6186f7741247042bad", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ac345dc86f774288030817f description", - "failMessageText": "5ac345dc86f774288030817f failMessageText", - "declinePlayerMessage": "5ac345dc86f774288030817f declinePlayerMessage", - "name": "5ac345dc86f774288030817f name", - "note": "5ac345dc86f774288030817f note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ac345dc86f774288030817f startedMessageText", - "successMessageText": "5ac345dc86f774288030817f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6600, - "id": "60cc79f22b555f16df5c41c0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc79f877dc197c774254c9", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 25000, - "id": "5acb7e4a86f7747a5a562023", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29ab", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b29ab", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 25000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc7a0c7c496e588343a6e4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29ae", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29ad", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29ae", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc7a24f09d61072d6d00c7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29b1", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29b0", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29b1", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae448a386f7744d3730fff0": { - "QuestName": "Only Business", - "_id": "5ae448a386f7744d3730fff0", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae448a386f7744d3730fff0 acceptPlayerMessage", - "changeQuestMessageText": "5ae448a386f7744d3730fff0 changeQuestMessageText", - "completePlayerMessage": "5ae448a386f7744d3730fff0 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "TraderLoyalty", - "id": "5ae44c6886f7744f1a7eb2b8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ac3b934156ae10c4430e83c", - "globalQuestCounterId": "", - "value": 2, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5af414f286f774522f59b0d7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae448a386f7744d3730fff0 description", - "failMessageText": "5ae448a386f7744d3730fff0 failMessageText", - "declinePlayerMessage": "5ae448a386f7744d3730fff0 declinePlayerMessage", - "name": "5ae448a386f7744d3730fff0 name", - "note": "5ae448a386f7744d3730fff0 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Merchant", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae448a386f7744d3730fff0 startedMessageText", - "successMessageText": "5ae448a386f7744d3730fff0 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6700, - "id": "5c95107186f7743285178ade", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "60cc80d62b555f16df5c41d3", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 10000, - "id": "5ae9ab1986f7743dfb61b904", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29b3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b29b3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 10000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc80ea2b555f16df5c41d4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29b5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29b5", - "_tpl": "5b44c8ea86f7742d1627baf1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5ae4493486f7744efa289417": { - "QuestName": "Database - Part 1", - "_id": "5ae4493486f7744efa289417", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5ae4493486f7744efa289417 acceptPlayerMessage", - "changeQuestMessageText": "5ae4493486f7744efa289417 changeQuestMessageText", - "completePlayerMessage": "5ae4493486f7744efa289417 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b32486f7745bbc72275a", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a0dd86f7742e5f454a05" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b34686f7743129512ccf", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a0dd86f7742e5f454a05" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae9b34986f7742291103ff8", - "target": "5ae9b32486f7745bbc72275a", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b36c86f774307c29df04", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a18586f7746e381e16a3" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b38a86f77432c81e2ce3", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a18586f7746e381e16a3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae9b39486f7742291103ffa", - "target": "5ae9b36c86f774307c29df04", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "5ae9b3b186f7745bbc722762", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a1b886f77404c8537c62" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "5ae9b3c986f77432c81e2ce6", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5ae9a1b886f77404c8537c62" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5ae9b3d086f774307c29df09", - "target": "5ae9b3b186f7745bbc722762", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "5af415b286f77407184495dd", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448e586f7744dcf0c2a67", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "6389fb4cc3442f24872c115a", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5ae448bf86f7744d733e55ee", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5ae4493486f7744efa289417 description", - "failMessageText": "5ae4493486f7744efa289417 failMessageText", - "declinePlayerMessage": "5ae4493486f7744efa289417 declinePlayerMessage", - "name": "5ae4493486f7744efa289417 name", - "note": "5ae4493486f7744efa289417 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/5ae4a7d286f7744748710d74.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5ae4493486f7744efa289417 startedMessageText", - "successMessageText": "5ae4493486f7744efa289417 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8400, - "id": "60cc828c179f8541b8469280", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc828ff09d61072d6d0113", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "60cc82978f570e28f1481173", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29b7", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b29b7", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5ae9b54486f7745bbc72277f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29b9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29b9", - "_tpl": "5aa2ba71e5b5b000137b758f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60cc82dcaf2e5506c37822d6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29bb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29bb", - "_tpl": "5d6d2ef3a4b93618084f58bd", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60cc82f465e4664318606b52", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29be", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29bd", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29be", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b884f769de97e1d62d11a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b29bf", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b29bf", - "_tpl": "609e8540d5c319764c2bc2e9" - } - ], - "loyaltyLevel": 2, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa3a08b4a64b332041ff7": { - "QuestName": "Dragnet", - "_id": "669fa3a08b4a64b332041ff7", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa3a08b4a64b332041ff7 acceptPlayerMessage", - "changeQuestMessageText": "669fa3a08b4a64b332041ff7 changeQuestMessageText", - "completePlayerMessage": "669fa3a08b4a64b332041ff7 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "66a0e692281e56a89b717b7d", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66a0e523e749756c920d02d0" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66a0e69ec03c2dad1a84993a", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66a0e523e749756c920d02d0" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa319ae3494ba703d885db", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa38fad7f1eac2607ed46", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "669fa3a08b4a64b332041ff7 description", - "failMessageText": "669fa3a08b4a64b332041ff7 failMessageText", - "declinePlayerMessage": "669fa3a08b4a64b332041ff7 declinePlayerMessage", - "name": "669fa3a08b4a64b332041ff7 name", - "note": "669fa3a08b4a64b332041ff7 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/66acecb632bc3e9d7e0d2d57.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa3a08b4a64b332041ff7 startedMessageText", - "successMessageText": "669fa3a08b4a64b332041ff7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 17300, - "id": "66aa31a464ea11e84c065d5b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "66aa31c2c26f13bd04032818", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 92000, - "id": "66aa31d3fb57cc8a5404ac5c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29c1", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b29c1", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 92000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "66aa31e9023055273703d885", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29c2", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29c2", - "_tpl": "5aafa857e5b5b00018480968", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b29c3", - "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "68010065f81036801d0b29c2", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b29c4", - "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "68010065f81036801d0b29c2", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b29c5", - "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "68010065f81036801d0b29c4", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b29c6", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "68010065f81036801d0b29c2", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b29c7", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "68010065f81036801d0b29c6", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b29c8", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "68010065f81036801d0b29c7", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b29c9", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "68010065f81036801d0b29c2", - "slotId": "mod_sight_rear" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66aa32131e5e199ecd094f0a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29cd", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29cb", - "_tpl": "5addcce35acfc4001a5fc635", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29cc", - "_tpl": "5addcce35acfc4001a5fc635", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29cd", - "_tpl": "5addcce35acfc4001a5fc635", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 6, - "id": "66aa3238fb57cc8a5404ac5d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b29da", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b29d0", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29d1", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29d0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b29d2", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29d3", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29d2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b29d4", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29d5", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29d4", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b29d6", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29d7", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29d6", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b29d8", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29d9", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29d8", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b29da", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b29db", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b29da", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5d25e29d86f7740a22516326": { "QuestName": "The Survivalist Path - Eagle-Owl", "_id": "5d25e29d86f7740a22516326", @@ -102440,12 +98258,12 @@ "id": "5d6672e086f774131e206b3a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29dd", + "target": "6812400c0c5cf2cf75075ca6", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b29dd", + "_id": "6812400c0c5cf2cf75075ca6", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 40000 @@ -102459,12 +98277,12 @@ "id": "5d6672f486f774368e1b7866", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29e1", + "target": "6812400c0c5cf2cf75075caa", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29df", + "_id": "6812400c0c5cf2cf75075ca8", "_tpl": "5b3b6e495acfc4330140bd88", "upd": { "StackObjectsCount": 1, @@ -102472,7 +98290,7 @@ } }, { - "_id": "68010065f81036801d0b29e0", + "_id": "6812400c0c5cf2cf75075ca9", "_tpl": "5b3b6e495acfc4330140bd88", "upd": { "StackObjectsCount": 1, @@ -102480,7 +98298,7 @@ } }, { - "_id": "68010065f81036801d0b29e1", + "_id": "6812400c0c5cf2cf75075caa", "_tpl": "5b3b6e495acfc4330140bd88", "upd": { "StackObjectsCount": 1, @@ -102985,12 +98803,12 @@ "id": "61029f5f60307362d01d8c8b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29e3", + "target": "6812400c0c5cf2cf75075cac", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29e3", + "_id": "6812400c0c5cf2cf75075cac", "_tpl": "5d235b4d86f7742e017bc88a", "upd": { "StackObjectsCount": 20 @@ -103022,12 +98840,12 @@ "id": "61028c55d51ac54f163ffa06", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29e5", + "target": "6812400c0c5cf2cf75075cae", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29e5", + "_id": "6812400c0c5cf2cf75075cae", "_tpl": "5d1b5e94d7ad1a2b865a96b0", "upd": { "StackObjectsCount": 1, @@ -103042,12 +98860,12 @@ "id": "61029cb83401af5fe16fcb50", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29eb", + "target": "6812400c0c5cf2cf75075cb4", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29e7", + "_id": "6812400c0c5cf2cf75075cb0", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -103055,7 +98873,7 @@ } }, { - "_id": "68010065f81036801d0b29e8", + "_id": "6812400c0c5cf2cf75075cb1", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -103063,7 +98881,7 @@ } }, { - "_id": "68010065f81036801d0b29e9", + "_id": "6812400c0c5cf2cf75075cb2", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -103071,7 +98889,7 @@ } }, { - "_id": "68010065f81036801d0b29ea", + "_id": "6812400c0c5cf2cf75075cb3", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -103079,7 +98897,7 @@ } }, { - "_id": "68010065f81036801d0b29eb", + "_id": "6812400c0c5cf2cf75075cb4", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -103216,12 +99034,12 @@ "id": "66c49ce48834010aa904e095", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29ec", + "target": "6812400c0c5cf2cf75075cb5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29ec", + "_id": "6812400c0c5cf2cf75075cb5", "_tpl": "6680304edadb7aa61d00cef0", "upd": { "StackObjectsCount": 1, @@ -103232,39 +99050,39 @@ } }, { - "_id": "68010065f81036801d0b29ed", + "_id": "6812400c0c5cf2cf75075cb6", "_tpl": "668670e3fb75ee4a5e02eb16", - "parentId": "68010065f81036801d0b29ec", + "parentId": "6812400c0c5cf2cf75075cb5", "slotId": "mod_muzzle_000" }, { - "_id": "68010065f81036801d0b29ee", + "_id": "6812400c0c5cf2cf75075cb7", "_tpl": "6680326874b8f2050c0b9178", - "parentId": "68010065f81036801d0b29ec", + "parentId": "6812400c0c5cf2cf75075cb5", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b29ef", + "_id": "6812400c0c5cf2cf75075cb8", "_tpl": "655f13e0a246670fb0373245", - "parentId": "68010065f81036801d0b29ee", + "parentId": "6812400c0c5cf2cf75075cb7", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b29f0", + "_id": "6812400c0c5cf2cf75075cb9", "_tpl": "668670432b934a68630a7fe8", - "parentId": "68010065f81036801d0b29ec", + "parentId": "6812400c0c5cf2cf75075cb5", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b29f1", + "_id": "6812400c0c5cf2cf75075cba", "_tpl": "66866f622a2296a8d9099639", - "parentId": "68010065f81036801d0b29ec", + "parentId": "6812400c0c5cf2cf75075cb5", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b29f2", + "_id": "6812400c0c5cf2cf75075cbb", "_tpl": "66867310f3734a938b077f79", - "parentId": "68010065f81036801d0b29ec", + "parentId": "6812400c0c5cf2cf75075cb5", "slotId": "mod_stock" } ] @@ -103294,12 +99112,12 @@ "id": "66aa3d33e749756c920d3371", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29f4", + "target": "6812400c0c5cf2cf75075cbd", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b29f4", + "_id": "6812400c0c5cf2cf75075cbd", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 520000 @@ -103313,12 +99131,12 @@ "id": "66aa3d45e0c9f9fafa083671", "type": "Item", "index": 0, - "target": "68010065f81036801d0b29f5", + "target": "6812400c0c5cf2cf75075cbe", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29f5", + "_id": "6812400c0c5cf2cf75075cbe", "_tpl": "57c44b372459772d2b39b8ce", "upd": { "StackObjectsCount": 1, @@ -103335,45 +99153,45 @@ } }, { - "_id": "68010065f81036801d0b29f6", + "_id": "6812400c0c5cf2cf75075cbf", "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b29f7", + "_id": "6812400c0c5cf2cf75075cc0", "_tpl": "57c44e7b2459772d28133248", - "parentId": "68010065f81036801d0b29f6", + "parentId": "6812400c0c5cf2cf75075cbf", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b29f8", + "_id": "6812400c0c5cf2cf75075cc1", "_tpl": "57c44f4f2459772d2c627113", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b29f9", + "_id": "6812400c0c5cf2cf75075cc2", "_tpl": "57838f9f2459774a150289a0", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b29fa", + "_id": "6812400c0c5cf2cf75075cc3", "_tpl": "57c44fa82459772d2d75e415", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b29fb", + "_id": "6812400c0c5cf2cf75075cc4", "_tpl": "57c450252459772d28133253", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b29fc", + "_id": "6812400c0c5cf2cf75075cc5", "_tpl": "651178336cad06c37c049eb4", - "parentId": "68010065f81036801d0b29f5", + "parentId": "6812400c0c5cf2cf75075cbe", "slotId": "mod_handguard" } ] @@ -103384,12 +99202,12 @@ "id": "66aa3d578b4a64b33204377e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a00", + "target": "6812400c0c5cf2cf75075cc9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b29fe", + "_id": "6812400c0c5cf2cf75075cc7", "_tpl": "65118f531b90b4fc77015083", "upd": { "StackObjectsCount": 1, @@ -103397,7 +99215,7 @@ } }, { - "_id": "68010065f81036801d0b29ff", + "_id": "6812400c0c5cf2cf75075cc8", "_tpl": "65118f531b90b4fc77015083", "upd": { "StackObjectsCount": 1, @@ -103405,7 +99223,7 @@ } }, { - "_id": "68010065f81036801d0b2a00", + "_id": "6812400c0c5cf2cf75075cc9", "_tpl": "65118f531b90b4fc77015083", "upd": { "StackObjectsCount": 1, @@ -103420,12 +99238,12 @@ "id": "66aa3d8a1e5e199ecd094f13", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a0d", + "target": "6812400c0c5cf2cf75075cd6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a03", + "_id": "6812400c0c5cf2cf75075ccc", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103433,16 +99251,16 @@ } }, { - "_id": "68010065f81036801d0b2a04", + "_id": "6812400c0c5cf2cf75075ccd", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a03", + "parentId": "6812400c0c5cf2cf75075ccc", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a05", + "_id": "6812400c0c5cf2cf75075cce", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103450,16 +99268,16 @@ } }, { - "_id": "68010065f81036801d0b2a06", + "_id": "6812400c0c5cf2cf75075ccf", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a05", + "parentId": "6812400c0c5cf2cf75075cce", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a07", + "_id": "6812400c0c5cf2cf75075cd0", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103467,16 +99285,16 @@ } }, { - "_id": "68010065f81036801d0b2a08", + "_id": "6812400c0c5cf2cf75075cd1", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a07", + "parentId": "6812400c0c5cf2cf75075cd0", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a09", + "_id": "6812400c0c5cf2cf75075cd2", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103484,16 +99302,16 @@ } }, { - "_id": "68010065f81036801d0b2a0a", + "_id": "6812400c0c5cf2cf75075cd3", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a09", + "parentId": "6812400c0c5cf2cf75075cd2", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a0b", + "_id": "6812400c0c5cf2cf75075cd4", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103501,16 +99319,16 @@ } }, { - "_id": "68010065f81036801d0b2a0c", + "_id": "6812400c0c5cf2cf75075cd5", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a0b", + "parentId": "6812400c0c5cf2cf75075cd4", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a0d", + "_id": "6812400c0c5cf2cf75075cd6", "_tpl": "6489854673c462723909a14e", "upd": { "StackObjectsCount": 1, @@ -103518,12 +99336,12 @@ } }, { - "_id": "68010065f81036801d0b2a0e", + "_id": "6812400c0c5cf2cf75075cd7", "_tpl": "5c0d688c86f77413ae3407b2", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2a0d", + "parentId": "6812400c0c5cf2cf75075cd6", "slotId": "cartridges" } ] @@ -103644,12 +99462,12 @@ "id": "66aa329cfb57cc8a5404ac5e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a10", + "target": "6812400c0c5cf2cf75075cd9", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a10", + "_id": "6812400c0c5cf2cf75075cd9", "_tpl": "569668774bdc2da2298b4568", "upd": { "StackObjectsCount": 260 @@ -103663,12 +99481,12 @@ "id": "66aa32a930c6d0aae40a9f6c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a14", + "target": "6812400c0c5cf2cf75075cdd", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a12", + "_id": "6812400c0c5cf2cf75075cdb", "_tpl": "60391b0fb847c71012789415", "upd": { "StackObjectsCount": 1, @@ -103676,7 +99494,7 @@ } }, { - "_id": "68010065f81036801d0b2a13", + "_id": "6812400c0c5cf2cf75075cdc", "_tpl": "60391b0fb847c71012789415", "upd": { "StackObjectsCount": 1, @@ -103684,7 +99502,7 @@ } }, { - "_id": "68010065f81036801d0b2a14", + "_id": "6812400c0c5cf2cf75075cdd", "_tpl": "60391b0fb847c71012789415", "upd": { "StackObjectsCount": 1, @@ -103805,12 +99623,12 @@ "id": "675825e546538870e818d915", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a16", + "target": "6812400c0c5cf2cf75075cdf", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a16", + "_id": "6812400c0c5cf2cf75075cdf", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 96000 @@ -103833,12 +99651,12 @@ "id": "675825ff870548da5cf2d47a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a18", + "target": "6812400c0c5cf2cf75075ce1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a18", + "_id": "6812400c0c5cf2cf75075ce1", "_tpl": "57347ca924597744596b4e71", "upd": { "StackObjectsCount": 1, @@ -103858,6 +99676,2821 @@ "arenaLocations": [], "status": 0 }, + "5ae3270f86f77445ba41d4dd": { + "QuestName": "Gunsmith - Part 6", + "_id": "5ae3270f86f77445ba41d4dd", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae3270f86f77445ba41d4dd acceptPlayerMessage", + "changeQuestMessageText": "5ae3270f86f77445ba41d4dd changeQuestMessageText", + "completePlayerMessage": "5ae3270f86f77445ba41d4dd completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "5ae3550b86f7741cf44fc799", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "59d6088586f774275f37482f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 60.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 800.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 40.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 400.0, + "compareMethod": "<=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [ + "59f8a37386f7747af3328f06", + "59d6272486f77466146386ff" + ], + "hasItemFromCategory": [ + "550aa4cd4bdc2dd8348b456c" + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5af4139286f774522e34389b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 14, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5af4136586f774551341dc75", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae3267986f7742a413592fe", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 75600, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae3270f86f77445ba41d4dd description", + "failMessageText": "5ae3270f86f77445ba41d4dd failMessageText", + "declinePlayerMessage": "5ae3270f86f77445ba41d4dd declinePlayerMessage", + "name": "5ae3270f86f77445ba41d4dd name", + "note": "5ae3270f86f77445ba41d4dd note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ae3274386f7745b4246b387.jpg", + "type": "WeaponAssembly", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae3270f86f77445ba41d4dd startedMessageText", + "successMessageText": "5ae3270f86f77445ba41d4dd successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5800, + "id": "60cc77b92b555f16df5c41b8", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "60cc77c43e4e974efa345d25", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 50000, + "id": "5ae9964b86f77439b61d2571", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ce3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ce3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 50000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "5ae9966686f77439bf37d95a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ce6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ce5", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ce6", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6398a94993ae507d5858c3a9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ce9", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ce8", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ce9", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6398a9bbe11ec11ff5504039", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cf0", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cec", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ced", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075cec", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075cee", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075cef", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075cee", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075cf0", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075cf1", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075cf0", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "63a19b9bfcae11642e50f9b6", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075cf2", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cf2", + "_tpl": "5a0c59791526d8dba737bba7" + } + ], + "loyaltyLevel": 2, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5e4d515e86f77438b2195244": { + "QuestName": "Textile - Part 2", + "_id": "5e4d515e86f77438b2195244", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5e4d515e86f77438b2195244 acceptPlayerMessage", + "changeQuestMessageText": "5e4d515e86f77438b2195244 changeQuestMessageText", + "completePlayerMessage": "5e4d515e86f77438b2195244 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b2195245", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af47786f7746d404f3aaa" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b2195246", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af47786f7746d404f3aaa" + ], + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b2195247", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af41e86f774755a234b67" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b2195248", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af41e86f774755a234b67" + ], + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b2195249", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af29386f7746d4159f077" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5e4d515e86f77438b219524a", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5e2af29386f7746d4159f077" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5e58dd9086f7747c2639ee43", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5e383a6386f77465910ce1f3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5e4d515e86f77438b2195244 description", + "failMessageText": "5e4d515e86f77438b2195244 failMessageText", + "declinePlayerMessage": "5e4d515e86f77438b2195244 declinePlayerMessage", + "name": "5e4d515e86f77438b2195244 name", + "note": "5e4d515e86f77438b2195244 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5e4d3a5186f77464185227f3.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5e4d515e86f77438b2195244 startedMessageText", + "successMessageText": "5e4d515e86f77438b2195244 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 34300, + "id": "640f23daa318bf61ce0da273", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100000, + "id": "5e58ddad86f7747c2639ee44", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cf4", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cf4", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 100000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5e58e25786f7740bef574f07", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cf6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cf6", + "_tpl": "5c0e774286f77468413cc5b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "608974d01a66564e74191fc0": { + "QuestName": "A Fuel Matter", + "_id": "608974d01a66564e74191fc0", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "608974d01a66564e74191fc0 acceptPlayerMessage", + "changeQuestMessageText": "608974d01a66564e74191fc0 changeQuestMessageText", + "completePlayerMessage": "608974d01a66564e74191fc0 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "60a4dc7e4e734e57d07fb335", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "baraholshik_fuel_area_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "60b90232ec7c6f5eb510c195", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "plantTime": 10, + "zoneId": "baraholshik_fuel_area_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bfe32c61c4b541b381da8", + "conditions": [ + { + "id": "60a29875d90e89467e385633", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" + }, + { + "id": "60a299220b00f16d2d63dea4", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "608bfe32c61c4b541b381da9", + "index": 2, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "60a5028d42bd1607c81ab923", + "target": "60a4dc7e4e734e57d07fb335", + "conditionType": "CompleteCondition" + }, + { + "id": "60b9f085a9c5f27bcf28d613", + "target": "60b90232ec7c6f5eb510c195", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "60bf7284fd95cb3dfc36841f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448f286f77448d73c0131", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "60bf7293b73d016d6838ad85", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "608974d01a66564e74191fc0 description", + "failMessageText": "608974d01a66564e74191fc0 failMessageText", + "declinePlayerMessage": "608974d01a66564e74191fc0 declinePlayerMessage", + "name": "608974d01a66564e74191fc0 name", + "note": "608974d01a66564e74191fc0 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c373e753bc0f18316351fe.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "608974d01a66564e74191fc0 startedMessageText", + "successMessageText": "608974d01a66564e74191fc0 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8200, + "id": "60bf6c03db5461623517068b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60bf6c109903f107aa251f26", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "60bf6c39bf90bf6b431e8950", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cf8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cf8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60bf6c29d4526a054d42e109", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cfb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cfa", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075cfb", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5c112d7e86f7740d6f647486": { + "QuestName": "Scavenger", + "_id": "5c112d7e86f7740d6f647486", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5c112d7e86f7740d6f647486 acceptPlayerMessage", + "changeQuestMessageText": "5c112d7e86f7740d6f647486 changeQuestMessageText", + "completePlayerMessage": "5c112d7e86f7740d6f647486 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "Skill", + "id": "5c112dc486f77465686bff38", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "Search", + "globalQuestCounterId": "", + "value": 9, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5c1fd17786f7742b3b47f063", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 25, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5c1fd15f86f7742b3c0a7b78", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b478b1886f7744d1b23c57d", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c112d7e86f7740d6f647486 description", + "failMessageText": "5c112d7e86f7740d6f647486 failMessageText", + "declinePlayerMessage": "5c112d7e86f7740d6f647486 declinePlayerMessage", + "name": "5c112d7e86f7740d6f647486 name", + "note": "5c112d7e86f7740d6f647486 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Skill", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c112d7e86f7740d6f647486 startedMessageText", + "successMessageText": "5c112d7e86f7740d6f647486 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 17700, + "id": "60cc9a83f81cc57f4717189b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc9a8841fd1e14d71e22fd", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 65000, + "id": "5c19265186f77401b247ff98", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075cfd", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cfd", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 65000 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5c192fb086f7747ce71bcbe0", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075cfe", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075cfe", + "_tpl": "5bffe7930db834001b734a39" + } + ], + "loyaltyLevel": 4, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac3460c86f7742880308185": { + "QuestName": "Farming - Part 2", + "_id": "5ac3460c86f7742880308185", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac3460c86f7742880308185 acceptPlayerMessage", + "changeQuestMessageText": "5ac3460c86f7742880308185 changeQuestMessageText", + "completePlayerMessage": "5ac3460c86f7742880308185 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac502a786f7740bde1b000c", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e36c6f86f774176c10a2a7" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5055a86f7745cae22b582", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "59e36c6f86f774176c10a2a7" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac505c386f7740be0424d19", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347cd0245977445a2d6ff1" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac505e186f7740bdf2ceabe", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347cd0245977445a2d6ff1" + ], + "globalQuestCounterId": "", + "value": 4, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ac5061386f77417e429ce7a", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3b0486f7743954552bdb" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ac5062586f774587c327395", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a3b0486f7743954552bdb" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf3b0986f7741bb8378499", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf3b1286f77418420bf36b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac345dc86f774288030817f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac3460c86f7742880308185 description", + "failMessageText": "5ac3460c86f7742880308185 failMessageText", + "declinePlayerMessage": "5ac3460c86f7742880308185 declinePlayerMessage", + "name": "5ac3460c86f7742880308185 name", + "note": "5ac3460c86f7742880308185 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac3460c86f7742880308185 startedMessageText", + "successMessageText": "5ac3460c86f7742880308185 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 5500, + "id": "60cc7a6065e4664318606afe", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc7a857c496e588343a6e6", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 15000, + "id": "5acb7ded86f77417d079736e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d00", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d00", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 15000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc7a7a65e4664318606aff", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d01", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d01", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075d02", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "6812400c0c5cf2cf75075d01", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075d03", + "_tpl": "5caf1041ae92157c28402e3f", + "parentId": "6812400c0c5cf2cf75075d01", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075d04", + "_tpl": "5caf16a2ae92152ac412efbc", + "parentId": "6812400c0c5cf2cf75075d01", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075d05", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "parentId": "6812400c0c5cf2cf75075d01", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075d06", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "parentId": "6812400c0c5cf2cf75075d05", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400c0c5cf2cf75075d07", + "_tpl": "5caf1691ae92152ac412efb9", + "parentId": "6812400c0c5cf2cf75075d01", + "slotId": "mod_scope" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ec19ff686f7561e047757af", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d09", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d09", + "_tpl": "5d1b2ffd86f77425243e8d17", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa39c64ea11e84c0642a6": { + "QuestName": "The Walls Have Eyes", + "_id": "669fa39c64ea11e84c0642a6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa39c64ea11e84c0642a6 acceptPlayerMessage", + "changeQuestMessageText": "669fa39c64ea11e84c0642a6 changeQuestMessageText", + "completePlayerMessage": "669fa39c64ea11e84c0642a6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "669fb5c58c03e61e1a33ddf0", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_7_1", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "669fb5c7d5fbaaa7b285e83d", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_7_2", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "669fb5c9d798aa41b9bd60b5", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_7_3", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa32da94e387ba878a128a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa395c4c5c04798002497", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "669fa39c64ea11e84c0642a6 description", + "failMessageText": "669fa39c64ea11e84c0642a6 failMessageText", + "declinePlayerMessage": "669fa39c64ea11e84c0642a6 declinePlayerMessage", + "name": "669fa39c64ea11e84c0642a6 name", + "note": "669fa39c64ea11e84c0642a6 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/66acec801d8e1083b303f5a9.png", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa39c64ea11e84c0642a6 startedMessageText", + "successMessageText": "669fa39c64ea11e84c0642a6 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa32f030c6d0aae40a9f6d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d0d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d0b", + "_tpl": "5b4391a586f7745321235ab2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d0c", + "_tpl": "5b4391a586f7745321235ab2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d0d", + "_tpl": "5b4391a586f7745321235ab2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 7200, + "id": "66aa330964ea11e84c065d5c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "66aa33111e5e199ecd094f0b", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 550, + "id": "66aa331cc26f13bd0403281a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d0f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d0f", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 550 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66aa3333fb57cc8a5404ac60", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d10", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d10", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400c0c5cf2cf75075d11", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075d12", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075d13", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075d14", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075d15", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075d16", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "6812400c0c5cf2cf75075d15", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075d17", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf75075d18", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075d19", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "6812400c0c5cf2cf75075d10", + "slotId": "mod_mount_002" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa3360fb57cc8a5404ac61", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d1d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d1b", + "_tpl": "5fb651dc85f90547f674b6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d1c", + "_tpl": "5fb651dc85f90547f674b6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d1d", + "_tpl": "5fb651dc85f90547f674b6f4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66aa3374023055273703d889", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d24", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d20", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d21", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075d20", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075d22", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d23", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075d22", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075d24", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d25", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075d24", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ac345dc86f774288030817f": { + "QuestName": "Farming - Part 1", + "_id": "5ac345dc86f774288030817f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ac345dc86f774288030817f acceptPlayerMessage", + "changeQuestMessageText": "5ac345dc86f774288030817f changeQuestMessageText", + "completePlayerMessage": "5ac345dc86f774288030817f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5ac7a4ba86f77409f3423628", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_SADOVOD_01_1", + "target": [ + "590c2e1186f77425357b6124" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "5ac7a51a86f774738a4ffc96", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 20, + "zoneId": "place_SADOVOD_01_2", + "target": [ + "590c2e1186f77425357b6124" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ac7a5d586f774383111ee62", + "conditions": [ + { + "id": "5ac7a5e086f774383054c362", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner" + ], + "conditionType": "ExitStatus" + }, + { + "id": "5b7ff33786f7744b99464500", + "dynamicLocale": false, + "target": [ + "factory4_day", + "factory4_night" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ac7a5d586f774383111ee63", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ac7a5f486f774382e6fce02", + "target": "5ac7a4ba86f77409f3423628", + "conditionType": "CompleteCondition" + }, + { + "id": "5ac7a5fb86f7743e1e142464", + "target": "5ac7a51a86f774738a4ffc96", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5acf388786f7741cdb2f7ef9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 12, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5acf390d86f774184403900f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac23c6186f7741247042bad", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ac345dc86f774288030817f description", + "failMessageText": "5ac345dc86f774288030817f failMessageText", + "declinePlayerMessage": "5ac345dc86f774288030817f declinePlayerMessage", + "name": "5ac345dc86f774288030817f name", + "note": "5ac345dc86f774288030817f note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/5ac4db0986f77442000164dd.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ac345dc86f774288030817f startedMessageText", + "successMessageText": "5ac345dc86f774288030817f successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6600, + "id": "60cc79f22b555f16df5c41c0", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc79f877dc197c774254c9", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 25000, + "id": "5acb7e4a86f7747a5a562023", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d27", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d27", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 25000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc7a0c7c496e588343a6e4", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d2a", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d29", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d2a", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc7a24f09d61072d6d00c7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d2d", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d2c", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d2d", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae448bf86f7744d733e55ee": { + "QuestName": "Make ULTRA Great Again", + "_id": "5ae448bf86f7744d733e55ee", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae448bf86f7744d733e55ee acceptPlayerMessage", + "changeQuestMessageText": "5ae448bf86f7744d733e55ee changeQuestMessageText", + "completePlayerMessage": "5ae448bf86f7744d733e55ee completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5ae44ecd86f77414a13c970d", + "conditions": [ + { + "id": "5ae44ef386f774149f15ed84", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "5ae44efd86f774149d4cc6a4", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + } + ] + }, + "id": "5ae44ecd86f77414a13c970e", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 25, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4154186f7745c2674236d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448a386f7744d3730fff0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae448bf86f7744d733e55ee description", + "failMessageText": "5ae448bf86f7744d733e55ee failMessageText", + "declinePlayerMessage": "5ae448bf86f7744d733e55ee declinePlayerMessage", + "name": "5ae448bf86f7744d733e55ee name", + "note": "5ae448bf86f7744d733e55ee note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a76086f774455f7d62d2.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae448bf86f7744d733e55ee startedMessageText", + "successMessageText": "5ae448bf86f7744d733e55ee successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9800, + "id": "5c95108086f774551617863f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc8116e3d0247e625dab82", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 25000, + "id": "60cc81283e4e974efa345d7b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d2f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d2f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 25000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "60cc813e77dc197c774254d6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d33", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d31", + "_tpl": "59e7643b86f7742cbf2c109a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d32", + "_tpl": "59e7643b86f7742cbf2c109a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d33", + "_tpl": "59e7643b86f7742cbf2c109a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "629f0aad14061f307437fc61", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "674492b6909d2013670a347a": { + "QuestName": "Ask for Directions", + "_id": "674492b6909d2013670a347a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "674492b6909d2013670a347a acceptPlayerMessage", + "changeQuestMessageText": "674492b6909d2013670a347a changeQuestMessageText", + "completePlayerMessage": "674492b6909d2013670a347a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "674492e56e8d2d5239a3fd37", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Path_mountains_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "674492ebf6f84f7d09ef1abb", + "index": 4, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Path_mountains_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "674492f0636d0661476732f2", + "index": 5, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Path_mountains_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "674492f30f45cb752f21df39", + "index": 6, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Path_mountains_4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67449355adb14eb7c6404c68", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6740b60c60a98cad1b0e0aa0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "674492b6909d2013670a347a description", + "failMessageText": "674492b6909d2013670a347a failMessageText", + "declinePlayerMessage": "674492b6909d2013670a347a declinePlayerMessage", + "name": "674492b6909d2013670a347a name", + "note": "674492b6909d2013670a347a note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "674492b6909d2013670a347a startedMessageText", + "successMessageText": "674492b6909d2013670a347a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 13200, + "id": "67584f3808b35eb3c013d101", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 85000, + "id": "67584f46c9be1367ca5ed48f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d35", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d35", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 85000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67584f4edf59ad0564f90521", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67584f5d6656eb04186b41f9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d37", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d37", + "_tpl": "5e2aedd986f7746d404f3aa4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67584f6816fd4d1dad2f4a81", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d39", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d39", + "_tpl": "5e2aedd986f7746d404f3aa4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "63ab180c87413d64ae0ac20a": { + "QuestName": "Dangerous Road", + "_id": "63ab180c87413d64ae0ac20a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "63ab180c87413d64ae0ac20a acceptPlayerMessage", + "changeQuestMessageText": "63ab180c87413d64ae0ac20a changeQuestMessageText", + "completePlayerMessage": "63ab180c87413d64ae0ac20a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ab184ff627f540861d1186", + "conditions": [ + { + "id": "63ab186a87413d64ae0ac20e", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + }, + { + "id": "63ab18aa435ab5742b4e40ae", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "63ab19253606f31cf40e5adc", + "dynamicLocale": false, + "exitName": "E7_car", + "conditionType": "ExitName" + } + ] + }, + "id": "63ab184ff627f540861d1185", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63ab1989f83fd608393890ae", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "596a0e1686f7741ddf17dbee", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63ab1991f627f540861d1187", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "63ab180c87413d64ae0ac20a description", + "failMessageText": "63ab180c87413d64ae0ac20a failMessageText", + "declinePlayerMessage": "63ab180c87413d64ae0ac20a declinePlayerMessage", + "name": "63ab180c87413d64ae0ac20a name", + "note": "63ab180c87413d64ae0ac20a note", + "traderId": "54cb57776803fa99248b456e", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63ab182c87413d64ae0ac20c.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "63ab180c87413d64ae0ac20a startedMessageText", + "successMessageText": "63ab180c87413d64ae0ac20a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 7800, + "id": "63ab22241b5c95746621dd88", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "63ab21b1e842787ad2135716", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 45000, + "id": "63ab227787413d64ae0ac20f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d3b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d3b", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 45000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "63ab62c01b5c95746621dd89", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d3e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d3d", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d3e", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "63ab62c8f627f540861d1188", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d41", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d40", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d41", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae448a386f7744d3730fff0": { + "QuestName": "Only Business", + "_id": "5ae448a386f7744d3730fff0", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae448a386f7744d3730fff0 acceptPlayerMessage", + "changeQuestMessageText": "5ae448a386f7744d3730fff0 changeQuestMessageText", + "completePlayerMessage": "5ae448a386f7744d3730fff0 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "TraderLoyalty", + "id": "5ae44c6886f7744f1a7eb2b8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ac3b934156ae10c4430e83c", + "globalQuestCounterId": "", + "value": 2, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5af414f286f774522f59b0d7", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae448a386f7744d3730fff0 description", + "failMessageText": "5ae448a386f7744d3730fff0 failMessageText", + "declinePlayerMessage": "5ae448a386f7744d3730fff0 declinePlayerMessage", + "name": "5ae448a386f7744d3730fff0 name", + "note": "5ae448a386f7744d3730fff0 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", + "type": "Merchant", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae448a386f7744d3730fff0 startedMessageText", + "successMessageText": "5ae448a386f7744d3730fff0 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6700, + "id": "5c95107186f7743285178ade", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc80d62b555f16df5c41d3", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 10000, + "id": "5ae9ab1986f7743dfb61b904", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d43", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d43", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 10000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc80ea2b555f16df5c41d4", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d45", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d45", + "_tpl": "5b44c8ea86f7742d1627baf1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4493486f7744efa289417": { + "QuestName": "Database - Part 1", + "_id": "5ae4493486f7744efa289417", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4493486f7744efa289417 acceptPlayerMessage", + "changeQuestMessageText": "5ae4493486f7744efa289417 changeQuestMessageText", + "completePlayerMessage": "5ae4493486f7744efa289417 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b32486f7745bbc72275a", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a0dd86f7742e5f454a05" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b34686f7743129512ccf", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a0dd86f7742e5f454a05" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae9b34986f7742291103ff8", + "target": "5ae9b32486f7745bbc72275a", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b36c86f774307c29df04", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a18586f7746e381e16a3" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b38a86f77432c81e2ce3", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a18586f7746e381e16a3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae9b39486f7742291103ffa", + "target": "5ae9b36c86f774307c29df04", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b3b186f7745bbc722762", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a1b886f77404c8537c62" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b3c986f77432c81e2ce6", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ae9a1b886f77404c8537c62" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5ae9b3d086f774307c29df09", + "target": "5ae9b3b186f7745bbc722762", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af415b286f77407184495dd", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448e586f7744dcf0c2a67", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "6389fb4cc3442f24872c115a", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5ae448bf86f7744d733e55ee", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4493486f7744efa289417 description", + "failMessageText": "5ae4493486f7744efa289417 failMessageText", + "declinePlayerMessage": "5ae4493486f7744efa289417 declinePlayerMessage", + "name": "5ae4493486f7744efa289417 name", + "note": "5ae4493486f7744efa289417 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/5ae4a7d286f7744748710d74.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4493486f7744efa289417 startedMessageText", + "successMessageText": "5ae4493486f7744efa289417 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8400, + "id": "60cc828c179f8541b8469280", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc828ff09d61072d6d0113", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "60cc82978f570e28f1481173", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d47", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d47", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5ae9b54486f7745bbc72277f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d49", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d49", + "_tpl": "5aa2ba71e5b5b000137b758f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc82dcaf2e5506c37822d6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d4b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d4b", + "_tpl": "5d6d2ef3a4b93618084f58bd", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "60cc82f465e4664318606b52", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d4e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d4d", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d4e", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b884f769de97e1d62d11a", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075d4f", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d4f", + "_tpl": "609e8540d5c319764c2bc2e9" + } + ], + "loyaltyLevel": 2, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "639135b04ed9512be67647d7": { "QuestName": "Glory to CPSU - Part 1", "_id": "639135b04ed9512be67647d7", @@ -104010,12 +102643,12 @@ "id": "63a7762a5c2012425132e345", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a1a", + "target": "6812400c0c5cf2cf75075d51", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a1a", + "_id": "6812400c0c5cf2cf75075d51", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 42000 @@ -104029,12 +102662,12 @@ "id": "63a777bd04d3dc28a52a20ea", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a1d", + "target": "6812400c0c5cf2cf75075d54", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a1c", + "_id": "6812400c0c5cf2cf75075d53", "_tpl": "5d40407c86f774318526545a", "upd": { "StackObjectsCount": 1, @@ -104042,7 +102675,7 @@ } }, { - "_id": "68010065f81036801d0b2a1d", + "_id": "6812400c0c5cf2cf75075d54", "_tpl": "5d40407c86f774318526545a", "upd": { "StackObjectsCount": 1, @@ -104214,12 +102847,12 @@ "id": "63a7791304d3dc28a52a20ee", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a1f", + "target": "6812400c0c5cf2cf75075d56", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a1f", + "_id": "6812400c0c5cf2cf75075d56", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 44000 @@ -104233,12 +102866,12 @@ "id": "63a779841943b749b5021ea5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a20", + "target": "6812400c0c5cf2cf75075d57", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a20", + "_id": "6812400c0c5cf2cf75075d57", "_tpl": "62e7c4fba689e8c9c50dfc38", "upd": { "StackObjectsCount": 1, @@ -104252,39 +102885,39 @@ } }, { - "_id": "68010065f81036801d0b2a21", + "_id": "6812400c0c5cf2cf75075d58", "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "68010065f81036801d0b2a20", + "parentId": "6812400c0c5cf2cf75075d57", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2a22", + "_id": "6812400c0c5cf2cf75075d59", "_tpl": "62e7c880f68e7a0676050c7c", - "parentId": "68010065f81036801d0b2a20", + "parentId": "6812400c0c5cf2cf75075d57", "slotId": "mod_charge" }, { - "_id": "68010065f81036801d0b2a23", + "_id": "6812400c0c5cf2cf75075d5a", "_tpl": "62ea7c793043d74a0306e19f", - "parentId": "68010065f81036801d0b2a20", + "parentId": "6812400c0c5cf2cf75075d57", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2a24", + "_id": "6812400c0c5cf2cf75075d5b", "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "68010065f81036801d0b2a23", + "parentId": "6812400c0c5cf2cf75075d5a", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2a25", + "_id": "6812400c0c5cf2cf75075d5c", "_tpl": "630f2872911356c17d06abc5", - "parentId": "68010065f81036801d0b2a24", + "parentId": "6812400c0c5cf2cf75075d5b", "slotId": "mod_muzzle_000" }, { - "_id": "68010065f81036801d0b2a26", + "_id": "6812400c0c5cf2cf75075d5d", "_tpl": "634e61b0767cb15c4601a877", - "parentId": "68010065f81036801d0b2a24", + "parentId": "6812400c0c5cf2cf75075d5b", "slotId": "mod_foregrip" } ] @@ -104295,12 +102928,12 @@ "id": "63a779d31943b749b5021ea6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a2a", + "target": "6812400c0c5cf2cf75075d61", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a28", + "_id": "6812400c0c5cf2cf75075d5f", "_tpl": "630e1adbbd357927e4007c09", "upd": { "StackObjectsCount": 1, @@ -104308,7 +102941,7 @@ } }, { - "_id": "68010065f81036801d0b2a29", + "_id": "6812400c0c5cf2cf75075d60", "_tpl": "630e1adbbd357927e4007c09", "upd": { "StackObjectsCount": 1, @@ -104316,7 +102949,7 @@ } }, { - "_id": "68010065f81036801d0b2a2a", + "_id": "6812400c0c5cf2cf75075d61", "_tpl": "630e1adbbd357927e4007c09", "upd": { "StackObjectsCount": 1, @@ -104331,12 +102964,12 @@ "id": "63a779e604d3dc28a52a20ef", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a2e", + "target": "6812400c0c5cf2cf75075d65", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a2e", + "_id": "6812400c0c5cf2cf75075d65", "_tpl": "65702652cfc010a0f5006a53", "upd": { "StackObjectsCount": 1, @@ -104344,21 +102977,21 @@ } }, { - "_id": "68010065f81036801d0b2a2f", + "_id": "6812400c0c5cf2cf75075d66", "_tpl": "54527ac44bdc2d36668b4567", "upd": { "StackObjectsCount": 60 }, - "parentId": "68010065f81036801d0b2a2e", + "parentId": "6812400c0c5cf2cf75075d65", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2a30", + "_id": "6812400c0c5cf2cf75075d67", "_tpl": "54527ac44bdc2d36668b4567", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b2a2e", + "parentId": "6812400c0c5cf2cf75075d65", "slotId": "cartridges", "location": 1 } @@ -104375,6 +103008,214 @@ "arenaLocations": [], "status": 0 }, + "675c1d6d59b0575973008fc7": { + "QuestName": "Seizing the Initiative", + "_id": "675c1d6d59b0575973008fc7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c1d6d59b0575973008fc7 acceptPlayerMessage", + "changeQuestMessageText": "675c1d6d59b0575973008fc7 changeQuestMessageText", + "completePlayerMessage": "675c1d6d59b0575973008fc7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "675c1d6d59b0575973008fca", + "conditions": [ + { + "id": "675c1d2ccfda4e3af23c5260", + "dynamicLocale": false, + "status": [ + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "675c1db0b55fae6d438fd1cc", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "675c1d6d59b0575973008fc9", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "675c1dbd500c68a592cdc33b", + "conditions": [ + { + "id": "675c1dcc71e76835ede109d8", + "dynamicLocale": false, + "status": [ + "Survived", + "Runner", + "Transit" + ], + "conditionType": "ExitStatus" + }, + { + "id": "675c1dd6796afca78345bf5a", + "dynamicLocale": false, + "target": [ + "Shoreline" + ], + "conditionType": "Location" + } + ] + }, + "id": "675c1dbdcca03cb7f61fc735", + "index": 1, + "parentId": "", + "oneSessionOnly": true, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6762f397c89f8ba0ad4eb0f8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b87686f77460de0252a8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c1d6d59b0575973008fc7 description", + "failMessageText": "675c1d6d59b0575973008fc7 failMessageText", + "declinePlayerMessage": "675c1d6d59b0575973008fc7 declinePlayerMessage", + "name": "675c1d6d59b0575973008fc7 name", + "note": "675c1d6d59b0575973008fc7 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/6762fe2d00f370c67c043e19.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c1d6d59b0575973008fc7 startedMessageText", + "successMessageText": "675c1d6d59b0575973008fc7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6300, + "id": "6762f3a39b7ea9ec2877c02a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 600, + "id": "6762f3acbea499433766e972", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d69", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d69", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 600 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "6762f3b592d4c8bda0601ba9", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6762f3c418f3c770c08a4431", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d6d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d6d", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075d6e", + "_tpl": "657bbad7a1c61ee0c3036323", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075d6d", + "slotId": "Helmet_top" + }, + { + "_id": "6812400c0c5cf2cf75075d6f", + "_tpl": "657bbb31b30eca9763051183", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075d6d", + "slotId": "Helmet_back" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "639135bbc115f907b14700a6": { "QuestName": "Audiophile", "_id": "639135bbc115f907b14700a6", @@ -104548,12 +103389,12 @@ "id": "63a78f89ee7b4d0d5507bae7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a32", + "target": "6812400c0c5cf2cf75075d71", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a32", + "_id": "6812400c0c5cf2cf75075d71", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 87000 @@ -104567,12 +103408,12 @@ "id": "63a78f961943b749b5021eaf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a34", + "target": "6812400c0c5cf2cf75075d73", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a34", + "_id": "6812400c0c5cf2cf75075d73", "_tpl": "59faf7ca86f7740dbe19f6c2", "upd": { "StackObjectsCount": 1, @@ -104587,12 +103428,12 @@ "id": "63a78f9c27a4ff476e6dd0c3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a36", + "target": "6812400c0c5cf2cf75075d75", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a36", + "_id": "6812400c0c5cf2cf75075d75", "_tpl": "5d235a5986f77443f6329bc6", "upd": { "StackObjectsCount": 1, @@ -104606,11 +103447,11 @@ "id": "655b89b7975a7f3c734661ab", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a37", + "target": "6812400c0c5cf2cf75075d76", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a37", + "_id": "6812400c0c5cf2cf75075d76", "_tpl": "60a3c70cde5f453f634816a3" } ], @@ -104628,334 +103469,6 @@ "arenaLocations": [], "status": 0 }, - "639135f286e646067c176a87": { - "QuestName": "Revision - Streets of Tarkov", - "_id": "639135f286e646067c176a87", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639135f286e646067c176a87 acceptPlayerMessage", - "changeQuestMessageText": "639135f286e646067c176a87 changeQuestMessageText", - "completePlayerMessage": "639135f286e646067c176a87 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "63927f14744e452011470816", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_place_c14_revx_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "63927f2d8ba6894d155e77e6", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_place_c14_revx_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "63927f349444fb141f4e6f24", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "quest_zone_place_c14_revx_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639cebb78fe84d33a25a142c", - "conditions": [ - { - "id": "639cebc3dae1800a3e1359b2", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "639cebee2a994a11600df103", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "639cebb78fe84d33a25a142b", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "639cec865573fd6cc27d99bd", - "target": "63927f14744e452011470816", - "conditionType": "CompleteCondition" - }, - { - "id": "639cec8d5b759c65a3476546", - "target": "63927f2d8ba6894d155e77e6", - "conditionType": "CompleteCondition" - }, - { - "id": "639cec947c898a131e1cfffb", - "target": "63927f349444fb141f4e6f24", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a77be01943b749b5021ea7", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6086c852c945025d41566124", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a77bebee7b4d0d5507badd", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639135f286e646067c176a87 description", - "failMessageText": "639135f286e646067c176a87 failMessageText", - "declinePlayerMessage": "639135f286e646067c176a87 declinePlayerMessage", - "name": "639135f286e646067c176a87 name", - "note": "639135f286e646067c176a87 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63a94151655ec5555b4aa9af.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639135f286e646067c176a87 startedMessageText", - "successMessageText": "639135f286e646067c176a87 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 8600, - "id": "63927fac8ba6894d155e77e7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a77d411943b749b5021ea8", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 450, - "id": "63a77da427a4ff476e6dd0bb", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2a39", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2a39", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 450 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "63aad2c6f76b8a05dd70292a", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2a3a", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2a3a", - "_tpl": "618428466ef05c2ce828f218", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b2a3b", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b2a3a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2a3c", - "_tpl": "61840d85568c120fdd2962a5", - "parentId": "68010065f81036801d0b2a3a", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2a3d", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "68010065f81036801d0b2a3a", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2a3e", - "_tpl": "6183fc15d3a39d50044c13e9", - "parentId": "68010065f81036801d0b2a3d", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2a3f", - "_tpl": "618407a850224f204c1da549", - "parentId": "68010065f81036801d0b2a3e", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2a40", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "68010065f81036801d0b2a3e", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b2a41", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "68010065f81036801d0b2a3d", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2a42", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "68010065f81036801d0b2a3d", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2a43", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "68010065f81036801d0b2a3d", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2a44", - "_tpl": "61825d06d92c473c770215de", - "parentId": "68010065f81036801d0b2a3a", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2a45", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "68010065f81036801d0b2a44", - "slotId": "mod_stock_001" - }, - { - "_id": "68010065f81036801d0b2a46", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "68010065f81036801d0b2a45", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2a47", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "68010065f81036801d0b2a44", - "slotId": "mod_stock_002" - }, - { - "_id": "68010065f81036801d0b2a48", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "68010065f81036801d0b2a3a", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 2, - "traderId": "5935c25fb3acc3127c3d8cd9" - }, - { - "availableInGameEditions": [], - "id": "655b8ff89db22d43ab42b710", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2a49", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2a49", - "_tpl": "5f60b34a41e30a4ab12a6947" - } - ], - "loyaltyLevel": 2, - "traderId": "5935c25fb3acc3127c3d8cd9" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5e383a6386f77465910ce1f3": { "QuestName": "Textile - Part 1", "_id": "5e383a6386f77465910ce1f3", @@ -105140,12 +103653,12 @@ "id": "5e58dd4886f7747c2721870b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a4b", + "target": "6812400c0c5cf2cf75075d78", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a4b", + "_id": "6812400c0c5cf2cf75075d78", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 100000 @@ -105158,11 +103671,11 @@ "id": "655b8d0c32b0b1645e6f54cb", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a4c", + "target": "6812400c0c5cf2cf75075d79", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a4c", + "_id": "6812400c0c5cf2cf75075d79", "_tpl": "5b44cf1486f77431723e3d05" } ], @@ -105180,372 +103693,68 @@ "arenaLocations": [], "status": 0 }, - "675c1d6d59b0575973008fc7": { - "QuestName": "Seizing the Initiative", - "_id": "675c1d6d59b0575973008fc7", + "639135f286e646067c176a87": { + "QuestName": "Revision - Streets of Tarkov", + "_id": "639135f286e646067c176a87", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c1d6d59b0575973008fc7 acceptPlayerMessage", - "changeQuestMessageText": "675c1d6d59b0575973008fc7 changeQuestMessageText", - "completePlayerMessage": "675c1d6d59b0575973008fc7 completePlayerMessage", + "acceptPlayerMessage": "639135f286e646067c176a87 acceptPlayerMessage", + "changeQuestMessageText": "639135f286e646067c176a87 changeQuestMessageText", + "completePlayerMessage": "639135f286e646067c176a87 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "675c1d6d59b0575973008fca", - "conditions": [ - { - "id": "675c1d2ccfda4e3af23c5260", - "dynamicLocale": false, - "status": [ - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "675c1db0b55fae6d438fd1cc", - "dynamicLocale": false, - "target": [ - "bigmap" - ], - "conditionType": "Location" - } - ] - }, - "id": "675c1d6d59b0575973008fc9", + "conditionType": "PlaceBeacon", + "id": "63927f14744e452011470816", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "quest_zone_place_c14_revx_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "63927f2d8ba6894d155e77e6", "index": 1, "parentId": "", - "oneSessionOnly": true, "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, + "plantTime": 40, + "zoneId": "quest_zone_place_c14_revx_2", + "target": [ + "5991b51486f77447b112d44f" + ], "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "63927f349444fb141f4e6f24", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "quest_zone_place_c14_revx_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] }, { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "675c1dbd500c68a592cdc33b", + "id": "639cebb78fe84d33a25a142c", "conditions": [ { - "id": "675c1dcc71e76835ede109d8", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner", - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "675c1dd6796afca78345bf5a", - "dynamicLocale": false, - "target": [ - "Shoreline" - ], - "conditionType": "Location" - } - ] - }, - "id": "675c1dbdcca03cb7f61fc735", - "index": 1, - "parentId": "", - "oneSessionOnly": true, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762f397c89f8ba0ad4eb0f8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5a27b87686f77460de0252a8", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c1d6d59b0575973008fc7 description", - "failMessageText": "675c1d6d59b0575973008fc7 failMessageText", - "declinePlayerMessage": "675c1d6d59b0575973008fc7 declinePlayerMessage", - "name": "675c1d6d59b0575973008fc7 name", - "note": "675c1d6d59b0575973008fc7 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/6762fe2d00f370c67c043e19.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c1d6d59b0575973008fc7 startedMessageText", - "successMessageText": "675c1d6d59b0575973008fc7 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6300, - "id": "6762f3a39b7ea9ec2877c02a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 600, - "id": "6762f3acbea499433766e972", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2a4e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2a4e", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 600 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "6762f3b592d4c8bda0601ba9", - "type": "TraderStanding", - "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6762f3c418f3c770c08a4431", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2a52", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2a52", - "_tpl": "5f60b34a41e30a4ab12a6947", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2a53", - "_tpl": "657bbad7a1c61ee0c3036323", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2a52", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b2a54", - "_tpl": "657bbb31b30eca9763051183", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2a52", - "slotId": "Helmet_back" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "5c112d7e86f7740d6f647486": { - "QuestName": "Scavenger", - "_id": "5c112d7e86f7740d6f647486", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5c112d7e86f7740d6f647486 acceptPlayerMessage", - "changeQuestMessageText": "5c112d7e86f7740d6f647486 changeQuestMessageText", - "completePlayerMessage": "5c112d7e86f7740d6f647486 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "Skill", - "id": "5c112dc486f77465686bff38", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "Search", - "globalQuestCounterId": "", - "value": 9, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "5c1fd17786f7742b3b47f063", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 25, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "5c1fd15f86f7742b3c0a7b78", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5b478b1886f7744d1b23c57d", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "5c112d7e86f7740d6f647486 description", - "failMessageText": "5c112d7e86f7740d6f647486 failMessageText", - "declinePlayerMessage": "5c112d7e86f7740d6f647486 declinePlayerMessage", - "name": "5c112d7e86f7740d6f647486 name", - "note": "5c112d7e86f7740d6f647486 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/5ae4a74386f7744748710d72.jpg", - "type": "Skill", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "5c112d7e86f7740d6f647486 startedMessageText", - "successMessageText": "5c112d7e86f7740d6f647486 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 17700, - "id": "60cc9a83f81cc57f4717189b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60cc9a8841fd1e14d71e22fd", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 65000, - "id": "5c19265186f77401b247ff98", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2a56", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2a56", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 65000 - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "5c192fb086f7747ce71bcbe0", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2a57", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2a57", - "_tpl": "5bffe7930db834001b734a39" - } - ], - "loyaltyLevel": 4, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63ab180c87413d64ae0ac20a": { - "QuestName": "Dangerous Road", - "_id": "63ab180c87413d64ae0ac20a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63ab180c87413d64ae0ac20a acceptPlayerMessage", - "changeQuestMessageText": "63ab180c87413d64ae0ac20a changeQuestMessageText", - "completePlayerMessage": "63ab180c87413d64ae0ac20a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63ab184ff627f540861d1186", - "conditions": [ - { - "id": "63ab186a87413d64ae0ac20e", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - }, - { - "id": "63ab18aa435ab5742b4e40ae", + "id": "639cebc3dae1800a3e1359b2", "dynamicLocale": false, "status": [ "Survived" @@ -105553,23 +103762,41 @@ "conditionType": "ExitStatus" }, { - "id": "63ab19253606f31cf40e5adc", + "id": "639cebee2a994a11600df103", "dynamicLocale": false, - "exitName": "E7_car", - "conditionType": "ExitName" + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" } ] }, - "id": "63ab184ff627f540861d1185", - "index": 0, + "id": "639cebb78fe84d33a25a142b", + "index": 3, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Completion", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", "value": 1, - "visibilityConditions": [], + "visibilityConditions": [ + { + "id": "639cec865573fd6cc27d99bd", + "target": "63927f14744e452011470816", + "conditionType": "CompleteCondition" + }, + { + "id": "639cec8d5b759c65a3476546", + "target": "63927f2d8ba6894d155e77e6", + "conditionType": "CompleteCondition" + }, + { + "id": "639cec947c898a131e1cfffb", + "target": "63927f349444fb141f4e6f24", + "conditionType": "CompleteCondition" + } + ], "isNecessary": false, "isResetOnConditionFailed": false } @@ -105577,14 +103804,14 @@ "AvailableForStart": [ { "conditionType": "Quest", - "id": "63ab1989f83fd608393890ae", + "id": "63a77be01943b749b5021ea7", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "596a0e1686f7741ddf17dbee", + "target": "6086c852c945025d41566124", "status": [ - 4, - 5 + 2, + 4 ], "globalQuestCounterId": "", "availableAfter": 0, @@ -105593,40 +103820,646 @@ }, { "conditionType": "Level", - "id": "63ab1991f627f540861d1187", + "id": "63a77bebee7b4d0d5507badd", "index": 1, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 15, + "value": 17, "compareMethod": ">=", "visibilityConditions": [] } ], "Fail": [] }, - "description": "63ab180c87413d64ae0ac20a description", - "failMessageText": "63ab180c87413d64ae0ac20a failMessageText", - "declinePlayerMessage": "63ab180c87413d64ae0ac20a declinePlayerMessage", - "name": "63ab180c87413d64ae0ac20a name", - "note": "63ab180c87413d64ae0ac20a note", - "traderId": "54cb57776803fa99248b456e", + "description": "639135f286e646067c176a87 description", + "failMessageText": "639135f286e646067c176a87 failMessageText", + "declinePlayerMessage": "639135f286e646067c176a87 declinePlayerMessage", + "name": "639135f286e646067c176a87 name", + "note": "639135f286e646067c176a87 note", + "traderId": "5935c25fb3acc3127c3d8cd9", "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63ab182c87413d64ae0ac20c.jpg", - "type": "Exploration", + "image": "/files/quest/icon/63a94151655ec5555b4aa9af.jpg", + "type": "Completion", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "63ab180c87413d64ae0ac20a startedMessageText", - "successMessageText": "63ab180c87413d64ae0ac20a successMessageText", + "startedMessageText": "639135f286e646067c176a87 startedMessageText", + "successMessageText": "639135f286e646067c176a87 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7800, - "id": "63ab22241b5c95746621dd88", + "value": 8600, + "id": "63927fac8ba6894d155e77e7", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "63a77d411943b749b5021ea8", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 450, + "id": "63a77da427a4ff476e6dd0bb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d7b", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d7b", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 450 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "63aad2c6f76b8a05dd70292a", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075d7c", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d7c", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400c0c5cf2cf75075d7d", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6812400c0c5cf2cf75075d7c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075d7e", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "6812400c0c5cf2cf75075d7c", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075d7f", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "6812400c0c5cf2cf75075d7c", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075d80", + "_tpl": "6183fc15d3a39d50044c13e9", + "parentId": "6812400c0c5cf2cf75075d7f", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075d81", + "_tpl": "618407a850224f204c1da549", + "parentId": "6812400c0c5cf2cf75075d80", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075d82", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6812400c0c5cf2cf75075d80", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf75075d83", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6812400c0c5cf2cf75075d7f", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075d84", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6812400c0c5cf2cf75075d7f", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075d85", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6812400c0c5cf2cf75075d7f", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075d86", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6812400c0c5cf2cf75075d7c", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075d87", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6812400c0c5cf2cf75075d86", + "slotId": "mod_stock_001" + }, + { + "_id": "6812400c0c5cf2cf75075d88", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6812400c0c5cf2cf75075d87", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075d89", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6812400c0c5cf2cf75075d86", + "slotId": "mod_stock_002" + }, + { + "_id": "6812400c0c5cf2cf75075d8a", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6812400c0c5cf2cf75075d7c", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + }, + { + "availableInGameEditions": [], + "id": "655b8ff89db22d43ab42b710", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075d8b", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d8b", + "_tpl": "5f60b34a41e30a4ab12a6947" + } + ], + "loyaltyLevel": 2, + "traderId": "5935c25fb3acc3127c3d8cd9" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639135c3744e452011470807": { + "QuestName": "House Arrest - Part 1", + "_id": "639135c3744e452011470807", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639135c3744e452011470807 acceptPlayerMessage", + "changeQuestMessageText": "639135c3744e452011470807 changeQuestMessageText", + "completePlayerMessage": "639135c3744e452011470807 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7d767f32fa1316250c3db", + "conditions": [ + { + "id": "63a7d779ee7b4d0d5507baf5", + "dynamicLocale": false, + "target": "quest_zone_c8_dom1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7d767f32fa1316250c3da", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63972c5d61b7754ff93bf3bb", + "conditions": [ + { + "id": "63972c885b2a6108ac2194c8", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "63972c9f7ca3af4af11c2eda", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + } + ] + }, + "id": "63972c5d61b7754ff93bf3ba", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d7a4ee7b4d0d5507baf6", + "target": "63a7d767f32fa1316250c3da", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63a791ad10b7a13eb0159617", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "639dbaf17c898a131e1cffff", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63a791b51943b749b5021eb2", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 33, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639135c3744e452011470807 description", + "failMessageText": "639135c3744e452011470807 failMessageText", + "declinePlayerMessage": "639135c3744e452011470807 declinePlayerMessage", + "name": "639135c3744e452011470807 name", + "note": "639135c3744e452011470807 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63aaec53e842787ad21356a3.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639135c3744e452011470807 startedMessageText", + "successMessageText": "639135c3744e452011470807 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 28800, + "id": "63972c3ee6675e28b352af49", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "63a791e404d3dc28a52a20f5", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 112000, + "id": "63a791f21943b749b5021eb3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d8d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d8d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 112000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a79206ee7b4d0d5507bae9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075d8e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075d8e", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075d8f", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6812400c0c5cf2cf75075d8e", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075d90", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "6812400c0c5cf2cf75075d8e", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075d91", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "6812400c0c5cf2cf75075d90", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075d92", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "6812400c0c5cf2cf75075d8e", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075d93", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "6812400c0c5cf2cf75075d92", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075d94", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "6812400c0c5cf2cf75075d8e", + "slotId": "mod_mount" + }, + { + "_id": "6812400c0c5cf2cf75075d95", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "6812400c0c5cf2cf75075d94", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf75075d96", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "6812400c0c5cf2cf75075d94", + "slotId": "mod_sight_front" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "63a88045abf76d719f42d715": { + "QuestName": "The Delicious Sausage", + "_id": "63a88045abf76d719f42d715", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "63a88045abf76d719f42d715 acceptPlayerMessage", + "changeQuestMessageText": "63a88045abf76d719f42d715 changeQuestMessageText", + "completePlayerMessage": "63a88045abf76d719f42d715 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a98cfbc31b00242d28a95c", + "conditions": [ + { + "id": "63a98d1b64b9631d9178274c", + "dynamicLocale": false, + "target": "quest_produkt1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a98cfbc31b00242d28a95b", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a98d24655ec5555b4aa9e8", + "conditions": [ + { + "id": "63a98d33c0f61a5d8731cd9e", + "dynamicLocale": false, + "target": "quest_produkt2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a98d24655ec5555b4aa9e7", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a98d39da7999196148ba3b", + "conditions": [ + { + "id": "63a98d48655ec5555b4aa9e9", + "dynamicLocale": false, + "target": "quest_produkt3", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a98d39da7999196148ba3a", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a98d60c0f61a5d8731cda0", + "conditions": [ + { + "id": "63a98d6c64b9631d9178274d", + "dynamicLocale": false, + "target": "quest_produkt4", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a98d60c0f61a5d8731cd9f", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "63a98cdf655ec5555b4aa9e6", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "635a758bfefc88a93f021b8a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "63aacc511b5c9574661f054a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 5, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a9ec27813bba58a50ca084", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5d25b6be86f77444001e1b89", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "63a88045abf76d719f42d715 description", + "failMessageText": "63a88045abf76d719f42d715 failMessageText", + "declinePlayerMessage": "63a88045abf76d719f42d715 declinePlayerMessage", + "name": "63a88045abf76d719f42d715 name", + "note": "63a88045abf76d719f42d715 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/default.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "63a88045abf76d719f42d715 startedMessageText", + "successMessageText": "63a88045abf76d719f42d715 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 2600, + "id": "63a9f14cc31b00242d28a9c0", "type": "Experience", "index": 0, "unknown": false @@ -105634,27 +104467,27 @@ { "availableInGameEditions": [], "value": 0.01, - "id": "63ab21b1e842787ad2135716", + "id": "63a9f15ead5cc12f22162053", "type": "TraderStanding", "index": 0, - "target": "54cb57776803fa99248b456e", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 45000, - "id": "63ab227787413d64ae0ac20f", + "value": 10000, + "id": "63a9f2ee7cd7613adb65252a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a59", + "target": "6812400c0c5cf2cf75075d98", "unknown": false, - "findInRaid": false, + "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a59", + "_id": "6812400c0c5cf2cf75075d98", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 45000 + "StackObjectsCount": 10000 } } ] @@ -105662,24 +104495,24 @@ { "availableInGameEditions": [], "value": 2, - "id": "63ab62c01b5c95746621dd89", + "id": "63a9f267009ffc6a551631cd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a5c", + "target": "6812400c0c5cf2cf75075d9b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a5b", - "_tpl": "5af0454c86f7746bf20992e8", + "_id": "6812400c0c5cf2cf75075d9a", + "_tpl": "57347c77245977448d35f6e2", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2a5c", - "_tpl": "5af0454c86f7746bf20992e8", + "_id": "6812400c0c5cf2cf75075d9b", + "_tpl": "57347c77245977448d35f6e2", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -105690,24 +104523,44 @@ { "availableInGameEditions": [], "value": 2, - "id": "63ab62c8f627f540861d1188", + "id": "63a9f2bf87c76a25c91212a0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a5f", + "target": "6812400c0c5cf2cf75075d9e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a5e", - "_tpl": "5e8488fa988a8701445df1e4", + "_id": "6812400c0c5cf2cf75075d9d", + "_tpl": "57347c5b245977448d35f6e1", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2a5f", - "_tpl": "5e8488fa988a8701445df1e4", + "_id": "6812400c0c5cf2cf75075d9e", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a9f289c31b00242d28a9c1", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075da0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075da0", + "_tpl": "59e35cbb86f7741778269d83", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -105850,12 +104703,12 @@ "id": "63a76f75ee7b4d0d5507bad8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a61", + "target": "6812400c0c5cf2cf75075da2", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a61", + "_id": "6812400c0c5cf2cf75075da2", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 28000 @@ -105869,12 +104722,12 @@ "id": "63a76fa45199ab1f7d4a7736", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a66", + "target": "6812400c0c5cf2cf75075da7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a66", + "_id": "6812400c0c5cf2cf75075da7", "_tpl": "5a7c4850e899ef00150be885", "upd": { "StackObjectsCount": 1, @@ -105882,30 +104735,30 @@ } }, { - "_id": "68010065f81036801d0b2a67", + "_id": "6812400c0c5cf2cf75075da8", "_tpl": "657baaf0b7e9ca9a02045c02", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a66", + "parentId": "6812400c0c5cf2cf75075da7", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b2a68", + "_id": "6812400c0c5cf2cf75075da9", "_tpl": "657bab6ec6f689d3a205b85f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a66", + "parentId": "6812400c0c5cf2cf75075da7", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b2a69", + "_id": "6812400c0c5cf2cf75075daa", "_tpl": "657babc6f58ba5a6250107a2", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a66", + "parentId": "6812400c0c5cf2cf75075da7", "slotId": "Helmet_ears" } ] @@ -105916,12 +104769,12 @@ "id": "63a76fb104d3dc28a52a20e9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a6c", + "target": "6812400c0c5cf2cf75075dad", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a6c", + "_id": "6812400c0c5cf2cf75075dad", "_tpl": "57372ac324597767001bc261", "upd": { "StackObjectsCount": 1, @@ -105929,12 +104782,12 @@ } }, { - "_id": "68010065f81036801d0b2a6d", + "_id": "6812400c0c5cf2cf75075dae", "_tpl": "56dfef82d2720bbd668b4567", "upd": { "StackObjectsCount": 30 }, - "parentId": "68010065f81036801d0b2a6c", + "parentId": "6812400c0c5cf2cf75075dad", "slotId": "cartridges" } ] @@ -105944,11 +104797,11 @@ "id": "655b80864343a16d2e04766f", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a6e", + "target": "6812400c0c5cf2cf75075daf", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a6e", + "_id": "6812400c0c5cf2cf75075daf", "_tpl": "57372140245977611f70ee91" } ], @@ -106118,12 +104971,12 @@ "id": "63a78a97ee7b4d0d5507bae3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a70", + "target": "6812400c0c5cf2cf75075db1", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a70", + "_id": "6812400c0c5cf2cf75075db1", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 68000 @@ -106136,11 +104989,11 @@ "id": "63aad2751287ef0b8279f70e", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a71", + "target": "6812400c0c5cf2cf75075db2", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a71", + "_id": "6812400c0c5cf2cf75075db2", "_tpl": "5d02797c86f774203f38e30a" } ], @@ -106337,12 +105190,12 @@ "id": "5c19225386f77401b247ff8f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a73", + "target": "6812400c0c5cf2cf75075db4", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a73", + "_id": "6812400c0c5cf2cf75075db4", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 75000 @@ -106356,12 +105209,12 @@ "id": "5c19241d86f77401b1301f39", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a75", + "target": "6812400c0c5cf2cf75075db6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a75", + "_id": "6812400c0c5cf2cf75075db6", "_tpl": "5c0e774286f77468413cc5b2", "upd": { "StackObjectsCount": 1, @@ -106375,11 +105228,11 @@ "id": "655b8abd975a7f3c734661ad", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a76", + "target": "6812400c0c5cf2cf75075db7", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a76", + "_id": "6812400c0c5cf2cf75075db7", "_tpl": "5c0e655586f774045612eeb2" } ], @@ -106397,6 +105250,410 @@ "arenaLocations": [], "status": 0 }, + "675c1ec7a46173572a0bf20a": { + "QuestName": "Rite of Passage", + "_id": "675c1ec7a46173572a0bf20a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "675c1ec7a46173572a0bf20a acceptPlayerMessage", + "changeQuestMessageText": "675c1ec7a46173572a0bf20a changeQuestMessageText", + "completePlayerMessage": "675c1ec7a46173572a0bf20a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "675c1f044592b9ce21d9265a", + "conditions": [ + { + "id": "675c1f1253b495f74544e6a0", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "675c1fb75478802148e0beda", + "dynamicLocale": false, + "zoneIds": [ + "Killoldoil" + ], + "conditionType": "InZone" + } + ] + }, + "id": "675c1f040a1128e59422a876", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "675c1f17548ff05471afbba3", + "conditions": [ + { + "id": "675c1f1ef3bd8a7f97ea1bdf", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "675c1faaf1a5f601545067d0", + "dynamicLocale": false, + "zoneIds": [ + "Killnewoil" + ], + "conditionType": "InZone" + } + ] + }, + "id": "675c1f17cf59d5433be7ae77", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "675c1f311bd716cdb87947d1", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b36a186f7742523398433" + ], + "globalQuestCounterId": "", + "value": 2, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6762f409d94f1ff8b04e2704", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "675c1cf4a757ddd00404f0a3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "675c1ec7a46173572a0bf20a description", + "failMessageText": "675c1ec7a46173572a0bf20a failMessageText", + "declinePlayerMessage": "675c1ec7a46173572a0bf20a declinePlayerMessage", + "name": "675c1ec7a46173572a0bf20a name", + "note": "675c1ec7a46173572a0bf20a note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "56f40101d2720b2a4d8b45d6", + "image": "/files/quest/icon/6762fe34da151a3f120440c6.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "675c1ec7a46173572a0bf20a startedMessageText", + "successMessageText": "675c1ec7a46173572a0bf20a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 43000, + "id": "6762f41cc4a69d09e8f5f578", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 202000, + "id": "6762f42af7f4f5ac30204703", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075db9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075db9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 202000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "6762f433888b9d5b1f3287f1", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6762f4577eb3a8bb46dae54e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075dba", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075dba", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075dbb", + "_tpl": "5d25a6538abbc306c62e630d", + "parentId": "6812400c0c5cf2cf75075dba", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075dbc", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "6812400c0c5cf2cf75075dba", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075dbd", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "6812400c0c5cf2cf75075dbc", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075dbe", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "6812400c0c5cf2cf75075dbd", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075dbf", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6812400c0c5cf2cf75075dbc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075dc0", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "6812400c0c5cf2cf75075dbc", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075dc1", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075dc0", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075dc2", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075dc0", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075dc3", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6812400c0c5cf2cf75075dc0", + "slotId": "mod_mount_002" + }, + { + "_id": "6812400c0c5cf2cf75075dc4", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "6812400c0c5cf2cf75075dc0", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400c0c5cf2cf75075dc5", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf75075dba", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075dc6", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf75075dc5", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075dc7", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "6812400c0c5cf2cf75075dba", + "slotId": "mod_mount" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6762f46ec4a15def330bafc3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075dcb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075dc9", + "_tpl": "5bfeaa0f0db834001b734927", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075dca", + "_tpl": "5bfeaa0f0db834001b734927", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075dcb", + "_tpl": "5bfeaa0f0db834001b734927", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "6762f47a21c8fb99dca18639", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075dd0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075dce", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075dcf", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075dce", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075dd0", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075dd1", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075dd0", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "6391372c8ba6894d155e77d7": { "QuestName": "Broadcast - Part 4", "_id": "6391372c8ba6894d155e77d7", @@ -106549,12 +105806,12 @@ "id": "63a790695c2012425132e34f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a78", + "target": "6812400c0c5cf2cf75075dd3", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a78", + "_id": "6812400c0c5cf2cf75075dd3", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 94000 @@ -106568,12 +105825,12 @@ "id": "63a7907d04d3dc28a52a20f3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a7b", + "target": "6812400c0c5cf2cf75075dd6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a7a", + "_id": "6812400c0c5cf2cf75075dd5", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -106581,7 +105838,7 @@ } }, { - "_id": "68010065f81036801d0b2a7b", + "_id": "6812400c0c5cf2cf75075dd6", "_tpl": "5d1b371186f774253763a656", "upd": { "StackObjectsCount": 1, @@ -106595,11 +105852,11 @@ "id": "655b8192065b076eb02c4b4b", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2a7c", + "target": "6812400c0c5cf2cf75075dd7", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2a7c", + "_id": "6812400c0c5cf2cf75075dd7", "_tpl": "5ea2a8e200685063ec28c05a" } ], @@ -106617,6 +105874,344 @@ "arenaLocations": [], "status": 0 }, + "5d25e4ca86f77409dd5cdf2c": { + "QuestName": "Hunting Trip", + "_id": "5d25e4ca86f77409dd5cdf2c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage", + "changeQuestMessageText": "5d25e4ca86f77409dd5cdf2c changeQuestMessageText", + "completePlayerMessage": "5d25e4ca86f77409dd5cdf2c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "5fd8aa3206fb3a6b8154a2c2", + "conditions": [ + { + "id": "5fd8ab9d367aed5bb161ed12", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5bfea6e90db834001b7347f3" + ], + "distance": { + "value": 75, + "compareMethod": ">=" + }, + "weaponModsInclusive": [ + [ + "5b2388675acfc4771e1be0be" + ] + ], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5fd8aa3206fb3a6b8154a2c3", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5d77940986f7742fa732bf0a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 33, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "5d7793fa86f7742fa901bc80", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2ee86f77443e35162ea", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5d25e4ca86f77409dd5cdf2c description", + "failMessageText": "5d25e4ca86f77409dd5cdf2c failMessageText", + "declinePlayerMessage": "5d25e4ca86f77409dd5cdf2c declinePlayerMessage", + "name": "5d25e4ca86f77409dd5cdf2c name", + "note": "5d25e4ca86f77409dd5cdf2c note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/5d694cd886f77468c86a6adc.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5d25e4ca86f77409dd5cdf2c startedMessageText", + "successMessageText": "5d25e4ca86f77409dd5cdf2c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15000, + "id": "60ccac04b2736c24b2118bab", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60ccac4e646f74055e276542", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100000, + "id": "5d66828c86f7744a2e70f0a7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075dd9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075dd9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 100000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5d6683fb86f774368d281abe", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ddb", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ddb", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5d66840a86f7744a2e70f0aa", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ddd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ddd", + "_tpl": "5d0377ce86f774186372f689", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60ccac1e1bdece56c249cbed", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ddf", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ddf", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "64b671bfb24b672b97795055", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075de0", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075de0", + "_tpl": "627e14b21713922ded6f2c15", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75075de1", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "6812400c0c5cf2cf75075de0", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075de2", + "_tpl": "62811e2510e26c1f344e6554", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "6812400c0c5cf2cf75075de0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075de3", + "_tpl": "62811f828193841aca4a45c3", + "parentId": "6812400c0c5cf2cf75075de2", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075de4", + "_tpl": "6281204f308cb521f87a8f9b", + "parentId": "6812400c0c5cf2cf75075de2", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075de5", + "_tpl": "6281209662cba23f6c4d7a19", + "parentId": "6812400c0c5cf2cf75075de4", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075de6", + "_tpl": "628120c21d5df4475f46a337", + "parentId": "6812400c0c5cf2cf75075de5", + "slotId": "mod_mount_000" + }, + { + "_id": "6812400c0c5cf2cf75075de7", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6812400c0c5cf2cf75075de5", + "slotId": "mod_mount_001" + }, + { + "_id": "6812400c0c5cf2cf75075de8", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6812400c0c5cf2cf75075de5", + "slotId": "mod_mount_002" + }, + { + "_id": "6812400c0c5cf2cf75075de9", + "_tpl": "628120dd308cb521f87a8fa1", + "parentId": "6812400c0c5cf2cf75075de5", + "slotId": "mod_mount_003" + }, + { + "_id": "6812400c0c5cf2cf75075dea", + "_tpl": "6281212a09427b40ab14e770", + "parentId": "6812400c0c5cf2cf75075de4", + "slotId": "mod_foregrip" + }, + { + "_id": "6812400c0c5cf2cf75075deb", + "_tpl": "62811fbf09427b40ab14e767", + "parentId": "6812400c0c5cf2cf75075de4", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075dec", + "_tpl": "628121434fa03b6b6c35dc6a", + "parentId": "6812400c0c5cf2cf75075deb", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075ded", + "_tpl": "62812081d23f207deb0ab216", + "parentId": "6812400c0c5cf2cf75075dec", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075dee", + "_tpl": "628120621d5df4475f46a335", + "parentId": "6812400c0c5cf2cf75075ded", + "slotId": "mod_muzzle" + }, + { + "_id": "6812400c0c5cf2cf75075def", + "_tpl": "62811cd7308cb521f87a8f99", + "parentId": "6812400c0c5cf2cf75075de0", + "slotId": "mod_charge" + } + ], + "loyaltyLevel": 4, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "5c1141f386f77430ff393792": { "QuestName": "Living High is Not a Crime - Part 2", "_id": "5c1141f386f77430ff393792", @@ -106850,12 +106445,12 @@ "id": "5c1925a286f77401b247ff96", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a7e", + "target": "6812400c0c5cf2cf75075df1", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2a7e", + "_id": "6812400c0c5cf2cf75075df1", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 110000 @@ -106869,12 +106464,12 @@ "id": "60cc9a36f81cc57f4717189a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a83", + "target": "6812400c0c5cf2cf75075df6", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a83", + "_id": "6812400c0c5cf2cf75075df6", "_tpl": "5aa7e276e5b5b000171d0647", "upd": { "StackObjectsCount": 1, @@ -106882,30 +106477,30 @@ } }, { - "_id": "68010065f81036801d0b2a84", + "_id": "6812400c0c5cf2cf75075df7", "_tpl": "657bc06daab96fccee08be9b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a83", + "parentId": "6812400c0c5cf2cf75075df6", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b2a85", + "_id": "6812400c0c5cf2cf75075df8", "_tpl": "657bc0d8a1c61ee0c303632f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a83", + "parentId": "6812400c0c5cf2cf75075df6", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b2a86", + "_id": "6812400c0c5cf2cf75075df9", "_tpl": "657bc107aab96fccee08be9f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a83", + "parentId": "6812400c0c5cf2cf75075df6", "slotId": "Helmet_ears" } ] @@ -106916,12 +106511,12 @@ "id": "60cc9a3cac6eb02bc726de59", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a88", + "target": "6812400c0c5cf2cf75075dfb", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a88", + "_id": "6812400c0c5cf2cf75075dfb", "_tpl": "5aa7e373e5b5b000137b76f0", "upd": { "StackObjectsCount": 1, @@ -106936,12 +106531,12 @@ "id": "60cc9a39a7d63f18200a2512", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2a92", + "target": "6812400c0c5cf2cf75075e05", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2a92", + "_id": "6812400c0c5cf2cf75075e05", "_tpl": "5e4ac41886f77406a511c9a8", "upd": { "StackObjectsCount": 1, @@ -106949,75 +106544,75 @@ } }, { - "_id": "68010065f81036801d0b2a93", + "_id": "6812400c0c5cf2cf75075e06", "_tpl": "6575ef599c7cad336508e453", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "soft_armor_front" }, { - "_id": "68010065f81036801d0b2a94", + "_id": "6812400c0c5cf2cf75075e07", "_tpl": "6575ef6bf6a13a7b7100b093", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "soft_armor_back" }, { - "_id": "68010065f81036801d0b2a95", + "_id": "6812400c0c5cf2cf75075e08", "_tpl": "6575ef78da698a4e980677eb", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "soft_armor_left" }, { - "_id": "68010065f81036801d0b2a96", + "_id": "6812400c0c5cf2cf75075e09", "_tpl": "6575ef7f9c7cad336508e457", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b2a97", + "_id": "6812400c0c5cf2cf75075e0a", "_tpl": "656fae5f7c2d57afe200c0d7", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "front_plate" }, { - "_id": "68010065f81036801d0b2a98", + "_id": "6812400c0c5cf2cf75075e0b", "_tpl": "656fae5f7c2d57afe200c0d7", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "back_plate" }, { - "_id": "68010065f81036801d0b2a99", + "_id": "6812400c0c5cf2cf75075e0c", "_tpl": "6557458f83942d705f0c4962", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "left_side_plate" }, { - "_id": "68010065f81036801d0b2a9a", + "_id": "6812400c0c5cf2cf75075e0d", "_tpl": "6557458f83942d705f0c4962", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2a92", + "parentId": "6812400c0c5cf2cf75075e05", "slotId": "right_side_plate" } ] @@ -107027,11 +106622,11 @@ "id": "655b8c08b71eeb7c4168c636", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b2aa2", + "target": "6812400c0c5cf2cf75075e15", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2aa2", + "_id": "6812400c0c5cf2cf75075e15", "_tpl": "628d0618d1ba6e4fa07ce5a4", "upd": { "StackObjectsCount": 1, @@ -107039,57 +106634,57 @@ } }, { - "_id": "68010065f81036801d0b2aa3", + "_id": "6812400c0c5cf2cf75075e16", "_tpl": "657322988c1cc6dcd9098b2d", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "Soft_armor_front" }, { - "_id": "68010065f81036801d0b2aa4", + "_id": "6812400c0c5cf2cf75075e17", "_tpl": "657322a4cea9255e21023651", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "Soft_armor_back" }, { - "_id": "68010065f81036801d0b2aa5", + "_id": "6812400c0c5cf2cf75075e18", "_tpl": "657322acd9d89ff7ac0d961b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "Soft_armor_left" }, { - "_id": "68010065f81036801d0b2aa6", + "_id": "6812400c0c5cf2cf75075e19", "_tpl": "657322b7d9d89ff7ac0d961f", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "soft_armor_right" }, { - "_id": "68010065f81036801d0b2aa7", + "_id": "6812400c0c5cf2cf75075e1a", "_tpl": "656f664200d62bcd2e024077", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "Front_plate" }, { - "_id": "68010065f81036801d0b2aa8", + "_id": "6812400c0c5cf2cf75075e1b", "_tpl": "657b2797c3dbcb01d60c35ea", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2aa2", + "parentId": "6812400c0c5cf2cf75075e15", "slotId": "Back_plate" } ], @@ -107225,12 +106820,12 @@ "id": "63a7876c27a4ff476e6dd0bc", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2aaa", + "target": "6812400c0c5cf2cf75075e1d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2aaa", + "_id": "6812400c0c5cf2cf75075e1d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 200000 @@ -107243,11 +106838,11 @@ "id": "655b874cb71eeb7c4168c633", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2aab", + "target": "6812400c0c5cf2cf75075e1e", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2aab", + "_id": "6812400c0c5cf2cf75075e1e", "_tpl": "5c0e51be86f774598e797894" } ], @@ -107365,12 +106960,12 @@ "id": "63a79406f32fa1316250c3d0", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2aad", + "target": "6812400c0c5cf2cf75075e20", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2aad", + "_id": "6812400c0c5cf2cf75075e20", "_tpl": "63a399193901f439517cafb6", "upd": { "StackObjectsCount": 1, @@ -107404,12 +106999,12 @@ "id": "63a793e7f32fa1316250c3cf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2aaf", + "target": "6812400c0c5cf2cf75075e22", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2aaf", + "_id": "6812400c0c5cf2cf75075e22", "_tpl": "5696686a4bdc2da3298b456a", "upd": { "StackObjectsCount": 1000 @@ -107422,18 +107017,18 @@ "id": "655b7515769de97e1d62d118", "type": "ProductionScheme", "index": 0, - "target": "68010065f81036801d0b2ab2", + "target": "6812400c0c5cf2cf75075e25", "unknown": true, "items": [ { - "_id": "68010065f81036801d0b2ab1", + "_id": "6812400c0c5cf2cf75075e24", "_tpl": "54527ac44bdc2d36668b4567", "upd": { "StackObjectsCount": 60 } }, { - "_id": "68010065f81036801d0b2ab2", + "_id": "6812400c0c5cf2cf75075e25", "_tpl": "54527ac44bdc2d36668b4567", "upd": { "StackObjectsCount": 60 @@ -107578,12 +107173,12 @@ "id": "63a770e527a4ff476e6dd0b7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2ab4", + "target": "6812400c0c5cf2cf75075e27", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2ab4", + "_id": "6812400c0c5cf2cf75075e27", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 35000 @@ -107597,12 +107192,12 @@ "id": "63a7714bf32fa1316250c3c5", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2ab7", + "target": "6812400c0c5cf2cf75075e2a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2ab6", + "_id": "6812400c0c5cf2cf75075e29", "_tpl": "544fb45d4bdc2dee738b4568", "upd": { "StackObjectsCount": 1, @@ -107610,7 +107205,7 @@ } }, { - "_id": "68010065f81036801d0b2ab7", + "_id": "6812400c0c5cf2cf75075e2a", "_tpl": "544fb45d4bdc2dee738b4568", "upd": { "StackObjectsCount": 1, @@ -107625,12 +107220,12 @@ "id": "63a771535199ab1f7d4a7737", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2aba", + "target": "6812400c0c5cf2cf75075e2d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2ab9", + "_id": "6812400c0c5cf2cf75075e2c", "_tpl": "619cc01e0a7c3a1a2731940c", "upd": { "StackObjectsCount": 1, @@ -107638,7 +107233,7 @@ } }, { - "_id": "68010065f81036801d0b2aba", + "_id": "6812400c0c5cf2cf75075e2d", "_tpl": "619cc01e0a7c3a1a2731940c", "upd": { "StackObjectsCount": 1, @@ -107658,1869 +107253,6 @@ "arenaLocations": [], "status": 0 }, - "639135e0fa894f0a866afde6": { - "QuestName": "Urban Medicine", - "_id": "639135e0fa894f0a866afde6", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639135e0fa894f0a866afde6 acceptPlayerMessage", - "changeQuestMessageText": "639135e0fa894f0a866afde6 changeQuestMessageText", - "completePlayerMessage": "639135e0fa894f0a866afde6 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7d64710b7a13eb0159620", - "conditions": [ - { - "id": "63a7d65a1f06d111271f5aea", - "dynamicLocale": false, - "target": "quest_zone_c11_gmed", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7d64710b7a13eb015961f", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "639135e0fa894f0a866afde7", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "63927b29c115f907b14700b9" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d68dcc389e31a64596de", - "target": "63a7d64710b7a13eb015961f", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "639135e0fa894f0a866afde8", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "63927b29c115f907b14700b9" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63927c028ba6894d155e77e5", - "target": "639135e0fa894f0a866afde7", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a77a28ee7b4d0d5507badb", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639135d89444fb141f4e6eea", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a77a3110b7a13eb0159609", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 17, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639135e0fa894f0a866afde6 description", - "failMessageText": "639135e0fa894f0a866afde6 failMessageText", - "declinePlayerMessage": "639135e0fa894f0a866afde6 declinePlayerMessage", - "name": "639135e0fa894f0a866afde6 name", - "note": "639135e0fa894f0a866afde6 note", - "traderId": "54cb57776803fa99248b456e", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63ab063eb4313a7bac606703.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639135e0fa894f0a866afde6 startedMessageText", - "successMessageText": "639135e0fa894f0a866afde6 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10200, - "id": "639ce7bf2a994a11600df102", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a77a4c27a4ff476e6dd0b9", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 51000, - "id": "63a77a571f06d111271f5adc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2abc", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2abc", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 51000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "63a77a6110b7a13eb015960a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2abf", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2abe", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2abf", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a77a6aee7b4d0d5507badc", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ac1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ac1", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639136df4b15ca31f76bc31f": { - "QuestName": "The Huntsman Path - Administrator", - "_id": "639136df4b15ca31f76bc31f", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639136df4b15ca31f76bc31f acceptPlayerMessage", - "changeQuestMessageText": "639136df4b15ca31f76bc31f changeQuestMessageText", - "completePlayerMessage": "639136df4b15ca31f76bc31f completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639285879444fb141f4e6f26", - "conditions": [ - { - "id": "6392859cee79ee703e3012f0", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "639285abf8e5dd32bf4e3abf", - "dynamicLocale": false, - "zoneIds": [ - "quest_zone_kill_c17_adm" - ], - "conditionType": "InZone" - } - ] - }, - "id": "639285879444fb141f4e6f25", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63aaccae87413d64ae079632", - "conditions": [ - { - "id": "63aaccc8f76b8a05dd702924", - "dynamicLocale": false, - "target": "quest_zone_prod_flare", - "conditionType": "LaunchFlare" - } - ] - }, - "id": "63aaccae87413d64ae079631", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a78ea0f32fa1316250c3cb", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a78eaa5c2012425132e34a", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 23, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639136df4b15ca31f76bc31f description", - "failMessageText": "639136df4b15ca31f76bc31f failMessageText", - "declinePlayerMessage": "639136df4b15ca31f76bc31f declinePlayerMessage", - "name": "639136df4b15ca31f76bc31f name", - "note": "639136df4b15ca31f76bc31f note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63a90faa64b9631d9178271e.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639136df4b15ca31f76bc31f startedMessageText", - "successMessageText": "639136df4b15ca31f76bc31f successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15600, - "id": "639cf3937c898a131e1cfffc", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a78ec85c2012425132e34b", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 81000, - "id": "63a78eef1f06d111271f5ae3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ac3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2ac3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 81000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a78f0d5c2012425132e34c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ac4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ac4", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2ac5", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "68010065f81036801d0b2ac4", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2ac6", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "68010065f81036801d0b2ac4", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2ac7", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b2ac4", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2ac8", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b2ac7", - "slotId": "mod_muzzle" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60effd818b669d08a35bfad5": { - "QuestName": "The Choice", - "_id": "60effd818b669d08a35bfad5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60effd818b669d08a35bfad5 acceptPlayerMessage", - "changeQuestMessageText": "60effd818b669d08a35bfad5 changeQuestMessageText", - "completePlayerMessage": "60effd818b669d08a35bfad5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "60effdac12fec20321367038", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "59db794186f77448bc595262" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "610152752b0c65522065ea3b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "59ca2eb686f77445a80ed049", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "61014aa1e10c48364e47a913", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 50, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60effd818b669d08a35bfad5 description", - "failMessageText": "60effd818b669d08a35bfad5 failMessageText", - "declinePlayerMessage": "60effd818b669d08a35bfad5 declinePlayerMessage", - "name": "60effd818b669d08a35bfad5 name", - "note": "60effd818b669d08a35bfad5 note", - "traderId": "579dc571d53a0658a154fbec", - "location": "any", - "image": "/files/quest/icon/6137505384aedf00fa17b651.jpg", - "type": "Loyalty", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60effd818b669d08a35bfad5 startedMessageText", - "successMessageText": "60effd818b669d08a35bfad5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 433333, - "id": "61028a59ccda1c5f7b1dd093", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1.1, - "id": "61029c6c4617d376021dd1a6", - "type": "TraderStanding", - "index": 0, - "target": "579dc571d53a0658a154fbec", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1000000, - "id": "610289cc683d6b506f258f98", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2aca", - "unknown": true, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2aca", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1000000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 200, - "id": "61028b1d43d55d251d68e4fe", - "type": "Skill", - "index": 0, - "target": "HideoutManagement", - "unknown": true - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639136fa9444fb141f4e6eee": { - "QuestName": "Watching You", - "_id": "639136fa9444fb141f4e6eee", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639136fa9444fb141f4e6eee acceptPlayerMessage", - "changeQuestMessageText": "639136fa9444fb141f4e6eee changeQuestMessageText", - "completePlayerMessage": "639136fa9444fb141f4e6eee completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7d8665199ab1f7d4a7748", - "conditions": [ - { - "id": "63a7d8763e491955e65fb889", - "dynamicLocale": false, - "target": "quest_zone_c21_look", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7d8665199ab1f7d4a7747", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "639136fa9444fb141f4e6eef", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "638e9d5536b3b72c944e2fc7" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d8a7f32fa1316250c3dc", - "target": "63a7d8665199ab1f7d4a7747", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "639136fa9444fb141f4e6ef0", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "638e9d5536b3b72c944e2fc7" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d8b35c2012425132e356", - "target": "639136fa9444fb141f4e6eef", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a794f827a4ff476e6dd0cc", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "63913715f8e5dd32bf4e3aaa", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a79522ee7b4d0d5507baed", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639136fa9444fb141f4e6eee description", - "failMessageText": "639136fa9444fb141f4e6eee failMessageText", - "declinePlayerMessage": "639136fa9444fb141f4e6eee declinePlayerMessage", - "name": "639136fa9444fb141f4e6eee name", - "note": "639136fa9444fb141f4e6eee note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63a992c6655ec5555b4aa9ec.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639136fa9444fb141f4e6eee startedMessageText", - "successMessageText": "639136fa9444fb141f4e6eee successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 18500, - "id": "639f036b2a994a11600df109", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a7954b1943b749b5021eb8", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 94000, - "id": "63a7955904d3dc28a52a20f7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2acc", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2acc", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 94000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "63a795695199ab1f7d4a7745", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2acf", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ace", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2acf", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639135a7e705511c8a4a1b78": { - "QuestName": "Ballet Lover", - "_id": "639135a7e705511c8a4a1b78", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639135a7e705511c8a4a1b78 acceptPlayerMessage", - "changeQuestMessageText": "639135a7e705511c8a4a1b78 changeQuestMessageText", - "completePlayerMessage": "639135a7e705511c8a4a1b78 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7da6f5199ab1f7d4a774b", - "conditions": [ - { - "id": "63a7da8b3e491955e65fb88a", - "dynamicLocale": false, - "target": "quest_zone_c5_mar", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7da6f5199ab1f7d4a774a", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7daae04d3dc28a52a210a", - "conditions": [ - { - "id": "63a7dab6ee7b4d0d5507baf7", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "63a7dad85199ab1f7d4a774c", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "63a7daae04d3dc28a52a2109", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7db0404d3dc28a52a210b", - "target": "63a7da6f5199ab1f7d4a774a", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a78928ee7b4d0d5507bae1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "638fcd23dc65553116701d33", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a7893410b7a13eb015960e", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639135a7e705511c8a4a1b78 description", - "failMessageText": "639135a7e705511c8a4a1b78 failMessageText", - "declinePlayerMessage": "639135a7e705511c8a4a1b78 declinePlayerMessage", - "name": "639135a7e705511c8a4a1b78 name", - "note": "639135a7e705511c8a4a1b78 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63ab032d435ab5742b4e40aa.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639135a7e705511c8a4a1b78 startedMessageText", - "successMessageText": "639135a7e705511c8a4a1b78 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10700, - "id": "639729d480af270b6c22406a", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a78967cc389e31a64596ce", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 66000, - "id": "63a78978ee7b4d0d5507bae2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ad1", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2ad1", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 66000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a789b3f32fa1316250c3c9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ad9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ad9", - "_tpl": "61bc85697113f767765c7fe7", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2ada", - "_tpl": "6572fc809a866b80ab07eb59", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2adb", - "_tpl": "6572fc8c9a866b80ab07eb5d", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b2adc", - "_tpl": "6572fc989a866b80ab07eb61", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2add", - "_tpl": "6572fca39a866b80ab07eb65", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2ade", - "_tpl": "656fad8c498d1b7e3e071da0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2adf", - "_tpl": "656fad8c498d1b7e3e071da0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ad9", - "slotId": "Back_plate" - } - ] - }, - { - "availableInGameEditions": [], - "id": "655b87781fe356507267b2fb", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2ae0", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2ae0", - "_tpl": "5c0e446786f7742013381639" - } - ], - "loyaltyLevel": 2, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "608974af4b05530f55550c21": { - "QuestName": "Inventory Check", - "_id": "608974af4b05530f55550c21", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "608974af4b05530f55550c21 acceptPlayerMessage", - "changeQuestMessageText": "608974af4b05530f55550c21 changeQuestMessageText", - "completePlayerMessage": "608974af4b05530f55550c21 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bd0a053b9dd01a116f473", - "conditions": [ - { - "id": "608c18eae0cc9c2d4d2ccb2b", - "dynamicLocale": false, - "target": "baraholshik_arsenal_area_1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "608bd0a053b9dd01a116f474", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bd2465e0ef91ab810f989", - "conditions": [ - { - "id": "608c18ffcd4a9b2b7212c915", - "dynamicLocale": false, - "target": "baraholshik_dejurniy_area_2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "608bd2465e0ef91ab810f98a", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bd0c20637f21f9934b6e3", - "conditions": [ - { - "id": "608c190d5e0ef91ab810f98e", - "dynamicLocale": false, - "target": "baraholshik_arsenal_area_3", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "608bd0c20637f21f9934b6e4", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bd136c61c4b541b381da2", - "conditions": [ - { - "id": "608c1916f597ad0a33574d7a", - "dynamicLocale": false, - "target": "baraholshik_arsenal_area_4", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "608bd136c61c4b541b381da3", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608bd149f597ad0a33574d73", - "conditions": [ - { - "id": "608c19282210e91c1c180ac8", - "dynamicLocale": false, - "target": "baraholshik_arsenal_area_5", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "608bd149f597ad0a33574d74", - "index": 4, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "608c187853b9dd01a116f47f", - "conditions": [ - { - "id": "60e571854c28474a5d4bd1df", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "60e57195c41b4a51a05d072d", - "dynamicLocale": false, - "target": [ - "RezervBase" - ], - "conditionType": "Location" - } - ] - }, - "id": "608c187853b9dd01a116f480", - "index": 5, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "609a346c0ce4cd3a353dfc74", - "target": "608bd0a053b9dd01a116f474", - "conditionType": "CompleteCondition" - }, - { - "id": "609a3470b0f07c6ea1246e41", - "target": "608bd2465e0ef91ab810f98a", - "conditionType": "CompleteCondition" - }, - { - "id": "609a347535915c62b44fd065", - "target": "608bd0c20637f21f9934b6e4", - "conditionType": "CompleteCondition" - }, - { - "id": "609a347ccf514e3219449015", - "target": "608bd136c61c4b541b381da3", - "conditionType": "CompleteCondition" - }, - { - "id": "609a34820ce4cd3a353dfc75", - "target": "608bd149f597ad0a33574d74", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "60bf72b7960b6d5d274caaf1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "608974d01a66564e74191fc0", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "60bf72bcc53a5709996b40be", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 15, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "608974af4b05530f55550c21 description", - "failMessageText": "608974af4b05530f55550c21 failMessageText", - "declinePlayerMessage": "608974af4b05530f55550c21 declinePlayerMessage", - "name": "608974af4b05530f55550c21 name", - "note": "608974af4b05530f55550c21 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c37416898b57521260e12a.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "608974af4b05530f55550c21 startedMessageText", - "successMessageText": "608974af4b05530f55550c21 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10000, - "id": "60bf6bd9b73d016d6838ad74", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "60bf6b3981c6e80e702ccbfb", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 30000, - "id": "60bf6b61d4526a054d42e107", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ae2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2ae2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 30000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60bf6bd2a2ae0728ec716f1c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ae7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ae7", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2ae8", - "_tpl": "657f925dada5fadd1f07a57a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ae7", - "slotId": "Helmet_top" - }, - { - "_id": "68010065f81036801d0b2ae9", - "_tpl": "657f92acada5fadd1f07a57e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ae7", - "slotId": "Helmet_back" - }, - { - "_id": "68010065f81036801d0b2aea", - "_tpl": "657f92e7f4c82973640b2354", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2ae7", - "slotId": "Helmet_ears" - } - ] - }, - { - "availableInGameEditions": [], - "id": "62bb0ec1917a85044146af01", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2aeb", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2aeb", - "_tpl": "545cdae64bdc2d39198b4568" - } - ], - "loyaltyLevel": 3, - "traderId": "5ac3b934156ae10c4430e83c" - }, - { - "availableInGameEditions": [], - "id": "66bb12e10b603c26902afdd8", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2aec", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2aec", - "_tpl": "66b5f22b78bbc0200425f904" - } - ], - "loyaltyLevel": 3, - "traderId": "5ac3b934156ae10c4430e83c" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "675c1ec7a46173572a0bf20a": { - "QuestName": "Rite of Passage", - "_id": "675c1ec7a46173572a0bf20a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "675c1ec7a46173572a0bf20a acceptPlayerMessage", - "changeQuestMessageText": "675c1ec7a46173572a0bf20a changeQuestMessageText", - "completePlayerMessage": "675c1ec7a46173572a0bf20a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "675c1f044592b9ce21d9265a", - "conditions": [ - { - "id": "675c1f1253b495f74544e6a0", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "675c1fb75478802148e0beda", - "dynamicLocale": false, - "zoneIds": [ - "Killoldoil" - ], - "conditionType": "InZone" - } - ] - }, - "id": "675c1f040a1128e59422a876", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "675c1f17548ff05471afbba3", - "conditions": [ - { - "id": "675c1f1ef3bd8a7f97ea1bdf", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "675c1faaf1a5f601545067d0", - "dynamicLocale": false, - "zoneIds": [ - "Killnewoil" - ], - "conditionType": "InZone" - } - ] - }, - "id": "675c1f17cf59d5433be7ae77", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "675c1f311bd716cdb87947d1", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b36a186f7742523398433" - ], - "globalQuestCounterId": "", - "value": 2, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6762f409d94f1ff8b04e2704", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "675c1cf4a757ddd00404f0a3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "675c1ec7a46173572a0bf20a description", - "failMessageText": "675c1ec7a46173572a0bf20a failMessageText", - "declinePlayerMessage": "675c1ec7a46173572a0bf20a declinePlayerMessage", - "name": "675c1ec7a46173572a0bf20a name", - "note": "675c1ec7a46173572a0bf20a note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "56f40101d2720b2a4d8b45d6", - "image": "/files/quest/icon/6762fe34da151a3f120440c6.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "675c1ec7a46173572a0bf20a startedMessageText", - "successMessageText": "675c1ec7a46173572a0bf20a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 43000, - "id": "6762f41cc4a69d09e8f5f578", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 202000, - "id": "6762f42af7f4f5ac30204703", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2aee", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2aee", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 202000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "6762f433888b9d5b1f3287f1", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6762f4577eb3a8bb46dae54e", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2aef", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2aef", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2af0", - "_tpl": "5d25a6538abbc306c62e630d", - "parentId": "68010065f81036801d0b2aef", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2af1", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "68010065f81036801d0b2aef", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2af2", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "68010065f81036801d0b2af1", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2af3", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "68010065f81036801d0b2af2", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2af4", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "68010065f81036801d0b2af1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2af5", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "68010065f81036801d0b2af1", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2af6", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2af5", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2af7", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2af5", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2af8", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "68010065f81036801d0b2af5", - "slotId": "mod_mount_002" - }, - { - "_id": "68010065f81036801d0b2af9", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "68010065f81036801d0b2af5", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b2afa", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "68010065f81036801d0b2aef", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2afb", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "68010065f81036801d0b2afa", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2afc", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "68010065f81036801d0b2aef", - "slotId": "mod_mount" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6762f46ec4a15def330bafc3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b00", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2afe", - "_tpl": "5bfeaa0f0db834001b734927", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2aff", - "_tpl": "5bfeaa0f0db834001b734927", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b00", - "_tpl": "5bfeaa0f0db834001b734927", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "6762f47a21c8fb99dca18639", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b05", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b03", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b04", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2b03", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2b05", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b06", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2b05", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5c51aac186f77432ea65c552": { "QuestName": "Collector", "_id": "5c51aac186f77432ea65c552", @@ -112354,31 +110086,31 @@ "arenaLocations": [], "status": 0 }, - "639dbaf17c898a131e1cffff": { - "QuestName": "Debtor", - "_id": "639dbaf17c898a131e1cffff", + "639135e0fa894f0a866afde6": { + "QuestName": "Urban Medicine", + "_id": "639135e0fa894f0a866afde6", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639dbaf17c898a131e1cffff acceptPlayerMessage", - "changeQuestMessageText": "639dbaf17c898a131e1cffff changeQuestMessageText", - "completePlayerMessage": "639dbaf17c898a131e1cffff completePlayerMessage", + "acceptPlayerMessage": "639135e0fa894f0a866afde6 acceptPlayerMessage", + "changeQuestMessageText": "639135e0fa894f0a866afde6 changeQuestMessageText", + "completePlayerMessage": "639135e0fa894f0a866afde6 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "63a7cd3aee7b4d0d5507baef", + "id": "63a7d64710b7a13eb0159620", "conditions": [ { - "id": "63a7cd701943b749b5021eb9", + "id": "63a7d65a1f06d111271f5aea", "dynamicLocale": false, - "target": "quest_zone_c29_debt", + "target": "quest_zone_c11_gmed", "value": 1, "conditionType": "VisitPlace" } ] }, - "id": "63a7cd3aee7b4d0d5507baee", + "id": "63a7d64710b7a13eb015961f", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -112392,57 +110124,63 @@ "isResetOnConditionFailed": false }, { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "639dbba35b759c65a347654a", - "conditions": [ - { - "id": "639dbbb881b99001240bbe7d", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - }, - { - "id": "639dbbc35573fd6cc27d99c4", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "639dbba35b759c65a3476549", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "639135e0fa894f0a866afde7", "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, "parentId": "", - "oneSessionOnly": false, + "isEncoded": false, + "onlyFoundInRaid": false, "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, + "target": [ + "63927b29c115f907b14700b9" + ], + "countInRaid": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [ { - "id": "63a7cdbbee7b4d0d5507baf0", - "target": "63a7cd3aee7b4d0d5507baee", + "id": "63a7d68dcc389e31a64596de", + "target": "63a7d64710b7a13eb015961f", "conditionType": "CompleteCondition" } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "639135e0fa894f0a866afde8", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "63927b29c115f907b14700b9" ], - "isNecessary": false, - "isResetOnConditionFailed": false + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63927c028ba6894d155e77e5", + "target": "639135e0fa894f0a866afde7", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "63a7914e5c2012425132e350", + "id": "63a77a28ee7b4d0d5507badb", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5b4795fb86f7745876267770", + "target": "639135d89444fb141f4e6eea", "status": [ 4 ], @@ -112453,24 +110191,259 @@ }, { "conditionType": "Level", - "id": "63a7915627a4ff476e6dd0c7", + "id": "63a77a3110b7a13eb0159609", "index": 1, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 31, + "value": 17, "compareMethod": ">=", "visibilityConditions": [] } ], "Fail": [] }, - "description": "639dbaf17c898a131e1cffff description", - "failMessageText": "639dbaf17c898a131e1cffff failMessageText", - "declinePlayerMessage": "639dbaf17c898a131e1cffff declinePlayerMessage", - "name": "639dbaf17c898a131e1cffff name", - "note": "639dbaf17c898a131e1cffff note", - "traderId": "58330581ace78e27b8b10cee", + "description": "639135e0fa894f0a866afde6 description", + "failMessageText": "639135e0fa894f0a866afde6 failMessageText", + "declinePlayerMessage": "639135e0fa894f0a866afde6 declinePlayerMessage", + "name": "639135e0fa894f0a866afde6 name", + "note": "639135e0fa894f0a866afde6 note", + "traderId": "54cb57776803fa99248b456e", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63ab063eb4313a7bac606703.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639135e0fa894f0a866afde6 startedMessageText", + "successMessageText": "639135e0fa894f0a866afde6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10200, + "id": "639ce7bf2a994a11600df102", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "63a77a4c27a4ff476e6dd0b9", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 51000, + "id": "63a77a571f06d111271f5adc", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e33", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e33", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 51000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "63a77a6110b7a13eb015960a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e36", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e35", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e36", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a77a6aee7b4d0d5507badc", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e38", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e38", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639136df4b15ca31f76bc31f": { + "QuestName": "The Huntsman Path - Administrator", + "_id": "639136df4b15ca31f76bc31f", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639136df4b15ca31f76bc31f acceptPlayerMessage", + "changeQuestMessageText": "639136df4b15ca31f76bc31f changeQuestMessageText", + "completePlayerMessage": "639136df4b15ca31f76bc31f completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639285879444fb141f4e6f26", + "conditions": [ + { + "id": "6392859cee79ee703e3012f0", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "639285abf8e5dd32bf4e3abf", + "dynamicLocale": false, + "zoneIds": [ + "quest_zone_kill_c17_adm" + ], + "conditionType": "InZone" + } + ] + }, + "id": "639285879444fb141f4e6f25", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 20, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63aaccae87413d64ae079632", + "conditions": [ + { + "id": "63aaccc8f76b8a05dd702924", + "dynamicLocale": false, + "target": "quest_zone_prod_flare", + "conditionType": "LaunchFlare" + } + ] + }, + "id": "63aaccae87413d64ae079631", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63a78ea0f32fa1316250c3cb", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63a78eaa5c2012425132e34a", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 23, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639136df4b15ca31f76bc31f description", + "failMessageText": "639136df4b15ca31f76bc31f failMessageText", + "declinePlayerMessage": "639136df4b15ca31f76bc31f declinePlayerMessage", + "name": "639136df4b15ca31f76bc31f name", + "note": "639136df4b15ca31f76bc31f note", + "traderId": "5c0647fdd443bc2504c2d371", "location": "5714dc692459777137212e12", "image": "/files/quest/icon/63a90faa64b9631d9178271e.jpg", "type": "Completion", @@ -112478,46 +110451,225 @@ "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "639dbaf17c898a131e1cffff startedMessageText", - "successMessageText": "639dbaf17c898a131e1cffff successMessageText", + "startedMessageText": "639136df4b15ca31f76bc31f startedMessageText", + "successMessageText": "639136df4b15ca31f76bc31f successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 26600, - "id": "63a79165cc389e31a64596d4", + "value": 15600, + "id": "639cf3937c898a131e1cfffc", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.03, - "id": "63a7917404d3dc28a52a20f4", + "value": 0.02, + "id": "63a78ec85c2012425132e34b", "type": "TraderStanding", "index": 0, - "target": "58330581ace78e27b8b10cee", + "target": "5c0647fdd443bc2504c2d371", "unknown": false }, { "availableInGameEditions": [], - "value": 250000, - "id": "63a7918af32fa1316250c3cd", + "value": 81000, + "id": "63a78eef1f06d111271f5ae3", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b0c", + "target": "6812400c0c5cf2cf75075e3a", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b0c", + "_id": "6812400c0c5cf2cf75075e3a", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 250000 + "StackObjectsCount": 81000 } } ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a78f0d5c2012425132e34c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e3b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e3b", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075e3c", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "6812400c0c5cf2cf75075e3b", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75075e3d", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6812400c0c5cf2cf75075e3b", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75075e3e", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6812400c0c5cf2cf75075e3b", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf75075e3f", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6812400c0c5cf2cf75075e3e", + "slotId": "mod_muzzle" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60effd818b669d08a35bfad5": { + "QuestName": "The Choice", + "_id": "60effd818b669d08a35bfad5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60effd818b669d08a35bfad5 acceptPlayerMessage", + "changeQuestMessageText": "60effd818b669d08a35bfad5 changeQuestMessageText", + "completePlayerMessage": "60effd818b669d08a35bfad5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "60effdac12fec20321367038", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "59db794186f77448bc595262" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "610152752b0c65522065ea3b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "59ca2eb686f77445a80ed049", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "61014aa1e10c48364e47a913", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 50, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60effd818b669d08a35bfad5 description", + "failMessageText": "60effd818b669d08a35bfad5 failMessageText", + "declinePlayerMessage": "60effd818b669d08a35bfad5 declinePlayerMessage", + "name": "60effd818b669d08a35bfad5 name", + "note": "60effd818b669d08a35bfad5 note", + "traderId": "579dc571d53a0658a154fbec", + "location": "any", + "image": "/files/quest/icon/6137505384aedf00fa17b651.jpg", + "type": "Loyalty", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60effd818b669d08a35bfad5 startedMessageText", + "successMessageText": "60effd818b669d08a35bfad5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 433333, + "id": "61028a59ccda1c5f7b1dd093", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1.1, + "id": "61029c6c4617d376021dd1a6", + "type": "TraderStanding", + "index": 0, + "target": "579dc571d53a0658a154fbec", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1000000, + "id": "610289cc683d6b506f258f98", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e41", + "unknown": true, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e41", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1000000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 200, + "id": "61028b1d43d55d251d68e4fe", + "type": "Skill", + "index": 0, + "target": "HideoutManagement", + "unknown": true } ], "Fail": [] @@ -112710,12 +110862,12 @@ "id": "63a788e71943b749b5021eab", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b0e", + "target": "6812400c0c5cf2cf75075e43", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b0e", + "_id": "6812400c0c5cf2cf75075e43", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 64000 @@ -112729,45 +110881,45 @@ "id": "63a788cacc389e31a64596cd", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b0f", + "target": "6812400c0c5cf2cf75075e44", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b0f", + "_id": "6812400c0c5cf2cf75075e44", "_tpl": "5ba26383d4351e00334c93d9", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2b10", + "_id": "6812400c0c5cf2cf75075e45", "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "68010065f81036801d0b2b0f", + "parentId": "6812400c0c5cf2cf75075e44", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2b11", + "_id": "6812400c0c5cf2cf75075e46", "_tpl": "5ba26acdd4351e003562908e", - "parentId": "68010065f81036801d0b2b0f", + "parentId": "6812400c0c5cf2cf75075e44", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2b12", + "_id": "6812400c0c5cf2cf75075e47", "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "68010065f81036801d0b2b0f", + "parentId": "6812400c0c5cf2cf75075e44", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2b13", + "_id": "6812400c0c5cf2cf75075e48", "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "68010065f81036801d0b2b0f", + "parentId": "6812400c0c5cf2cf75075e44", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2b14", + "_id": "6812400c0c5cf2cf75075e49", "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "68010065f81036801d0b2b0f", + "parentId": "6812400c0c5cf2cf75075e44", "slotId": "mod_stock" } ] @@ -112778,12 +110930,12 @@ "id": "63a788f71f06d111271f5ade", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b18", + "target": "6812400c0c5cf2cf75075e4d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b16", + "_id": "6812400c0c5cf2cf75075e4b", "_tpl": "5ba264f6d4351e0034777d52", "upd": { "StackObjectsCount": 1, @@ -112791,7 +110943,7 @@ } }, { - "_id": "68010065f81036801d0b2b17", + "_id": "6812400c0c5cf2cf75075e4c", "_tpl": "5ba264f6d4351e0034777d52", "upd": { "StackObjectsCount": 1, @@ -112799,7 +110951,7 @@ } }, { - "_id": "68010065f81036801d0b2b18", + "_id": "6812400c0c5cf2cf75075e4d", "_tpl": "5ba264f6d4351e0034777d52", "upd": { "StackObjectsCount": 1, @@ -112814,12 +110966,12 @@ "id": "63a7890127a4ff476e6dd0bf", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b1d", + "target": "6812400c0c5cf2cf75075e52", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b1b", + "_id": "6812400c0c5cf2cf75075e50", "_tpl": "657024c81419851aef03e712", "upd": { "StackObjectsCount": 1, @@ -112827,16 +110979,16 @@ } }, { - "_id": "68010065f81036801d0b2b1c", + "_id": "6812400c0c5cf2cf75075e51", "_tpl": "5ba26812d4351e003201fef1", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b2b1b", + "parentId": "6812400c0c5cf2cf75075e50", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2b1d", + "_id": "6812400c0c5cf2cf75075e52", "_tpl": "657024c81419851aef03e712", "upd": { "StackObjectsCount": 1, @@ -112844,12 +110996,12 @@ } }, { - "_id": "68010065f81036801d0b2b1e", + "_id": "6812400c0c5cf2cf75075e53", "_tpl": "5ba26812d4351e003201fef1", "upd": { "StackObjectsCount": 40 }, - "parentId": "68010065f81036801d0b2b1d", + "parentId": "6812400c0c5cf2cf75075e52", "slotId": "cartridges" } ] @@ -112865,6 +111017,1177 @@ "arenaLocations": [], "status": 0 }, + "639dbaf17c898a131e1cffff": { + "QuestName": "Debtor", + "_id": "639dbaf17c898a131e1cffff", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639dbaf17c898a131e1cffff acceptPlayerMessage", + "changeQuestMessageText": "639dbaf17c898a131e1cffff changeQuestMessageText", + "completePlayerMessage": "639dbaf17c898a131e1cffff completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7cd3aee7b4d0d5507baef", + "conditions": [ + { + "id": "63a7cd701943b749b5021eb9", + "dynamicLocale": false, + "target": "quest_zone_c29_debt", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7cd3aee7b4d0d5507baee", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "639dbba35b759c65a347654a", + "conditions": [ + { + "id": "639dbbb881b99001240bbe7d", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + }, + { + "id": "639dbbc35573fd6cc27d99c4", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "639dbba35b759c65a3476549", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7cdbbee7b4d0d5507baf0", + "target": "63a7cd3aee7b4d0d5507baee", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63a7914e5c2012425132e350", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5b4795fb86f7745876267770", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63a7915627a4ff476e6dd0c7", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 31, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639dbaf17c898a131e1cffff description", + "failMessageText": "639dbaf17c898a131e1cffff failMessageText", + "declinePlayerMessage": "639dbaf17c898a131e1cffff declinePlayerMessage", + "name": "639dbaf17c898a131e1cffff name", + "note": "639dbaf17c898a131e1cffff note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63a90faa64b9631d9178271e.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639dbaf17c898a131e1cffff startedMessageText", + "successMessageText": "639dbaf17c898a131e1cffff successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 26600, + "id": "63a79165cc389e31a64596d4", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "63a7917404d3dc28a52a20f4", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 250000, + "id": "63a7918af32fa1316250c3cd", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e55", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e55", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 250000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "608974af4b05530f55550c21": { + "QuestName": "Inventory Check", + "_id": "608974af4b05530f55550c21", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "608974af4b05530f55550c21 acceptPlayerMessage", + "changeQuestMessageText": "608974af4b05530f55550c21 changeQuestMessageText", + "completePlayerMessage": "608974af4b05530f55550c21 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bd0a053b9dd01a116f473", + "conditions": [ + { + "id": "608c18eae0cc9c2d4d2ccb2b", + "dynamicLocale": false, + "target": "baraholshik_arsenal_area_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "608bd0a053b9dd01a116f474", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bd2465e0ef91ab810f989", + "conditions": [ + { + "id": "608c18ffcd4a9b2b7212c915", + "dynamicLocale": false, + "target": "baraholshik_dejurniy_area_2", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "608bd2465e0ef91ab810f98a", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bd0c20637f21f9934b6e3", + "conditions": [ + { + "id": "608c190d5e0ef91ab810f98e", + "dynamicLocale": false, + "target": "baraholshik_arsenal_area_3", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "608bd0c20637f21f9934b6e4", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bd136c61c4b541b381da2", + "conditions": [ + { + "id": "608c1916f597ad0a33574d7a", + "dynamicLocale": false, + "target": "baraholshik_arsenal_area_4", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "608bd136c61c4b541b381da3", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608bd149f597ad0a33574d73", + "conditions": [ + { + "id": "608c19282210e91c1c180ac8", + "dynamicLocale": false, + "target": "baraholshik_arsenal_area_5", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "608bd149f597ad0a33574d74", + "index": 4, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "608c187853b9dd01a116f47f", + "conditions": [ + { + "id": "60e571854c28474a5d4bd1df", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "60e57195c41b4a51a05d072d", + "dynamicLocale": false, + "target": [ + "RezervBase" + ], + "conditionType": "Location" + } + ] + }, + "id": "608c187853b9dd01a116f480", + "index": 5, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "609a346c0ce4cd3a353dfc74", + "target": "608bd0a053b9dd01a116f474", + "conditionType": "CompleteCondition" + }, + { + "id": "609a3470b0f07c6ea1246e41", + "target": "608bd2465e0ef91ab810f98a", + "conditionType": "CompleteCondition" + }, + { + "id": "609a347535915c62b44fd065", + "target": "608bd0c20637f21f9934b6e4", + "conditionType": "CompleteCondition" + }, + { + "id": "609a347ccf514e3219449015", + "target": "608bd136c61c4b541b381da3", + "conditionType": "CompleteCondition" + }, + { + "id": "609a34820ce4cd3a353dfc75", + "target": "608bd149f597ad0a33574d74", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "60bf72b7960b6d5d274caaf1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "608974d01a66564e74191fc0", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "60bf72bcc53a5709996b40be", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "608974af4b05530f55550c21 description", + "failMessageText": "608974af4b05530f55550c21 failMessageText", + "declinePlayerMessage": "608974af4b05530f55550c21 declinePlayerMessage", + "name": "608974af4b05530f55550c21 name", + "note": "608974af4b05530f55550c21 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c37416898b57521260e12a.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "608974af4b05530f55550c21 startedMessageText", + "successMessageText": "608974af4b05530f55550c21 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10000, + "id": "60bf6bd9b73d016d6838ad74", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60bf6b3981c6e80e702ccbfb", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 30000, + "id": "60bf6b61d4526a054d42e107", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e57", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e57", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 30000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60bf6bd2a2ae0728ec716f1c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e5c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e5c", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e5d", + "_tpl": "657f925dada5fadd1f07a57a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e5c", + "slotId": "Helmet_top" + }, + { + "_id": "6812400c0c5cf2cf75075e5e", + "_tpl": "657f92acada5fadd1f07a57e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e5c", + "slotId": "Helmet_back" + }, + { + "_id": "6812400c0c5cf2cf75075e5f", + "_tpl": "657f92e7f4c82973640b2354", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e5c", + "slotId": "Helmet_ears" + } + ] + }, + { + "availableInGameEditions": [], + "id": "62bb0ec1917a85044146af01", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075e60", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e60", + "_tpl": "545cdae64bdc2d39198b4568" + } + ], + "loyaltyLevel": 3, + "traderId": "5ac3b934156ae10c4430e83c" + }, + { + "availableInGameEditions": [], + "id": "66bb12e10b603c26902afdd8", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075e61", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e61", + "_tpl": "66b5f22b78bbc0200425f904" + } + ], + "loyaltyLevel": 3, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6744a9dfef61d56e020b5c4a": { + "QuestName": "Battery Change", + "_id": "6744a9dfef61d56e020b5c4a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6744a9dfef61d56e020b5c4a acceptPlayerMessage", + "changeQuestMessageText": "6744a9dfef61d56e020b5c4a changeQuestMessageText", + "completePlayerMessage": "6744a9dfef61d56e020b5c4a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6744a9dfef61d56e020b5c54", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5d03794386f77420415576f5" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6744aa78bd1d75b9af1a631a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6744a4717e3818d5bb0680bb", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6744a9dfef61d56e020b5c4a description", + "failMessageText": "6744a9dfef61d56e020b5c4a failMessageText", + "declinePlayerMessage": "6744a9dfef61d56e020b5c4a declinePlayerMessage", + "name": "6744a9dfef61d56e020b5c4a name", + "note": "6744a9dfef61d56e020b5c4a note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "any", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6744a9dfef61d56e020b5c4a startedMessageText", + "successMessageText": "6744a9dfef61d56e020b5c4a successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 58700, + "id": "67585000f59a7c6ab1974dfa", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 284000, + "id": "67585012fc9f941676db8a73", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e63", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e63", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 284000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "6758501ad2364b7371bd21f2", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758502863a2a910ef1f3ce3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e65", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e65", + "_tpl": "591094e086f7747caa7bb2ef", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639136fa9444fb141f4e6eee": { + "QuestName": "Watching You", + "_id": "639136fa9444fb141f4e6eee", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639136fa9444fb141f4e6eee acceptPlayerMessage", + "changeQuestMessageText": "639136fa9444fb141f4e6eee changeQuestMessageText", + "completePlayerMessage": "639136fa9444fb141f4e6eee completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7d8665199ab1f7d4a7748", + "conditions": [ + { + "id": "63a7d8763e491955e65fb889", + "dynamicLocale": false, + "target": "quest_zone_c21_look", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7d8665199ab1f7d4a7747", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "639136fa9444fb141f4e6eef", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "638e9d5536b3b72c944e2fc7" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d8a7f32fa1316250c3dc", + "target": "63a7d8665199ab1f7d4a7747", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "639136fa9444fb141f4e6ef0", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "638e9d5536b3b72c944e2fc7" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7d8b35c2012425132e356", + "target": "639136fa9444fb141f4e6eef", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63a794f827a4ff476e6dd0cc", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "63913715f8e5dd32bf4e3aaa", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63a79522ee7b4d0d5507baed", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639136fa9444fb141f4e6eee description", + "failMessageText": "639136fa9444fb141f4e6eee failMessageText", + "declinePlayerMessage": "639136fa9444fb141f4e6eee declinePlayerMessage", + "name": "639136fa9444fb141f4e6eee name", + "note": "639136fa9444fb141f4e6eee note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63a992c6655ec5555b4aa9ec.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639136fa9444fb141f4e6eee startedMessageText", + "successMessageText": "639136fa9444fb141f4e6eee successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18500, + "id": "639f036b2a994a11600df109", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "63a7954b1943b749b5021eb8", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 94000, + "id": "63a7955904d3dc28a52a20f7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e67", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e67", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 94000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "63a795695199ab1f7d4a7745", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e6a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e69", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e6a", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "639135a7e705511c8a4a1b78": { + "QuestName": "Ballet Lover", + "_id": "639135a7e705511c8a4a1b78", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "639135a7e705511c8a4a1b78 acceptPlayerMessage", + "changeQuestMessageText": "639135a7e705511c8a4a1b78 changeQuestMessageText", + "completePlayerMessage": "639135a7e705511c8a4a1b78 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7da6f5199ab1f7d4a774b", + "conditions": [ + { + "id": "63a7da8b3e491955e65fb88a", + "dynamicLocale": false, + "target": "quest_zone_c5_mar", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63a7da6f5199ab1f7d4a774a", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Discover", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63a7daae04d3dc28a52a210a", + "conditions": [ + { + "id": "63a7dab6ee7b4d0d5507baf7", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "63a7dad85199ab1f7d4a774c", + "dynamicLocale": false, + "target": [ + "TarkovStreets" + ], + "conditionType": "Location" + } + ] + }, + "id": "63a7daae04d3dc28a52a2109", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63a7db0404d3dc28a52a210b", + "target": "63a7da6f5199ab1f7d4a774a", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "63a78928ee7b4d0d5507bae1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "638fcd23dc65553116701d33", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "63a7893410b7a13eb015960e", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639135a7e705511c8a4a1b78 description", + "failMessageText": "639135a7e705511c8a4a1b78 failMessageText", + "declinePlayerMessage": "639135a7e705511c8a4a1b78 declinePlayerMessage", + "name": "639135a7e705511c8a4a1b78 name", + "note": "639135a7e705511c8a4a1b78 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63ab032d435ab5742b4e40aa.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639135a7e705511c8a4a1b78 startedMessageText", + "successMessageText": "639135a7e705511c8a4a1b78 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10700, + "id": "639729d480af270b6c22406a", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "63a78967cc389e31a64596ce", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 66000, + "id": "63a78978ee7b4d0d5507bae2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e6c", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e6c", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 66000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a789b3f32fa1316250c3c9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e74", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e74", + "_tpl": "61bc85697113f767765c7fe7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e75", + "_tpl": "6572fc809a866b80ab07eb59", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075e76", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075e77", + "_tpl": "6572fc989a866b80ab07eb61", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075e78", + "_tpl": "6572fca39a866b80ab07eb65", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075e79", + "_tpl": "656fad8c498d1b7e3e071da0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075e7a", + "_tpl": "656fad8c498d1b7e3e071da0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075e74", + "slotId": "Back_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b87781fe356507267b2fb", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075e7b", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e7b", + "_tpl": "5c0e446786f7742013381639" + } + ], + "loyaltyLevel": 2, + "traderId": "5ac3b934156ae10c4430e83c" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "639135e8c115f907b14700aa": { "QuestName": "Surveillance", "_id": "639135e8c115f907b14700aa", @@ -113004,12 +112327,12 @@ "id": "63a7946f27a4ff476e6dd0cb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b20", + "target": "6812400c0c5cf2cf75075e7d", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b20", + "_id": "6812400c0c5cf2cf75075e7d", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 126000 @@ -113023,12 +112346,12 @@ "id": "63a794791f06d111271f5ae7", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b22", + "target": "6812400c0c5cf2cf75075e7f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b22", + "_id": "6812400c0c5cf2cf75075e7f", "_tpl": "5d0378d486f77420421a5ff4", "upd": { "StackObjectsCount": 1, @@ -113048,49 +112371,48 @@ "arenaLocations": [], "status": 0 }, - "5d25e4ca86f77409dd5cdf2c": { - "QuestName": "Hunting Trip", - "_id": "5d25e4ca86f77409dd5cdf2c", + "608a768d82e40b3c727fd17d": { + "QuestName": "Pest Control", + "_id": "608a768d82e40b3c727fd17d", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage", - "changeQuestMessageText": "5d25e4ca86f77409dd5cdf2c changeQuestMessageText", - "completePlayerMessage": "5d25e4ca86f77409dd5cdf2c completePlayerMessage", + "acceptPlayerMessage": "608a768d82e40b3c727fd17d acceptPlayerMessage", + "changeQuestMessageText": "608a768d82e40b3c727fd17d changeQuestMessageText", + "completePlayerMessage": "608a768d82e40b3c727fd17d completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "5fd8aa3206fb3a6b8154a2c2", + "id": "608a8356fa70fc097863b8f7", "conditions": [ { - "id": "5fd8ab9d367aed5bb161ed12", + "id": "608a836d59b92115597ad78a", + "dynamicLocale": false, + "zoneIds": [ + "eger_barracks_area_1", + "eger_barracks_area_2" + ], + "conditionType": "InZone" + }, + { + "id": "608a83ad82e40b3c727fd17e", "dynamicLocale": false, "target": "Savage", "compareMethod": ">=", "value": 1, - "weapon": [ - "5bfea6e90db834001b7347f3" - ], + "weapon": [], "distance": { - "value": 75, + "value": 0, "compareMethod": ">=" }, - "weaponModsInclusive": [ - [ - "5b2388675acfc4771e1be0be" - ] - ], + "weaponModsInclusive": [], "weaponModsExclusive": [], "enemyEquipmentInclusive": [], "enemyEquipmentExclusive": [], "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [ - "Head" - ], + "savageRole": [], + "bodyPart": [], "daytime": { "from": 0, "to": 0 @@ -113101,15 +112423,15 @@ } ] }, - "id": "5fd8aa3206fb3a6b8154a2c3", + "id": "608a8356fa70fc097863b8f8", "index": 0, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Completion", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 10, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false @@ -113118,22 +112440,22 @@ "AvailableForStart": [ { "conditionType": "Level", - "id": "5d77940986f7742fa732bf0a", + "id": "60bf7557a2ae0728ec716f33", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 33, + "value": 10, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "5d7793fa86f7742fa901bc80", + "id": "60bf72112837926f405dd791", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25e2ee86f77443e35162ea", + "target": "5d25e4d586f77443e625e388", "status": [ 4 ], @@ -113145,28 +112467,28 @@ ], "Fail": [] }, - "description": "5d25e4ca86f77409dd5cdf2c description", - "failMessageText": "5d25e4ca86f77409dd5cdf2c failMessageText", - "declinePlayerMessage": "5d25e4ca86f77409dd5cdf2c declinePlayerMessage", - "name": "5d25e4ca86f77409dd5cdf2c name", - "note": "5d25e4ca86f77409dd5cdf2c note", + "description": "608a768d82e40b3c727fd17d description", + "failMessageText": "608a768d82e40b3c727fd17d failMessageText", + "declinePlayerMessage": "608a768d82e40b3c727fd17d declinePlayerMessage", + "name": "608a768d82e40b3c727fd17d name", + "note": "608a768d82e40b3c727fd17d note", "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/5d694cd886f77468c86a6adc.jpg", - "type": "Completion", + "location": "5704e5fad2720bc05b8b4567", + "image": "/files/quest/icon/60c373b71d348838124696ea.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "5d25e4ca86f77409dd5cdf2c startedMessageText", - "successMessageText": "5d25e4ca86f77409dd5cdf2c successMessageText", + "startedMessageText": "608a768d82e40b3c727fd17d startedMessageText", + "successMessageText": "608a768d82e40b3c727fd17d successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 15000, - "id": "60ccac04b2736c24b2118bab", + "value": 7400, + "id": "60bf6c84960b6d5d274caade", "type": "Experience", "index": 0, "unknown": false @@ -113174,7 +112496,7 @@ { "availableInGameEditions": [], "value": 0.02, - "id": "60ccac4e646f74055e276542", + "id": "60bf6c904c8a3800da06e703", "type": "TraderStanding", "index": 0, "target": "5c0647fdd443bc2504c2d371", @@ -113182,677 +112504,19 @@ }, { "availableInGameEditions": [], - "value": 100000, - "id": "5d66828c86f7744a2e70f0a7", + "value": 20000, + "id": "60bf6cf58bb401472c1a37e8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b24", + "target": "6812400c0c5cf2cf75075e81", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b24", + "_id": "6812400c0c5cf2cf75075e81", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 100000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5d6683fb86f774368d281abe", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b26", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b26", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "5d66840a86f7744a2e70f0aa", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b28", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b28", - "_tpl": "5d0377ce86f774186372f689", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "60ccac1e1bdece56c249cbed", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b2a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b2a", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "64b671bfb24b672b97795055", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2b2b", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2b2b", - "_tpl": "627e14b21713922ded6f2c15", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "68010065f81036801d0b2b2c", - "_tpl": "628120fd5631d45211793c9f", - "parentId": "68010065f81036801d0b2b2b", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2b2d", - "_tpl": "62811e2510e26c1f344e6554", - "upd": { - "Foldable": { - "Folded": false - } - }, - "parentId": "68010065f81036801d0b2b2b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2b2e", - "_tpl": "62811f828193841aca4a45c3", - "parentId": "68010065f81036801d0b2b2d", - "slotId": "mod_stock" - }, - { - "_id": "68010065f81036801d0b2b2f", - "_tpl": "6281204f308cb521f87a8f9b", - "parentId": "68010065f81036801d0b2b2d", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2b30", - "_tpl": "6281209662cba23f6c4d7a19", - "parentId": "68010065f81036801d0b2b2f", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2b31", - "_tpl": "628120c21d5df4475f46a337", - "parentId": "68010065f81036801d0b2b30", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2b32", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "68010065f81036801d0b2b30", - "slotId": "mod_mount_001" - }, - { - "_id": "68010065f81036801d0b2b33", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "68010065f81036801d0b2b30", - "slotId": "mod_mount_002" - }, - { - "_id": "68010065f81036801d0b2b34", - "_tpl": "628120dd308cb521f87a8fa1", - "parentId": "68010065f81036801d0b2b30", - "slotId": "mod_mount_003" - }, - { - "_id": "68010065f81036801d0b2b35", - "_tpl": "6281212a09427b40ab14e770", - "parentId": "68010065f81036801d0b2b2f", - "slotId": "mod_foregrip" - }, - { - "_id": "68010065f81036801d0b2b36", - "_tpl": "62811fbf09427b40ab14e767", - "parentId": "68010065f81036801d0b2b2f", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2b37", - "_tpl": "628121434fa03b6b6c35dc6a", - "parentId": "68010065f81036801d0b2b36", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2b38", - "_tpl": "62812081d23f207deb0ab216", - "parentId": "68010065f81036801d0b2b37", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2b39", - "_tpl": "628120621d5df4475f46a335", - "parentId": "68010065f81036801d0b2b38", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2b3a", - "_tpl": "62811cd7308cb521f87a8f99", - "parentId": "68010065f81036801d0b2b2b", - "slotId": "mod_charge" - } - ], - "loyaltyLevel": 4, - "traderId": "5c0647fdd443bc2504c2d371" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639135c3744e452011470807": { - "QuestName": "House Arrest - Part 1", - "_id": "639135c3744e452011470807", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639135c3744e452011470807 acceptPlayerMessage", - "changeQuestMessageText": "639135c3744e452011470807 changeQuestMessageText", - "completePlayerMessage": "639135c3744e452011470807 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a7d767f32fa1316250c3db", - "conditions": [ - { - "id": "63a7d779ee7b4d0d5507baf5", - "dynamicLocale": false, - "target": "quest_zone_c8_dom1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a7d767f32fa1316250c3da", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63972c5d61b7754ff93bf3bb", - "conditions": [ - { - "id": "63972c885b2a6108ac2194c8", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "63972c9f7ca3af4af11c2eda", - "dynamicLocale": false, - "target": [ - "TarkovStreets" - ], - "conditionType": "Location" - } - ] - }, - "id": "63972c5d61b7754ff93bf3ba", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "63a7d7a4ee7b4d0d5507baf6", - "target": "63a7d767f32fa1316250c3da", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "63a791ad10b7a13eb0159617", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "639dbaf17c898a131e1cffff", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "63a791b51943b749b5021eb2", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 33, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639135c3744e452011470807 description", - "failMessageText": "639135c3744e452011470807 failMessageText", - "declinePlayerMessage": "639135c3744e452011470807 declinePlayerMessage", - "name": "639135c3744e452011470807 name", - "note": "639135c3744e452011470807 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63aaec53e842787ad21356a3.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639135c3744e452011470807 startedMessageText", - "successMessageText": "639135c3744e452011470807 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 28800, - "id": "63972c3ee6675e28b352af49", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "63a791e404d3dc28a52a20f5", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 112000, - "id": "63a791f21943b749b5021eb3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b3c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2b3c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 112000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a79206ee7b4d0d5507bae9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b3d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b3d", - "_tpl": "5f2a9575926fd9352339381f", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2b3e", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "68010065f81036801d0b2b3d", - "slotId": "mod_magazine" - }, - { - "_id": "68010065f81036801d0b2b3f", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "68010065f81036801d0b2b3d", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2b40", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "68010065f81036801d0b2b3f", - "slotId": "mod_muzzle" - }, - { - "_id": "68010065f81036801d0b2b41", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "68010065f81036801d0b2b3d", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2b42", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "68010065f81036801d0b2b41", - "slotId": "mod_mount_000" - }, - { - "_id": "68010065f81036801d0b2b43", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "68010065f81036801d0b2b3d", - "slotId": "mod_mount" - }, - { - "_id": "68010065f81036801d0b2b44", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "68010065f81036801d0b2b43", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2b45", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "68010065f81036801d0b2b43", - "slotId": "mod_sight_front" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "63a88045abf76d719f42d715": { - "QuestName": "The Delicious Sausage", - "_id": "63a88045abf76d719f42d715", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "63a88045abf76d719f42d715 acceptPlayerMessage", - "changeQuestMessageText": "63a88045abf76d719f42d715 changeQuestMessageText", - "completePlayerMessage": "63a88045abf76d719f42d715 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a98cfbc31b00242d28a95c", - "conditions": [ - { - "id": "63a98d1b64b9631d9178274c", - "dynamicLocale": false, - "target": "quest_produkt1", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a98cfbc31b00242d28a95b", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a98d24655ec5555b4aa9e8", - "conditions": [ - { - "id": "63a98d33c0f61a5d8731cd9e", - "dynamicLocale": false, - "target": "quest_produkt2", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a98d24655ec5555b4aa9e7", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a98d39da7999196148ba3b", - "conditions": [ - { - "id": "63a98d48655ec5555b4aa9e9", - "dynamicLocale": false, - "target": "quest_produkt3", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a98d39da7999196148ba3a", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63a98d60c0f61a5d8731cda0", - "conditions": [ - { - "id": "63a98d6c64b9631d9178274d", - "dynamicLocale": false, - "target": "quest_produkt4", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "63a98d60c0f61a5d8731cd9f", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Discover", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "63a98cdf655ec5555b4aa9e6", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "635a758bfefc88a93f021b8a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "63aacc511b5c9574661f054a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 5, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a9ec27813bba58a50ca084", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "5d25b6be86f77444001e1b89", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "63a88045abf76d719f42d715 description", - "failMessageText": "63a88045abf76d719f42d715 failMessageText", - "declinePlayerMessage": "63a88045abf76d719f42d715 declinePlayerMessage", - "name": "63a88045abf76d719f42d715 name", - "note": "63a88045abf76d719f42d715 note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/default.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "63a88045abf76d719f42d715 startedMessageText", - "successMessageText": "63a88045abf76d719f42d715 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 2600, - "id": "63a9f14cc31b00242d28a9c0", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "63a9f15ead5cc12f22162053", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 10000, - "id": "63a9f2ee7cd7613adb65252a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b47", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b47", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 10000 + "StackObjectsCount": 20000 } } ] @@ -113860,24 +112524,128 @@ { "availableInGameEditions": [], "value": 2, - "id": "63a9f267009ffc6a551631cd", + "id": "60bf6ca481c6e80e702ccbff", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b4a", + "target": "6812400c0c5cf2cf75075e84", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b49", - "_tpl": "57347c77245977448d35f6e2", + "_id": "6812400c0c5cf2cf75075e83", + "_tpl": "59e3596386f774176c10a2a2", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2b4a", - "_tpl": "57347c77245977448d35f6e2", + "_id": "6812400c0c5cf2cf75075e84", + "_tpl": "59e3596386f774176c10a2a2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "60bf6cc1960b6d5d274caae0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e8b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e86", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e87", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e88", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e89", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e8a", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e8b", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "60bf6cd24c8a3800da06e706", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075e90", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075e8d", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e8e", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e8f", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075e90", + "_tpl": "590c31c586f774245e3141b2", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -113888,254 +112656,24 @@ { "availableInGameEditions": [], "value": 2, - "id": "63a9f2bf87c76a25c91212a0", + "id": "60bf6ce5db54616235170690", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b4d", + "target": "6812400c0c5cf2cf75075e93", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b4c", - "_tpl": "57347c5b245977448d35f6e1", + "_id": "6812400c0c5cf2cf75075e92", + "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2b4d", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a9f289c31b00242d28a9c1", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b4f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b4f", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "6752f6d83038f7df520c83e8": { - "QuestName": "A Helping Hand", - "_id": "6752f6d83038f7df520c83e8", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6752f6d83038f7df520c83e8 acceptPlayerMessage", - "changeQuestMessageText": "6752f6d83038f7df520c83e8 changeQuestMessageText", - "completePlayerMessage": "6752f6d83038f7df520c83e8 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6752f86d538945df8cc3fc3a", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "67499a9669a58fceba104a41" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6756bcb3d5c4b5dd32818d5c", - "conditions": [ - { - "id": "6756bcc88e63d25f2a2543a1", - "dynamicLocale": false, - "status": [ - "Survived", - "Runner", - "Transit" - ], - "conditionType": "ExitStatus" - }, - { - "id": "6756bcd795ac75c6061ddf7c", - "dynamicLocale": false, - "target": [ - "Woods" - ], - "conditionType": "Location" - } - ] - }, - "id": "6756bcb3f93f4c1fc2b2d685", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "6756bcfeeea580dfdb511a71", - "target": "6752f86d538945df8cc3fc3a", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "Quest", - "id": "6752f85800c5b2c48240c45f", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "673f348dd3346c21670217e7", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [ - { - "id": "6756b50cee90199d6ff65f3a", - "target": "6752f86d538945df8cc3fc3a", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6752f74853dd38cbdf77a537", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "657315e4a6af4ab4b50f3459", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "6752f74b55f8871832d8554a", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 20, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6752f6d83038f7df520c83e8 description", - "failMessageText": "6752f6d83038f7df520c83e8 failMessageText", - "declinePlayerMessage": "6752f6d83038f7df520c83e8 declinePlayerMessage", - "name": "6752f6d83038f7df520c83e8 name", - "note": "6752f6d83038f7df520c83e8 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/675b07caf85f28ef74022702.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6752f6d83038f7df520c83e8 startedMessageText", - "successMessageText": "6752f6d83038f7df520c83e8 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 14000, - "id": "67580ce252493a2f363b04ad", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 70000, - "id": "67580cf6c085bfd80144f51d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b51", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2b51", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 70000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67580d0320d1be19517c2d99", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67580d13c718bab7519b4f0d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b53", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b53", - "_tpl": "6655e35b6bc645cb7b059912", + "_id": "6812400c0c5cf2cf75075e93", + "_tpl": "60391a8b3364dc22b04d0ce5", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -114334,12 +112872,12 @@ "id": "63a792c6ee7b4d0d5507baea", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b55", + "target": "6812400c0c5cf2cf75075e95", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b55", + "_id": "6812400c0c5cf2cf75075e95", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 114000 @@ -114353,12 +112891,12 @@ "id": "63a7930727a4ff476e6dd0c8", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b56", + "target": "6812400c0c5cf2cf75075e96", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b56", + "_id": "6812400c0c5cf2cf75075e96", "_tpl": "5fc3f2d5900b1d5091531e57", "upd": { "StackObjectsCount": 1, @@ -114371,57 +112909,57 @@ } }, { - "_id": "68010065f81036801d0b2b57", + "_id": "6812400c0c5cf2cf75075e97", "_tpl": "5a718b548dc32e000d46d262", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2b58", + "_id": "6812400c0c5cf2cf75075e98", "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2b59", + "_id": "6812400c0c5cf2cf75075e99", "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2b5a", + "_id": "6812400c0c5cf2cf75075e9a", "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2b5b", + "_id": "6812400c0c5cf2cf75075e9b", "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2b5c", + "_id": "6812400c0c5cf2cf75075e9c", "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "68010065f81036801d0b2b5b", + "parentId": "6812400c0c5cf2cf75075e9b", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2b5d", + "_id": "6812400c0c5cf2cf75075e9d", "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b2b5e", + "_id": "6812400c0c5cf2cf75075e9e", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2b5f", + "_id": "6812400c0c5cf2cf75075e9f", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "68010065f81036801d0b2b56", + "parentId": "6812400c0c5cf2cf75075e96", "slotId": "mod_mount_002" } ] @@ -114437,20 +112975,20 @@ "arenaLocations": [], "status": 0 }, - "6744a9dfef61d56e020b5c4a": { - "QuestName": "Battery Change", - "_id": "6744a9dfef61d56e020b5c4a", + "6752f6d83038f7df520c83e8": { + "QuestName": "A Helping Hand", + "_id": "6752f6d83038f7df520c83e8", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6744a9dfef61d56e020b5c4a acceptPlayerMessage", - "changeQuestMessageText": "6744a9dfef61d56e020b5c4a changeQuestMessageText", - "completePlayerMessage": "6744a9dfef61d56e020b5c4a completePlayerMessage", + "acceptPlayerMessage": "6752f6d83038f7df520c83e8 acceptPlayerMessage", + "changeQuestMessageText": "6752f6d83038f7df520c83e8 changeQuestMessageText", + "completePlayerMessage": "6752f6d83038f7df520c83e8 completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "HandoverItem", + "conditionType": "FindItem", "dogtagLevel": 0, - "id": "6744a9dfef61d56e020b5c54", - "index": 4, + "id": "6752f86d538945df8cc3fc3a", + "index": 0, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", @@ -114458,202 +112996,88 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "5d03794386f77420415576f5" + "67499a9669a58fceba104a41" ], + "countInRaid": false, "globalQuestCounterId": "", "value": 1, "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6744aa78bd1d75b9af1a631a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6744a4717e3818d5bb0680bb", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6744a9dfef61d56e020b5c4a description", - "failMessageText": "6744a9dfef61d56e020b5c4a failMessageText", - "declinePlayerMessage": "6744a9dfef61d56e020b5c4a declinePlayerMessage", - "name": "6744a9dfef61d56e020b5c4a name", - "note": "6744a9dfef61d56e020b5c4a note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "any", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6744a9dfef61d56e020b5c4a startedMessageText", - "successMessageText": "6744a9dfef61d56e020b5c4a successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 58700, - "id": "67585000f59a7c6ab1974dfa", - "type": "Experience", - "index": 0, - "unknown": false }, - { - "availableInGameEditions": [], - "value": 284000, - "id": "67585012fc9f941676db8a73", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b61", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2b61", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 284000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "6758501ad2364b7371bd21f2", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758502863a2a910ef1f3ce3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b63", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b63", - "_tpl": "591094e086f7747caa7bb2ef", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "608a768d82e40b3c727fd17d": { - "QuestName": "Pest Control", - "_id": "608a768d82e40b3c727fd17d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "608a768d82e40b3c727fd17d acceptPlayerMessage", - "changeQuestMessageText": "608a768d82e40b3c727fd17d changeQuestMessageText", - "completePlayerMessage": "608a768d82e40b3c727fd17d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "608a8356fa70fc097863b8f7", + "id": "6756bcb3d5c4b5dd32818d5c", "conditions": [ { - "id": "608a836d59b92115597ad78a", + "id": "6756bcc88e63d25f2a2543a1", "dynamicLocale": false, - "zoneIds": [ - "eger_barracks_area_1", - "eger_barracks_area_2" + "status": [ + "Survived", + "Runner", + "Transit" ], - "conditionType": "InZone" + "conditionType": "ExitStatus" }, { - "id": "608a83ad82e40b3c727fd17e", + "id": "6756bcd795ac75c6061ddf7c", "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" + "target": [ + "Woods" + ], + "conditionType": "Location" } ] }, - "id": "608a8356fa70fc097863b8f8", - "index": 0, + "id": "6756bcb3f93f4c1fc2b2d685", + "index": 1, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Elimination", + "type": "Completion", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], + "value": 1, + "visibilityConditions": [ + { + "id": "6756bcfeeea580dfdb511a71", + "target": "6752f86d538945df8cc3fc3a", + "conditionType": "CompleteCondition" + } + ], "isNecessary": false, "isResetOnConditionFailed": false + }, + { + "conditionType": "Quest", + "id": "6752f85800c5b2c48240c45f", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "673f348dd3346c21670217e7", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [ + { + "id": "6756b50cee90199d6ff65f3a", + "target": "6752f86d538945df8cc3fc3a", + "conditionType": "CompleteCondition" + } + ] } ], "AvailableForStart": [ - { - "conditionType": "Level", - "id": "60bf7557a2ae0728ec716f33", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - }, { "conditionType": "Quest", - "id": "60bf72112837926f405dd791", + "id": "6752f74853dd38cbdf77a537", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "5d25e4d586f77443e625e388", + "target": "657315e4a6af4ab4b50f3459", "status": [ 4 ], @@ -114661,217 +113085,88 @@ "availableAfter": 0, "dispersion": 0, "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "6752f74b55f8871832d8554a", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] } ], "Fail": [] }, - "description": "608a768d82e40b3c727fd17d description", - "failMessageText": "608a768d82e40b3c727fd17d failMessageText", - "declinePlayerMessage": "608a768d82e40b3c727fd17d declinePlayerMessage", - "name": "608a768d82e40b3c727fd17d name", - "note": "608a768d82e40b3c727fd17d note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5704e5fad2720bc05b8b4567", - "image": "/files/quest/icon/60c373b71d348838124696ea.jpg", - "type": "Elimination", + "description": "6752f6d83038f7df520c83e8 description", + "failMessageText": "6752f6d83038f7df520c83e8 failMessageText", + "declinePlayerMessage": "6752f6d83038f7df520c83e8 declinePlayerMessage", + "name": "6752f6d83038f7df520c83e8 name", + "note": "6752f6d83038f7df520c83e8 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/675b07caf85f28ef74022702.jpg", + "type": "Exploration", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "608a768d82e40b3c727fd17d startedMessageText", - "successMessageText": "608a768d82e40b3c727fd17d successMessageText", + "startedMessageText": "6752f6d83038f7df520c83e8 startedMessageText", + "successMessageText": "6752f6d83038f7df520c83e8 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 7400, - "id": "60bf6c84960b6d5d274caade", + "value": 14000, + "id": "67580ce252493a2f363b04ad", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.02, - "id": "60bf6c904c8a3800da06e703", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 20000, - "id": "60bf6cf58bb401472c1a37e8", + "value": 70000, + "id": "67580cf6c085bfd80144f51d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b65", + "target": "6812400c0c5cf2cf75075ea1", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b65", + "_id": "6812400c0c5cf2cf75075ea1", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 20000 + "StackObjectsCount": 70000 } } ] }, { "availableInGameEditions": [], - "value": 2, - "id": "60bf6ca481c6e80e702ccbff", - "type": "Item", + "value": 0.02, + "id": "67580d0320d1be19517c2d99", + "type": "TraderStanding", "index": 0, - "target": "68010065f81036801d0b2b68", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b67", - "_tpl": "59e3596386f774176c10a2a2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b68", - "_tpl": "59e3596386f774176c10a2a2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false }, { "availableInGameEditions": [], - "value": 6, - "id": "60bf6cc1960b6d5d274caae0", + "value": 1, + "id": "67580d13c718bab7519b4f0d", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b6f", + "target": "6812400c0c5cf2cf75075ea3", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b6a", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b6b", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b6c", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b6d", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b6e", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b6f", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "60bf6cd24c8a3800da06e706", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b74", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b71", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b72", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b73", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b74", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "60bf6ce5db54616235170690", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2b77", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2b76", - "_tpl": "60391a8b3364dc22b04d0ce5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2b77", - "_tpl": "60391a8b3364dc22b04d0ce5", + "_id": "6812400c0c5cf2cf75075ea3", + "_tpl": "6655e35b6bc645cb7b059912", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -115060,12 +113355,12 @@ "id": "6764225a3f71ffefb710666c", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b78", + "target": "6812400c0c5cf2cf75075ea4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b78", + "_id": "6812400c0c5cf2cf75075ea4", "_tpl": "673cab3e03c6a20581028bc1", "upd": { "StackObjectsCount": 1, @@ -115076,111 +113371,111 @@ } }, { - "_id": "68010065f81036801d0b2b79", + "_id": "6812400c0c5cf2cf75075ea5", "_tpl": "673cb4054ff4aa8f86076f4a", - "parentId": "68010065f81036801d0b2b78", + "parentId": "6812400c0c5cf2cf75075ea4", "slotId": "mod_charge" }, { - "_id": "68010065f81036801d0b2b7a", + "_id": "6812400c0c5cf2cf75075ea6", "_tpl": "673cb212e695740be0047a46", - "parentId": "68010065f81036801d0b2b78", + "parentId": "6812400c0c5cf2cf75075ea4", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2b7b", + "_id": "6812400c0c5cf2cf75075ea7", "_tpl": "673ddbb567c759b3c90e5f76", - "parentId": "68010065f81036801d0b2b7a", + "parentId": "6812400c0c5cf2cf75075ea6", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2b7c", + "_id": "6812400c0c5cf2cf75075ea8", "_tpl": "673cb491280680de5e02ff36", - "parentId": "68010065f81036801d0b2b78", + "parentId": "6812400c0c5cf2cf75075ea4", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2b7d", + "_id": "6812400c0c5cf2cf75075ea9", "_tpl": "67405fd0812f476fb2020066", - "parentId": "68010065f81036801d0b2b7c", + "parentId": "6812400c0c5cf2cf75075ea8", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2b7e", + "_id": "6812400c0c5cf2cf75075eaa", "_tpl": "673cb81f5b1511adb10cd326", - "parentId": "68010065f81036801d0b2b7d", + "parentId": "6812400c0c5cf2cf75075ea9", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b2b7f", + "_id": "6812400c0c5cf2cf75075eab", "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "68010065f81036801d0b2b7d", + "parentId": "6812400c0c5cf2cf75075ea9", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2b80", + "_id": "6812400c0c5cf2cf75075eac", "_tpl": "6269220d70b6c02e665f2635", - "parentId": "68010065f81036801d0b2b7d", + "parentId": "6812400c0c5cf2cf75075ea9", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2b81", + "_id": "6812400c0c5cf2cf75075ead", "_tpl": "6269220d70b6c02e665f2635", - "parentId": "68010065f81036801d0b2b7d", + "parentId": "6812400c0c5cf2cf75075ea9", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2b82", + "_id": "6812400c0c5cf2cf75075eae", "_tpl": "6269220d70b6c02e665f2635", - "parentId": "68010065f81036801d0b2b7d", + "parentId": "6812400c0c5cf2cf75075ea9", "slotId": "mod_mount_002" }, { - "_id": "68010065f81036801d0b2b83", + "_id": "6812400c0c5cf2cf75075eaf", "_tpl": "67405d760098dcb5940ea1a6", - "parentId": "68010065f81036801d0b2b7c", + "parentId": "6812400c0c5cf2cf75075ea8", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2b84", + "_id": "6812400c0c5cf2cf75075eb0", "_tpl": "673f3f5eef7545280c00f026", - "parentId": "68010065f81036801d0b2b83", + "parentId": "6812400c0c5cf2cf75075eaf", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2b85", + "_id": "6812400c0c5cf2cf75075eb1", "_tpl": "673cb51e093e0ea7fd0b8746", - "parentId": "68010065f81036801d0b2b7c", + "parentId": "6812400c0c5cf2cf75075ea8", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b2b86", + "_id": "6812400c0c5cf2cf75075eb2", "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "68010065f81036801d0b2b85", + "parentId": "6812400c0c5cf2cf75075eb1", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2b87", + "_id": "6812400c0c5cf2cf75075eb3", "_tpl": "618bab21526131765025ab3f", - "parentId": "68010065f81036801d0b2b85", + "parentId": "6812400c0c5cf2cf75075eb1", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b2b88", + "_id": "6812400c0c5cf2cf75075eb4", "_tpl": "618ba91477b82356f91ae0e8", - "parentId": "68010065f81036801d0b2b87", + "parentId": "6812400c0c5cf2cf75075eb3", "slotId": "mod_mount" }, { - "_id": "68010065f81036801d0b2b89", + "_id": "6812400c0c5cf2cf75075eb5", "_tpl": "617151c1d92c473c770214ab", - "parentId": "68010065f81036801d0b2b87", + "parentId": "6812400c0c5cf2cf75075eb3", "slotId": "mod_scope" }, { - "_id": "68010065f81036801d0b2b8a", + "_id": "6812400c0c5cf2cf75075eb6", "_tpl": "673cbdfad0453ba50c0f76d6", - "parentId": "68010065f81036801d0b2b78", + "parentId": "6812400c0c5cf2cf75075ea4", "slotId": "mod_magazine" } ] @@ -115191,12 +113486,12 @@ "id": "6764227408a9e00b8abc4d76", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b8d", + "target": "6812400c0c5cf2cf75075eb9", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b8c", + "_id": "6812400c0c5cf2cf75075eb8", "_tpl": "673cbdfad0453ba50c0f76d6", "upd": { "StackObjectsCount": 1, @@ -115204,7 +113499,7 @@ } }, { - "_id": "68010065f81036801d0b2b8d", + "_id": "6812400c0c5cf2cf75075eb9", "_tpl": "673cbdfad0453ba50c0f76d6", "upd": { "StackObjectsCount": 1, @@ -115219,12 +113514,12 @@ "id": "67642290380d8f069975cbf6", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b90", + "target": "6812400c0c5cf2cf75075ebc", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2b90", + "_id": "6812400c0c5cf2cf75075ebc", "_tpl": "657023ccbfc87b3a3409320a", "upd": { "StackObjectsCount": 1, @@ -115232,12 +113527,12 @@ } }, { - "_id": "68010065f81036801d0b2b91", + "_id": "6812400c0c5cf2cf75075ebd", "_tpl": "5fc275cf85fd526b824a571a", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2b90", + "parentId": "6812400c0c5cf2cf75075ebc", "slotId": "cartridges" } ] @@ -115247,11 +113542,11 @@ "id": "676422a5d05a0b0843d94df3", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2b92", + "target": "6812400c0c5cf2cf75075ebe", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2b92", + "_id": "6812400c0c5cf2cf75075ebe", "_tpl": "673cab3e03c6a20581028bc1", "upd": { "Repairable": { @@ -115261,74 +113556,74 @@ } }, { - "_id": "68010065f81036801d0b2b93", + "_id": "6812400c0c5cf2cf75075ebf", "_tpl": "673cbdfad0453ba50c0f76d6", - "parentId": "68010065f81036801d0b2b92", + "parentId": "6812400c0c5cf2cf75075ebe", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2b94", + "_id": "6812400c0c5cf2cf75075ec0", "_tpl": "673cb4054ff4aa8f86076f4a", - "parentId": "68010065f81036801d0b2b92", + "parentId": "6812400c0c5cf2cf75075ebe", "slotId": "mod_charge" }, { - "_id": "68010065f81036801d0b2b95", + "_id": "6812400c0c5cf2cf75075ec1", "_tpl": "673cb212e695740be0047a46", "upd": { "Foldable": { "Folded": false } }, - "parentId": "68010065f81036801d0b2b92", + "parentId": "6812400c0c5cf2cf75075ebe", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2b96", + "_id": "6812400c0c5cf2cf75075ec2", "_tpl": "673cb491280680de5e02ff36", - "parentId": "68010065f81036801d0b2b92", + "parentId": "6812400c0c5cf2cf75075ebe", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2b97", + "_id": "6812400c0c5cf2cf75075ec3", "_tpl": "673cb5d1280680de5e02ff3b", - "parentId": "68010065f81036801d0b2b96", + "parentId": "6812400c0c5cf2cf75075ec2", "slotId": "mod_handguard" }, { - "_id": "68010065f81036801d0b2b98", + "_id": "6812400c0c5cf2cf75075ec4", "_tpl": "673cb81f5b1511adb10cd326", - "parentId": "68010065f81036801d0b2b97", + "parentId": "6812400c0c5cf2cf75075ec3", "slotId": "mod_foregrip" }, { - "_id": "68010065f81036801d0b2b99", + "_id": "6812400c0c5cf2cf75075ec5", "_tpl": "673dd5f73f92dc7e120d20a9", - "parentId": "68010065f81036801d0b2b97", + "parentId": "6812400c0c5cf2cf75075ec3", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2b9a", + "_id": "6812400c0c5cf2cf75075ec6", "_tpl": "673dd5f73f92dc7e120d20a9", - "parentId": "68010065f81036801d0b2b97", + "parentId": "6812400c0c5cf2cf75075ec3", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2b9b", + "_id": "6812400c0c5cf2cf75075ec7", "_tpl": "673cb551093e0ea7fd0b874a", - "parentId": "68010065f81036801d0b2b96", + "parentId": "6812400c0c5cf2cf75075ec2", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2b9c", + "_id": "6812400c0c5cf2cf75075ec8", "_tpl": "673f4046259f5945d70e43ab", - "parentId": "68010065f81036801d0b2b9b", + "parentId": "6812400c0c5cf2cf75075ec7", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2b9d", + "_id": "6812400c0c5cf2cf75075ec9", "_tpl": "673cb51e093e0ea7fd0b8746", - "parentId": "68010065f81036801d0b2b96", + "parentId": "6812400c0c5cf2cf75075ec2", "slotId": "mod_mount" } ], @@ -115502,12 +113797,12 @@ "id": "6758407c037587bafaf3f865", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2b9f", + "target": "6812400c0c5cf2cf75075ecb", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2b9f", + "_id": "6812400c0c5cf2cf75075ecb", "_tpl": "569668774bdc2da2298b4568", "upd": { "StackObjectsCount": 550 @@ -115521,12 +113816,12 @@ "id": "675840887b37730bc25a5c55", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2ba1", + "target": "6812400c0c5cf2cf75075ecd", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2ba1", + "_id": "6812400c0c5cf2cf75075ecd", "_tpl": "5aafbde786f774389d0cbc0f", "upd": { "StackObjectsCount": 1, @@ -115546,265 +113841,6 @@ "arenaLocations": [], "status": 0 }, - "6744ab1def61d56e020b5c56": { - "QuestName": "Protect the Sky", - "_id": "6744ab1def61d56e020b5c56", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6744ab1def61d56e020b5c56 acceptPlayerMessage", - "changeQuestMessageText": "6744ab1def61d56e020b5c56 changeQuestMessageText", - "completePlayerMessage": "6744ab1def61d56e020b5c56 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6744ab1def61d56e020b5c5f", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "67499d4deca8acb2d206163b" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6744ab1def61d56e020b5c60", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "67499d4deca8acb2d206163b" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [], - "Fail": [] - }, - "description": "6744ab1def61d56e020b5c56 description", - "failMessageText": "6744ab1def61d56e020b5c56 failMessageText", - "declinePlayerMessage": "6744ab1def61d56e020b5c56 declinePlayerMessage", - "name": "6744ab1def61d56e020b5c56 name", - "note": "6744ab1def61d56e020b5c56 note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6744ab1def61d56e020b5c56 startedMessageText", - "successMessageText": "6744ab1def61d56e020b5c56 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25400, - "id": "675850fbd640d6a5f6edcee7", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 96000, - "id": "67585108e922a1ece3fe2346", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ba3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2ba3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 96000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67585110c55da2bdfa822122", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "6765c4d4dd4c7467064cb135", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2bac", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ba6", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2ba7", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2ba6", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2ba8", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2ba9", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2ba8", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2baa", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2bab", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2baa", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2bac", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2bad", - "_tpl": "64b8725c4b75259c590fa899", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "68010065f81036801d0b2bac", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "id": "6765c5db2541c40d5d96321b", - "type": "AssortmentUnlock", - "index": 0, - "target": "68010065f81036801d0b2bae", - "unknown": false, - "items": [ - { - "_id": "68010065f81036801d0b2bae", - "_tpl": "674d6121c09f69dfb201a888", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2baf", - "_tpl": "63f4da90f31d4a33b87bd054", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_pistol_grip" - }, - { - "_id": "68010065f81036801d0b2bb0", - "_tpl": "674d5e287075e056160e0176", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_handguard" - }, - { - "_id": "68010065f81036801d0b2bb1", - "_tpl": "628a665a86cbd9750d2ff5e5", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2bb2", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2bb3", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "68010065f81036801d0b2bb2", - "slotId": "mod_scope" - }, - { - "_id": "68010065f81036801d0b2bb4", - "_tpl": "5b0e794b5acfc47a877359b2", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_stock_000" - }, - { - "_id": "68010065f81036801d0b2bb5", - "_tpl": "5c0548ae0db834001966a3c2", - "parentId": "68010065f81036801d0b2bae", - "slotId": "mod_magazine" - } - ], - "loyaltyLevel": 4, - "traderId": "5a7c2eca46aef81a7ca2145d" - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "639136f086e646067c176a8b": { "QuestName": "Kings of the Rooftops", "_id": "639136f086e646067c176a8b", @@ -115986,12 +114022,12 @@ "id": "63a78e6827a4ff476e6dd0c2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bb7", + "target": "6812400c0c5cf2cf75075ecf", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2bb7", + "_id": "6812400c0c5cf2cf75075ecf", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 77000 @@ -116010,6 +114046,265 @@ "arenaLocations": [], "status": 0 }, + "6744ab1def61d56e020b5c56": { + "QuestName": "Protect the Sky", + "_id": "6744ab1def61d56e020b5c56", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6744ab1def61d56e020b5c56 acceptPlayerMessage", + "changeQuestMessageText": "6744ab1def61d56e020b5c56 changeQuestMessageText", + "completePlayerMessage": "6744ab1def61d56e020b5c56 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6744ab1def61d56e020b5c5f", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "67499d4deca8acb2d206163b" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6744ab1def61d56e020b5c60", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "67499d4deca8acb2d206163b" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [], + "Fail": [] + }, + "description": "6744ab1def61d56e020b5c56 description", + "failMessageText": "6744ab1def61d56e020b5c56 failMessageText", + "declinePlayerMessage": "6744ab1def61d56e020b5c56 declinePlayerMessage", + "name": "6744ab1def61d56e020b5c56 name", + "note": "6744ab1def61d56e020b5c56 note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6744ab1def61d56e020b5c56 startedMessageText", + "successMessageText": "6744ab1def61d56e020b5c56 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 25400, + "id": "675850fbd640d6a5f6edcee7", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 96000, + "id": "67585108e922a1ece3fe2346", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ed1", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ed1", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 96000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67585110c55da2bdfa822122", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "6765c4d4dd4c7467064cb135", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075eda", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ed4", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ed5", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075ed4", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075ed6", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ed7", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075ed6", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075ed8", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ed9", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075ed8", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075eda", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075edb", + "_tpl": "64b8725c4b75259c590fa899", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "6812400c0c5cf2cf75075eda", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "id": "6765c5db2541c40d5d96321b", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075edc", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075edc", + "_tpl": "674d6121c09f69dfb201a888", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075edd", + "_tpl": "63f4da90f31d4a33b87bd054", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75075ede", + "_tpl": "674d5e287075e056160e0176", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_handguard" + }, + { + "_id": "6812400c0c5cf2cf75075edf", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf75075ee0", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_scope" + }, + { + "_id": "6812400c0c5cf2cf75075ee1", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6812400c0c5cf2cf75075ee0", + "slotId": "mod_scope" + }, + { + "_id": "6812400c0c5cf2cf75075ee2", + "_tpl": "5b0e794b5acfc47a877359b2", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_stock_000" + }, + { + "_id": "6812400c0c5cf2cf75075ee3", + "_tpl": "5c0548ae0db834001966a3c2", + "parentId": "6812400c0c5cf2cf75075edc", + "slotId": "mod_magazine" + } + ], + "loyaltyLevel": 4, + "traderId": "5a7c2eca46aef81a7ca2145d" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "673f629c5b555b53460cf827": { "QuestName": "Building Foundations", "_id": "673f629c5b555b53460cf827", @@ -128101,12 +126396,12 @@ "id": "675825a2ba25b3781a543d45", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bb9", + "target": "6812400c0c5cf2cf75075ee5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bb9", + "_id": "6812400c0c5cf2cf75075ee5", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 126000 @@ -128129,12 +126424,12 @@ "id": "675825ae546bc94693814923", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bbb", + "target": "6812400c0c5cf2cf75075ee7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bbb", + "_id": "6812400c0c5cf2cf75075ee7", "_tpl": "5d1b376e86f774252519444e", "upd": { "StackObjectsCount": 1, @@ -128254,12 +126549,12 @@ "id": "67b87f143f0f8e197b68a9ee", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bc2", + "target": "6812400c0c5cf2cf75075eee", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bbd", + "_id": "6812400c0c5cf2cf75075ee9", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128267,7 +126562,7 @@ } }, { - "_id": "68010065f81036801d0b2bbe", + "_id": "6812400c0c5cf2cf75075eea", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128275,7 +126570,7 @@ } }, { - "_id": "68010065f81036801d0b2bbf", + "_id": "6812400c0c5cf2cf75075eeb", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128283,7 +126578,7 @@ } }, { - "_id": "68010065f81036801d0b2bc0", + "_id": "6812400c0c5cf2cf75075eec", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128291,7 +126586,7 @@ } }, { - "_id": "68010065f81036801d0b2bc1", + "_id": "6812400c0c5cf2cf75075eed", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128299,7 +126594,7 @@ } }, { - "_id": "68010065f81036801d0b2bc2", + "_id": "6812400c0c5cf2cf75075eee", "_tpl": "64be7095047e826eae02b0c1", "upd": { "StackObjectsCount": 1, @@ -128314,12 +126609,12 @@ "id": "67df9f14cb0f5f2882237a89", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bc9", + "target": "6812400c0c5cf2cf75075ef5", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bc4", + "_id": "6812400c0c5cf2cf75075ef0", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128327,7 +126622,7 @@ } }, { - "_id": "68010065f81036801d0b2bc5", + "_id": "6812400c0c5cf2cf75075ef1", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128335,7 +126630,7 @@ } }, { - "_id": "68010065f81036801d0b2bc6", + "_id": "6812400c0c5cf2cf75075ef2", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128343,7 +126638,7 @@ } }, { - "_id": "68010065f81036801d0b2bc7", + "_id": "6812400c0c5cf2cf75075ef3", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128351,7 +126646,7 @@ } }, { - "_id": "68010065f81036801d0b2bc8", + "_id": "6812400c0c5cf2cf75075ef4", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128359,7 +126654,7 @@ } }, { - "_id": "68010065f81036801d0b2bc9", + "_id": "6812400c0c5cf2cf75075ef5", "_tpl": "656fad8c498d1b7e3e071da0", "upd": { "StackObjectsCount": 1, @@ -128393,12 +126688,12 @@ "id": "67b87ed7c3a09db0eb37a833", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bcb", + "target": "6812400c0c5cf2cf75075ef7", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2bcb", + "_id": "6812400c0c5cf2cf75075ef7", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 169000 @@ -128412,12 +126707,12 @@ "id": "67e421eaaeccb9171ee5a377", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bcf", + "target": "6812400c0c5cf2cf75075efb", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bcd", + "_id": "6812400c0c5cf2cf75075ef9", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1, @@ -128425,7 +126720,7 @@ } }, { - "_id": "68010065f81036801d0b2bce", + "_id": "6812400c0c5cf2cf75075efa", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1, @@ -128433,7 +126728,7 @@ } }, { - "_id": "68010065f81036801d0b2bcf", + "_id": "6812400c0c5cf2cf75075efb", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1, @@ -128448,12 +126743,12 @@ "id": "67b87ee33f0121101769f123", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bd8", + "target": "6812400c0c5cf2cf75075f04", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bd4", + "_id": "6812400c0c5cf2cf75075f00", "_tpl": "5ca20ee186f774799474abc2", "upd": { "StackObjectsCount": 1, @@ -128461,34 +126756,34 @@ } }, { - "_id": "68010065f81036801d0b2bd5", + "_id": "6812400c0c5cf2cf75075f01", "_tpl": "657bbe73a1c61ee0c303632b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd4", + "parentId": "6812400c0c5cf2cf75075f00", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b2bd6", + "_id": "6812400c0c5cf2cf75075f02", "_tpl": "657bbed0aab96fccee08be96", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd4", + "parentId": "6812400c0c5cf2cf75075f00", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b2bd7", + "_id": "6812400c0c5cf2cf75075f03", "_tpl": "657bbefeb30eca9763051189", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd4", + "parentId": "6812400c0c5cf2cf75075f00", "slotId": "Helmet_ears" }, { - "_id": "68010065f81036801d0b2bd8", + "_id": "6812400c0c5cf2cf75075f04", "_tpl": "5ca20ee186f774799474abc2", "upd": { "StackObjectsCount": 1, @@ -128496,30 +126791,30 @@ } }, { - "_id": "68010065f81036801d0b2bd9", + "_id": "6812400c0c5cf2cf75075f05", "_tpl": "657bbe73a1c61ee0c303632b", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd8", + "parentId": "6812400c0c5cf2cf75075f04", "slotId": "Helmet_top" }, { - "_id": "68010065f81036801d0b2bda", + "_id": "6812400c0c5cf2cf75075f06", "_tpl": "657bbed0aab96fccee08be96", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd8", + "parentId": "6812400c0c5cf2cf75075f04", "slotId": "Helmet_back" }, { - "_id": "68010065f81036801d0b2bdb", + "_id": "6812400c0c5cf2cf75075f07", "_tpl": "657bbefeb30eca9763051189", "upd": { "SpawnedInSession": true }, - "parentId": "68010065f81036801d0b2bd8", + "parentId": "6812400c0c5cf2cf75075f04", "slotId": "Helmet_ears" } ] @@ -128530,12 +126825,12 @@ "id": "67b87f033ca773eeb90ff736", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bde", + "target": "6812400c0c5cf2cf75075f0a", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bdd", + "_id": "6812400c0c5cf2cf75075f09", "_tpl": "5ca2113f86f7740b2547e1d2", "upd": { "StackObjectsCount": 1, @@ -128543,7 +126838,7 @@ } }, { - "_id": "68010065f81036801d0b2bde", + "_id": "6812400c0c5cf2cf75075f0a", "_tpl": "5ca2113f86f7740b2547e1d2", "upd": { "StackObjectsCount": 1, @@ -128557,11 +126852,11 @@ "id": "67b8803eee0ed1b5df662c76", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2bdf", + "target": "6812400c0c5cf2cf75075f0b", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2bdf", + "_id": "6812400c0c5cf2cf75075f0b", "_tpl": "679b9819a2f2dd4da9023512" } ], @@ -128579,6 +126874,386 @@ "arenaLocations": [], "status": 0 }, + "67a0967c003a9986cb0f5ac1": { + "QuestName": "Sensory Analysis - Part 1", + "_id": "67a0967c003a9986cb0f5ac1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a0967c003a9986cb0f5ac1 acceptPlayerMessage", + "changeQuestMessageText": "67a0967c003a9986cb0f5ac1 changeQuestMessageText", + "completePlayerMessage": "67a0967c003a9986cb0f5ac1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67dc3861d5c0070b960c1bba", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5d1b376e86f774252519444e" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67dc393c748dcea8ec1fba68", + "conditions": [ + { + "id": "67dc394bfe8e6616da423154", + "dynamicLocale": false, + "target": [ + "TarkovStreets", + "Woods" + ], + "conditionType": "Location" + }, + { + "id": "67dc3951e32d3b1c109b959b", + "dynamicLocale": false, + "compareMethod": ">=", + "value": 1, + "conditionType": "Time" + } + ] + }, + "id": "67dc393c6089aa48050efa02", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "67dc396ff82d684e1eb957f9", + "target": "67dc3861d5c0070b960c1bba", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "Quest", + "id": "67dc294d681db91b2fa3b279", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "target": "67a096ed77dd677f600804ba", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [ + { + "id": "67dd233b941f281d500e05d5", + "target": "67dc3861d5c0070b960c1bba", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67b459dfd97af94f23e19988", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a096577e86e067eb045733", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 1800, + "dispersion": 300, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a0967c003a9986cb0f5ac1 description", + "failMessageText": "67a0967c003a9986cb0f5ac1 failMessageText", + "declinePlayerMessage": "67a0967c003a9986cb0f5ac1 declinePlayerMessage", + "name": "67a0967c003a9986cb0f5ac1 name", + "note": "67a0967c003a9986cb0f5ac1 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a0967c003a9986cb0f5ac1 startedMessageText", + "successMessageText": "67a0967c003a9986cb0f5ac1 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "67b31f7062d790401e633dc8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f0d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f0d", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 20300, + "id": "67b31f80babd5b4b6ce92414", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67b31f966113cdf879d45370", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 112000, + "id": "67b31fac0fc97528529376d8", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f0f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f0f", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 112000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67b31fb81ca0fe9989715306", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f12", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f11", + "_tpl": "66b5f68de98be930d701c00e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f12", + "_tpl": "66b5f68de98be930d701c00e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67b31fc2ebe5d98d2bc6ed01", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f23", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f1b", + "_tpl": "628dc750b910320f4c27a732", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f1c", + "_tpl": "6572f1ca4c8d903cc60c874e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075f1d", + "_tpl": "6572f1d60103b4a3270332db", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075f1e", + "_tpl": "6572f1e10103b4a3270332df", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075f1f", + "_tpl": "6572f1edea457732140ce875", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075f20", + "_tpl": "6572f1f7ea457732140ce879", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf75075f21", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075f22", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f1b", + "slotId": "Back_plate" + }, + { + "_id": "6812400c0c5cf2cf75075f23", + "_tpl": "628dc750b910320f4c27a732", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f24", + "_tpl": "6572f1ca4c8d903cc60c874e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf75075f25", + "_tpl": "6572f1d60103b4a3270332db", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf75075f26", + "_tpl": "6572f1e10103b4a3270332df", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf75075f27", + "_tpl": "6572f1edea457732140ce875", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf75075f28", + "_tpl": "6572f1f7ea457732140ce879", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf75075f29", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf75075f2a", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f23", + "slotId": "Back_plate" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "67a096577e86e067eb045733": { "QuestName": "Hidden Layer", "_id": "67a096577e86e067eb045733", @@ -128730,12 +127405,12 @@ "id": "67b31a24c330c711aa1dd9cb", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2be1", + "target": "6812400c0c5cf2cf75075f2c", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2be1", + "_id": "6812400c0c5cf2cf75075f2c", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 50000 @@ -128749,12 +127424,12 @@ "id": "67b31a3ac9b84d72176f57a9", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2be2", + "target": "6812400c0c5cf2cf75075f2d", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2be2", + "_id": "6812400c0c5cf2cf75075f2d", "_tpl": "6165ac306ef05c2ce828ef74", "upd": { "StackObjectsCount": 1, @@ -128767,87 +127442,87 @@ } }, { - "_id": "68010065f81036801d0b2be3", + "_id": "6812400c0c5cf2cf75075f2e", "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b2be2", + "parentId": "6812400c0c5cf2cf75075f2d", "slotId": "mod_pistol_grip" }, { - "_id": "68010065f81036801d0b2be4", + "_id": "6812400c0c5cf2cf75075f2f", "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "68010065f81036801d0b2be2", + "parentId": "6812400c0c5cf2cf75075f2d", "slotId": "mod_magazine" }, { - "_id": "68010065f81036801d0b2be5", + "_id": "6812400c0c5cf2cf75075f30", "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "68010065f81036801d0b2be2", + "parentId": "6812400c0c5cf2cf75075f2d", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2be6", + "_id": "6812400c0c5cf2cf75075f31", "_tpl": "6183b0711cb55961fa0fdcad", - "parentId": "68010065f81036801d0b2be5", + "parentId": "6812400c0c5cf2cf75075f30", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2be7", + "_id": "6812400c0c5cf2cf75075f32", "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "68010065f81036801d0b2be6", + "parentId": "6812400c0c5cf2cf75075f31", "slotId": "mod_muzzle" }, { - "_id": "68010065f81036801d0b2be8", + "_id": "6812400c0c5cf2cf75075f33", "_tpl": "61816fcad92c473c770215cc", - "parentId": "68010065f81036801d0b2be6", + "parentId": "6812400c0c5cf2cf75075f31", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2be9", + "_id": "6812400c0c5cf2cf75075f34", "_tpl": "61817865d3a39d50044c13a4", - "parentId": "68010065f81036801d0b2be5", + "parentId": "6812400c0c5cf2cf75075f30", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2bea", + "_id": "6812400c0c5cf2cf75075f35", "_tpl": "61816df1d3a39d50044c139e", - "parentId": "68010065f81036801d0b2be5", + "parentId": "6812400c0c5cf2cf75075f30", "slotId": "mod_mount_000" }, { - "_id": "68010065f81036801d0b2beb", + "_id": "6812400c0c5cf2cf75075f36", "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "68010065f81036801d0b2be5", + "parentId": "6812400c0c5cf2cf75075f30", "slotId": "mod_mount_001" }, { - "_id": "68010065f81036801d0b2bec", + "_id": "6812400c0c5cf2cf75075f37", "_tpl": "61825d06d92c473c770215de", - "parentId": "68010065f81036801d0b2be2", + "parentId": "6812400c0c5cf2cf75075f2d", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2bed", + "_id": "6812400c0c5cf2cf75075f38", "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "68010065f81036801d0b2bec", + "parentId": "6812400c0c5cf2cf75075f37", "slotId": "mod_stock_001" }, { - "_id": "68010065f81036801d0b2bee", + "_id": "6812400c0c5cf2cf75075f39", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "68010065f81036801d0b2bed", + "parentId": "6812400c0c5cf2cf75075f38", "slotId": "mod_stock" }, { - "_id": "68010065f81036801d0b2bef", + "_id": "6812400c0c5cf2cf75075f3a", "_tpl": "61825d24d3a39d50044c13af", - "parentId": "68010065f81036801d0b2bec", + "parentId": "6812400c0c5cf2cf75075f37", "slotId": "mod_stock_002" }, { - "_id": "68010065f81036801d0b2bf0", + "_id": "6812400c0c5cf2cf75075f3b", "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "68010065f81036801d0b2be2", + "parentId": "6812400c0c5cf2cf75075f2d", "slotId": "mod_charge" } ] @@ -128858,12 +127533,12 @@ "id": "67b31a50f771222e8603198e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bf4", + "target": "6812400c0c5cf2cf75075f3f", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bf2", + "_id": "6812400c0c5cf2cf75075f3d", "_tpl": "6183d53f1cb55961fa0fdcda", "upd": { "StackObjectsCount": 1, @@ -128871,7 +127546,7 @@ } }, { - "_id": "68010065f81036801d0b2bf3", + "_id": "6812400c0c5cf2cf75075f3e", "_tpl": "6183d53f1cb55961fa0fdcda", "upd": { "StackObjectsCount": 1, @@ -128879,7 +127554,7 @@ } }, { - "_id": "68010065f81036801d0b2bf4", + "_id": "6812400c0c5cf2cf75075f3f", "_tpl": "6183d53f1cb55961fa0fdcda", "upd": { "StackObjectsCount": 1, @@ -128894,12 +127569,12 @@ "id": "67b31a607334ac8501e2633b", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2bfd", + "target": "6812400c0c5cf2cf75075f48", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2bf7", + "_id": "6812400c0c5cf2cf75075f42", "_tpl": "65702558cfc010a0f5006a25", "upd": { "StackObjectsCount": 1, @@ -128907,16 +127582,16 @@ } }, { - "_id": "68010065f81036801d0b2bf8", + "_id": "6812400c0c5cf2cf75075f43", "_tpl": "58dd3ad986f77403051cba8f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2bf7", + "parentId": "6812400c0c5cf2cf75075f42", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2bf9", + "_id": "6812400c0c5cf2cf75075f44", "_tpl": "65702558cfc010a0f5006a25", "upd": { "StackObjectsCount": 1, @@ -128924,16 +127599,16 @@ } }, { - "_id": "68010065f81036801d0b2bfa", + "_id": "6812400c0c5cf2cf75075f45", "_tpl": "58dd3ad986f77403051cba8f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2bf9", + "parentId": "6812400c0c5cf2cf75075f44", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2bfb", + "_id": "6812400c0c5cf2cf75075f46", "_tpl": "65702558cfc010a0f5006a25", "upd": { "StackObjectsCount": 1, @@ -128941,16 +127616,16 @@ } }, { - "_id": "68010065f81036801d0b2bfc", + "_id": "6812400c0c5cf2cf75075f47", "_tpl": "58dd3ad986f77403051cba8f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2bfb", + "parentId": "6812400c0c5cf2cf75075f46", "slotId": "cartridges" }, { - "_id": "68010065f81036801d0b2bfd", + "_id": "6812400c0c5cf2cf75075f48", "_tpl": "65702558cfc010a0f5006a25", "upd": { "StackObjectsCount": 1, @@ -128958,12 +127633,12 @@ } }, { - "_id": "68010065f81036801d0b2bfe", + "_id": "6812400c0c5cf2cf75075f49", "_tpl": "58dd3ad986f77403051cba8f", "upd": { "StackObjectsCount": 20 }, - "parentId": "68010065f81036801d0b2bfd", + "parentId": "6812400c0c5cf2cf75075f48", "slotId": "cartridges" } ] @@ -128979,66 +127654,75 @@ "arenaLocations": [], "status": 0 }, - "67a0970f05d1611ed90be75d": { - "QuestName": "Hypotheses Testing", - "_id": "67a0970f05d1611ed90be75d", + "67d03be712fb5f8fd2096332": { + "QuestName": "Vacate the Premises", + "_id": "67d03be712fb5f8fd2096332", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a0970f05d1611ed90be75d acceptPlayerMessage", - "changeQuestMessageText": "67a0970f05d1611ed90be75d changeQuestMessageText", - "completePlayerMessage": "67a0970f05d1611ed90be75d completePlayerMessage", + "acceptPlayerMessage": "67d03be712fb5f8fd2096332 acceptPlayerMessage", + "changeQuestMessageText": "67d03be712fb5f8fd2096332 changeQuestMessageText", + "completePlayerMessage": "67d03be712fb5f8fd2096332 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "67dbe16e209c3fbfa72de9e3", + "id": "67d03be712fb5f8fd2096335", "conditions": [ { - "id": "67dbe177f8a9cd256822b013", + "id": "67a0e080230a2d6aeac29889", "dynamicLocale": false, - "target": "event_labyrinth_06_mech_place_01", + "target": "Any", + "compareMethod": ">=", "value": 1, - "conditionType": "VisitPlace" + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "67a0e08ada2ecce7a7ff8365", + "dynamicLocale": false, + "target": [ + "Labyrinth" + ], + "conditionType": "Location" } ] }, - "id": "67dbe16ece16a02860ed9d33", + "id": "67d03be712fb5f8fd2096334", "index": 0, "parentId": "", "oneSessionOnly": false, "dynamicLocale": false, - "type": "Exploration", + "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 1, + "value": 36, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "67a0dcf4ff6f74931359b9f9", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "679b992329acd1f2f60985a5" - ], - "globalQuestCounterId": "", - "value": 5, - "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "67a0dccc99ab8c7f8a0f479e", + "id": "67a0e06bd0871d7e4b408898", "index": 0, "parentId": "", "dynamicLocale": false, @@ -129054,1029 +127738,28 @@ ], "Fail": [] }, - "description": "67a0970f05d1611ed90be75d description", - "failMessageText": "67a0970f05d1611ed90be75d failMessageText", - "declinePlayerMessage": "67a0970f05d1611ed90be75d declinePlayerMessage", - "name": "67a0970f05d1611ed90be75d name", - "note": "67a0970f05d1611ed90be75d note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "6733700029c367a3d40b02af", - "image": "/files/quest/icon/67e3d477ab7770f72902761c.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a0970f05d1611ed90be75d startedMessageText", - "successMessageText": "67a0970f05d1611ed90be75d successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "67dbe19bf3f4cb01b7685ca5", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c00", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c00", - "_tpl": "679b9819a2f2dd4da9023512", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 15900, - "id": "67b33444fc24e6ce25d51963", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67b334574d0c378f11cbb24c", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 82000, - "id": "67b33460db45c1fad035ec8c", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c02", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c02", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 82000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "67b3346a52a36af00e8f15ba", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c06", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c04", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c05", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c06", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "67b334736a15268d01bd02ac", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c0a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c08", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c09", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c0a", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "67b3347c7eb9cb31b19fe073", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c0e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c0c", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c0d", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c0e", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "67b3348acb6b2b66fd8d8069", - "type": "Achievement", - "index": 0, - "target": "67a0e57117e34930e50075f3", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "67a0967c003a9986cb0f5ac1": { - "QuestName": "Sensory Analysis - Part 1", - "_id": "67a0967c003a9986cb0f5ac1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a0967c003a9986cb0f5ac1 acceptPlayerMessage", - "changeQuestMessageText": "67a0967c003a9986cb0f5ac1 changeQuestMessageText", - "completePlayerMessage": "67a0967c003a9986cb0f5ac1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "67dc3861d5c0070b960c1bba", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5d1b376e86f774252519444e" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67dc393c748dcea8ec1fba68", - "conditions": [ - { - "id": "67dc394bfe8e6616da423154", - "dynamicLocale": false, - "target": [ - "TarkovStreets", - "Woods" - ], - "conditionType": "Location" - }, - { - "id": "67dc3951e32d3b1c109b959b", - "dynamicLocale": false, - "compareMethod": ">=", - "value": 1, - "conditionType": "Time" - } - ] - }, - "id": "67dc393c6089aa48050efa02", - "index": 2, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "67dc396ff82d684e1eb957f9", - "target": "67dc3861d5c0070b960c1bba", - "conditionType": "CompleteCondition" - } - ], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "Quest", - "id": "67dc294d681db91b2fa3b279", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "target": "67a096ed77dd677f600804ba", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [ - { - "id": "67dd233b941f281d500e05d5", - "target": "67dc3861d5c0070b960c1bba", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67b459dfd97af94f23e19988", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "67a096577e86e067eb045733", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 1800, - "dispersion": 300, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67a0967c003a9986cb0f5ac1 description", - "failMessageText": "67a0967c003a9986cb0f5ac1 failMessageText", - "declinePlayerMessage": "67a0967c003a9986cb0f5ac1 declinePlayerMessage", - "name": "67a0967c003a9986cb0f5ac1 name", - "note": "67a0967c003a9986cb0f5ac1 note", + "description": "67d03be712fb5f8fd2096332 description", + "failMessageText": "67d03be712fb5f8fd2096332 failMessageText", + "declinePlayerMessage": "67d03be712fb5f8fd2096332 declinePlayerMessage", + "name": "67d03be712fb5f8fd2096332 name", + "note": "67d03be712fb5f8fd2096332 note", "traderId": "5ac3b934156ae10c4430e83c", - "location": "any", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "PickUp", + "location": "6733700029c367a3d40b02af", + "image": "/files/quest/icon/67e3d483d1eb1b2e6b01cf5c.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "67a0967c003a9986cb0f5ac1 startedMessageText", - "successMessageText": "67a0967c003a9986cb0f5ac1 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "67b31f7062d790401e633dc8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c10", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c10", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 20300, - "id": "67b31f80babd5b4b6ce92414", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "67b31f966113cdf879d45370", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 112000, - "id": "67b31fac0fc97528529376d8", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c12", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c12", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 112000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67b31fb81ca0fe9989715306", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c15", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c14", - "_tpl": "66b5f68de98be930d701c00e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c15", - "_tpl": "66b5f68de98be930d701c00e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67b31fc2ebe5d98d2bc6ed01", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c26", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c1e", - "_tpl": "628dc750b910320f4c27a732", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c1f", - "_tpl": "6572f1ca4c8d903cc60c874e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2c20", - "_tpl": "6572f1d60103b4a3270332db", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b2c21", - "_tpl": "6572f1e10103b4a3270332df", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2c22", - "_tpl": "6572f1edea457732140ce875", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2c23", - "_tpl": "6572f1f7ea457732140ce879", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b2c24", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2c25", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c1e", - "slotId": "Back_plate" - }, - { - "_id": "68010065f81036801d0b2c26", - "_tpl": "628dc750b910320f4c27a732", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c27", - "_tpl": "6572f1ca4c8d903cc60c874e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Soft_armor_front" - }, - { - "_id": "68010065f81036801d0b2c28", - "_tpl": "6572f1d60103b4a3270332db", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Soft_armor_back" - }, - { - "_id": "68010065f81036801d0b2c29", - "_tpl": "6572f1e10103b4a3270332df", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Soft_armor_left" - }, - { - "_id": "68010065f81036801d0b2c2a", - "_tpl": "6572f1edea457732140ce875", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "soft_armor_right" - }, - { - "_id": "68010065f81036801d0b2c2b", - "_tpl": "6572f1f7ea457732140ce879", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Groin" - }, - { - "_id": "68010065f81036801d0b2c2c", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Front_plate" - }, - { - "_id": "68010065f81036801d0b2c2d", - "_tpl": "656fa25e94b480b8a500c0e0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "68010065f81036801d0b2c26", - "slotId": "Back_plate" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "639136e84ed9512be67647db": { - "QuestName": "Cease Fire", - "_id": "639136e84ed9512be67647db", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "639136e84ed9512be67647db acceptPlayerMessage", - "changeQuestMessageText": "639136e84ed9512be67647db changeQuestMessageText", - "completePlayerMessage": "639136e84ed9512be67647db completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "63929101744e452011470819", - "conditions": [ - { - "id": "63929163c115f907b14700bb", - "dynamicLocale": false, - "exitName": "E9_sniper", - "conditionType": "ExitName" - }, - { - "id": "639cffee5573fd6cc27d99be", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "id": "63929101744e452011470818", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "63a768c404d3dc28a52a20e5", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 10, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "63a7698c10b7a13eb0159606", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "63a88045abf76d719f42d715", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "639136e84ed9512be67647db description", - "failMessageText": "639136e84ed9512be67647db failMessageText", - "declinePlayerMessage": "639136e84ed9512be67647db declinePlayerMessage", - "name": "639136e84ed9512be67647db name", - "note": "639136e84ed9512be67647db note", - "traderId": "5c0647fdd443bc2504c2d371", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "639136e84ed9512be67647db startedMessageText", - "successMessageText": "639136e84ed9512be67647db successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 2, - "id": "63a76b7a04d3dc28a52a20e6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c30", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c2f", - "_tpl": "6217726288ed9f0845317459", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c30", - "_tpl": "6217726288ed9f0845317459", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 5600, - "id": "63a76ac8ee7b4d0d5507bad5", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "63a76b371f06d111271f5ad7", - "type": "TraderStanding", - "index": 0, - "target": "5c0647fdd443bc2504c2d371", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 27000, - "id": "63a76f461f06d111271f5ad9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c32", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c32", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 27000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "63a76b4bee7b4d0d5507bad6", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c34", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c34", - "_tpl": "620109578d82e67e7911abf2", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "63a76b5a5199ab1f7d4a7735", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c38", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c36", - "_tpl": "62389aaba63f32501b1b444f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c37", - "_tpl": "62389aaba63f32501b1b444f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c38", - "_tpl": "62389aaba63f32501b1b444f", - "upd": { - "StackObjectsCount": 1 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "67a0970744893b9f3f0d9b68": { - "QuestName": "Offensive Reconnaissance", - "_id": "67a0970744893b9f3f0d9b68", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a0970744893b9f3f0d9b68 acceptPlayerMessage", - "changeQuestMessageText": "67a0970744893b9f3f0d9b68 changeQuestMessageText", - "completePlayerMessage": "67a0970744893b9f3f0d9b68 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67dbe0f531e892ab3905f30e", - "conditions": [ - { - "id": "67dbe1030a44b50c67fa2868", - "dynamicLocale": false, - "target": "event_labyrinth_05_mech_place_01", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "67dbe0f532ff08bfa13237a8", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "67a0dc94a4d798e79853f2eb", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "67dbe0f532ff08bfa13237a8", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "679b9819a2f2dd4da9023512" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67e41d1f936ebf353ae78ed6", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "67a0966817e34930e500754c", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67a0970744893b9f3f0d9b68 description", - "failMessageText": "67a0970744893b9f3f0d9b68 failMessageText", - "declinePlayerMessage": "67a0970744893b9f3f0d9b68 declinePlayerMessage", - "name": "67a0970744893b9f3f0d9b68 name", - "note": "67a0970744893b9f3f0d9b68 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/67e3d474aa9c9449d10fd198.jpg", - "type": "Exploration", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a0970744893b9f3f0d9b68 startedMessageText", - "successMessageText": "67a0970744893b9f3f0d9b68 successMessageText", + "startedMessageText": "67d03be712fb5f8fd2096332 startedMessageText", + "successMessageText": "67d03be712fb5f8fd2096332 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 4500, - "id": "67b3342eeb55258aaf647a32", - "type": "Experience", - "index": 0, - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "669fa38fad7f1eac2607ed46": { - "QuestName": "One Less Loose End", - "_id": "669fa38fad7f1eac2607ed46", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "669fa38fad7f1eac2607ed46 acceptPlayerMessage", - "changeQuestMessageText": "669fa38fad7f1eac2607ed46 changeQuestMessageText", - "completePlayerMessage": "669fa38fad7f1eac2607ed46 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "669faeb6a6e02d00c47ad812", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66c0b39ca1f68fcc1d0c0cc3" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "669faecceb01bf6324de66c4", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "nf2024_1", - "target": [ - "66c0b39ca1f68fcc1d0c0cc3" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "66aa24767f030d6eb630823d", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6179aff8f57fb279792c60a1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "66a2e431698fb99bb4bd1cf2", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "669fa3910c828825de06d69f", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "669fa38fad7f1eac2607ed46 description", - "failMessageText": "669fa38fad7f1eac2607ed46 failMessageText", - "declinePlayerMessage": "669fa38fad7f1eac2607ed46 declinePlayerMessage", - "name": "669fa38fad7f1eac2607ed46 name", - "note": "669fa38fad7f1eac2607ed46 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/66acebc9f85b8bf7250f9cab.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "669fa38fad7f1eac2607ed46 startedMessageText", - "successMessageText": "669fa38fad7f1eac2607ed46 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15000, - "id": "66aa24801e5e199ecd094f08", + "value": 20400, + "id": "67d03be712fb5f8fd2096336", "type": "Experience", "index": 0, "unknown": false @@ -130084,27 +127767,63 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "66aa248e023055273703d883", + "id": "67d03be712fb5f8fd2096337", "type": "TraderStanding", "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", + "target": "5ac3b934156ae10c4430e83c", "unknown": false }, { "availableInGameEditions": [], - "value": 1200, - "id": "66aa24a6fb57cc8a5404ac5a", + "value": 208000, + "id": "67d03be712fb5f8fd2096338", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c3a", + "target": "6812400c0c5cf2cf75075f4b", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c3a", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400c0c5cf2cf75075f4b", + "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 1200 + "StackObjectsCount": 208000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "67d03be712fb5f8fd2096339", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f4f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f4d", + "_tpl": "657089638db3adca1009f4ca", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f4e", + "_tpl": "657089638db3adca1009f4ca", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f4f", + "_tpl": "657089638db3adca1009f4ca", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true } } ] @@ -130112,114 +127831,20 @@ { "availableInGameEditions": [], "value": 1, - "id": "66bb3e3aa511da1d0400af96", + "id": "67e16363063795835dc90505", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c3b", - "unknown": false, + "target": "6812400c0c5cf2cf75075f51", + "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c3b", - "_tpl": "668fe5a998b5ad715703ddd6", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "68010065f81036801d0b2c3c", - "_tpl": "668fe5f62a0f85eea407cc18", - "parentId": "68010065f81036801d0b2c3b", - "slotId": "mod_barrel" - }, - { - "_id": "68010065f81036801d0b2c3d", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "68010065f81036801d0b2c3c", - "slotId": "mod_sight_front" - }, - { - "_id": "68010065f81036801d0b2c3e", - "_tpl": "668fe5d42a0f85eea407cc16", - "parentId": "68010065f81036801d0b2c3b", - "slotId": "mod_pistolgrip" - }, - { - "_id": "68010065f81036801d0b2c3f", - "_tpl": "668fe60b56984d93550462c6", - "parentId": "68010065f81036801d0b2c3b", - "slotId": "mod_reciever" - }, - { - "_id": "68010065f81036801d0b2c40", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "68010065f81036801d0b2c3f", - "slotId": "mod_sight_rear" - }, - { - "_id": "68010065f81036801d0b2c41", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "68010065f81036801d0b2c3b", - "slotId": "mod_magazine" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "66bb40dac589a4bab20325c7", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c45", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c43", - "_tpl": "668fe5c5f35310705d02b696", + "_id": "6812400c0c5cf2cf75075f51", + "_tpl": "679b944d597ba2ed120c3d3c", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } - }, - { - "_id": "68010065f81036801d0b2c44", - "_tpl": "668fe5c5f35310705d02b696", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c45", - "_tpl": "668fe5c5f35310705d02b696", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 28, - "id": "66bb40e92f6f5ebd440bfd16", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c47", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c47", - "_tpl": "66a0d1e0ed648d72fe064d06", - "upd": { - "StackObjectsCount": 28 - } } ] } @@ -130349,12 +127974,12 @@ "id": "67b31ad17d3342c0cf4f9c18", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c49", + "target": "6812400c0c5cf2cf75075f53", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c49", + "_id": "6812400c0c5cf2cf75075f53", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 52000 @@ -130368,40 +127993,40 @@ "id": "67e4217a950fabf39ab6c0ee", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c4f", + "target": "6812400c0c5cf2cf75075f59", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c4b", + "_id": "6812400c0c5cf2cf75075f55", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2c4c", + "_id": "6812400c0c5cf2cf75075f56", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2c4d", + "_id": "6812400c0c5cf2cf75075f57", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2c4e", + "_id": "6812400c0c5cf2cf75075f58", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1 } }, { - "_id": "68010065f81036801d0b2c4f", + "_id": "6812400c0c5cf2cf75075f59", "_tpl": "679b9819a2f2dd4da9023512", "upd": { "StackObjectsCount": 1 @@ -130415,12 +128040,12 @@ "id": "67dbdceebe13d2a77f358d75", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c51", + "target": "6812400c0c5cf2cf75075f5b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c51", + "_id": "6812400c0c5cf2cf75075f5b", "_tpl": "67d3ed3271c17ff82e0a5b0b", "upd": { "StackObjectsCount": 1, @@ -130434,11 +128059,11 @@ "id": "67b8805787e38f20199f7cc8", "type": "AssortmentUnlock", "index": 0, - "target": "68010065f81036801d0b2c52", + "target": "6812400c0c5cf2cf75075f5c", "unknown": false, "items": [ { - "_id": "68010065f81036801d0b2c52", + "_id": "6812400c0c5cf2cf75075f5c", "_tpl": "679b9819a2f2dd4da9023512" } ], @@ -130456,82 +128081,1381 @@ "arenaLocations": [], "status": 0 }, - "67a09724972c11a3f5077324": { - "QuestName": "Confidential Info", - "_id": "67a09724972c11a3f5077324", + "639136e84ed9512be67647db": { + "QuestName": "Cease Fire", + "_id": "639136e84ed9512be67647db", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a09724972c11a3f5077324 acceptPlayerMessage", - "changeQuestMessageText": "67a09724972c11a3f5077324 changeQuestMessageText", - "completePlayerMessage": "67a09724972c11a3f5077324 completePlayerMessage", + "acceptPlayerMessage": "639136e84ed9512be67647db acceptPlayerMessage", + "changeQuestMessageText": "639136e84ed9512be67647db changeQuestMessageText", + "completePlayerMessage": "639136e84ed9512be67647db completePlayerMessage", "conditions": { "AvailableForFinish": [ { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "67a0dd7a2519959b187db47f", + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63929101744e452011470819", + "conditions": [ + { + "id": "63929163c115f907b14700bb", + "dynamicLocale": false, + "exitName": "E9_sniper", + "conditionType": "ExitName" + }, + { + "id": "639cffee5573fd6cc27d99be", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "id": "63929101744e452011470818", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "63a768c404d3dc28a52a20e5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 10, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63a7698c10b7a13eb0159606", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "63a88045abf76d719f42d715", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "639136e84ed9512be67647db description", + "failMessageText": "639136e84ed9512be67647db failMessageText", + "declinePlayerMessage": "639136e84ed9512be67647db declinePlayerMessage", + "name": "639136e84ed9512be67647db name", + "note": "639136e84ed9512be67647db note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/60c37481c2d86b57700e3169.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "639136e84ed9512be67647db startedMessageText", + "successMessageText": "639136e84ed9512be67647db successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 2, + "id": "63a76b7a04d3dc28a52a20e6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f5f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f5e", + "_tpl": "6217726288ed9f0845317459", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f5f", + "_tpl": "6217726288ed9f0845317459", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 5600, + "id": "63a76ac8ee7b4d0d5507bad5", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "63a76b371f06d111271f5ad7", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 27000, + "id": "63a76f461f06d111271f5ad9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f61", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f61", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 27000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "63a76b4bee7b4d0d5507bad6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f63", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f63", + "_tpl": "620109578d82e67e7911abf2", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "63a76b5a5199ab1f7d4a7735", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f67", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f65", + "_tpl": "62389aaba63f32501b1b444f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f66", + "_tpl": "62389aaba63f32501b1b444f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f67", + "_tpl": "62389aaba63f32501b1b444f", + "upd": { + "StackObjectsCount": 1 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "60e71ccb5688f6424c7bfec4": { + "QuestName": "Trophies", + "_id": "60e71ccb5688f6424c7bfec4", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "60e71ccb5688f6424c7bfec4 acceptPlayerMessage", + "changeQuestMessageText": "60e71ccb5688f6424c7bfec4 changeQuestMessageText", + "completePlayerMessage": "60e71ccb5688f6424c7bfec4 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 50, + "id": "60e8174d0367e10a450f7818", "index": 0, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "679b9aa490622daf9708da73" + "59f32bb586f774757e1e8442", + "6662e9cda7e0b43baa3d5f76", + "6662e9aca7e0b43baa3d5f74", + "675dc9d37ae1a8792107ca96", + "675dcb0545b1a2d108011b2b" ], - "countInRaid": false, "globalQuestCounterId": "", - "value": 1, + "value": 20, "visibilityConditions": [] }, { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "67a0de2750fdff39d267ea16", + "conditionType": "HandoverItem", + "dogtagLevel": 50, + "id": "60e81795479eef59b01b0bdf", "index": 1, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "event_labyrinth_07_peacekeep_place_01", - "target": [ - "66dae7cbeb28f0f96809f325", - "5e340dcdcb6d5863cc5e5efb", - "5e32f56fcb6d5863cc5e5ee4", - "58d3db5386f77426186285a0", - "5710c24ad2720bc3458b45a3", - "5448be9a4bdc2dfd2f8b456a" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "67a0dda1370e2f877a6c8531", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, + "onlyFoundInRaid": true, "dynamicLocale": false, "target": [ - "679b9aa490622daf9708da73" + "59f32c3b86f77472a31742f0", + "6662ea05f6259762c56f3189", + "6662e9f37fa79a6d83730fa0", + "6764207f2fa5e32733055c4a", + "6764202ae307804338014c1a" ], "globalQuestCounterId": "", - "value": 1, + "value": 20, "visibilityConditions": [] } ], "AvailableForStart": [ { "conditionType": "Quest", - "id": "67a0dd5faf72be445b19874e", + "id": "610148054a065318776a1e76", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5d25e2cc86f77443e47ae019", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "6101480ee5b13723fc7609af", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 55, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "63aac78c1b5c9574661f0549", + "index": 2, + "parentId": "", + "dynamicLocale": false, + "target": "5a27b75b86f7742e97191958", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "60e71ccb5688f6424c7bfec4 description", + "failMessageText": "60e71ccb5688f6424c7bfec4 failMessageText", + "declinePlayerMessage": "60e71ccb5688f6424c7bfec4 declinePlayerMessage", + "name": "60e71ccb5688f6424c7bfec4 name", + "note": "60e71ccb5688f6424c7bfec4 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/60c373b71d348838124696ea.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "60e71ccb5688f6424c7bfec4 startedMessageText", + "successMessageText": "60e71ccb5688f6424c7bfec4 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 137000, + "id": "60f0374f5caf08029e0d6279", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4, + "id": "61029d8e60307362d01d8c86", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f6c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f69", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f6a", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f6b", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f6c", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "619d02cd4f859b7c35461376", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f6e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f6e", + "_tpl": "619bdf9cc9546643a67df6f8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6102960637e8697a3e7a49e9", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f6f", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f6f", + "_tpl": "5e81ebcd8e146c7080625e15", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6812400c0c5cf2cf75075f70", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6812400c0c5cf2cf75075f6f", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "availableInGameEditions": [], + "value": 10, + "id": "6102961a9386cf6f25373c48", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f7b", + "unknown": true, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f72", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f73", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f74", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f75", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f76", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f77", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f78", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f79", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f7a", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075f7b", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67f3ea873daf3aaf3e0e7ff5": { + "QuestName": "An Alternative", + "_id": "67f3ea873daf3aaf3e0e7ff5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3ea873daf3aaf3e0e7ff5 acceptPlayerMessage", + "changeQuestMessageText": "67f3ea873daf3aaf3e0e7ff5 changeQuestMessageText", + "completePlayerMessage": "67f3ea873daf3aaf3e0e7ff5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "68022bbf8396a75701b8616e", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347da92459774491567cf5", + "57347d3d245977448f7b7f61", + "57347d7224597744596b4e72", + "5751487e245977207e26a315", + "590c5f0d86f77413997acfab", + "590c5d4b86f774784e1b9c45", + "635a758bfefc88a93f021b8a", + "65815f0e647e3d7246384e14", + "5448ff904bdc2d6f028b456e" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "68022c20049c6309cfc34586", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "60098b1705871270cd5352a1", + "5d1b33a686f7742523398398", + "5448fee04bdc2dbc018b4567", + "5c0fa877d174af02a012e1cf" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67f7163c1043db4dc57845a1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3ea78c54fde6cc2004855", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67f3ea873daf3aaf3e0e7ff5 description", + "failMessageText": "67f3ea873daf3aaf3e0e7ff5 failMessageText", + "declinePlayerMessage": "67f3ea873daf3aaf3e0e7ff5 declinePlayerMessage", + "name": "67f3ea873daf3aaf3e0e7ff5 name", + "note": "67f3ea873daf3aaf3e0e7ff5 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/5979d3da86f774719f309082.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67f3ea873daf3aaf3e0e7ff5 startedMessageText", + "successMessageText": "67f3ea873daf3aaf3e0e7ff5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 8600, + "id": "67f632815d19fb388934a983", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 68000, + "id": "67f6329bfe6261598e60d613", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f7d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f7d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 68000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67f632a6bf2c40ef647cfd8c", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f632b18f893896da3c6f23", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f80", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f7f", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f80", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f632bddce1320bf10b89fa", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f83", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f82", + "_tpl": "5c0e531d86f7747fa23f4d42", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f83", + "_tpl": "5c0e531d86f7747fa23f4d42", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67f3eaa3a7799274d50a8b66": { + "QuestName": "Preemptive Strike", + "_id": "67f3eaa3a7799274d50a8b66", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3eaa3a7799274d50a8b66 acceptPlayerMessage", + "changeQuestMessageText": "67f3eaa3a7799274d50a8b66 changeQuestMessageText", + "completePlayerMessage": "67f3eaa3a7799274d50a8b66 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f7127d86fc3bb1f777848e", + "conditions": [ + { + "id": "67f71296bdce95eceaf4047d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "67f712e16a808601eb4f135d", + "dynamicLocale": false, + "zoneIds": [ + "RSHG_event_04_jaeger_r_point" + ], + "conditionType": "InZone" + } + ] + }, + "id": "67f7127d515e3a3c4a894aee", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 12, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67f71653323bc1b149840701", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3ea873daf3aaf3e0e7ff5", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67f3eaa3a7799274d50a8b66 description", + "failMessageText": "67f3eaa3a7799274d50a8b66 failMessageText", + "declinePlayerMessage": "67f3eaa3a7799274d50a8b66 declinePlayerMessage", + "name": "67f3eaa3a7799274d50a8b66 name", + "note": "67f3eaa3a7799274d50a8b66 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5979f91c86f77402996bf9c2.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67f3eaa3a7799274d50a8b66 startedMessageText", + "successMessageText": "67f3eaa3a7799274d50a8b66 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10500, + "id": "67f632d48ef1af55b9994545", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 72000, + "id": "67f632e13c5823e50809aedb", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f85", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f85", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 72000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "67f632e94913c972c86c6360", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f632f42fac93b433a6f70c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f88", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f87", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f88", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67f3eacef649e7bceb0bb455": { + "QuestName": "Fearless Beast", + "_id": "67f3eacef649e7bceb0bb455", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3eacef649e7bceb0bb455 acceptPlayerMessage", + "changeQuestMessageText": "67f3eacef649e7bceb0bb455 changeQuestMessageText", + "completePlayerMessage": "67f3eacef649e7bceb0bb455 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f530371000794d96234d14", + "conditions": [ + { + "id": "67f5306b1e8b44fc21dd0609", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [ + "67b49e7335dec48e3e05e057" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67f530370a3a9a0f90b76716", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67f716c363b76c536096732d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3eaa3a7799274d50a8b66", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "67ff78e79357cf0a8c2c39e1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3eab9a33cd296b20ee695", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "67f3eacef649e7bceb0bb455 description", + "failMessageText": "67f3eacef649e7bceb0bb455 failMessageText", + "declinePlayerMessage": "67f3eacef649e7bceb0bb455 declinePlayerMessage", + "name": "67f3eacef649e7bceb0bb455 name", + "note": "67f3eacef649e7bceb0bb455 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/67fcf1171b59ef89710fa6c8.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67f3eacef649e7bceb0bb455 startedMessageText", + "successMessageText": "67f3eacef649e7bceb0bb455 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 10, + "id": "67f6342b91172ea740a4083a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f93", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f8a", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f8b", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f8c", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f8d", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f8e", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f8f", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f90", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f91", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f92", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075f93", + "_tpl": "67b49e7335dec48e3e05e057", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "680a2682df2098a1ad48c5ec", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075f94", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f94", + "_tpl": "67b49e7335dec48e3e05e057" + } + ], + "loyaltyLevel": 1, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 24200, + "id": "67f633d9ce92583da5f0b810", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 200000, + "id": "67f633e8e0efdd0c85d660bf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f96", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f96", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 200000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "67f633f3e086c13ceba99751", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "680239fab0f4bc47488768ee", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075f9d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075f99", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075f9a", + "_tpl": "67446fdd752be02c220f27b3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f99", + "slotId": "patron_in_weapon" + }, + { + "_id": "6812400c0c5cf2cf75075f9b", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075f9c", + "_tpl": "67446fdd752be02c220f27b3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f9b", + "slotId": "patron_in_weapon" + }, + { + "_id": "6812400c0c5cf2cf75075f9d", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075f9e", + "_tpl": "67446fdd752be02c220f27b3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf75075f9d", + "slotId": "patron_in_weapon" + } + ] + } + ], + "Fail": [ + { + "availableInGameEditions": [], + "value": -0.05, + "id": "67f633fe1eec65093990cd03", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + } + ] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a097379f2068e74603c6ac": { + "QuestName": "Indisputable Authority", + "_id": "67a097379f2068e74603c6ac", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a097379f2068e74603c6ac acceptPlayerMessage", + "changeQuestMessageText": "67a097379f2068e74603c6ac changeQuestMessageText", + "completePlayerMessage": "67a097379f2068e74603c6ac completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67a0df616b395d94db83a0cb", + "conditions": [ + { + "id": "67a0df736f8975b42cbf1e73", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossTagillaAgro" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67a0df619fb6c42b9a08e8e9", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67a0df7f2c4bfbb5846cee64", + "conditions": [ + { + "id": "67a0df8af1b7133ed0b46565", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "tagillaHelperAgro", + "bossKillaAgro" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67a0df7f2cd4d4413cd29b45", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 6, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67a0dfad782f69d0ec849998", "index": 0, "parentId": "", "dynamicLocale": false, @@ -130547,28 +129471,28 @@ ], "Fail": [] }, - "description": "67a09724972c11a3f5077324 description", - "failMessageText": "67a09724972c11a3f5077324 failMessageText", - "declinePlayerMessage": "67a09724972c11a3f5077324 declinePlayerMessage", - "name": "67a09724972c11a3f5077324 name", - "note": "67a09724972c11a3f5077324 note", - "traderId": "5935c25fb3acc3127c3d8cd9", + "description": "67a097379f2068e74603c6ac description", + "failMessageText": "67a097379f2068e74603c6ac failMessageText", + "declinePlayerMessage": "67a097379f2068e74603c6ac declinePlayerMessage", + "name": "67a097379f2068e74603c6ac name", + "note": "67a097379f2068e74603c6ac note", + "traderId": "58330581ace78e27b8b10cee", "location": "6733700029c367a3d40b02af", - "image": "/files/quest/icon/67e3d47ab844364504003c4e.jpg", - "type": "PickUp", + "image": "/files/quest/icon/67e3d47fab7770f72902761d.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "67a09724972c11a3f5077324 startedMessageText", - "successMessageText": "67a09724972c11a3f5077324 successMessageText", + "startedMessageText": "67a097379f2068e74603c6ac startedMessageText", + "successMessageText": "67a097379f2068e74603c6ac successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 17600, - "id": "67b334a17a63b4c10037ef9b", + "value": 25500, + "id": "67b33541daca85d607809d70", "type": "Experience", "index": 0, "unknown": false @@ -130576,120 +129500,814 @@ { "availableInGameEditions": [], "value": 0.03, - "id": "67b334ae28790c14e21c1e97", + "id": "67b3354a2d64f3d0748f57f1", "type": "TraderStanding", "index": 0, - "target": "5935c25fb3acc3127c3d8cd9", + "target": "58330581ace78e27b8b10cee", "unknown": false }, { "availableInGameEditions": [], - "value": 1600, - "id": "67b334b5d4676e284bc107b0", + "value": 2900, + "id": "67b3355491a492e9943138a4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c54", + "target": "6812400c0c5cf2cf75075fa0", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c54", - "_tpl": "5696686a4bdc2da3298b456a", + "_id": "6812400c0c5cf2cf75075fa0", + "_tpl": "569668774bdc2da2298b4568", "upd": { - "StackObjectsCount": 1600 + "StackObjectsCount": 2900 } } ] }, + { + "availableInGameEditions": [], + "value": 8, + "id": "67b3356be84b860a9fa57b1a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fb1", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fa3", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fa4", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fa3", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fa5", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fa6", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fa5", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fa7", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fa8", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fa7", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fa9", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075faa", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fa9", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fab", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fac", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fab", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fad", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fae", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fad", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075faf", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fb0", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075faf", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fb1", + "_tpl": "6489851fc827d4637f01791b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fb2", + "_tpl": "601aa3d2b2bcb34913271e6d", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fb1", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 8, + "id": "67e6890d3de77d61cdca8512", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fc3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fb5", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fb6", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fb5", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fb7", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fb8", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fb7", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fb9", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fba", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fb9", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fbb", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fbc", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fbb", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fbd", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fbe", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fbd", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fbf", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fc0", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fbf", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fc1", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fc2", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fc1", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75075fc3", + "_tpl": "64acea16c4eda9354b0226b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75075fc4", + "_tpl": "59e0d99486f7744a32234762", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "6812400c0c5cf2cf75075fc3", + "slotId": "cartridges" + } + ] + }, { "availableInGameEditions": [], "value": 1, - "id": "67b334d70bb487be96a6eaac", + "id": "67e163805e8a946a5dfd55d4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c56", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c56", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67b334c1f3276957af19c943", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c59", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c58", - "_tpl": "590c392f86f77444754deb29", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c59", - "_tpl": "590c392f86f77444754deb29", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67b334cb5afedfde5efe894f", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c5c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c5b", - "_tpl": "590c37d286f77443be3d7827", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c5c", - "_tpl": "590c37d286f77443be3d7827", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67e163bcadf98db6ec742b22", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c5e", + "target": "6812400c0c5cf2cf75075fc6", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c5e", - "_tpl": "679b946f90622daf9708da6d", + "_id": "6812400c0c5cf2cf75075fc6", + "_tpl": "679b9477708cfcb2060b9ade", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a0970f05d1611ed90be75d": { + "QuestName": "Hypotheses Testing", + "_id": "67a0970f05d1611ed90be75d", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a0970f05d1611ed90be75d acceptPlayerMessage", + "changeQuestMessageText": "67a0970f05d1611ed90be75d changeQuestMessageText", + "completePlayerMessage": "67a0970f05d1611ed90be75d completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67dbe16e209c3fbfa72de9e3", + "conditions": [ + { + "id": "67dbe177f8a9cd256822b013", + "dynamicLocale": false, + "target": "event_labyrinth_06_mech_place_01", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "67dbe16ece16a02860ed9d33", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67a0dcf4ff6f74931359b9f9", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "679b992329acd1f2f60985a5" + ], + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67a0dccc99ab8c7f8a0f479e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a0970744893b9f3f0d9b68", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a0970f05d1611ed90be75d description", + "failMessageText": "67a0970f05d1611ed90be75d failMessageText", + "declinePlayerMessage": "67a0970f05d1611ed90be75d declinePlayerMessage", + "name": "67a0970f05d1611ed90be75d name", + "note": "67a0970f05d1611ed90be75d note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "6733700029c367a3d40b02af", + "image": "/files/quest/icon/67e3d477ab7770f72902761c.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a0970f05d1611ed90be75d startedMessageText", + "successMessageText": "67a0970f05d1611ed90be75d successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "67dbe19bf3f4cb01b7685ca5", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fc8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fc8", + "_tpl": "679b9819a2f2dd4da9023512", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 15900, + "id": "67b33444fc24e6ce25d51963", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67b334574d0c378f11cbb24c", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 82000, + "id": "67b33460db45c1fad035ec8c", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fca", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fca", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 82000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "67b3346a52a36af00e8f15ba", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fce", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fcc", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fcd", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fce", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "67b334736a15268d01bd02ac", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fd2", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fd0", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fd1", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fd2", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "67b3347c7eb9cb31b19fe073", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fd6", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fd4", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fd5", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075fd6", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4495c86f7744e87761355": { + "QuestName": "Sew it Good - Part 2", + "_id": "5ae4495c86f7744e87761355", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4495c86f7744e87761355 acceptPlayerMessage", + "changeQuestMessageText": "5ae4495c86f7744e87761355 changeQuestMessageText", + "completePlayerMessage": "5ae4495c86f7744e87761355 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b77f86f77432c81e3074", + "index": 0, + "maxDurability": 50.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ab8e79e86f7742d8b372e78" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b7c886f774307c29df56", + "index": 1, + "maxDurability": 50.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ab8e79e86f7742d8b372e78" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5aec6d2586f774198b1f3336", + "target": "5ae9b77f86f77432c81e3074", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "5ae9b91386f77415a869b3f3", + "index": 2, + "maxDurability": 100.0, + "minDurability": 50.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ab8e79e86f7742d8b372e78" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9b93b86f7746e0026221a", + "index": 3, + "maxDurability": 100.0, + "minDurability": 50.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5ab8e79e86f7742d8b372e78" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5aec6d2a86f774198b1f3337", + "target": "5ae9b91386f77415a869b3f3", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4165d86f7745bf73dad72", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4495086f77443c122bc40", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4495c86f7744e87761355 description", + "failMessageText": "5ae4495c86f7744e87761355 failMessageText", + "declinePlayerMessage": "5ae4495c86f7744e87761355 declinePlayerMessage", + "name": "5ae4495c86f7744e87761355 name", + "note": "5ae4495c86f7744e87761355 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4495c86f7744e87761355 startedMessageText", + "successMessageText": "5ae4495c86f7744e87761355 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 17500, + "id": "60cc83db179f8541b846928b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc83e6af2e5506c37822db", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc844965e4664318606b55", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fd8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fd8", + "_tpl": "5aa7e3abe5b5b000171d064d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc8438af2e5506c37822dc", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fda", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fda", + "_tpl": "5c0919b50db834001b7ce3b9", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc844398b49270603645f6", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fdc", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fdc", + "_tpl": "5aa7e373e5b5b000137b76f0", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -130855,12 +130473,12 @@ "id": "67b334fef6d2cdde888bda49", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c60", + "target": "6812400c0c5cf2cf75075fde", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c60", + "_id": "6812400c0c5cf2cf75075fde", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 218000 @@ -130874,12 +130492,12 @@ "id": "67b33508b508788add112cda", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c63", + "target": "6812400c0c5cf2cf75075fe1", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c62", + "_id": "6812400c0c5cf2cf75075fe0", "_tpl": "637b612fb7afa97bfc3d7005", "upd": { "StackObjectsCount": 1, @@ -130887,7 +130505,7 @@ } }, { - "_id": "68010065f81036801d0b2c63", + "_id": "6812400c0c5cf2cf75075fe1", "_tpl": "637b612fb7afa97bfc3d7005", "upd": { "StackObjectsCount": 1, @@ -130902,12 +130520,12 @@ "id": "67b33512bdbca07c19cdd564", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c66", + "target": "6812400c0c5cf2cf75075fe4", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c65", + "_id": "6812400c0c5cf2cf75075fe3", "_tpl": "5ed5160a87bb8443d10680b5", "upd": { "StackObjectsCount": 1, @@ -130915,7 +130533,7 @@ } }, { - "_id": "68010065f81036801d0b2c66", + "_id": "6812400c0c5cf2cf75075fe4", "_tpl": "5ed5160a87bb8443d10680b5", "upd": { "StackObjectsCount": 1, @@ -130930,12 +130548,12 @@ "id": "67b33525968c1dc02c88dc51", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c69", + "target": "6812400c0c5cf2cf75075fe7", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c68", + "_id": "6812400c0c5cf2cf75075fe6", "_tpl": "5ed515c8d380ab312177c0fa", "upd": { "StackObjectsCount": 1, @@ -130943,7 +130561,7 @@ } }, { - "_id": "68010065f81036801d0b2c69", + "_id": "6812400c0c5cf2cf75075fe7", "_tpl": "5ed515c8d380ab312177c0fa", "upd": { "StackObjectsCount": 1, @@ -130958,12 +130576,12 @@ "id": "67e163aa3ab5ce605035e86f", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c6b", + "target": "6812400c0c5cf2cf75075fe9", "unknown": true, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c6b", + "_id": "6812400c0c5cf2cf75075fe9", "_tpl": "679b94734e9ca6b3d80586a7", "upd": { "StackObjectsCount": 1, @@ -130983,6 +130601,2093 @@ "arenaLocations": [], "status": 0 }, + "67b45467814ab0ffa000c7e7": { + "QuestName": "The Art of Explosion", + "_id": "67b45467814ab0ffa000c7e7", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67b45467814ab0ffa000c7e7 acceptPlayerMessage", + "changeQuestMessageText": "67b45467814ab0ffa000c7e7 changeQuestMessageText", + "completePlayerMessage": "67b45467814ab0ffa000c7e7 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67b45467814ab0ffa000c7eb", + "conditions": [ + { + "id": "5c0d1a47d09282029e2fffb7", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "58d3db5386f77426186285a0", + "5e340dcdcb6d5863cc5e5efb", + "5e32f56fcb6d5863cc5e5ee4", + "5448be9a4bdc2dfd2f8b456a", + "5710c24ad2720bc3458b45a3", + "618a431df1eb8e24b8741deb", + "617fd91e5539a84ec44ce155", + "639c3fbbd0446708ee622ee9", + "639af924d0446708ee62294e", + "5648b62b4bdc2d9d488b4585", + "66dae7cbeb28f0f96809f325", + "6357c98711fb55120211f7e1", + "5e81ebcd8e146c7080625e15", + "6275303a9f372d6ea97f9ec7", + "62e7e7bbe6da9612f743f1e0", + "67b49e7335dec48e3e05e057", + "676bf44c5539167c3603e869" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67b45467814ab0ffa000c7ea", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 35, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "67b45467814ab0ffa000c7e9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 33, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "67b465ac74f9eff55467d8a2", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "5c0d190cd09282029f5390d8", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67b45467814ab0ffa000c7e7 description", + "failMessageText": "67b45467814ab0ffa000c7e7 failMessageText", + "declinePlayerMessage": "67b45467814ab0ffa000c7e7 declinePlayerMessage", + "name": "67b45467814ab0ffa000c7e7 name", + "note": "67b45467814ab0ffa000c7e7 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/67b45ba146fd9f10870b5217.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67b45467814ab0ffa000c7e7 startedMessageText", + "successMessageText": "67b45467814ab0ffa000c7e7 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 19200, + "id": "67b45467814ab0ffa000c7ec", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 95300, + "id": "67b45467814ab0ffa000c7ee", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075feb", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075feb", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 95300 + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "67b4648ba5084a21b4c6c618", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf75075fec", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fec", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075fed", + "_tpl": "67446fdd752be02c220f27b3", + "parentId": "6812400c0c5cf2cf75075fec", + "slotId": "patron_in_weapon" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67b464b65f717b2c41f8b3bf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fee", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fee", + "_tpl": "676bf44c5539167c3603e869", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75075fef", + "_tpl": "67446fdd752be02c220f27b3", + "parentId": "6812400c0c5cf2cf75075fee", + "slotId": "patron_in_weapon" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a096ed77dd677f600804ba": { + "QuestName": "Sensory Analysis - Part 2", + "_id": "67a096ed77dd677f600804ba", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a096ed77dd677f600804ba acceptPlayerMessage", + "changeQuestMessageText": "67a096ed77dd677f600804ba changeQuestMessageText", + "completePlayerMessage": "67a096ed77dd677f600804ba completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67a0da26a3b8d254347b8634", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5d1b376e86f774252519444e" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67dbde81b2fe05da39b24331", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a0967c003a9986cb0f5ac1", + "status": [ + 2 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a096ed77dd677f600804ba description", + "failMessageText": "67a096ed77dd677f600804ba failMessageText", + "declinePlayerMessage": "67a096ed77dd677f600804ba declinePlayerMessage", + "name": "67a096ed77dd677f600804ba name", + "note": "67a096ed77dd677f600804ba note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "any", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a096ed77dd677f600804ba startedMessageText", + "successMessageText": "67a096ed77dd677f600804ba successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 6800, + "id": "67b3209e71488f4b980a459b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "67b320aaa1e6c15672a4d524", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 32000, + "id": "67b320b4d7ed832523b86c4b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ff1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ff1", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 32000 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "657315ddab5a49b71f098853": { + "QuestName": "First in Line", + "_id": "657315ddab5a49b71f098853", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "657315ddab5a49b71f098853 acceptPlayerMessage", + "changeQuestMessageText": "657315ddab5a49b71f098853 changeQuestMessageText", + "completePlayerMessage": "657315ddab5a49b71f098853 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "65732ac3630545751adfe039", + "conditions": [ + { + "id": "65732b10b0e230143c591102", + "dynamicLocale": false, + "target": "Sandbox_1_MedicalArea_exploration", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "65732ac3c67dcd96adffa3c7", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "65817bf31404f3565aef9fec", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590c695186f7741e566b64a2", + "5751a89d24597722aa0e8db0", + "5af0548586f7743a532b7e99", + "544fb3f34bdc2d03748b456a", + "544fb37f4bdc2dee738b4567", + "5755383e24597772cb798966", + "590c657e86f77412b013051d", + "60098ad7c2240c0fe85c570a", + "590c661e86f7741e566b646a", + "590c678286f77426c9660122", + "5755356824597772cb798962", + "544fb45d4bdc2dee738b4568", + "5e99711486f7744bfc4af328", + "544fb25a4bdc2dfb738b4567", + "5751a25924597722c463c472", + "5d02778e86f774203e7dedbe", + "5af0454c86f7746bf20992e8", + "60098af40accd37ef2175f27", + "5e831507ea0a7c419c2f9bd9", + "5e8488fa988a8701445df1e4", + "5e99735686f7744bfc4af32c", + "544fb3364bdc2d34748b456a", + "5d02797c86f774203f38e30a", + "5ed515c8d380ab312177c0fa", + "5ed515f6915ec335206e4152", + "5c10c8fd86f7743d7d706df3", + "5ed515e03a40a50460332579", + "5ed51652f6c34d2cc26336a1", + "5ed5160a87bb8443d10680b5", + "5ed5166ad380ab312177c100", + "637b60c3b7afa97bfc3d7001", + "5ed515ece452db0eb56fc028", + "637b6179104668754b72f8f5", + "637b6251104668754b72f8f9", + "5c0e530286f7747fa1419862", + "637b612fb7afa97bfc3d7005", + "5c0e531286f7747fa54205c2", + "5c0e531d86f7747fa23f4d42", + "5fca13ca637ee0341a484f46", + "637b620db7afa97bfc3d7009", + "5c0e533786f7747fa23f4d47", + "5c0e534186f7747fa1419867", + "5fca138c2a7b221b2852a5c6", + "5c052e6986f7746b207bc3c9", + "5c0530ee86f774697952d952", + "666879d498b97e3a8f09f1ae", + "6389c6c7dbfd5e4b95197e68", + "5b4335ba86f7744d2837a264", + "5af0534a86f7743b6f354284", + "59e361e886f774176c10a2a5", + "59e3606886f77417674759a5", + "5d1b3a5d86f774252167ba22", + "5d1b3f2d86f774253763b735", + "62a0a043cf4a99369e2624a5", + "619cc01e0a7c3a1a2731940c", + "5a687e7886f7740c4a5133fb", + "66a0f0926fee20fa70036da6", + "669fac549b0ce3feae01a137" + ], + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [] + } + ], + "AvailableForStart": [], + "Fail": [] + }, + "description": "657315ddab5a49b71f098853 description", + "failMessageText": "657315ddab5a49b71f098853 failMessageText", + "declinePlayerMessage": "657315ddab5a49b71f098853 declinePlayerMessage", + "name": "657315ddab5a49b71f098853 name", + "note": "657315ddab5a49b71f098853 note", + "traderId": "54cb57776803fa99248b456e", + "location": "653e6760052c01c1c805532f", + "image": "/files/quest/icon/658992cd1af57867a167fc13.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "657315ddab5a49b71f098853 startedMessageText", + "successMessageText": "657315ddab5a49b71f098853 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 1200, + "id": "65846ca13eed2c22a516d5c4", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "65846cc73eed2c22a516d5c5", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 6400, + "id": "65846cb74d559e355f61a704", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ff3", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ff3", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 6400 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "65846cfd4f381a0ad975a85d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ff5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ff5", + "_tpl": "574eb85c245977648157eec3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "65846d0c1e25c52cb72f807e", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ff8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ff7", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ff8", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a0966817e34930e500754c": { + "QuestName": "Forced Alliance", + "_id": "67a0966817e34930e500754c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a0966817e34930e500754c acceptPlayerMessage", + "changeQuestMessageText": "67a0966817e34930e500754c changeQuestMessageText", + "completePlayerMessage": "67a0966817e34930e500754c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67e41d4e9f783e8f4b234a1b", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9819a2f2dd4da9023512" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "67a0d8f2db972857cd90d9c0", + "index": 2, + "parentId": "67e41d4e9f783e8f4b234a1b", + "dynamicLocale": false, + "target": "67a09673972c11a3f507731d", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67e6775eae39849f357ba6e9", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a096577e86e067eb045733", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 5400, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a0966817e34930e500754c description", + "failMessageText": "67a0966817e34930e500754c failMessageText", + "declinePlayerMessage": "67a0966817e34930e500754c declinePlayerMessage", + "name": "67a0966817e34930e500754c name", + "note": "67a0966817e34930e500754c note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a0966817e34930e500754c startedMessageText", + "successMessageText": "67a0966817e34930e500754c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.01, + "id": "67b31a83ca4258b62440b7e6", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 36000, + "id": "67b31a9253b12c1f58876a99", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ffa", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ffa", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 36000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67b31a9f04f16c951c45a7e2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075ffd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75075ffc", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75075ffd", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67f3ea78c54fde6cc2004855": { + "QuestName": "Secret Benefactor", + "_id": "67f3ea78c54fde6cc2004855", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3ea78c54fde6cc2004855 acceptPlayerMessage", + "changeQuestMessageText": "67f3ea78c54fde6cc2004855 changeQuestMessageText", + "completePlayerMessage": "67f3ea78c54fde6cc2004855 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67f45f2598742add16d22abf", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "67f3fd9bdb1fbd5add090f96" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67f45f31e2662881c816ffaf", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "67f3fd9bdb1fbd5add090f96" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "VisitPlace", + "id": "67ff74183ce253402679842a", + "index": 2, + "parentId": "67f45f2598742add16d22abf", + "dynamicLocale": false, + "target": "1", + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67f7161fe8786c14fadc18ee", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3ea581cd4c15d3d040305", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67f3ea78c54fde6cc2004855 description", + "failMessageText": "67f3ea78c54fde6cc2004855 failMessageText", + "declinePlayerMessage": "67f3ea78c54fde6cc2004855 declinePlayerMessage", + "name": "67f3ea78c54fde6cc2004855 name", + "note": "67f3ea78c54fde6cc2004855 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/60c37700869a2f761e41b35b.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67f3ea78c54fde6cc2004855 startedMessageText", + "successMessageText": "67f3ea78c54fde6cc2004855 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 9100, + "id": "67f631ffeb7d85587c4ef8b0", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "67f63210a5dead64a422b6ba", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75075fff", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75075fff", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "67f63222af906506babbe314", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67f6322c8c8f8a3a88bdd07b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076001", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076001", + "_tpl": "619cbf476b8a1b37a54eebf8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f63236b132b4ac236a5b35", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076004", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076003", + "_tpl": "5d1b2ffd86f77425243e8d17", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076004", + "_tpl": "5d1b2ffd86f77425243e8d17", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f6323fd9b71be639129fb1", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076007", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076006", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076007", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a0970744893b9f3f0d9b68": { + "QuestName": "Offensive Reconnaissance", + "_id": "67a0970744893b9f3f0d9b68", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a0970744893b9f3f0d9b68 acceptPlayerMessage", + "changeQuestMessageText": "67a0970744893b9f3f0d9b68 changeQuestMessageText", + "completePlayerMessage": "67a0970744893b9f3f0d9b68 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67dbe0f531e892ab3905f30e", + "conditions": [ + { + "id": "67dbe1030a44b50c67fa2868", + "dynamicLocale": false, + "target": "event_labyrinth_05_mech_place_01", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "67dbe0f532ff08bfa13237a8", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67a0dc94a4d798e79853f2eb", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "67dbe0f532ff08bfa13237a8", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9819a2f2dd4da9023512" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67e41d1f936ebf353ae78ed6", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a0966817e34930e500754c", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a0970744893b9f3f0d9b68 description", + "failMessageText": "67a0970744893b9f3f0d9b68 failMessageText", + "declinePlayerMessage": "67a0970744893b9f3f0d9b68 declinePlayerMessage", + "name": "67a0970744893b9f3f0d9b68 name", + "note": "67a0970744893b9f3f0d9b68 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/67e3d474aa9c9449d10fd198.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a0970744893b9f3f0d9b68 startedMessageText", + "successMessageText": "67a0970744893b9f3f0d9b68 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 4500, + "id": "67b3342eeb55258aaf647a32", + "type": "Experience", + "index": 0, + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a09636b8725511260bc421": { + "QuestName": "Shady Contractor", + "_id": "67a09636b8725511260bc421", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a09636b8725511260bc421 acceptPlayerMessage", + "changeQuestMessageText": "67a09636b8725511260bc421 changeQuestMessageText", + "completePlayerMessage": "67a09636b8725511260bc421 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67a0a91f88a48e8281ef39b8", + "conditions": [ + { + "id": "67a0a9542780b548f7729140", + "dynamicLocale": false, + "target": "event_labyrinth_01_mech_place_01", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "67a0a91f4681b4e43d13892b", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67a0ab610345d81cb3cbb24c", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9a1a4e4ed4b3b40ae5c2" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "67a0abdb84778b0ba09d11ee", + "target": "67a0a91f4681b4e43d13892b", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67a0ab83359e2d00cf9d6b06", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9a1a4e4ed4b3b40ae5c2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "67a0abe28ac4005b13e6dcc6", + "target": "67a0ab610345d81cb3cbb24c", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67e5266545508fec55b52927", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "657315e4a6af4ab4b50f3459", + "status": [ + 2, + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "68076fce8ba41d49810f1518", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 15, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a09636b8725511260bc421 description", + "failMessageText": "67a09636b8725511260bc421 failMessageText", + "declinePlayerMessage": "67a09636b8725511260bc421 declinePlayerMessage", + "name": "67a09636b8725511260bc421 name", + "note": "67a09636b8725511260bc421 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "653e6760052c01c1c805532f", + "image": "/files/quest/icon/67e407aabbf507ac3b068a52.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a09636b8725511260bc421 startedMessageText", + "successMessageText": "67a09636b8725511260bc421 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 10600, + "id": "67b3198a4a2b22e59a8c97fe", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "67b31999ceec0682bd487c12", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 52000, + "id": "67b319a5844db8a36bb01dce", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076009", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076009", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 52000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "67b319adae09ca905bafc6a3", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507600d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507600b", + "_tpl": "619cbf476b8a1b37a54eebf8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507600c", + "_tpl": "619cbf476b8a1b37a54eebf8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507600d", + "_tpl": "619cbf476b8a1b37a54eebf8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a09761e720611a6a01f288": { + "QuestName": "Keepers Word", + "_id": "67a09761e720611a6a01f288", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a09761e720611a6a01f288 acceptPlayerMessage", + "changeQuestMessageText": "67a09761e720611a6a01f288 changeQuestMessageText", + "completePlayerMessage": "67a09761e720611a6a01f288 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "67a0e4df8cddbe2df31dd1d9", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "event_labyrinth_11_lightkeep_place_01", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "67a0e4e399e34c9ffcdc6e00", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "event_labyrinth_11_lightkeep_place_02", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "67a0e4e64cb065811d95c6d9", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "event_labyrinth_11_lightkeep_place_03 ", + "target": [ + "5fc64ea372b0dd78d51159dc" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [], + "Fail": [] + }, + "description": "67a09761e720611a6a01f288 description", + "failMessageText": "67a09761e720611a6a01f288 failMessageText", + "declinePlayerMessage": "67a09761e720611a6a01f288 declinePlayerMessage", + "name": "67a09761e720611a6a01f288 name", + "note": "67a09761e720611a6a01f288 note", + "traderId": "638f541a29ffd1183d187f57", + "location": "6733700029c367a3d40b02af", + "image": "/files/quest/icon/67e3d4858d33d5706d0c2adb.jpg", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a09761e720611a6a01f288 startedMessageText", + "successMessageText": "67a09761e720611a6a01f288 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 56800, + "id": "67b341c6ac24e74aac6f75bb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "67b341da02fc3be54b295022", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4200, + "id": "67b34299ad1c884fee9bb863", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507600f", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507600f", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 4200 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67b342a7d81d1feb8c5e133d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076011", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076011", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67b342b2e48ded9b1595b937", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076013", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076013", + "_tpl": "5d235bb686f77443f4331278", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67b342bf13eae7f0e6bb07ed", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076015", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076015", + "_tpl": "64d0b40fbe2eed70e254e2d4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67af4c1405c58dc6f7056667": { + "QuestName": "Profitable Venture", + "_id": "67af4c1405c58dc6f7056667", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67af4c1405c58dc6f7056667 acceptPlayerMessage", + "changeQuestMessageText": "67af4c1405c58dc6f7056667 changeQuestMessageText", + "completePlayerMessage": "67af4c1405c58dc6f7056667 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67af6dd0f5685508d9050158", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5a1eaa87fcdbcb001865f75e" + ], + "globalQuestCounterId": "", + "value": 15, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "67dab7dc023292605359f42a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 61, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67af4c1405c58dc6f7056667 description", + "failMessageText": "67af4c1405c58dc6f7056667 failMessageText", + "declinePlayerMessage": "67af4c1405c58dc6f7056667 declinePlayerMessage", + "name": "67af4c1405c58dc6f7056667 name", + "note": "67af4c1405c58dc6f7056667 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/67dabe8f61a21de932048835.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67af4c1405c58dc6f7056667 startedMessageText", + "successMessageText": "67af4c1405c58dc6f7056667 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 100, + "id": "67dab9c383ee94179782235a", + "type": "Skill", + "index": 0, + "target": "StressResistance", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "67dabda9e23e2b260d9de8bf", + "type": "Skill", + "index": 0, + "target": "Perception", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "67dabdb921eb7c0dea96f1d3", + "type": "Skill", + "index": 0, + "target": "Attention", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "67dabdd96ba937a0155d96b1", + "type": "Skill", + "index": 0, + "target": "AimDrills", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 100, + "id": "680877b965b3109092076f29", + "type": "Skill", + "index": 0, + "target": "CovertMovement", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "669fa38fad7f1eac2607ed46": { + "QuestName": "One Less Loose End", + "_id": "669fa38fad7f1eac2607ed46", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "669fa38fad7f1eac2607ed46 acceptPlayerMessage", + "changeQuestMessageText": "669fa38fad7f1eac2607ed46 changeQuestMessageText", + "completePlayerMessage": "669fa38fad7f1eac2607ed46 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "669faeb6a6e02d00c47ad812", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66c0b39ca1f68fcc1d0c0cc3" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "669faecceb01bf6324de66c4", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "nf2024_1", + "target": [ + "66c0b39ca1f68fcc1d0c0cc3" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "66aa24767f030d6eb630823d", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6179aff8f57fb279792c60a1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "66a2e431698fb99bb4bd1cf2", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "669fa3910c828825de06d69f", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "669fa38fad7f1eac2607ed46 description", + "failMessageText": "669fa38fad7f1eac2607ed46 failMessageText", + "declinePlayerMessage": "669fa38fad7f1eac2607ed46 declinePlayerMessage", + "name": "669fa38fad7f1eac2607ed46 name", + "note": "669fa38fad7f1eac2607ed46 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "any", + "image": "/files/quest/icon/66acebc9f85b8bf7250f9cab.png", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "669fa38fad7f1eac2607ed46 startedMessageText", + "successMessageText": "669fa38fad7f1eac2607ed46 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15000, + "id": "66aa24801e5e199ecd094f08", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "66aa248e023055273703d883", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1200, + "id": "66aa24a6fb57cc8a5404ac5a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076017", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076017", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1200 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "66bb3e3aa511da1d0400af96", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076018", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076018", + "_tpl": "668fe5a998b5ad715703ddd6", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6812400c0c5cf2cf75076019", + "_tpl": "668fe5f62a0f85eea407cc18", + "parentId": "6812400c0c5cf2cf75076018", + "slotId": "mod_barrel" + }, + { + "_id": "6812400c0c5cf2cf7507601a", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "6812400c0c5cf2cf75076019", + "slotId": "mod_sight_front" + }, + { + "_id": "6812400c0c5cf2cf7507601b", + "_tpl": "668fe5d42a0f85eea407cc16", + "parentId": "6812400c0c5cf2cf75076018", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6812400c0c5cf2cf7507601c", + "_tpl": "668fe60b56984d93550462c6", + "parentId": "6812400c0c5cf2cf75076018", + "slotId": "mod_reciever" + }, + { + "_id": "6812400c0c5cf2cf7507601d", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "6812400c0c5cf2cf7507601c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6812400c0c5cf2cf7507601e", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "6812400c0c5cf2cf75076018", + "slotId": "mod_magazine" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "66bb40dac589a4bab20325c7", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076022", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076020", + "_tpl": "668fe5c5f35310705d02b696", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076021", + "_tpl": "668fe5c5f35310705d02b696", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076022", + "_tpl": "668fe5c5f35310705d02b696", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 28, + "id": "66bb40e92f6f5ebd440bfd16", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076024", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076024", + "_tpl": "66a0d1e0ed648d72fe064d06", + "upd": { + "StackObjectsCount": 28 + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67a09724972c11a3f5077324": { + "QuestName": "Confidential Info", + "_id": "67a09724972c11a3f5077324", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67a09724972c11a3f5077324 acceptPlayerMessage", + "changeQuestMessageText": "67a09724972c11a3f5077324 changeQuestMessageText", + "completePlayerMessage": "67a09724972c11a3f5077324 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "67a0dd7a2519959b187db47f", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9aa490622daf9708da73" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "67a0de2750fdff39d267ea16", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 30, + "zoneId": "event_labyrinth_07_peacekeep_place_01", + "target": [ + "66dae7cbeb28f0f96809f325", + "5e340dcdcb6d5863cc5e5efb", + "5e32f56fcb6d5863cc5e5ee4", + "58d3db5386f77426186285a0", + "5710c24ad2720bc3458b45a3", + "5448be9a4bdc2dfd2f8b456a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "67a0dda1370e2f877a6c8531", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "679b9aa490622daf9708da73" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67a0dd5faf72be445b19874e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67a0970744893b9f3f0d9b68", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "67a09724972c11a3f5077324 description", + "failMessageText": "67a09724972c11a3f5077324 failMessageText", + "declinePlayerMessage": "67a09724972c11a3f5077324 declinePlayerMessage", + "name": "67a09724972c11a3f5077324 name", + "note": "67a09724972c11a3f5077324 note", + "traderId": "5935c25fb3acc3127c3d8cd9", + "location": "6733700029c367a3d40b02af", + "image": "/files/quest/icon/67e3d47ab844364504003c4e.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67a09724972c11a3f5077324 startedMessageText", + "successMessageText": "67a09724972c11a3f5077324 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 17600, + "id": "67b334a17a63b4c10037ef9b", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "67b334ae28790c14e21c1e97", + "type": "TraderStanding", + "index": 0, + "target": "5935c25fb3acc3127c3d8cd9", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1600, + "id": "67b334b5d4676e284bc107b0", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076026", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076026", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 1600 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67b334d70bb487be96a6eaac", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076028", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076028", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67b334c1f3276957af19c943", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507602b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507602a", + "_tpl": "590c392f86f77444754deb29", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507602b", + "_tpl": "590c392f86f77444754deb29", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67b334cb5afedfde5efe894f", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507602e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507602d", + "_tpl": "590c37d286f77443be3d7827", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507602e", + "_tpl": "590c37d286f77443be3d7827", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67e163bcadf98db6ec742b22", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076030", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076030", + "_tpl": "679b946f90622daf9708da6d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "67a0964e972c11a3f507731b": { "QuestName": "Needle in a Haystack", "_id": "67a0964e972c11a3f507731b", @@ -131221,12 +132926,12 @@ "id": "67b319dec437095d76d2bfab", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c6d", + "target": "6812400c0c5cf2cf75076032", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c6d", + "_id": "6812400c0c5cf2cf75076032", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 47000 @@ -131240,12 +132945,12 @@ "id": "67b319e78c1fb7bd1d9deb04", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c73", + "target": "6812400c0c5cf2cf75076038", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c6f", + "_id": "6812400c0c5cf2cf75076034", "_tpl": "5d1b392c86f77425243e98fe", "upd": { "StackObjectsCount": 1, @@ -131253,7 +132958,7 @@ } }, { - "_id": "68010065f81036801d0b2c70", + "_id": "6812400c0c5cf2cf75076035", "_tpl": "5d1b392c86f77425243e98fe", "upd": { "StackObjectsCount": 1, @@ -131261,7 +132966,7 @@ } }, { - "_id": "68010065f81036801d0b2c71", + "_id": "6812400c0c5cf2cf75076036", "_tpl": "5d1b392c86f77425243e98fe", "upd": { "StackObjectsCount": 1, @@ -131269,7 +132974,7 @@ } }, { - "_id": "68010065f81036801d0b2c72", + "_id": "6812400c0c5cf2cf75076037", "_tpl": "5d1b392c86f77425243e98fe", "upd": { "StackObjectsCount": 1, @@ -131277,7 +132982,7 @@ } }, { - "_id": "68010065f81036801d0b2c73", + "_id": "6812400c0c5cf2cf75076038", "_tpl": "5d1b392c86f77425243e98fe", "upd": { "StackObjectsCount": 1, @@ -131292,12 +132997,12 @@ "id": "67b319f0a870dd18fe408f58", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c79", + "target": "6812400c0c5cf2cf7507603e", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c75", + "_id": "6812400c0c5cf2cf7507603a", "_tpl": "590a3cd386f77436f20848cb", "upd": { "StackObjectsCount": 1, @@ -131305,7 +133010,7 @@ } }, { - "_id": "68010065f81036801d0b2c76", + "_id": "6812400c0c5cf2cf7507603b", "_tpl": "590a3cd386f77436f20848cb", "upd": { "StackObjectsCount": 1, @@ -131313,7 +133018,7 @@ } }, { - "_id": "68010065f81036801d0b2c77", + "_id": "6812400c0c5cf2cf7507603c", "_tpl": "590a3cd386f77436f20848cb", "upd": { "StackObjectsCount": 1, @@ -131321,7 +133026,7 @@ } }, { - "_id": "68010065f81036801d0b2c78", + "_id": "6812400c0c5cf2cf7507603d", "_tpl": "590a3cd386f77436f20848cb", "upd": { "StackObjectsCount": 1, @@ -131329,7 +133034,7 @@ } }, { - "_id": "68010065f81036801d0b2c79", + "_id": "6812400c0c5cf2cf7507603e", "_tpl": "590a3cd386f77436f20848cb", "upd": { "StackObjectsCount": 1, @@ -131349,27 +133054,772 @@ "arenaLocations": [], "status": 0 }, - "67d03be712fb5f8fd2096332": { - "QuestName": "Vacate the Premises", - "_id": "67d03be712fb5f8fd2096332", + "5c0d190cd09282029f5390d8": { + "QuestName": "Grenadier", + "_id": "5c0d190cd09282029f5390d8", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67d03be712fb5f8fd2096332 acceptPlayerMessage", - "changeQuestMessageText": "67d03be712fb5f8fd2096332 changeQuestMessageText", - "completePlayerMessage": "67d03be712fb5f8fd2096332 completePlayerMessage", + "acceptPlayerMessage": "5c0d190cd09282029f5390d8 acceptPlayerMessage", + "changeQuestMessageText": "5c0d190cd09282029f5390d8 changeQuestMessageText", + "completePlayerMessage": "5c0d190cd09282029f5390d8 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "completeInSeconds": 0, "conditionType": "CounterCreator", "counter": { - "id": "67d03be712fb5f8fd2096335", + "id": "5c0d1961d0928202b25db5d0", "conditions": [ { - "id": "67a0e080230a2d6aeac29889", + "id": "5c0d1a47d09282029e2fffb7", "dynamicLocale": false, - "target": "Any", + "target": "AnyPmc", "compareMethod": ">=", "value": 1, + "weapon": [ + "5a2a57cfc4a2826c6e06d44a", + "5a0c27731526d80618476ac4", + "58d3db5386f77426186285a0", + "5e340dcdcb6d5863cc5e5efb", + "5e32f56fcb6d5863cc5e5ee4", + "5448be9a4bdc2dfd2f8b456a", + "5710c24ad2720bc3458b45a3", + "618a431df1eb8e24b8741deb", + "617fd91e5539a84ec44ce155", + "639c3fbbd0446708ee622ee9", + "639af924d0446708ee62294e", + "5648b62b4bdc2d9d488b4585", + "66dae7cbeb28f0f96809f325", + "67b49e7335dec48e3e05e057" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "5c1b760686f77412780211a3", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 8, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "5c1fab4186f77431f74f0de5", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 20, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5c0d190cd09282029f5390d8 description", + "failMessageText": "5c0d190cd09282029f5390d8 failMessageText", + "declinePlayerMessage": "5c0d190cd09282029f5390d8 declinePlayerMessage", + "name": "5c0d190cd09282029f5390d8 name", + "note": "5c0d190cd09282029f5390d8 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/5c1e35cf86f7743b6242fe05.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5c0d190cd09282029f5390d8 startedMessageText", + "successMessageText": "5c0d190cd09282029f5390d8 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18000, + "id": "60c8ad732238043a52678631", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60c8a1a79339363e8f0c6acf", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 75000, + "id": "60cb50e32b555f16df5c4103", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076040", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076040", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 75000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 10, + "id": "5c17c39386f77430a56d12a2", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076055", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076043", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076044", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076043", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076045", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076046", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076045", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076047", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076048", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076047", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076049", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507604a", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076049", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507604b", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507604c", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf7507604b", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507604d", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507604e", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf7507604d", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf7507604f", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076050", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf7507604f", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076051", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076052", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076051", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076053", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076054", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076053", + "slotId": "cartridges" + }, + { + "_id": "6812400c0c5cf2cf75076055", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076056", + "_tpl": "5cadf6eeae921500134b2799", + "upd": { + "StackObjectsCount": 10 + }, + "parentId": "6812400c0c5cf2cf75076055", + "slotId": "cartridges" + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "60cb50f33e4e974efa3452bd", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507605c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076058", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076059", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507605a", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507605b", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507605c", + "_tpl": "5710c24ad2720bc3458b45a3", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "64b6aaa525251516d768542b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076062", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507605e", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507605f", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076060", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076061", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076062", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "64b6aaaf58b5637e2d71a65d", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076068", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076064", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076065", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076066", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076067", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076068", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "64b6aab73e349c7dbd06bd1a", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507606b", + "unknown": true, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507606a", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507606b", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "64b6afe68faf110b68375e35", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf75076071", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf7507606d", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507606e", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf7507606f", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076070", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076071", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 10 + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "625d7005a4eb80027c4f2e09": { + "QuestName": "Knock-Knock", + "_id": "625d7005a4eb80027c4f2e09", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "625d7005a4eb80027c4f2e09 acceptPlayerMessage", + "changeQuestMessageText": "625d7005a4eb80027c4f2e09 changeQuestMessageText", + "completePlayerMessage": "625d7005a4eb80027c4f2e09 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ab617b87413d64ae0ac211", + "conditions": [ + { + "id": "63ab618d1287ef0b827d0c92", + "dynamicLocale": false, + "target": "meh_48_transponder_area_check_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63ab617b87413d64ae0ac210", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "62602c89a4eb80027c4f2e10", + "conditions": [ + { + "id": "62602c94f7308432be1d44cb", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "62602ca2c4874104f230c0cc", + "dynamicLocale": false, + "target": [ + "Lighthouse" + ], + "conditionType": "Location" + } + ] + }, + "id": "62602c89a4eb80027c4f2e0f", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Experience", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63ab61c7e842787ad2135717", + "target": "63ab617b87413d64ae0ac210", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6391e2d14b15ca31f76bc329", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "625d70031ed3bb5bcc5bd9e5", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "625d7005a4eb80027c4f2e09 description", + "failMessageText": "625d7005a4eb80027c4f2e09 failMessageText", + "declinePlayerMessage": "625d7005a4eb80027c4f2e09 declinePlayerMessage", + "name": "625d7005a4eb80027c4f2e09 name", + "note": "625d7005a4eb80027c4f2e09 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/61ab4381e4bbb01db226bce5.jpg", + "type": "Exploration", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "625d7005a4eb80027c4f2e09 startedMessageText", + "successMessageText": "625d7005a4eb80027c4f2e09 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "63a56cfb92070115fa195529", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076073", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076073", + "_tpl": "62e910aaf957f2915e0a5e36", + "upd": { + "StackObjectsCount": 1 + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 31300, + "id": "63a5d5b40aa9fb29da61b5eb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "63a5d56d08f1f305635502f2", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "639c6664ffadd8b53200331a", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": true + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "67f3ea581cd4c15d3d040305": { + "QuestName": "Fight Back", + "_id": "67f3ea581cd4c15d3d040305", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3ea581cd4c15d3d040305 acceptPlayerMessage", + "changeQuestMessageText": "67f3ea581cd4c15d3d040305 changeQuestMessageText", + "completePlayerMessage": "67f3ea581cd4c15d3d040305 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f3fa96b63a8f256698f5fb", + "conditions": [ + { + "id": "67f3faa8b8b89d7924aaeeb5", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, "weapon": [], "distance": { "value": 0, @@ -131391,16 +133841,16 @@ "conditionType": "Kills" }, { - "id": "67a0e08ada2ecce7a7ff8365", + "id": "67f3fac1ba188ec131ef5822", "dynamicLocale": false, "target": [ - "Labyrinth" + "Shoreline" ], "conditionType": "Location" } ] }, - "id": "67d03be712fb5f8fd2096334", + "id": "67f3fa9690fd1d33eadcbaee", "index": 0, "parentId": "", "oneSessionOnly": false, @@ -131408,760 +133858,229 @@ "type": "Elimination", "doNotResetIfCounterCompleted": false, "globalQuestCounterId": "", - "value": 36, + "value": 7, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f3fadc71c451aeb05d4826", + "conditions": [ + { + "id": "67f3fae803dfb63fe69eb5a7", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "67f3fafef24ae2e97d8396c5", + "dynamicLocale": false, + "target": [ + "bigmap" + ], + "conditionType": "Location" + } + ] + }, + "id": "67f3fadcf58627867b3de35f", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 7, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f3fb46d7a086c9507a405b", + "conditions": [ + { + "id": "67f3fb5022d881766662577d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "67f3fb6ceb47bc7a89047dd0", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "67f3fb467def2176367b6a3d", + "index": 2, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 7, "visibilityConditions": [], "isNecessary": false, "isResetOnConditionFailed": false } ], "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67a0e06bd0871d7e4b408898", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "67a0970744893b9f3f0d9b68", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67d03be712fb5f8fd2096332 description", - "failMessageText": "67d03be712fb5f8fd2096332 failMessageText", - "declinePlayerMessage": "67d03be712fb5f8fd2096332 declinePlayerMessage", - "name": "67d03be712fb5f8fd2096332 name", - "note": "67d03be712fb5f8fd2096332 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "6733700029c367a3d40b02af", - "image": "/files/quest/icon/67e3d483d1eb1b2e6b01cf5c.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67d03be712fb5f8fd2096332 startedMessageText", - "successMessageText": "67d03be712fb5f8fd2096332 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 20400, - "id": "67d03be712fb5f8fd2096336", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "67d03be712fb5f8fd2096337", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 208000, - "id": "67d03be712fb5f8fd2096338", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c7b", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c7b", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 208000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "67d03be712fb5f8fd2096339", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c7f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c7d", - "_tpl": "657089638db3adca1009f4ca", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c7e", - "_tpl": "657089638db3adca1009f4ca", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c7f", - "_tpl": "657089638db3adca1009f4ca", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67e16363063795835dc90505", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c81", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c81", - "_tpl": "679b944d597ba2ed120c3d3c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "60e71ccb5688f6424c7bfec4": { - "QuestName": "Trophies", - "_id": "60e71ccb5688f6424c7bfec4", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "60e71ccb5688f6424c7bfec4 acceptPlayerMessage", - "changeQuestMessageText": "60e71ccb5688f6424c7bfec4 changeQuestMessageText", - "completePlayerMessage": "60e71ccb5688f6424c7bfec4 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 50, - "id": "60e8174d0367e10a450f7818", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59f32bb586f774757e1e8442", - "6662e9cda7e0b43baa3d5f76", - "6662e9aca7e0b43baa3d5f74", - "675dc9d37ae1a8792107ca96", - "675dcb0545b1a2d108011b2b" - ], - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 50, - "id": "60e81795479eef59b01b0bdf", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "59f32c3b86f77472a31742f0", - "6662ea05f6259762c56f3189", - "6662e9f37fa79a6d83730fa0", - "6764207f2fa5e32733055c4a", - "6764202ae307804338014c1a" - ], - "globalQuestCounterId": "", - "value": 20, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "610148054a065318776a1e76", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "5d25e2cc86f77443e47ae019", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, { "conditionType": "Level", - "id": "6101480ee5b13723fc7609af", + "id": "67f7151ea859393bcc136217", "index": 0, "parentId": "", "dynamicLocale": false, "globalQuestCounterId": "", - "value": 55, + "value": 10, "compareMethod": ">=", "visibilityConditions": [] }, { "conditionType": "Quest", - "id": "63aac78c1b5c9574661f0549", - "index": 2, - "parentId": "", - "dynamicLocale": false, - "target": "5a27b75b86f7742e97191958", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "60e71ccb5688f6424c7bfec4 description", - "failMessageText": "60e71ccb5688f6424c7bfec4 failMessageText", - "declinePlayerMessage": "60e71ccb5688f6424c7bfec4 declinePlayerMessage", - "name": "60e71ccb5688f6424c7bfec4 name", - "note": "60e71ccb5688f6424c7bfec4 note", - "traderId": "5935c25fb3acc3127c3d8cd9", - "location": "any", - "image": "/files/quest/icon/60c373b71d348838124696ea.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "60e71ccb5688f6424c7bfec4 startedMessageText", - "successMessageText": "60e71ccb5688f6424c7bfec4 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 137000, - "id": "60f0374f5caf08029e0d6279", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4, - "id": "61029d8e60307362d01d8c86", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c86", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c83", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c84", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c85", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2c86", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "619d02cd4f859b7c35461376", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c88", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c88", - "_tpl": "619bdf9cc9546643a67df6f8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6102960637e8697a3e7a49e9", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c89", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c89", - "_tpl": "5e81ebcd8e146c7080625e15", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "68010065f81036801d0b2c8a", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "68010065f81036801d0b2c89", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "availableInGameEditions": [], - "value": 10, - "id": "6102961a9386cf6f25373c48", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c95", - "unknown": true, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2c8c", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c8d", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c8e", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c8f", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c90", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c91", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c92", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c93", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c94", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2c95", - "_tpl": "5f0c892565703e5c461894e9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "67a096ed77dd677f600804ba": { - "QuestName": "Sensory Analysis - Part 2", - "_id": "67a096ed77dd677f600804ba", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a096ed77dd677f600804ba acceptPlayerMessage", - "changeQuestMessageText": "67a096ed77dd677f600804ba changeQuestMessageText", - "completePlayerMessage": "67a096ed77dd677f600804ba completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "67a0da26a3b8d254347b8634", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5d1b376e86f774252519444e" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67dbde81b2fe05da39b24331", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "67a0967c003a9986cb0f5ac1", - "status": [ - 2 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67a096ed77dd677f600804ba description", - "failMessageText": "67a096ed77dd677f600804ba failMessageText", - "declinePlayerMessage": "67a096ed77dd677f600804ba declinePlayerMessage", - "name": "67a096ed77dd677f600804ba name", - "note": "67a096ed77dd677f600804ba note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "any", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a096ed77dd677f600804ba startedMessageText", - "successMessageText": "67a096ed77dd677f600804ba successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 6800, - "id": "67b3209e71488f4b980a459b", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "67b320aaa1e6c15672a4d524", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 32000, - "id": "67b320b4d7ed832523b86c4b", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2c97", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2c97", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 32000 - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "657315ddab5a49b71f098853": { - "QuestName": "First in Line", - "_id": "657315ddab5a49b71f098853", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "657315ddab5a49b71f098853 acceptPlayerMessage", - "changeQuestMessageText": "657315ddab5a49b71f098853 changeQuestMessageText", - "completePlayerMessage": "657315ddab5a49b71f098853 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "65732ac3630545751adfe039", - "conditions": [ - { - "id": "65732b10b0e230143c591102", - "dynamicLocale": false, - "target": "Sandbox_1_MedicalArea_exploration", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "65732ac3c67dcd96adffa3c7", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "65817bf31404f3565aef9fec", + "id": "67f715f9cae7e373f0527913", "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, "dynamicLocale": false, - "target": [ - "590c695186f7741e566b64a2", - "5751a89d24597722aa0e8db0", - "5af0548586f7743a532b7e99", - "544fb3f34bdc2d03748b456a", - "544fb37f4bdc2dee738b4567", - "5755383e24597772cb798966", - "590c657e86f77412b013051d", - "60098ad7c2240c0fe85c570a", - "590c661e86f7741e566b646a", - "590c678286f77426c9660122", - "5755356824597772cb798962", - "544fb45d4bdc2dee738b4568", - "5e99711486f7744bfc4af328", - "544fb25a4bdc2dfb738b4567", - "5751a25924597722c463c472", - "5d02778e86f774203e7dedbe", - "5af0454c86f7746bf20992e8", - "60098af40accd37ef2175f27", - "5e831507ea0a7c419c2f9bd9", - "5e8488fa988a8701445df1e4", - "5e99735686f7744bfc4af32c", - "544fb3364bdc2d34748b456a", - "5d02797c86f774203f38e30a", - "5ed515c8d380ab312177c0fa", - "5ed515f6915ec335206e4152", - "5c10c8fd86f7743d7d706df3", - "5ed515e03a40a50460332579", - "5ed51652f6c34d2cc26336a1", - "5ed5160a87bb8443d10680b5", - "5ed5166ad380ab312177c100", - "637b60c3b7afa97bfc3d7001", - "5ed515ece452db0eb56fc028", - "637b6179104668754b72f8f5", - "637b6251104668754b72f8f9", - "5c0e530286f7747fa1419862", - "637b612fb7afa97bfc3d7005", - "5c0e531286f7747fa54205c2", - "5c0e531d86f7747fa23f4d42", - "5fca13ca637ee0341a484f46", - "637b620db7afa97bfc3d7009", - "5c0e533786f7747fa23f4d47", - "5c0e534186f7747fa1419867", - "5fca138c2a7b221b2852a5c6", - "5c052e6986f7746b207bc3c9", - "5c0530ee86f774697952d952", - "666879d498b97e3a8f09f1ae", - "6389c6c7dbfd5e4b95197e68", - "5b4335ba86f7744d2837a264", - "5af0534a86f7743b6f354284", - "59e361e886f774176c10a2a5", - "59e3606886f77417674759a5", - "5d1b3a5d86f774252167ba22", - "5d1b3f2d86f774253763b735", - "62a0a043cf4a99369e2624a5", - "619cc01e0a7c3a1a2731940c", - "5a687e7886f7740c4a5133fb", - "66a0f0926fee20fa70036da6", - "669fac549b0ce3feae01a137" + "target": "5d24b81486f77439c92d6ba8", + "status": [ + 2, + 4, + 5 ], "globalQuestCounterId": "", - "value": 3, + "availableAfter": 0, + "dispersion": 0, "visibilityConditions": [] } ], - "AvailableForStart": [], "Fail": [] }, - "description": "657315ddab5a49b71f098853 description", - "failMessageText": "657315ddab5a49b71f098853 failMessageText", - "declinePlayerMessage": "657315ddab5a49b71f098853 declinePlayerMessage", - "name": "657315ddab5a49b71f098853 name", - "note": "657315ddab5a49b71f098853 note", - "traderId": "54cb57776803fa99248b456e", - "location": "653e6760052c01c1c805532f", - "image": "/files/quest/icon/658992cd1af57867a167fc13.jpg", - "type": "PickUp", + "description": "67f3ea581cd4c15d3d040305 description", + "failMessageText": "67f3ea581cd4c15d3d040305 failMessageText", + "declinePlayerMessage": "67f3ea581cd4c15d3d040305 declinePlayerMessage", + "name": "67f3ea581cd4c15d3d040305 name", + "note": "67f3ea581cd4c15d3d040305 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5d66701986f7744a2e70f025.jpg", + "type": "Elimination", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "657315ddab5a49b71f098853 startedMessageText", - "successMessageText": "657315ddab5a49b71f098853 successMessageText", + "startedMessageText": "67f3ea581cd4c15d3d040305 startedMessageText", + "successMessageText": "67f3ea581cd4c15d3d040305 successMessageText", "rewards": { "Started": [], "Success": [ { "availableInGameEditions": [], - "value": 1200, - "id": "65846ca13eed2c22a516d5c4", + "value": 7200, + "id": "67f629dab41ff798cb1219a1", "type": "Experience", "index": 0, "unknown": false }, { "availableInGameEditions": [], - "value": 0.01, - "id": "65846cc73eed2c22a516d5c5", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 6400, - "id": "65846cb74d559e355f61a704", + "value": 62000, + "id": "67f629ea754b14611afad02e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c99", + "target": "6812400c0c5cf2cf75076075", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2c99", + "_id": "6812400c0c5cf2cf75076075", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { - "StackObjectsCount": 6400 + "StackObjectsCount": 62000 } } ] }, { "availableInGameEditions": [], - "value": 1, - "id": "65846cfd4f381a0ad975a85d", + "value": 0.02, + "id": "67f629f7ca8be2d3df8aba7b", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "67f62a188feb6c6ab85a56e4", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c9b", + "target": "6812400c0c5cf2cf75076078", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c9b", - "_tpl": "574eb85c245977648157eec3", + "_id": "6812400c0c5cf2cf75076077", + "_tpl": "676175789dcee773150c6925", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf75076078", + "_tpl": "676175789dcee773150c6925", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -132172,24 +134091,24 @@ { "availableInGameEditions": [], "value": 2, - "id": "65846d0c1e25c52cb72f807e", + "id": "67f62a2a62c2f269e0bf8de2", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2c9e", + "target": "6812400c0c5cf2cf7507607b", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2c9d", - "_tpl": "5448fee04bdc2dbc018b4567", + "_id": "6812400c0c5cf2cf7507607a", + "_tpl": "6761759e7ee06333f108bf86", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true } }, { - "_id": "68010065f81036801d0b2c9e", - "_tpl": "5448fee04bdc2dbc018b4567", + "_id": "6812400c0c5cf2cf7507607b", + "_tpl": "6761759e7ee06333f108bf86", "upd": { "StackObjectsCount": 1, "SpawnedInSession": true @@ -132208,20 +134127,20 @@ "arenaLocations": [], "status": 0 }, - "67a0966817e34930e500754c": { - "QuestName": "Forced Alliance", - "_id": "67a0966817e34930e500754c", + "625d700cc48e6c62a440fab5": { + "QuestName": "Getting Acquainted", + "_id": "625d700cc48e6c62a440fab5", "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a0966817e34930e500754c acceptPlayerMessage", - "changeQuestMessageText": "67a0966817e34930e500754c changeQuestMessageText", - "completePlayerMessage": "67a0966817e34930e500754c completePlayerMessage", + "acceptPlayerMessage": "625d700cc48e6c62a440fab5 acceptPlayerMessage", + "changeQuestMessageText": "625d700cc48e6c62a440fab5 changeQuestMessageText", + "completePlayerMessage": "625d700cc48e6c62a440fab5 completePlayerMessage", "conditions": { "AvailableForFinish": [ { "conditionType": "FindItem", "dogtagLevel": 0, - "id": "67e41d4e9f783e8f4b234a1b", - "index": 1, + "id": "6391e2f9e705511c8a4a1b85", + "index": 0, "maxDurability": 100.0, "minDurability": 0.0, "parentId": "", @@ -132229,7 +134148,7 @@ "onlyFoundInRaid": false, "dynamicLocale": false, "target": [ - "679b9819a2f2dd4da9023512" + "6331bb0d1aa9f42b804997a6" ], "countInRaid": false, "globalQuestCounterId": "", @@ -132237,12 +134156,97 @@ "visibilityConditions": [] }, { - "conditionType": "Quest", - "id": "67a0d8f2db972857cd90d9c0", - "index": 2, - "parentId": "67e41d4e9f783e8f4b234a1b", + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6391e31bfa894f0a866afdec", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": true, + "onlyFoundInRaid": false, "dynamicLocale": false, - "target": "67a09673972c11a3f507731d", + "target": [ + "62e910aaf957f2915e0a5e36" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6391e3c686e646067c176a93", + "target": "6391e2f9e705511c8a4a1b85", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6391e329c115f907b14700b1", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "6331bb0d1aa9f42b804997a6" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "6391e3ceee79ee703e3012e9", + "target": "6391e31bfa894f0a866afdec", + "conditionType": "CompleteCondition" + } + ] + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "63ab727b1287ef0b827d0c96", + "conditions": [ + { + "id": "63ab7284972364554162a236", + "dynamicLocale": false, + "target": "meh_50_visit_area_check_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "id": "63ab727b1287ef0b827d0c95", + "index": 4, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Exploration", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "63ab72bde842787ad213571e", + "target": "6391e329c115f907b14700b1", + "conditionType": "CompleteCondition" + } + ], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6391e2ea744e45201147080e", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "625d7005a4eb80027c4f2e09", "status": [ 4 ], @@ -132252,101 +134256,89 @@ "visibilityConditions": [] } ], - "AvailableForStart": [ + "Fail": [ { - "conditionType": "Quest", - "id": "67e6775eae39849f357ba6e9", + "conditionType": "TraderStanding", + "id": "639c6674eb92d6238e058dea", "index": 0, "parentId": "", "dynamicLocale": false, - "target": "67a096577e86e067eb045733", - "status": [ - 4 - ], + "target": "638f541a29ffd1183d187f57", "globalQuestCounterId": "", - "availableAfter": 5400, - "dispersion": 0, + "value": 0, + "compareMethod": "<=", "visibilityConditions": [] } - ], - "Fail": [] + ] }, - "description": "67a0966817e34930e500754c description", - "failMessageText": "67a0966817e34930e500754c failMessageText", - "declinePlayerMessage": "67a0966817e34930e500754c declinePlayerMessage", - "name": "67a0966817e34930e500754c name", - "note": "67a0966817e34930e500754c note", + "description": "625d700cc48e6c62a440fab5 description", + "failMessageText": "625d700cc48e6c62a440fab5 failMessageText", + "declinePlayerMessage": "625d700cc48e6c62a440fab5 declinePlayerMessage", + "name": "625d700cc48e6c62a440fab5 name", + "note": "625d700cc48e6c62a440fab5 note", "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "Completion", + "location": "5704e4dad2720bb55b8b4567", + "image": "/files/quest/icon/63ab130a160cc610ba035e08.jpg", + "type": "Exploration", "isKey": false, "restartable": false, "instantComplete": false, "secretQuest": false, - "startedMessageText": "67a0966817e34930e500754c startedMessageText", - "successMessageText": "67a0966817e34930e500754c successMessageText", + "startedMessageText": "625d700cc48e6c62a440fab5 startedMessageText", + "successMessageText": "625d700cc48e6c62a440fab5 successMessageText", "rewards": { - "Started": [], + "Started": [ + { + "availableInGameEditions": [], + "id": "6399f098dbf1d842d260ccc1", + "type": "ProductionScheme", + "index": 0, + "target": "6812400c0c5cf2cf7507607d", + "unknown": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507607d", + "_tpl": "62e910aaf957f2915e0a5e36", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ], + "loyaltyLevel": 2, + "traderId": 11 + } + ], "Success": [ { "availableInGameEditions": [], - "value": 0.01, - "id": "67b31a83ca4258b62440b7e6", - "type": "TraderStanding", + "value": 32000, + "id": "63a5d5c60530a47cb931854e", + "type": "Experience", "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", "unknown": false }, { "availableInGameEditions": [], - "value": 36000, - "id": "67b31a9253b12c1f58876a99", - "type": "Item", + "value": 0.01, + "id": "63a5d5ce4610fa47416d8f00", + "type": "TraderStanding", "index": 0, - "target": "68010065f81036801d0b2ca0", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ca0", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 36000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "67b31a9f04f16c951c45a7e2", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ca3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ca2", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2ca3", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false } ], - "Fail": [] + "Fail": [ + { + "availableInGameEditions": [], + "value": -0.1, + "id": "63a6c60b0aa9fb29da61c11c", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + } + ] }, "side": "Pmc", "acceptanceAndFinishingSource": "eft", @@ -132492,12 +134484,12 @@ "id": "60cc74fd77dc197c774254be", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2ca5", + "target": "6812400c0c5cf2cf7507607f", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2ca5", + "_id": "6812400c0c5cf2cf7507607f", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 30000 @@ -132531,913 +134523,6 @@ "arenaLocations": [], "status": 0 }, - "67a09761e720611a6a01f288": { - "QuestName": "Keepers Word", - "_id": "67a09761e720611a6a01f288", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a09761e720611a6a01f288 acceptPlayerMessage", - "changeQuestMessageText": "67a09761e720611a6a01f288 changeQuestMessageText", - "completePlayerMessage": "67a09761e720611a6a01f288 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "67a0e4df8cddbe2df31dd1d9", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "event_labyrinth_11_lightkeep_place_01", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "67a0e4e399e34c9ffcdc6e00", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "event_labyrinth_11_lightkeep_place_02", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "67a0e4e64cb065811d95c6d9", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 30, - "zoneId": "event_labyrinth_11_lightkeep_place_03 ", - "target": [ - "5fc64ea372b0dd78d51159dc" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [], - "Fail": [] - }, - "description": "67a09761e720611a6a01f288 description", - "failMessageText": "67a09761e720611a6a01f288 failMessageText", - "declinePlayerMessage": "67a09761e720611a6a01f288 declinePlayerMessage", - "name": "67a09761e720611a6a01f288 name", - "note": "67a09761e720611a6a01f288 note", - "traderId": "638f541a29ffd1183d187f57", - "location": "6733700029c367a3d40b02af", - "image": "/files/quest/icon/67e3d4858d33d5706d0c2adb.jpg", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a09761e720611a6a01f288 startedMessageText", - "successMessageText": "67a09761e720611a6a01f288 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 56800, - "id": "67b341c6ac24e74aac6f75bb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "67b341da02fc3be54b295022", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4200, - "id": "67b34299ad1c884fee9bb863", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ca7", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2ca7", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 4200 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67b342a7d81d1feb8c5e133d", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2ca9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2ca9", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67b342b2e48ded9b1595b937", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cab", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2cab", - "_tpl": "5d235bb686f77443f4331278", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67b342bf13eae7f0e6bb07ed", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cad", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2cad", - "_tpl": "64d0b40fbe2eed70e254e2d4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "id": "67b342cba4941420abc9ce19", - "type": "Achievement", - "index": 0, - "target": "67a0e57b972c11a3f50773b2", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "67a09636b8725511260bc421": { - "QuestName": "Shady Contractor", - "_id": "67a09636b8725511260bc421", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a09636b8725511260bc421 acceptPlayerMessage", - "changeQuestMessageText": "67a09636b8725511260bc421 changeQuestMessageText", - "completePlayerMessage": "67a09636b8725511260bc421 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67a0a91f88a48e8281ef39b8", - "conditions": [ - { - "id": "67a0a9542780b548f7729140", - "dynamicLocale": false, - "target": "event_labyrinth_01_mech_place_01", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "id": "67a0a91f4681b4e43d13892b", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Exploration", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "67a0ab610345d81cb3cbb24c", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "679b9a1a4e4ed4b3b40ae5c2" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "67a0abdb84778b0ba09d11ee", - "target": "67a0a91f4681b4e43d13892b", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "67a0ab83359e2d00cf9d6b06", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "679b9a1a4e4ed4b3b40ae5c2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "67a0abe28ac4005b13e6dcc6", - "target": "67a0ab610345d81cb3cbb24c", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67e5266545508fec55b52927", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "657315e4a6af4ab4b50f3459", - "status": [ - 2, - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67a09636b8725511260bc421 description", - "failMessageText": "67a09636b8725511260bc421 failMessageText", - "declinePlayerMessage": "67a09636b8725511260bc421 declinePlayerMessage", - "name": "67a09636b8725511260bc421 name", - "note": "67a09636b8725511260bc421 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "653e6760052c01c1c805532f", - "image": "/files/quest/icon/67e407aabbf507ac3b068a52.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a09636b8725511260bc421 startedMessageText", - "successMessageText": "67a09636b8725511260bc421 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 10600, - "id": "67b3198a4a2b22e59a8c97fe", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "67b31999ceec0682bd487c12", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 52000, - "id": "67b319a5844db8a36bb01dce", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2caf", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2caf", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 52000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "67b319adae09ca905bafc6a3", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cb3", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2cb1", - "_tpl": "619cbf476b8a1b37a54eebf8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2cb2", - "_tpl": "619cbf476b8a1b37a54eebf8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "68010065f81036801d0b2cb3", - "_tpl": "619cbf476b8a1b37a54eebf8", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "67a097379f2068e74603c6ac": { - "QuestName": "Indisputable Authority", - "_id": "67a097379f2068e74603c6ac", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "67a097379f2068e74603c6ac acceptPlayerMessage", - "changeQuestMessageText": "67a097379f2068e74603c6ac changeQuestMessageText", - "completePlayerMessage": "67a097379f2068e74603c6ac completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67a0df616b395d94db83a0cb", - "conditions": [ - { - "id": "67a0df736f8975b42cbf1e73", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossTagillaAgro" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "67a0df619fb6c42b9a08e8e9", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - }, - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "67a0df7f2c4bfbb5846cee64", - "conditions": [ - { - "id": "67a0df8af1b7133ed0b46565", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "tagillaHelperAgro", - "bossKillaAgro" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "id": "67a0df7f2cd4d4413cd29b45", - "index": 1, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 6, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "67a0dfad782f69d0ec849998", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "67a0970744893b9f3f0d9b68", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "67a097379f2068e74603c6ac description", - "failMessageText": "67a097379f2068e74603c6ac failMessageText", - "declinePlayerMessage": "67a097379f2068e74603c6ac declinePlayerMessage", - "name": "67a097379f2068e74603c6ac name", - "note": "67a097379f2068e74603c6ac note", - "traderId": "58330581ace78e27b8b10cee", - "location": "6733700029c367a3d40b02af", - "image": "/files/quest/icon/67e3d47fab7770f72902761d.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "67a097379f2068e74603c6ac startedMessageText", - "successMessageText": "67a097379f2068e74603c6ac successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 25500, - "id": "67b33541daca85d607809d70", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "67b3354a2d64f3d0748f57f1", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 2900, - "id": "67b3355491a492e9943138a4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cb5", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2cb5", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 2900 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 8, - "id": "67b3356be84b860a9fa57b1a", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cc6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2cb8", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cb9", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cb8", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cba", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cbb", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cba", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cbc", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cbd", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cbc", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cbe", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cbf", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cbe", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cc0", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cc1", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cc0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cc2", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cc3", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cc2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cc4", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cc5", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cc4", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cc6", - "_tpl": "6489851fc827d4637f01791b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cc7", - "_tpl": "601aa3d2b2bcb34913271e6d", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cc6", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 8, - "id": "67e6890d3de77d61cdca8512", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cd8", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "68010065f81036801d0b2cca", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2ccb", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cca", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2ccc", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2ccd", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2ccc", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cce", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2ccf", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cce", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cd0", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cd1", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cd0", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cd2", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cd3", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cd2", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cd4", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cd5", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cd4", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cd6", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cd7", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cd6", - "slotId": "cartridges" - }, - { - "_id": "68010065f81036801d0b2cd8", - "_tpl": "64acea16c4eda9354b0226b0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "68010065f81036801d0b2cd9", - "_tpl": "59e0d99486f7744a32234762", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "68010065f81036801d0b2cd8", - "slotId": "cartridges" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67e163805e8a946a5dfd55d4", - "type": "Item", - "index": 0, - "target": "68010065f81036801d0b2cdb", - "unknown": true, - "findInRaid": true, - "items": [ - { - "_id": "68010065f81036801d0b2cdb", - "_tpl": "679b9477708cfcb2060b9ade", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "66ab9da7eb102b9bcd08591c": { "QuestName": "Foresters Duty", "_id": "66ab9da7eb102b9bcd08591c", @@ -133655,12 +134740,12 @@ "id": "66b4e28a03449f31fe0b8160", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2cdd", + "target": "6812400c0c5cf2cf75076081", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2cdd", + "_id": "6812400c0c5cf2cf75076081", "_tpl": "5449016a4bdc2d6f028b456f", "upd": { "StackObjectsCount": 105000 @@ -133674,12 +134759,12 @@ "id": "66bb21d4fca8044f6200d11e", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2cde", + "target": "6812400c0c5cf2cf75076082", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2cde", + "_id": "6812400c0c5cf2cf75076082", "_tpl": "669fa39b48fc9f8db6035a0c", "upd": { "StackObjectsCount": 1, @@ -133690,39 +134775,39 @@ } }, { - "_id": "68010065f81036801d0b2cdf", + "_id": "6812400c0c5cf2cf75076083", "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "68010065f81036801d0b2cde", + "parentId": "6812400c0c5cf2cf75076082", "slotId": "mod_barrel" }, { - "_id": "68010065f81036801d0b2ce0", + "_id": "6812400c0c5cf2cf75076084", "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "68010065f81036801d0b2cdf", + "parentId": "6812400c0c5cf2cf75076083", "slotId": "mod_sight_front" }, { - "_id": "68010065f81036801d0b2ce1", + "_id": "6812400c0c5cf2cf75076085", "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "68010065f81036801d0b2cde", + "parentId": "6812400c0c5cf2cf75076082", "slotId": "mod_pistolgrip" }, { - "_id": "68010065f81036801d0b2ce2", + "_id": "6812400c0c5cf2cf75076086", "_tpl": "669fa4d97a09bc295603b496", - "parentId": "68010065f81036801d0b2cde", + "parentId": "6812400c0c5cf2cf75076082", "slotId": "mod_reciever" }, { - "_id": "68010065f81036801d0b2ce3", + "_id": "6812400c0c5cf2cf75076087", "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "68010065f81036801d0b2ce2", + "parentId": "6812400c0c5cf2cf75076086", "slotId": "mod_sight_rear" }, { - "_id": "68010065f81036801d0b2ce4", + "_id": "6812400c0c5cf2cf75076088", "_tpl": "668fe5c5f35310705d02b696", - "parentId": "68010065f81036801d0b2cde", + "parentId": "6812400c0c5cf2cf75076082", "slotId": "mod_magazine" } ] @@ -133733,12 +134818,12 @@ "id": "66bb222791cb9e49ae069d75", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2ce8", + "target": "6812400c0c5cf2cf7507608c", "unknown": false, "findInRaid": true, "items": [ { - "_id": "68010065f81036801d0b2ce6", + "_id": "6812400c0c5cf2cf7507608a", "_tpl": "668fe5c5f35310705d02b696", "upd": { "StackObjectsCount": 1, @@ -133746,7 +134831,7 @@ } }, { - "_id": "68010065f81036801d0b2ce7", + "_id": "6812400c0c5cf2cf7507608b", "_tpl": "668fe5c5f35310705d02b696", "upd": { "StackObjectsCount": 1, @@ -133754,7 +134839,7 @@ } }, { - "_id": "68010065f81036801d0b2ce8", + "_id": "6812400c0c5cf2cf7507608c", "_tpl": "668fe5c5f35310705d02b696", "upd": { "StackObjectsCount": 1, @@ -133769,12 +134854,12 @@ "id": "66bb21f6f0887c0f9d045f1a", "type": "Item", "index": 0, - "target": "68010065f81036801d0b2cea", + "target": "6812400c0c5cf2cf7507608e", "unknown": false, "findInRaid": false, "items": [ { - "_id": "68010065f81036801d0b2cea", + "_id": "6812400c0c5cf2cf7507608e", "_tpl": "66a0d1f88486c69fce00fdf6", "upd": { "StackObjectsCount": 30 @@ -133793,6 +134878,5312 @@ "arenaLocations": [], "status": 0 }, + "67f3eab9a33cd296b20ee695": { + "QuestName": "Staff Shortage", + "_id": "67f3eab9a33cd296b20ee695", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "67f3eab9a33cd296b20ee695 acceptPlayerMessage", + "changeQuestMessageText": "67f3eab9a33cd296b20ee695 changeQuestMessageText", + "completePlayerMessage": "67f3eab9a33cd296b20ee695 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f71386270642ea57083251", + "conditions": [ + { + "id": "67f713e5a5e01d8467a326d3", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossPartisan" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67f71386222d15f53e5be7ee", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + }, + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "67f7142fdb633b0e6220c0f5", + "conditions": [ + { + "id": "67f71452ff69ab8948805b82", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "67f7142fa9a0ae3401ddb94c", + "index": 1, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "67f7167da5c3b5d0e4270d63", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3eaa3a7799274d50a8b66", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 120, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "67ff6f69ecdc4dc2ab1fcc1b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "67f3eacef649e7bceb0bb455", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "67f3eab9a33cd296b20ee695 description", + "failMessageText": "67f3eab9a33cd296b20ee695 failMessageText", + "declinePlayerMessage": "67f3eab9a33cd296b20ee695 declinePlayerMessage", + "name": "67f3eab9a33cd296b20ee695 name", + "note": "67f3eab9a33cd296b20ee695 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/5979e80986f77437584fb8b2.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "67f3eab9a33cd296b20ee695 startedMessageText", + "successMessageText": "67f3eab9a33cd296b20ee695 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 16300, + "id": "67f63311fd2cf1205e230590", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.05, + "id": "67f63325324c3dffc4e5d408", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 150000, + "id": "67f633489a894526d741a607", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076090", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf75076090", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 150000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67f63366db02abe567e60fbf", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf75076091", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076091", + "_tpl": "6275303a9f372d6ea97f9ec7", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6812400c0c5cf2cf75076092", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6812400c0c5cf2cf75076091", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6812400c0c5cf2cf75076093", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6812400c0c5cf2cf75076091", + "slotId": "mod_stock" + }, + { + "_id": "6812400c0c5cf2cf75076094", + "_tpl": "627bce33f21bc425b06ab967", + "parentId": "6812400c0c5cf2cf75076091", + "slotId": "mod_magazine" + }, + { + "_id": "6812400c0c5cf2cf75076095", + "_tpl": "6284bd5f95250a29bc628a30", + "parentId": "6812400c0c5cf2cf75076091", + "slotId": "mod_scope" + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "67f6337d94d1e2fbd821936b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf7507609c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf75076097", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75076098", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf75076099", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507609a", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507609b", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507609c", + "_tpl": "5ede475b549eed7c6d5c18fb", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "67f63387bc95da0655424fff", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760a3", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf7507609e", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf7507609f", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a0", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a1", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a2", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a3", + "_tpl": "5ede4739e0350d05467f73e8", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 6, + "id": "67f633949fd331db04d3b439", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760aa", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750760a5", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a6", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a7", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a8", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760a9", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760aa", + "_tpl": "5f0c892565703e5c461894e9", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 12, + "id": "67f633a169c9f446aadaeeaa", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760b7", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750760ac", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760ad", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760ae", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760af", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b0", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b1", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b2", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b3", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b4", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b5", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b6", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "6812400c0c5cf2cf750760b7", + "_tpl": "5ede475339ee016e8c534742", + "upd": { + "StackObjectsCount": 1 + } + } + ] + } + ], + "Fail": [ + { + "availableInGameEditions": [], + "value": -0.05, + "id": "67f633372cee0a89c29b922e", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + } + ] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5ae4496986f774459e77beb6": { + "QuestName": "Sew it Good - Part 3", + "_id": "5ae4496986f774459e77beb6", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5ae4496986f774459e77beb6 acceptPlayerMessage", + "changeQuestMessageText": "5ae4496986f774459e77beb6 changeQuestMessageText", + "completePlayerMessage": "5ae4496986f774459e77beb6 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9bc6e86f7746e0026222c", + "index": 1, + "maxDurability": 75.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "545cdb794bdc2d3a198b456a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "5ae9bea886f77468ab400e64", + "index": 3, + "maxDurability": 100.0, + "minDurability": 75.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "545cdb794bdc2d3a198b456a" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5af4166d86f7745b5e2aca96", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5ae4495c86f7744e87761355", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5ae4496986f774459e77beb6 description", + "failMessageText": "5ae4496986f774459e77beb6 failMessageText", + "declinePlayerMessage": "5ae4496986f774459e77beb6 declinePlayerMessage", + "name": "5ae4496986f774459e77beb6 name", + "note": "5ae4496986f774459e77beb6 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "any", + "image": "/files/quest/icon/5ae4a7d986f7743fee0a75b2.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5ae4496986f774459e77beb6 startedMessageText", + "successMessageText": "5ae4496986f774459e77beb6 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 18200, + "id": "60cc8475f09d61072d6d0122", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "60cc847b65e4664318606b56", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 65000, + "id": "5ae9bede86f77415a869b41b", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760b9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750760b9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 65000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "60cc8489af2e5506c37822dd", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760c8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750760c8", + "_tpl": "5ca21c6986f77479963115a7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "6812400c0c5cf2cf750760c9", + "_tpl": "6575d9a79e27f4a85e08112d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6812400c0c5cf2cf750760ca", + "_tpl": "6575d9b8945bf78edd04c427", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6812400c0c5cf2cf750760cb", + "_tpl": "6575d9c40546f8b1de093dee", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Soft_armor_left" + }, + { + "_id": "6812400c0c5cf2cf750760cc", + "_tpl": "6575d9cf0546f8b1de093df2", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "soft_armor_right" + }, + { + "_id": "6812400c0c5cf2cf750760cd", + "_tpl": "6575d9d8945bf78edd04c42b", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Collar" + }, + { + "_id": "6812400c0c5cf2cf750760ce", + "_tpl": "6575da07945bf78edd04c433", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Shoulder_l" + }, + { + "_id": "6812400c0c5cf2cf750760cf", + "_tpl": "6575da159e27f4a85e081131", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Shoulder_r" + }, + { + "_id": "6812400c0c5cf2cf750760d0", + "_tpl": "6575d9e7945bf78edd04c42f", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Groin" + }, + { + "_id": "6812400c0c5cf2cf750760d1", + "_tpl": "6575d9f816c2762fba00588d", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Groin_back" + }, + { + "_id": "6812400c0c5cf2cf750760d2", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Front_plate" + }, + { + "_id": "6812400c0c5cf2cf750760d3", + "_tpl": "65573fa5655447403702a816", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Back_plate" + }, + { + "_id": "6812400c0c5cf2cf750760d4", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Left_side_plate" + }, + { + "_id": "6812400c0c5cf2cf750760d5", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "6812400c0c5cf2cf750760c8", + "slotId": "Right_side_plate" + } + ] + }, + { + "availableInGameEditions": [], + "id": "655b9629065b076eb02c4b51", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750760d6", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750760d6", + "_tpl": "5df8a4d786f77412672a1e3b" + } + ], + "loyaltyLevel": 4, + "traderId": "54cb50c76803fa8b248b4571" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "5bc480a686f7741af0342e29": { + "QuestName": "The Tarkov Shooter - Part 4", + "_id": "5bc480a686f7741af0342e29", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "5bc480a686f7741af0342e29 acceptPlayerMessage", + "changeQuestMessageText": "5bc480a686f7741af0342e29 changeQuestMessageText", + "completePlayerMessage": "5bc480a686f7741af0342e29 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "657b0567d69311af78c0633f", + "conditions": [ + { + "id": "657b05bb940c84649607760a", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "627e14b21713922ded6f2c15", + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "61f7c9e189e6fb1a5e3ea78d", + "673cab3e03c6a20581028bc1" + ], + "distance": { + "value": 80, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "657b0567ec71635f16471dd2", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 5, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "5bdabf3386f7743e171249ae", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "5bc47dbf86f7741ee74e93b9", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "5bc480a686f7741af0342e29 description", + "failMessageText": "5bc480a686f7741af0342e29 failMessageText", + "declinePlayerMessage": "5bc480a686f7741af0342e29 declinePlayerMessage", + "name": "5bc480a686f7741af0342e29 name", + "note": "5bc480a686f7741af0342e29 note", + "traderId": "5c0647fdd443bc2504c2d371", + "location": "any", + "image": "/files/quest/icon/5bc481ec86f7740c8649a4f1.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "5bc480a686f7741af0342e29 startedMessageText", + "successMessageText": "5bc480a686f7741af0342e29 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 11800, + "id": "60cc9c26826ca0323464bd10", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "60cc9c6e98b4927060364606", + "type": "TraderStanding", + "index": 0, + "target": "5c0647fdd443bc2504c2d371", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 80000, + "id": "60cc9c6a826ca0323464bd11", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760d8", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750760d8", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 80000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5bcf2b8f86f774722d789e55", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760da", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750760da", + "_tpl": "5bbdb811d4351e45020113c7", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "5bcf2ba086f774723055e995", + "type": "Item", + "index": 0, + "target": "6812400c0c5cf2cf750760dc", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "6812400c0c5cf2cf750760dc", + "_tpl": "5bbde41ed4351e003562b038", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "id": "5bcf233486f7746a486b84c4", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750760dd", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750760dd", + "_tpl": "5bbdb811d4351e45020113c7" + } + ], + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + }, + { + "availableInGameEditions": [], + "id": "5bcf235486f7746a45695afc", + "type": "AssortmentUnlock", + "index": 0, + "target": "6812400c0c5cf2cf750760de", + "unknown": false, + "items": [ + { + "_id": "6812400c0c5cf2cf750760de", + "_tpl": "5bbde41ed4351e003562b038" + } + ], + "loyaltyLevel": 2, + "traderId": "5c0647fdd443bc2504c2d371" + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6745fdddd3346c216702e0bf": { + "QuestName": "Simple Side Job", + "_id": "6745fdddd3346c216702e0bf", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6745fdddd3346c216702e0bf acceptPlayerMessage", + "changeQuestMessageText": "6745fdddd3346c216702e0bf changeQuestMessageText", + "completePlayerMessage": "6745fdddd3346c216702e0bf completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6745fe81eae30b9fb3bb6166", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "67499b3eeca8acb2d2061636" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6745fe8d48cd7aeda7152b24", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Case_rpg_keeper", + "target": [ + "67499b3eeca8acb2d2061636" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6745fdddd3346c216702e0c1", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6745fcded0fbbc74ca0f721d", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "6745fecc83f34043ac778711", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6744ab1def61d56e020b5c56", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "6745fdddd3346c216702e0bf description", + "failMessageText": "6745fdddd3346c216702e0bf failMessageText", + "declinePlayerMessage": "6745fdddd3346c216702e0bf declinePlayerMessage", + "name": "6745fdddd3346c216702e0bf name", + "note": "6745fdddd3346c216702e0bf note", + "traderId": "638f541a29ffd1183d187f57", + "location": "any", + "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6745fdddd3346c216702e0bf startedMessageText", + "successMessageText": "6745fdddd3346c216702e0bf successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 56700, + "id": "675824cd60700996ce71bedc", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 4000, + "id": "6758250d14b1071a8e506cbc", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e9340", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0e9340", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 4000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "675825181c6f0ba3fd56ca93", + "type": "TraderStanding", + "index": 0, + "target": "638f541a29ffd1183d187f57", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67582525fe76dc26db4efebc", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e9342", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0e9342", + "_tpl": "5c052f6886f7746b1e3db148", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758252fc7df548ca2b7d292", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e9344", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0e9344", + "_tpl": "5c052fb986f7746b2101e909", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6758253933acd78c17e20b87", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e9346", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0e9346", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "6745fcded0fbbc74ca0f721d": { + "QuestName": "Swift Retribution", + "_id": "6745fcded0fbbc74ca0f721d", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "6745fcded0fbbc74ca0f721d acceptPlayerMessage", + "changeQuestMessageText": "6745fcded0fbbc74ca0f721d changeQuestMessageText", + "completePlayerMessage": "6745fcded0fbbc74ca0f721d completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6745fd2eba1b93510aef0efb", + "conditions": [ + { + "id": "6745fd3b4da9d681d9baed7d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "6745fd4181696237e9676a88", + "dynamicLocale": false, + "target": [ + "Woods" + ], + "conditionType": "Location" + } + ] + }, + "id": "6745fd2e3d6070c3563039a9", + "index": 3, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "6745fcded0fbbc74ca0f721f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "673f4e956f1b89c7bc0f56ef", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 15, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "6745fcded0fbbc74ca0f721d description", + "failMessageText": "6745fcded0fbbc74ca0f721d failMessageText", + "declinePlayerMessage": "6745fcded0fbbc74ca0f721d declinePlayerMessage", + "name": "6745fcded0fbbc74ca0f721d name", + "note": "6745fcded0fbbc74ca0f721d note", + "traderId": "656f0f98d80a697f855d34b1", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "6745fcded0fbbc74ca0f721d startedMessageText", + "successMessageText": "6745fcded0fbbc74ca0f721d successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 16000, + "id": "6758249d4157e37983d433eb", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 85000, + "id": "675824aca696bb6cc11e3e5f", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e9649", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0e9649", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 85000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "675824b756ab3525e2c017dc", + "type": "TraderStanding", + "index": 0, + "target": "656f0f98d80a697f855d34b1", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "6761adca81a5791eb067dd89", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0e964b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0e964b", + "_tpl": "6761a6ccd9bbb27ad703c48a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "59c9392986f7742f6923add2": { + "QuestName": "Trust Regain", + "_id": "59c9392986f7742f6923add2", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "59c9392986f7742f6923add2 acceptPlayerMessage", + "changeQuestMessageText": "59c9392986f7742f6923add2 changeQuestMessageText", + "completePlayerMessage": "59c9392986f7742f6923add2 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "59c93bdb86f7742a19140434", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "593aa4be86f77457f56379f8" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "59c93c1986f7742a424eaa33", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "591afe0186f77431bd616a11" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "59c93cbb86f7742a19140435", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5913915886f774123603c392" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "59c93cea86f7742a08623162", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5913877a86f774432f15d444" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59c93d4e86f774496b698953", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "593aa4be86f77457f56379f8" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a5777f086f7740adb5caac7", + "target": "59c93bdb86f7742a19140434", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59c93d8086f7742a19140436", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "591afe0186f77431bd616a11" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a5777f786f7740ad83ccf69", + "target": "59c93c1986f7742a424eaa33", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59c93d9c86f7742f6923add3", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5913915886f774123603c392" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57780486f7740adc2f7e45", + "target": "59c93cbb86f7742a19140435", + "conditionType": "CompleteCondition" + } + ] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "59c93dbf86f7742a424eaa34", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "5913877a86f774432f15d444" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [ + { + "id": "5a57780c86f7741cc1242073", + "target": "59c93cea86f7742a08623162", + "conditionType": "CompleteCondition" + } + ] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "59c93a6a86f77453b7472343", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "597a160786f77477531d39d2", + "status": [ + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "59c9392986f7742f6923add2 description", + "failMessageText": "59c9392986f7742f6923add2 failMessageText", + "declinePlayerMessage": "59c9392986f7742f6923add2 declinePlayerMessage", + "name": "59c9392986f7742f6923add2 name", + "note": "59c9392986f7742f6923add2 note", + "traderId": "54cb57776803fa99248b456e", + "location": "any", + "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "59c9392986f7742f6923add2 startedMessageText", + "successMessageText": "59c9392986f7742f6923add2 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 0.25, + "id": "60c8bec280b2027f403dd99c", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314b8312343839d032d24": { + "QuestName": "Airmail", + "_id": "666314b8312343839d032d24", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314b8312343839d032d24 acceptPlayerMessage", + "changeQuestMessageText": "666314b8312343839d032d24 changeQuestMessageText", + "completePlayerMessage": "666314b8312343839d032d24 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6672edeb729d6fb1c5643295", + "conditions": [ + { + "id": "66740959ccd38d189b9d61cc", + "dynamicLocale": false, + "target": "NosQuests_5_Flaer", + "conditionType": "LaunchFlare" + } + ] + }, + "id": "6672edebec0c3e2ad7d4e489", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Completion", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe5b2881e85d2b8c11c8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314b696a9349baa021bac", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314b8312343839d032d24 description", + "failMessageText": "666314b8312343839d032d24 failMessageText", + "declinePlayerMessage": "666314b8312343839d032d24 declinePlayerMessage", + "name": "666314b8312343839d032d24 name", + "note": "666314b8312343839d032d24 note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "5704e3c2d2720bac5b8b4567", + "image": "/files/quest/icon/6682a73b75d2dfc8330a07dc.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314b8312343839d032d24 startedMessageText", + "successMessageText": "666314b8312343839d032d24 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4de868f52677e00a06ee", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea0d5", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea0d5", + "_tpl": "62178c4d4ecf221597654e3d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 14000, + "id": "667d4df1b3d7feb16a09905f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "667d4dfa2388eb5c9e057721", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 42000, + "id": "667d4e130d6863e726128ca6", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea0d7", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea0d7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 42000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d4f3f0f4a5e68200e766c", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea0da", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea0d9", + "_tpl": "5cc9c20cd7f00c001336c65d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea0da", + "_tpl": "5cc9c20cd7f00c001336c65d", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d4f50b3d7feb16a099060", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea0dd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea0dc", + "_tpl": "5a5f1ce64f39f90b401987bc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea0dd", + "_tpl": "5a5f1ce64f39f90b401987bc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314c5a9290f9e0806cca5": { + "QuestName": "Key to the City", + "_id": "666314c5a9290f9e0806cca5", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314c5a9290f9e0806cca5 acceptPlayerMessage", + "changeQuestMessageText": "666314c5a9290f9e0806cca5 changeQuestMessageText", + "completePlayerMessage": "666314c5a9290f9e0806cca5 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6679884cef969161e3e9d64d", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66687bc89111279d600b5062" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667988545af9f7082798b67d", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66687bc89111279d600b5062" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abeaff28dc453b4168497", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314c3acf8442f8b0531a3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314c5a9290f9e0806cca5 description", + "failMessageText": "666314c5a9290f9e0806cca5 failMessageText", + "declinePlayerMessage": "666314c5a9290f9e0806cca5 declinePlayerMessage", + "name": "666314c5a9290f9e0806cca5 name", + "note": "666314c5a9290f9e0806cca5 note", + "traderId": "5ac3b934156ae10c4430e83c", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/6682a77f75d2dfc8330a07e0.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314c5a9290f9e0806cca5 startedMessageText", + "successMessageText": "666314c5a9290f9e0806cca5 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 55000, + "id": "667d51cc2388eb5c9e057727", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d51d80d6863e726128cac", + "type": "TraderStanding", + "index": 0, + "target": "5ac3b934156ae10c4430e83c", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 145000, + "id": "667d51e2037f250605042455", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea14e", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea14e", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 145000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d51eccd4077ffb9082fe5", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea152", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea150", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea151", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea152", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314b4d7f171c4c20226c3": { + "QuestName": "The Good Times - Part 1", + "_id": "666314b4d7f171c4c20226c3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314b4d7f171c4c20226c3 acceptPlayerMessage", + "changeQuestMessageText": "666314b4d7f171c4c20226c3 changeQuestMessageText", + "completePlayerMessage": "666314b4d7f171c4c20226c3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "666333e95913a3d6add373e4", + "conditions": [ + { + "id": "666334214bbd185a473f0781", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5447a9cd4bdc2dbd208b4567" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "66633534b1c6a8ba9d756fef", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "545cdb794bdc2d3a198b456a" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + }, + { + "id": "667c03064ad48bfe4e5d8119", + "dynamicLocale": false, + "equipmentInclusive": [ + [ + "5645bc214bdc2d363b8b4571" + ] + ], + "equipmentExclusive": [], + "IncludeNotEquippedItems": false, + "conditionType": "Equipment" + }, + { + "id": "667c534596f02e2dc4961ca1", + "dynamicLocale": false, + "target": [ + "factory4_night", + "factory4_day" + ], + "conditionType": "Location" + } + ] + }, + "id": "666333e93962787efd64004a", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe3e3c5de798137abf36", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "657315df034d76585f032e01", + "status": [ + 4, + 5 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Level", + "id": "66854666b98a1bd61ae6d201", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 27, + "compareMethod": ">=", + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314b4d7f171c4c20226c3 description", + "failMessageText": "666314b4d7f171c4c20226c3 failMessageText", + "declinePlayerMessage": "666314b4d7f171c4c20226c3 declinePlayerMessage", + "name": "666314b4d7f171c4c20226c3 name", + "note": "666314b4d7f171c4c20226c3 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "55f2d3fd4bdc2d5f408b4567", + "image": "/files/quest/icon/6682a72975d2dfc8330a07da.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314b4d7f171c4c20226c3 startedMessageText", + "successMessageText": "666314b4d7f171c4c20226c3 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4b148f391ec6e307ce8b", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea24c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea24c", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "680496b2f9c573e9ef0ea24d", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "680496b2f9c573e9ef0ea24c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "680496b2f9c573e9ef0ea24e", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "680496b2f9c573e9ef0ea24c", + "slotId": "mod_magazine" + }, + { + "_id": "680496b2f9c573e9ef0ea24f", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "680496b2f9c573e9ef0ea24c", + "slotId": "mod_reciever" + }, + { + "_id": "680496b2f9c573e9ef0ea250", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "680496b2f9c573e9ef0ea24f", + "slotId": "mod_barrel" + }, + { + "_id": "680496b2f9c573e9ef0ea251", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "680496b2f9c573e9ef0ea250", + "slotId": "mod_muzzle" + }, + { + "_id": "680496b2f9c573e9ef0ea252", + "_tpl": "56ea8d2fd2720b7c698b4570", + "parentId": "680496b2f9c573e9ef0ea250", + "slotId": "mod_gas_block" + }, + { + "_id": "680496b2f9c573e9ef0ea253", + "_tpl": "55d4af3a4bdc2d972f8b456f", + "parentId": "680496b2f9c573e9ef0ea252", + "slotId": "mod_sight_front" + }, + { + "_id": "680496b2f9c573e9ef0ea254", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "680496b2f9c573e9ef0ea24f", + "slotId": "mod_handguard" + }, + { + "_id": "680496b2f9c573e9ef0ea255", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "680496b2f9c573e9ef0ea254", + "slotId": "mod_handguard" + }, + { + "_id": "680496b2f9c573e9ef0ea256", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "680496b2f9c573e9ef0ea24f", + "slotId": "mod_sight_rear" + }, + { + "_id": "680496b2f9c573e9ef0ea257", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "680496b2f9c573e9ef0ea24c", + "slotId": "mod_stock" + }, + { + "_id": "680496b2f9c573e9ef0ea258", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "680496b2f9c573e9ef0ea257", + "slotId": "mod_stock_000" + }, + { + "_id": "680496b2f9c573e9ef0ea259", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "680496b2f9c573e9ef0ea24c", + "slotId": "mod_charge" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4b2ef9cc126bda0933d2", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea267", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea267", + "_tpl": "545cdb794bdc2d3a198b456a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea268", + "_tpl": "6575ce3716c2762fba0057fd", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Soft_armor_front" + }, + { + "_id": "680496b2f9c573e9ef0ea269", + "_tpl": "6575ce45dc9932aed601c616", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Soft_armor_back" + }, + { + "_id": "680496b2f9c573e9ef0ea26a", + "_tpl": "6575ce5016c2762fba005802", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Soft_armor_left" + }, + { + "_id": "680496b2f9c573e9ef0ea26b", + "_tpl": "6575ce5befc786cd9101a671", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "soft_armor_right" + }, + { + "_id": "680496b2f9c573e9ef0ea26c", + "_tpl": "6575ce6f16c2762fba005806", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Collar" + }, + { + "_id": "680496b2f9c573e9ef0ea26d", + "_tpl": "6575ce9db15fef3dd4051628", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Shoulder_l" + }, + { + "_id": "680496b2f9c573e9ef0ea26e", + "_tpl": "6575cea8b15fef3dd405162c", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Shoulder_r" + }, + { + "_id": "680496b2f9c573e9ef0ea26f", + "_tpl": "6575ce8bdc9932aed601c61e", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Groin" + }, + { + "_id": "680496b2f9c573e9ef0ea270", + "_tpl": "64afc71497cf3a403c01ff38", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Front_plate" + }, + { + "_id": "680496b2f9c573e9ef0ea271", + "_tpl": "64afc71497cf3a403c01ff38", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Back_plate" + }, + { + "_id": "680496b2f9c573e9ef0ea272", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Left_side_plate" + }, + { + "_id": "680496b2f9c573e9ef0ea273", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea267", + "slotId": "Right_side_plate" + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4b41cd4077ffb9082fdd", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea278", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea278", + "_tpl": "5645bc214bdc2d363b8b4571", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea279", + "_tpl": "657bae18b7e9ca9a02045c0a", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea278", + "slotId": "Helmet_top" + }, + { + "_id": "680496b2f9c573e9ef0ea27a", + "_tpl": "657baeaacfcf63c951052db3", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea278", + "slotId": "Helmet_back" + }, + { + "_id": "680496b2f9c573e9ef0ea27b", + "_tpl": "657baecbc6f689d3a205b863", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea278", + "slotId": "Helmet_ears" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 76000, + "id": "667d41a00d6863e726128c9f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "667d41ad4dbf58fd1e1377b5", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 256000, + "id": "667d41c34dbf58fd1e1377b6", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea27d", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea27d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 256000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d41fd2388eb5c9e05770a", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea27e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea27e", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "680496b2f9c573e9ef0ea27f", + "_tpl": "5addccf45acfc400185c2989", + "parentId": "680496b2f9c573e9ef0ea27e", + "slotId": "mod_magazine" + }, + { + "_id": "680496b2f9c573e9ef0ea280", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "680496b2f9c573e9ef0ea27e", + "slotId": "mod_stock" + }, + { + "_id": "680496b2f9c573e9ef0ea281", + "_tpl": "588226dd24597767ad33f789", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_foregrip" + }, + { + "_id": "680496b2f9c573e9ef0ea282", + "_tpl": "5b3b6dc75acfc47a8773fb1e", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_scope" + }, + { + "_id": "680496b2f9c573e9ef0ea283", + "_tpl": "5b3b6e495acfc4330140bd88", + "parentId": "680496b2f9c573e9ef0ea282", + "slotId": "mod_scope" + }, + { + "_id": "680496b2f9c573e9ef0ea284", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_mount" + }, + { + "_id": "680496b2f9c573e9ef0ea285", + "_tpl": "577d128124597739d65d0e56", + "parentId": "680496b2f9c573e9ef0ea284", + "slotId": "mod_scope" + }, + { + "_id": "680496b2f9c573e9ef0ea286", + "_tpl": "577d141e24597739c5255e01", + "parentId": "680496b2f9c573e9ef0ea285", + "slotId": "mod_scope" + }, + { + "_id": "680496b2f9c573e9ef0ea287", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_tactical_003" + }, + { + "_id": "680496b2f9c573e9ef0ea288", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_pistolgrip" + }, + { + "_id": "680496b2f9c573e9ef0ea289", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "680496b2f9c573e9ef0ea280", + "slotId": "mod_stock" + }, + { + "_id": "680496b2f9c573e9ef0ea28a", + "_tpl": "58d2946386f774496974c37e", + "parentId": "680496b2f9c573e9ef0ea289", + "slotId": "mod_stock_000" + }, + { + "_id": "680496b2f9c573e9ef0ea28b", + "_tpl": "58d2912286f7744e27117493", + "parentId": "680496b2f9c573e9ef0ea28a", + "slotId": "mod_stock" + }, + { + "_id": "680496b2f9c573e9ef0ea28c", + "_tpl": "5addbac75acfc400194dbc56", + "parentId": "680496b2f9c573e9ef0ea27e", + "slotId": "mod_barrel" + }, + { + "_id": "680496b2f9c573e9ef0ea28d", + "_tpl": "5addbb825acfc408fb139400", + "parentId": "680496b2f9c573e9ef0ea28c", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d422f68f52677e00a06e8", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea290", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea28f", + "_tpl": "5aaf8a0be5b5b00015693243", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea290", + "_tpl": "5aaf8a0be5b5b00015693243", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d4ad568f52677e00a06ec", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea297", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea293", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea294", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "680496b2f9c573e9ef0ea293", + "slotId": "cartridges" + }, + { + "_id": "680496b2f9c573e9ef0ea295", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea296", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "680496b2f9c573e9ef0ea295", + "slotId": "cartridges" + }, + { + "_id": "680496b2f9c573e9ef0ea297", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea298", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + }, + "parentId": "680496b2f9c573e9ef0ea297", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "674600a366e6a521aa05eb66": { + "QuestName": "Route Deviation", + "_id": "674600a366e6a521aa05eb66", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "674600a366e6a521aa05eb66 acceptPlayerMessage", + "changeQuestMessageText": "674600a366e6a521aa05eb66 changeQuestMessageText", + "completePlayerMessage": "674600a366e6a521aa05eb66 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "PlaceBeacon", + "id": "67460118d3498f1b35e0a025", + "index": 3, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_1", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6746011dfd1dc9d0f502e55d", + "index": 4, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_2", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "674601247aa943781a1cf3fc", + "index": 5, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_3", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "674601282043d1ef3c6b2eec", + "index": 6, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_4", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6746012a35218bb89951248e", + "index": 7, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_5", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "PlaceBeacon", + "id": "6746012d871e69a9abb5873d", + "index": 8, + "parentId": "", + "dynamicLocale": false, + "plantTime": 15, + "zoneId": "Mark_BTR_6", + "target": [ + "5991b51486f77447b112d44f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "674600a366e6a521aa05eb68", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6745fae369a58fceba10343d", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [ + { + "conditionType": "Quest", + "id": "674601e755b83e45bd9492df", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "6744af0969a58fceba101fed", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "674601eb4a6a0f17fa7dd5af", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "6745cbee909d2013670a4a55", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ] + }, + "description": "674600a366e6a521aa05eb66 description", + "failMessageText": "674600a366e6a521aa05eb66 failMessageText", + "declinePlayerMessage": "674600a366e6a521aa05eb66 declinePlayerMessage", + "name": "674600a366e6a521aa05eb66 name", + "note": "674600a366e6a521aa05eb66 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dc692459777137212e12", + "image": "/files/quest/icon/63aaec53e842787ad21356a3.jpg", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "674600a366e6a521aa05eb66 startedMessageText", + "successMessageText": "674600a366e6a521aa05eb66 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 6, + "id": "675841607164bdd037e8045f", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea2de", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea2d9", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2da", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2db", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2dc", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2dd", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2de", + "_tpl": "5991b51486f77447b112d44f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 17900, + "id": "675840e5c3fc54b2324511ce", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1100, + "id": "675840ed8da7385b3d1a02e7", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea2e0", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea2e0", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1100 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "675840f5f6750a19a3dfa9be", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "67584111862fde51cf75758b", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea2e1", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea2e1", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "StackObjectsCount": 1, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "680496b2f9c573e9ef0ea2e2", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "680496b2f9c573e9ef0ea2e1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "680496b2f9c573e9ef0ea2e3", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "680496b2f9c573e9ef0ea2e1", + "slotId": "mod_magazine" + }, + { + "_id": "680496b2f9c573e9ef0ea2e4", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "680496b2f9c573e9ef0ea2e1", + "slotId": "mod_handguard" + }, + { + "_id": "680496b2f9c573e9ef0ea2e5", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "680496b2f9c573e9ef0ea2e1", + "slotId": "mod_barrel" + }, + { + "_id": "680496b2f9c573e9ef0ea2e6", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "680496b2f9c573e9ef0ea2e5", + "slotId": "mod_muzzle" + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6758413c96a0d78950c8af2e", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea2ea", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea2e8", + "_tpl": "544a378f4bdc2d30388b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2e9", + "_tpl": "544a378f4bdc2d30388b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea2ea", + "_tpl": "544a378f4bdc2d30388b4567", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "6758414c8874b6a05ffd38d8", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea2f1", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea2ed", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "680496b2f9c573e9ef0ea2ee", + "_tpl": "54527ac44bdc2d36668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "680496b2f9c573e9ef0ea2ed", + "slotId": "cartridges" + }, + { + "_id": "680496b2f9c573e9ef0ea2ef", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "680496b2f9c573e9ef0ea2f0", + "_tpl": "54527ac44bdc2d36668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "680496b2f9c573e9ef0ea2ef", + "slotId": "cartridges" + }, + { + "_id": "680496b2f9c573e9ef0ea2f1", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "680496b2f9c573e9ef0ea2f2", + "_tpl": "54527ac44bdc2d36668b4567", + "upd": { + "StackObjectsCount": 50 + }, + "parentId": "680496b2f9c573e9ef0ea2f1", + "slotId": "cartridges" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314bc1d3ec95634095e77": { + "QuestName": "Minute of Fame", + "_id": "666314bc1d3ec95634095e77", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314bc1d3ec95634095e77 acceptPlayerMessage", + "changeQuestMessageText": "666314bc1d3ec95634095e77 changeQuestMessageText", + "completePlayerMessage": "666314bc1d3ec95634095e77 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "667a958eb30fe2e2938a6387", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "667a8ef464eea5fdef0db135" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667a95972740eaeca1ecda21", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "667a8ef464eea5fdef0db135" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe764bb3754b96983eef", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314bafd5ca9577902e03a", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314bc1d3ec95634095e77 description", + "failMessageText": "666314bc1d3ec95634095e77 failMessageText", + "declinePlayerMessage": "666314bc1d3ec95634095e77 declinePlayerMessage", + "name": "666314bc1d3ec95634095e77 name", + "note": "666314bc1d3ec95634095e77 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5714dbc024597771384a510d", + "image": "/files/quest/icon/6682a74d9cf6cc15c00a0f91.png", + "type": "Discover", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314bc1d3ec95634095e77 startedMessageText", + "successMessageText": "666314bc1d3ec95634095e77 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 40000, + "id": "667d4fe8f9cc126bda0933d4", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d4ff1cd4077ffb9082fe0", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1600, + "id": "667d4ffc0f4a5e68200e766e", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea310", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea310", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1600 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d500ee106f3757711423a", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea313", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea312", + "_tpl": "63877c99e785640d436458ea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea313", + "_tpl": "63877c99e785640d436458ea", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d50288f391ec6e307ce8e", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea316", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea315", + "_tpl": "612e0d3767085e45ef14057f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea316", + "_tpl": "612e0d3767085e45ef14057f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d504446773164c205eda2", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea319", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea318", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea319", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314bf1cd52e3d040a2e78": { + "QuestName": "Serious Allegations", + "_id": "666314bf1cd52e3d040a2e78", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314bf1cd52e3d040a2e78 acceptPlayerMessage", + "changeQuestMessageText": "666314bf1cd52e3d040a2e78 changeQuestMessageText", + "completePlayerMessage": "666314bf1cd52e3d040a2e78 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "667571ad6889d3af44af7be2", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66760b3deb51b08bd40c2b08" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667571cb7620e3041bad913c", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "66760b3deb51b08bd40c2b08" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe8e309ba12125128d76", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314bd920800278d0f6748", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314bf1cd52e3d040a2e78 description", + "failMessageText": "666314bf1cd52e3d040a2e78 failMessageText", + "declinePlayerMessage": "666314bf1cd52e3d040a2e78 declinePlayerMessage", + "name": "666314bf1cd52e3d040a2e78 name", + "note": "666314bf1cd52e3d040a2e78 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "5704e554d2720bac5b8b456e", + "image": "/files/quest/icon/6682a777e1471d93f20255c1.png", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314bf1cd52e3d040a2e78 startedMessageText", + "successMessageText": "666314bf1cd52e3d040a2e78 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 36000, + "id": "667d50b068f52677e00a06f2", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d50b9c2e8131e070ae4a8", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1500, + "id": "667d50c12388eb5c9e057724", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea328", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea328", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1500 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d50d8037f250605042452", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea32a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea32a", + "_tpl": "57235b6f24597759bf5a30f1", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d50eb4dbf58fd1e1377c1", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea32c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea32c", + "_tpl": "5a16b93dfcdbcbcae6687261", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 1, + "id": "667d50fe0f4a5e68200e7671", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea32e", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea32e", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314c3acf8442f8b0531a3": { + "QuestName": "Proper Comeback", + "_id": "666314c3acf8442f8b0531a3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314c3acf8442f8b0531a3 acceptPlayerMessage", + "changeQuestMessageText": "666314c3acf8442f8b0531a3 changeQuestMessageText", + "completePlayerMessage": "666314c3acf8442f8b0531a3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "667442da875be5fb415df535", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_11_wood_place", + "target": [ + "5bc9bc53d4351e00367fbcee" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "6682873d755938fa4cb73073", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_11_shoreline_place", + "target": [ + "5bc9bc53d4351e00367fbcee" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66d080533a3c33d823a3477d", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_11_factory_place", + "target": [ + "5bc9bc53d4351e00367fbcee" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abea55d8c0026325fa26a", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314c10aa5c7436c00908c", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314c3acf8442f8b0531a3 description", + "failMessageText": "666314c3acf8442f8b0531a3 failMessageText", + "declinePlayerMessage": "666314c3acf8442f8b0531a3 declinePlayerMessage", + "name": "666314c3acf8442f8b0531a3 name", + "note": "666314c3acf8442f8b0531a3 note", + "traderId": "58330581ace78e27b8b10cee", + "location": "any", + "image": "/files/quest/icon/664088150e8c3b39563f2b73.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314c3acf8442f8b0531a3 startedMessageText", + "successMessageText": "666314c3acf8442f8b0531a3 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 78000, + "id": "667d516c0f4a5e68200e7672", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d5175e106f3757711423d", + "type": "TraderStanding", + "index": 0, + "target": "58330581ace78e27b8b10cee", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 1900, + "id": "667d517e8f391ec6e307ce92", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea339", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea339", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 1900 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d518e46773164c205eda6", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea33c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea33b", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea33c", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d5195f9cc126bda0933d7", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea33f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea33e", + "_tpl": "5c12620d86f7743f8b198b72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea33f", + "_tpl": "5c12620d86f7743f8b198b72", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314b0acf8442f8b0531a1": { + "QuestName": "Hell on Earth - Part 1", + "_id": "666314b0acf8442f8b0531a1", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314b0acf8442f8b0531a1 acceptPlayerMessage", + "changeQuestMessageText": "666314b0acf8442f8b0531a1 changeQuestMessageText", + "completePlayerMessage": "666314b0acf8442f8b0531a1 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "WeaponAssembly", + "id": "66632cf3fbd7dedfa6153a9f", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": [ + "5580223e4bdc2d1c128b457f" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [], + "baseAccuracy": { + "value": 0.0, + "compareMethod": ">=" + }, + "durability": { + "value": 80.0, + "compareMethod": ">=" + }, + "effectiveDistance": { + "value": 0.0, + "compareMethod": ">=" + }, + "emptyTacticalSlot": { + "value": 0, + "compareMethod": ">=" + }, + "ergonomics": { + "value": 42.0, + "compareMethod": ">=" + }, + "height": { + "value": 0, + "compareMethod": ">=" + }, + "magazineCapacity": { + "value": 0, + "compareMethod": ">=" + }, + "muzzleVelocity": { + "value": 0.0, + "compareMethod": ">=" + }, + "recoil": { + "value": 0.0, + "compareMethod": ">=" + }, + "weight": { + "value": 0.0, + "compareMethod": ">=" + }, + "width": { + "value": 0, + "compareMethod": ">=" + }, + "containsItems": [], + "hasItemFromCategory": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Level", + "id": "667d3f1a52f51b32124c1cc8", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "globalQuestCounterId": "", + "value": 27, + "compareMethod": ">=", + "visibilityConditions": [] + }, + { + "conditionType": "Quest", + "id": "667d3f3172ffda9e9ad6e4e9", + "index": 1, + "parentId": "", + "dynamicLocale": false, + "target": "666314b4d7f171c4c20226c3", + "status": [ + 4, + 2 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314b0acf8442f8b0531a1 description", + "failMessageText": "666314b0acf8442f8b0531a1 failMessageText", + "declinePlayerMessage": "666314b0acf8442f8b0531a1 declinePlayerMessage", + "name": "666314b0acf8442f8b0531a1 name", + "note": "666314b0acf8442f8b0531a1 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/6682a71f9cf6cc15c00a0f8d.png", + "type": "Merchant", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314b0acf8442f8b0531a1 startedMessageText", + "successMessageText": "666314b0acf8442f8b0531a1 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 15600, + "id": "667d3f45037f250605042444", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.01, + "id": "667d3f50b3d7feb16a099058", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 35700, + "id": "667d3f5e2388eb5c9e057706", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea345", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea345", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 35700 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d3f6a68f52677e00a06e6", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea34c", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea349", + "_tpl": "64be79e2bf8412471d0d9bcc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea34a", + "_tpl": "6570495b45d573133d0d6adb", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea349", + "slotId": "Soft_armor_front" + }, + { + "_id": "680496b2f9c573e9ef0ea34b", + "_tpl": "657049d23425b19bbc0502f0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea349", + "slotId": "Soft_armor_back" + }, + { + "_id": "680496b2f9c573e9ef0ea34c", + "_tpl": "64be79e2bf8412471d0d9bcc", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea34d", + "_tpl": "6570495b45d573133d0d6adb", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea34c", + "slotId": "Soft_armor_front" + }, + { + "_id": "680496b2f9c573e9ef0ea34e", + "_tpl": "657049d23425b19bbc0502f0", + "upd": { + "SpawnedInSession": true + }, + "parentId": "680496b2f9c573e9ef0ea34c", + "slotId": "Soft_armor_back" + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314b2a9290f9e0806cca3": { + "QuestName": "Hell on Earth - Part 2", + "_id": "666314b2a9290f9e0806cca3", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314b2a9290f9e0806cca3 acceptPlayerMessage", + "changeQuestMessageText": "666314b2a9290f9e0806cca3 changeQuestMessageText", + "completePlayerMessage": "666314b2a9290f9e0806cca3 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "66632dee1d770a50deb5f7d6", + "conditions": [ + { + "id": "66632eb0b0950771a732ab47", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5580223e4bdc2d1c128b457f", + "64748cb8de82c85eaf0a273a" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "sectantPriest", + "sectantWarrior" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "66632deea5607d352f3aa844", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 3, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe309566bbce552f7e10", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314b0acf8442f8b0531a1", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314b2a9290f9e0806cca3 description", + "failMessageText": "666314b2a9290f9e0806cca3 failMessageText", + "declinePlayerMessage": "666314b2a9290f9e0806cca3 declinePlayerMessage", + "name": "666314b2a9290f9e0806cca3 name", + "note": "666314b2a9290f9e0806cca3 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/6682a71075d2dfc8330a07d8.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314b2a9290f9e0806cca3 startedMessageText", + "successMessageText": "666314b2a9290f9e0806cca3 successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "667c02cc4dbf58fd1e0f5e45", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea34f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea34f", + "_tpl": "5580223e4bdc2d1c128b457f", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "680496b2f9c573e9ef0ea350", + "_tpl": "5580169d4bdc2d9d138b4585", + "parentId": "680496b2f9c573e9ef0ea34f", + "slotId": "mod_barrel" + }, + { + "_id": "680496b2f9c573e9ef0ea351", + "_tpl": "611a31ce5b7ffe001b4649d1", + "parentId": "680496b2f9c573e9ef0ea34f", + "slotId": "mod_stock" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 98000, + "id": "667d3faa037f250605042445", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "667d3fb4b3d7feb16a099059", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 324000, + "id": "667d3fc44dbf58fd1e1377b4", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea353", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea353", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 324000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d3ff1c2e8131e070ae498", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea357", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea355", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea356", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea357", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d3ffa2388eb5c9e057708", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea35b", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea359", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea35a", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea35b", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d400568f52677e00a06e7", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea35f", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea35d", + "_tpl": "618a431df1eb8e24b8741deb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea35e", + "_tpl": "618a431df1eb8e24b8741deb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea35f", + "_tpl": "618a431df1eb8e24b8741deb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314bafd5ca9577902e03a": { + "QuestName": "The Good Times - Part 2", + "_id": "666314bafd5ca9577902e03a", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314bafd5ca9577902e03a acceptPlayerMessage", + "changeQuestMessageText": "666314bafd5ca9577902e03a changeQuestMessageText", + "completePlayerMessage": "666314bafd5ca9577902e03a completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "completeInSeconds": 0, + "conditionType": "CounterCreator", + "counter": { + "id": "6663389ab88d5660328a9953", + "conditions": [ + { + "id": "666338ca9c801e64de9593b5", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5b3b713c5acfc4330140bd8d" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "id": "6663389aa257916ad3c89529", + "index": 0, + "parentId": "", + "oneSessionOnly": false, + "dynamicLocale": false, + "type": "Elimination", + "doNotResetIfCounterCompleted": false, + "globalQuestCounterId": "", + "value": 10, + "visibilityConditions": [], + "isNecessary": false, + "isResetOnConditionFailed": false + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe6918436d08a032c0ed", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314b8312343839d032d24", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314bafd5ca9577902e03a description", + "failMessageText": "666314bafd5ca9577902e03a failMessageText", + "declinePlayerMessage": "666314bafd5ca9577902e03a declinePlayerMessage", + "name": "666314bafd5ca9577902e03a name", + "note": "666314bafd5ca9577902e03a note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/6682a74575d2dfc8330a07de.png", + "type": "Elimination", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314bafd5ca9577902e03a startedMessageText", + "successMessageText": "666314bafd5ca9577902e03a successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4fc2e106f37577114239", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea41d", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea41d", + "_tpl": "5b3b713c5acfc4330140bd8d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "680496b2f9c573e9ef0ea41e", + "_tpl": "5b3baf8f5acfc40dc5296692", + "parentId": "680496b2f9c573e9ef0ea41d", + "slotId": "mod_barrel" + }, + { + "_id": "680496b2f9c573e9ef0ea41f", + "_tpl": "5b3cadf35acfc400194776a0", + "parentId": "680496b2f9c573e9ef0ea41d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "680496b2f9c573e9ef0ea420", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "680496b2f9c573e9ef0ea41d", + "slotId": "mod_magazine" + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 62400, + "id": "667d4f8b46773164c205eda1", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.03, + "id": "667d4f964dbf58fd1e1377be", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 226000, + "id": "667d4fa668f52677e00a06ef", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea422", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea422", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 226000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 2, + "id": "667d4fb6c2e8131e070ae4a5", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea425", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea424", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea425", + "_tpl": "5aafbde786f774389d0cbc0f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314b696a9349baa021bac": { + "QuestName": "Quality Standard", + "_id": "666314b696a9349baa021bac", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314b696a9349baa021bac acceptPlayerMessage", + "changeQuestMessageText": "666314b696a9349baa021bac changeQuestMessageText", + "completePlayerMessage": "666314b696a9349baa021bac completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "FindItem", + "dogtagLevel": 0, + "id": "6672e47f25ab92726912c3e5", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "666879d498b97e3a8f09f1ae" + ], + "countInRaid": false, + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "6672e49679243c500ec02c2e", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "target": [ + "666879d498b97e3a8f09f1ae" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe4bf4179cecd79b7a6b", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314b4d7f171c4c20226c3", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314b696a9349baa021bac description", + "failMessageText": "666314b696a9349baa021bac failMessageText", + "declinePlayerMessage": "666314b696a9349baa021bac declinePlayerMessage", + "name": "666314b696a9349baa021bac name", + "note": "666314b696a9349baa021bac note", + "traderId": "54cb57776803fa99248b456e", + "location": "5b0fc42d86f7744a585f9105", + "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314b696a9349baa021bac startedMessageText", + "successMessageText": "666314b696a9349baa021bac successMessageText", + "rewards": { + "Started": [ + { + "availableInGameEditions": [], + "value": 1, + "id": "667d4b94b3d7feb16a09905e", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea492", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea492", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Success": [ + { + "availableInGameEditions": [], + "value": 42000, + "id": "667d4b9e8f391ec6e307ce8c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d4ba846773164c205ed9f", + "type": "TraderStanding", + "index": 0, + "target": "54cb57776803fa99248b456e", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 164000, + "id": "667d4bb4f9cc126bda0933d3", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea494", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea494", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 164000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "667d4bc0cd4077ffb9082fde", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea49a", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea496", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea497", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea498", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea499", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea49a", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "667d4bc80f4a5e68200e766a", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4a0", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea49c", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea49d", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea49e", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea49f", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4a0", + "_tpl": "5c0e534186f7747fa1419867", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314bd920800278d0f6748": { + "QuestName": "Viewer", + "_id": "666314bd920800278d0f6748", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314bd920800278d0f6748 acceptPlayerMessage", + "changeQuestMessageText": "666314bd920800278d0f6748 changeQuestMessageText", + "completePlayerMessage": "666314bd920800278d0f6748 completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "667bf8370849ce7edf2b124e", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_8_wood_place", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "667bf840981b1c594af358ce", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_8_shoreline_place", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "LeaveItemAtLocation", + "dogtagLevel": 0, + "id": "66d07fa69d373d977f437fe0", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": false, + "dynamicLocale": false, + "plantTime": 40, + "zoneId": "NosQuests_8_factory_place", + "target": [ + "5b4391a586f7745321235ab2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe8257f5a79e2b8bc642", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314bc1d3ec95634095e77", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314bd920800278d0f6748 description", + "failMessageText": "666314bd920800278d0f6748 failMessageText", + "declinePlayerMessage": "666314bd920800278d0f6748 declinePlayerMessage", + "name": "666314bd920800278d0f6748 name", + "note": "666314bd920800278d0f6748 note", + "traderId": "54cb50c76803fa8b248b4571", + "location": "any", + "image": "/files/quest/icon/664088150e8c3b39563f2b73.png", + "type": "Completion", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314bd920800278d0f6748 startedMessageText", + "successMessageText": "666314bd920800278d0f6748 successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 74000, + "id": "667d506d0f4a5e68200e766f", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d5077b3d7feb16a099062", + "type": "TraderStanding", + "index": 0, + "target": "54cb50c76803fa8b248b4571", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 172000, + "id": "667d50838f391ec6e307ce8f", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4bc", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea4bc", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 172000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "667d508d46773164c205eda3", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4c2", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea4be", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4bf", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c0", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c1", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c2", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 5, + "id": "667d5096f9cc126bda0933d5", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4c8", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea4c4", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c5", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c6", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c7", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4c8", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, + "666314c10aa5c7436c00908c": { + "QuestName": "Camera Action", + "_id": "666314c10aa5c7436c00908c", + "canShowNotificationsInGame": true, + "acceptPlayerMessage": "666314c10aa5c7436c00908c acceptPlayerMessage", + "changeQuestMessageText": "666314c10aa5c7436c00908c changeQuestMessageText", + "completePlayerMessage": "666314c10aa5c7436c00908c completePlayerMessage", + "conditions": { + "AvailableForFinish": [ + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66675a4567c0cf0989946e12", + "index": 0, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590c392f86f77444754deb29" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66675a50f15c3daac1fcb57d", + "index": 1, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5909e99886f7740c983b9984" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66675a5b89c89dbbf90361d5", + "index": 2, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5af0561e86f7745f5f3ad6ac" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "66675a66e7b6dbc6ff88de91", + "index": 3, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "590a358486f77429692b2790" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c252898eab887725ef789", + "index": 4, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "573477e124597737dd42e191" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c25452c353b0176f883d1", + "index": 5, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "6389c70ca33d8c4cdf4932c6" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c257562774a862480925c", + "index": 6, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c06779c86f77426e00dd782" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c25970b2c3c93bfc0f204", + "index": 7, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5c06782b86f77426df5407d2" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c25a8b3d49a2e3f4bd05c", + "index": 8, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b2ffd86f77425243e8d17" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c25b7b4419ddadbe352be", + "index": 9, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "57347baf24597738002c6178" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c25eeb3fba3b8f07b9193", + "index": 10, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b304286f774253763a528" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + }, + { + "conditionType": "HandoverItem", + "dogtagLevel": 0, + "id": "667c26159bd3d32fb565578e", + "index": 11, + "maxDurability": 100.0, + "minDurability": 0.0, + "parentId": "", + "isEncoded": false, + "onlyFoundInRaid": true, + "dynamicLocale": false, + "target": [ + "5d1b392c86f77425243e98fe" + ], + "globalQuestCounterId": "", + "value": 1, + "visibilityConditions": [] + } + ], + "AvailableForStart": [ + { + "conditionType": "Quest", + "id": "667abe9a893092770c3aa869", + "index": 0, + "parentId": "", + "dynamicLocale": false, + "target": "666314bf1cd52e3d040a2e78", + "status": [ + 4 + ], + "globalQuestCounterId": "", + "availableAfter": 0, + "dispersion": 0, + "visibilityConditions": [] + } + ], + "Fail": [] + }, + "description": "666314c10aa5c7436c00908c description", + "failMessageText": "666314c10aa5c7436c00908c failMessageText", + "declinePlayerMessage": "666314c10aa5c7436c00908c declinePlayerMessage", + "name": "666314c10aa5c7436c00908c name", + "note": "666314c10aa5c7436c00908c note", + "traderId": "5a7c2eca46aef81a7ca2145d", + "location": "any", + "image": "/files/quest/icon/628b805544430c635d52a888.jpg", + "type": "PickUp", + "isKey": false, + "restartable": false, + "instantComplete": false, + "secretQuest": false, + "startedMessageText": "666314c10aa5c7436c00908c startedMessageText", + "successMessageText": "666314c10aa5c7436c00908c successMessageText", + "rewards": { + "Started": [], + "Success": [ + { + "availableInGameEditions": [], + "value": 32000, + "id": "667d5116e106f3757711423c", + "type": "Experience", + "index": 0, + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 0.02, + "id": "667d511f8f391ec6e307ce91", + "type": "TraderStanding", + "index": 0, + "target": "5a7c2eca46aef81a7ca2145d", + "unknown": false + }, + { + "availableInGameEditions": [], + "value": 205000, + "id": "667d513546773164c205eda5", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4f9", + "unknown": false, + "findInRaid": false, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea4f9", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 205000 + } + } + ] + }, + { + "availableInGameEditions": [], + "value": 3, + "id": "667d51544dbf58fd1e1377c2", + "type": "Item", + "index": 0, + "target": "680496b2f9c573e9ef0ea4fd", + "unknown": false, + "findInRaid": true, + "items": [ + { + "_id": "680496b2f9c573e9ef0ea4fb", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4fc", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + }, + { + "_id": "680496b2f9c573e9ef0ea4fd", + "_tpl": "5c94bbff86f7747ee735c08f", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": true + } + } + ] + } + ], + "Fail": [] + }, + "side": "Pmc", + "acceptanceAndFinishingSource": "eft", + "progressSource": "eft", + "rankingModes": [], + "gameModes": [], + "arenaLocations": [], + "status": 0 + }, "674605df60a98cad1b0ec799": { "QuestName": "Killer Argument", "_id": "674605df60a98cad1b0ec799", @@ -134127,215 +140518,6 @@ "arenaLocations": [], "status": 0 }, - "6745fdddd3346c216702e0bf": { - "QuestName": "Simple Side Job", - "_id": "6745fdddd3346c216702e0bf", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6745fdddd3346c216702e0bf acceptPlayerMessage", - "changeQuestMessageText": "6745fdddd3346c216702e0bf changeQuestMessageText", - "completePlayerMessage": "6745fdddd3346c216702e0bf completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6745fe81eae30b9fb3bb6166", - "index": 3, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "67499b3eeca8acb2d2061636" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6745fe8d48cd7aeda7152b24", - "index": 4, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Case_rpg_keeper", - "target": [ - "67499b3eeca8acb2d2061636" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6745fdddd3346c216702e0c1", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6745fcded0fbbc74ca0f721d", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "6745fecc83f34043ac778711", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6744ab1def61d56e020b5c56", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "6745fdddd3346c216702e0bf description", - "failMessageText": "6745fdddd3346c216702e0bf failMessageText", - "declinePlayerMessage": "6745fdddd3346c216702e0bf declinePlayerMessage", - "name": "6745fdddd3346c216702e0bf name", - "note": "6745fdddd3346c216702e0bf note", - "traderId": "638f541a29ffd1183d187f57", - "location": "any", - "image": "/files/quest/icon/63a90fd7c31b00242d28a92e.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6745fdddd3346c216702e0bf startedMessageText", - "successMessageText": "6745fdddd3346c216702e0bf successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 56700, - "id": "675824cd60700996ce71bedc", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 4000, - "id": "6758250d14b1071a8e506cbc", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210293d", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a7210293d", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 4000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "675825181c6f0ba3fd56ca93", - "type": "TraderStanding", - "index": 0, - "target": "638f541a29ffd1183d187f57", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67582525fe76dc26db4efebc", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210293f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a7210293f", - "_tpl": "5c052f6886f7746b1e3db148", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758252fc7df548ca2b7d292", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72102941", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72102941", - "_tpl": "5c052fb986f7746b2101e909", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6758253933acd78c17e20b87", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72102943", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72102943", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "67460662d0fbbc74ca0f7229": { "QuestName": "Choose Your Friends Wisely", "_id": "67460662d0fbbc74ca0f7229", @@ -134701,175 +140883,6 @@ "arenaLocations": [], "status": 0 }, - "6745fcded0fbbc74ca0f721d": { - "QuestName": "Swift Retribution", - "_id": "6745fcded0fbbc74ca0f721d", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "6745fcded0fbbc74ca0f721d acceptPlayerMessage", - "changeQuestMessageText": "6745fcded0fbbc74ca0f721d changeQuestMessageText", - "completePlayerMessage": "6745fcded0fbbc74ca0f721d completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6745fd2eba1b93510aef0efb", - "conditions": [ - { - "bodyPart": [], - "compareMethod": ">=", - "conditionType": "Kills", - "daytime": { - "from": 0, - "to": 0 - }, - "distance": { - "compareMethod": ">=", - "value": 0 - }, - "dynamicLocale": false, - "enemyEquipmentExclusive": [], - "enemyEquipmentInclusive": [], - "enemyHealthEffects": [], - "id": "6745fd3b4da9d681d9baed7d", - "resetOnSessionEnd": false, - "savageRole": [], - "target": "Savage", - "value": 1, - "weapon": [], - "weaponCaliber": [], - "weaponModsExclusive": [], - "weaponModsInclusive": [] - }, - { - "conditionType": "Location", - "dynamicLocale": false, - "id": "6745fd4181696237e9676a88", - "target": [ - "Woods" - ] - } - ] - }, - "id": "6745fd2e3d6070c3563039a9", - "index": 3, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "6745fcded0fbbc74ca0f721f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "673f4e956f1b89c7bc0f56ef", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 15, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "6745fcded0fbbc74ca0f721d description", - "failMessageText": "6745fcded0fbbc74ca0f721d failMessageText", - "declinePlayerMessage": "6745fcded0fbbc74ca0f721d declinePlayerMessage", - "name": "6745fcded0fbbc74ca0f721d name", - "note": "6745fcded0fbbc74ca0f721d note", - "traderId": "656f0f98d80a697f855d34b1", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/675b0854eaef91cffa0f04fe.jpg", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "6745fcded0fbbc74ca0f721d startedMessageText", - "successMessageText": "6745fcded0fbbc74ca0f721d successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 16000, - "id": "6758249d4157e37983d433eb", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 85000, - "id": "675824aca696bb6cc11e3e5f", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72102c1f", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72102c1f", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 85000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "675824b756ab3525e2c017dc", - "type": "TraderStanding", - "index": 0, - "target": "656f0f98d80a697f855d34b1", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "6761adca81a5791eb067dd89", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72102c21", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72102c21", - "_tpl": "6761a6ccd9bbb27ad703c48a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "6179b5b06e9dd54ac275e409": { "QuestName": "Our Own Land", "_id": "6179b5b06e9dd54ac275e409", @@ -135374,2857 +141387,6 @@ "arenaLocations": [], "status": 0 }, - "666314b4d7f171c4c20226c3": { - "QuestName": "The Good Times - Part 1", - "_id": "666314b4d7f171c4c20226c3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314b4d7f171c4c20226c3 acceptPlayerMessage", - "changeQuestMessageText": "666314b4d7f171c4c20226c3 changeQuestMessageText", - "completePlayerMessage": "666314b4d7f171c4c20226c3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "666333e95913a3d6add373e4", - "conditions": [ - { - "bodyPart": [], - "compareMethod": ">=", - "conditionType": "Kills", - "daytime": { - "from": 0, - "to": 0 - }, - "distance": { - "compareMethod": ">=", - "value": 0 - }, - "dynamicLocale": false, - "enemyEquipmentExclusive": [], - "enemyEquipmentInclusive": [], - "enemyHealthEffects": [], - "id": "666334214bbd185a473f0781", - "resetOnSessionEnd": false, - "savageRole": [], - "target": "AnyPmc", - "value": 1, - "weapon": [ - "5447a9cd4bdc2dbd208b4567" - ], - "weaponCaliber": [], - "weaponModsExclusive": [], - "weaponModsInclusive": [] - }, - { - "IncludeNotEquippedItems": false, - "conditionType": "Equipment", - "dynamicLocale": false, - "equipmentExclusive": [], - "equipmentInclusive": [ - [ - "545cdb794bdc2d3a198b456a" - ] - ], - "id": "66633534b1c6a8ba9d756fef" - }, - { - "IncludeNotEquippedItems": false, - "conditionType": "Equipment", - "dynamicLocale": false, - "equipmentExclusive": [], - "equipmentInclusive": [ - [ - "5645bc214bdc2d363b8b4571" - ] - ], - "id": "667c03064ad48bfe4e5d8119" - }, - { - "conditionType": "Location", - "dynamicLocale": false, - "id": "667c534596f02e2dc4961ca1", - "target": [ - "factory4_night", - "factory4_day" - ] - } - ] - }, - "id": "666333e93962787efd64004a", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe3e3c5de798137abf36", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "657315df034d76585f032e01", - "status": [ - 4, - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Level", - "id": "66854666b98a1bd61ae6d201", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 27, - "compareMethod": ">=", - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314b4d7f171c4c20226c3 description", - "failMessageText": "666314b4d7f171c4c20226c3 failMessageText", - "declinePlayerMessage": "666314b4d7f171c4c20226c3 declinePlayerMessage", - "name": "666314b4d7f171c4c20226c3 name", - "note": "666314b4d7f171c4c20226c3 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "55f2d3fd4bdc2d5f408b4567", - "image": "/files/quest/icon/6682a72975d2dfc8330a07da.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314b4d7f171c4c20226c3 startedMessageText", - "successMessageText": "666314b4d7f171c4c20226c3 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4b148f391ec6e307ce8b", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721037fb", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721037fb", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "67eb506040b1947a721037fc", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "67eb506040b1947a721037fb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "67eb506040b1947a721037fd", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "67eb506040b1947a721037fb", - "slotId": "mod_magazine" - }, - { - "_id": "67eb506040b1947a721037fe", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "67eb506040b1947a721037fb", - "slotId": "mod_reciever" - }, - { - "_id": "67eb506040b1947a721037ff", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "67eb506040b1947a721037fe", - "slotId": "mod_barrel" - }, - { - "_id": "67eb506040b1947a72103800", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "67eb506040b1947a721037ff", - "slotId": "mod_muzzle" - }, - { - "_id": "67eb506040b1947a72103801", - "_tpl": "56ea8d2fd2720b7c698b4570", - "parentId": "67eb506040b1947a721037ff", - "slotId": "mod_gas_block" - }, - { - "_id": "67eb506040b1947a72103802", - "_tpl": "55d4af3a4bdc2d972f8b456f", - "parentId": "67eb506040b1947a72103801", - "slotId": "mod_sight_front" - }, - { - "_id": "67eb506040b1947a72103803", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "67eb506040b1947a721037fe", - "slotId": "mod_handguard" - }, - { - "_id": "67eb506040b1947a72103804", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "67eb506040b1947a72103803", - "slotId": "mod_handguard" - }, - { - "_id": "67eb506040b1947a72103805", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "67eb506040b1947a721037fe", - "slotId": "mod_sight_rear" - }, - { - "_id": "67eb506040b1947a72103806", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "67eb506040b1947a721037fb", - "slotId": "mod_stock" - }, - { - "_id": "67eb506040b1947a72103807", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "67eb506040b1947a72103806", - "slotId": "mod_stock_000" - }, - { - "_id": "67eb506040b1947a72103808", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "67eb506040b1947a721037fb", - "slotId": "mod_charge" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4b2ef9cc126bda0933d2", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103816", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103816", - "_tpl": "545cdb794bdc2d3a198b456a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103817", - "_tpl": "6575ce3716c2762fba0057fd", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Soft_armor_front" - }, - { - "_id": "67eb506040b1947a72103818", - "_tpl": "6575ce45dc9932aed601c616", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Soft_armor_back" - }, - { - "_id": "67eb506040b1947a72103819", - "_tpl": "6575ce5016c2762fba005802", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Soft_armor_left" - }, - { - "_id": "67eb506040b1947a7210381a", - "_tpl": "6575ce5befc786cd9101a671", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "soft_armor_right" - }, - { - "_id": "67eb506040b1947a7210381b", - "_tpl": "6575ce6f16c2762fba005806", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Collar" - }, - { - "_id": "67eb506040b1947a7210381c", - "_tpl": "6575ce9db15fef3dd4051628", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Shoulder_l" - }, - { - "_id": "67eb506040b1947a7210381d", - "_tpl": "6575cea8b15fef3dd405162c", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Shoulder_r" - }, - { - "_id": "67eb506040b1947a7210381e", - "_tpl": "6575ce8bdc9932aed601c61e", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Groin" - }, - { - "_id": "67eb506040b1947a7210381f", - "_tpl": "64afc71497cf3a403c01ff38", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Front_plate" - }, - { - "_id": "67eb506040b1947a72103820", - "_tpl": "64afc71497cf3a403c01ff38", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Back_plate" - }, - { - "_id": "67eb506040b1947a72103821", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Left_side_plate" - }, - { - "_id": "67eb506040b1947a72103822", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103816", - "slotId": "Right_side_plate" - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4b41cd4077ffb9082fdd", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103827", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103827", - "_tpl": "5645bc214bdc2d363b8b4571", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103828", - "_tpl": "657bae18b7e9ca9a02045c0a", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103827", - "slotId": "Helmet_top" - }, - { - "_id": "67eb506040b1947a72103829", - "_tpl": "657baeaacfcf63c951052db3", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103827", - "slotId": "Helmet_back" - }, - { - "_id": "67eb506040b1947a7210382a", - "_tpl": "657baecbc6f689d3a205b863", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a72103827", - "slotId": "Helmet_ears" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 76000, - "id": "667d41a00d6863e726128c9f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "667d41ad4dbf58fd1e1377b5", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 256000, - "id": "667d41c34dbf58fd1e1377b6", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210382c", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a7210382c", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 256000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d41fd2388eb5c9e05770a", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210382d", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a7210382d", - "_tpl": "5aafa857e5b5b00018480968", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "67eb506040b1947a7210382e", - "_tpl": "5addccf45acfc400185c2989", - "parentId": "67eb506040b1947a7210382d", - "slotId": "mod_magazine" - }, - { - "_id": "67eb506040b1947a7210382f", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "67eb506040b1947a7210382d", - "slotId": "mod_stock" - }, - { - "_id": "67eb506040b1947a72103830", - "_tpl": "588226dd24597767ad33f789", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_foregrip" - }, - { - "_id": "67eb506040b1947a72103831", - "_tpl": "5b3b6dc75acfc47a8773fb1e", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_scope" - }, - { - "_id": "67eb506040b1947a72103832", - "_tpl": "5b3b6e495acfc4330140bd88", - "parentId": "67eb506040b1947a72103831", - "slotId": "mod_scope" - }, - { - "_id": "67eb506040b1947a72103833", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_mount" - }, - { - "_id": "67eb506040b1947a72103834", - "_tpl": "577d128124597739d65d0e56", - "parentId": "67eb506040b1947a72103833", - "slotId": "mod_scope" - }, - { - "_id": "67eb506040b1947a72103835", - "_tpl": "577d141e24597739c5255e01", - "parentId": "67eb506040b1947a72103834", - "slotId": "mod_scope" - }, - { - "_id": "67eb506040b1947a72103836", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_tactical_003" - }, - { - "_id": "67eb506040b1947a72103837", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_pistolgrip" - }, - { - "_id": "67eb506040b1947a72103838", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "67eb506040b1947a7210382f", - "slotId": "mod_stock" - }, - { - "_id": "67eb506040b1947a72103839", - "_tpl": "58d2946386f774496974c37e", - "parentId": "67eb506040b1947a72103838", - "slotId": "mod_stock_000" - }, - { - "_id": "67eb506040b1947a7210383a", - "_tpl": "58d2912286f7744e27117493", - "parentId": "67eb506040b1947a72103839", - "slotId": "mod_stock" - }, - { - "_id": "67eb506040b1947a7210383b", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "67eb506040b1947a7210382d", - "slotId": "mod_barrel" - }, - { - "_id": "67eb506040b1947a7210383c", - "_tpl": "5addbb825acfc408fb139400", - "parentId": "67eb506040b1947a7210383b", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d422f68f52677e00a06e8", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210383f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a7210383e", - "_tpl": "5aaf8a0be5b5b00015693243", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a7210383f", - "_tpl": "5aaf8a0be5b5b00015693243", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d4ad568f52677e00a06ec", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103846", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103842", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103843", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "67eb506040b1947a72103842", - "slotId": "cartridges" - }, - { - "_id": "67eb506040b1947a72103844", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103845", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "67eb506040b1947a72103844", - "slotId": "cartridges" - }, - { - "_id": "67eb506040b1947a72103846", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103847", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 - }, - "parentId": "67eb506040b1947a72103846", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314c5a9290f9e0806cca5": { - "QuestName": "Key to the City", - "_id": "666314c5a9290f9e0806cca5", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314c5a9290f9e0806cca5 acceptPlayerMessage", - "changeQuestMessageText": "666314c5a9290f9e0806cca5 changeQuestMessageText", - "completePlayerMessage": "666314c5a9290f9e0806cca5 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6679884cef969161e3e9d64d", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66687bc89111279d600b5062" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667988545af9f7082798b67d", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66687bc89111279d600b5062" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abeaff28dc453b4168497", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314c3acf8442f8b0531a3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314c5a9290f9e0806cca5 description", - "failMessageText": "666314c5a9290f9e0806cca5 failMessageText", - "declinePlayerMessage": "666314c5a9290f9e0806cca5 declinePlayerMessage", - "name": "666314c5a9290f9e0806cca5 name", - "note": "666314c5a9290f9e0806cca5 note", - "traderId": "5ac3b934156ae10c4430e83c", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/6682a77f75d2dfc8330a07e0.png", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314c5a9290f9e0806cca5 startedMessageText", - "successMessageText": "666314c5a9290f9e0806cca5 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 55000, - "id": "667d51cc2388eb5c9e057727", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d51d80d6863e726128cac", - "type": "TraderStanding", - "index": 0, - "target": "5ac3b934156ae10c4430e83c", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 145000, - "id": "667d51e2037f250605042455", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721038b3", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a721038b3", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 145000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d51eccd4077ffb9082fe5", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721038b7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721038b5", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721038b6", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721038b7", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314bf1cd52e3d040a2e78": { - "QuestName": "Serious Allegations", - "_id": "666314bf1cd52e3d040a2e78", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314bf1cd52e3d040a2e78 acceptPlayerMessage", - "changeQuestMessageText": "666314bf1cd52e3d040a2e78 changeQuestMessageText", - "completePlayerMessage": "666314bf1cd52e3d040a2e78 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "667571ad6889d3af44af7be2", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66760b3deb51b08bd40c2b08" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667571cb7620e3041bad913c", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "66760b3deb51b08bd40c2b08" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe8e309ba12125128d76", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314bd920800278d0f6748", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314bf1cd52e3d040a2e78 description", - "failMessageText": "666314bf1cd52e3d040a2e78 failMessageText", - "declinePlayerMessage": "666314bf1cd52e3d040a2e78 declinePlayerMessage", - "name": "666314bf1cd52e3d040a2e78 name", - "note": "666314bf1cd52e3d040a2e78 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5704e554d2720bac5b8b456e", - "image": "/files/quest/icon/6682a777e1471d93f20255c1.png", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314bf1cd52e3d040a2e78 startedMessageText", - "successMessageText": "666314bf1cd52e3d040a2e78 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 36000, - "id": "667d50b068f52677e00a06f2", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d50b9c2e8131e070ae4a8", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1500, - "id": "667d50c12388eb5c9e057724", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210390e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a7210390e", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1500 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d50d8037f250605042452", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103910", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103910", - "_tpl": "57235b6f24597759bf5a30f1", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d50eb4dbf58fd1e1377c1", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103912", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103912", - "_tpl": "5a16b93dfcdbcbcae6687261", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "667d50fe0f4a5e68200e7671", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103914", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103914", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314b8312343839d032d24": { - "QuestName": "Airmail", - "_id": "666314b8312343839d032d24", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314b8312343839d032d24 acceptPlayerMessage", - "changeQuestMessageText": "666314b8312343839d032d24 changeQuestMessageText", - "completePlayerMessage": "666314b8312343839d032d24 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6672edeb729d6fb1c5643295", - "conditions": [ - { - "conditionType": "LaunchFlare", - "dynamicLocale": false, - "id": "66740959ccd38d189b9d61cc", - "target": "NosQuests_5_Flaer" - } - ] - }, - "id": "6672edebec0c3e2ad7d4e489", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Completion", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe5b2881e85d2b8c11c8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314b696a9349baa021bac", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314b8312343839d032d24 description", - "failMessageText": "666314b8312343839d032d24 failMessageText", - "declinePlayerMessage": "666314b8312343839d032d24 declinePlayerMessage", - "name": "666314b8312343839d032d24 name", - "note": "666314b8312343839d032d24 note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "5704e3c2d2720bac5b8b4567", - "image": "/files/quest/icon/6682a73b75d2dfc8330a07dc.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314b8312343839d032d24 startedMessageText", - "successMessageText": "666314b8312343839d032d24 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4de868f52677e00a06ee", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103916", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103916", - "_tpl": "62178c4d4ecf221597654e3d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 14000, - "id": "667d4df1b3d7feb16a09905f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "667d4dfa2388eb5c9e057721", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 42000, - "id": "667d4e130d6863e726128ca6", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103918", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103918", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 42000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d4f3f0f4a5e68200e766c", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210391b", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a7210391a", - "_tpl": "5cc9c20cd7f00c001336c65d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a7210391b", - "_tpl": "5cc9c20cd7f00c001336c65d", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d4f50b3d7feb16a099060", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a7210391e", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a7210391d", - "_tpl": "5a5f1ce64f39f90b401987bc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a7210391e", - "_tpl": "5a5f1ce64f39f90b401987bc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314b0acf8442f8b0531a1": { - "QuestName": "Hell on Earth - Part 1", - "_id": "666314b0acf8442f8b0531a1", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314b0acf8442f8b0531a1 acceptPlayerMessage", - "changeQuestMessageText": "666314b0acf8442f8b0531a1 changeQuestMessageText", - "completePlayerMessage": "666314b0acf8442f8b0531a1 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "WeaponAssembly", - "id": "66632cf3fbd7dedfa6153a9f", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": [ - "5580223e4bdc2d1c128b457f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [], - "baseAccuracy": { - "compareMethod": ">=", - "value": 0 - }, - "durability": { - "compareMethod": ">=", - "value": 80 - }, - "effectiveDistance": { - "compareMethod": ">=", - "value": 0 - }, - "emptyTacticalSlot": { - "compareMethod": ">=", - "value": 0 - }, - "ergonomics": { - "compareMethod": ">=", - "value": 42 - }, - "height": { - "compareMethod": ">=", - "value": 0 - }, - "magazineCapacity": { - "compareMethod": ">=", - "value": 0 - }, - "muzzleVelocity": { - "compareMethod": ">=", - "value": 0 - }, - "recoil": { - "compareMethod": ">=", - "value": 0 - }, - "weight": { - "compareMethod": ">=", - "value": 0 - }, - "width": { - "compareMethod": ">=", - "value": 0 - }, - "containsItems": [], - "hasItemFromCategory": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Level", - "id": "667d3f1a52f51b32124c1cc8", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "globalQuestCounterId": "", - "value": 27, - "compareMethod": ">=", - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "667d3f3172ffda9e9ad6e4e9", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "666314b4d7f171c4c20226c3", - "status": [ - 4, - 2 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314b0acf8442f8b0531a1 description", - "failMessageText": "666314b0acf8442f8b0531a1 failMessageText", - "declinePlayerMessage": "666314b0acf8442f8b0531a1 declinePlayerMessage", - "name": "666314b0acf8442f8b0531a1 name", - "note": "666314b0acf8442f8b0531a1 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/6682a71f9cf6cc15c00a0f8d.png", - "type": "Merchant", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314b0acf8442f8b0531a1 startedMessageText", - "successMessageText": "666314b0acf8442f8b0531a1 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 15600, - "id": "667d3f45037f250605042444", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.01, - "id": "667d3f50b3d7feb16a099058", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 35700, - "id": "667d3f5e2388eb5c9e057706", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039b2", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a721039b2", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 35700 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d3f6a68f52677e00a06e6", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039b9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039b6", - "_tpl": "64be79e2bf8412471d0d9bcc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039b7", - "_tpl": "6570495b45d573133d0d6adb", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a721039b6", - "slotId": "Soft_armor_front" - }, - { - "_id": "67eb506040b1947a721039b8", - "_tpl": "657049d23425b19bbc0502f0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a721039b6", - "slotId": "Soft_armor_back" - }, - { - "_id": "67eb506040b1947a721039b9", - "_tpl": "64be79e2bf8412471d0d9bcc", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039ba", - "_tpl": "6570495b45d573133d0d6adb", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a721039b9", - "slotId": "Soft_armor_front" - }, - { - "_id": "67eb506040b1947a721039bb", - "_tpl": "657049d23425b19bbc0502f0", - "upd": { - "SpawnedInSession": true - }, - "parentId": "67eb506040b1947a721039b9", - "slotId": "Soft_armor_back" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314bc1d3ec95634095e77": { - "QuestName": "Minute of Fame", - "_id": "666314bc1d3ec95634095e77", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314bc1d3ec95634095e77 acceptPlayerMessage", - "changeQuestMessageText": "666314bc1d3ec95634095e77 changeQuestMessageText", - "completePlayerMessage": "666314bc1d3ec95634095e77 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "667a958eb30fe2e2938a6387", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "667a8ef464eea5fdef0db135" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667a95972740eaeca1ecda21", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "667a8ef464eea5fdef0db135" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe764bb3754b96983eef", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314bafd5ca9577902e03a", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314bc1d3ec95634095e77 description", - "failMessageText": "666314bc1d3ec95634095e77 failMessageText", - "declinePlayerMessage": "666314bc1d3ec95634095e77 declinePlayerMessage", - "name": "666314bc1d3ec95634095e77 name", - "note": "666314bc1d3ec95634095e77 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dbc024597771384a510d", - "image": "/files/quest/icon/6682a74d9cf6cc15c00a0f91.png", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314bc1d3ec95634095e77 startedMessageText", - "successMessageText": "666314bc1d3ec95634095e77 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 40000, - "id": "667d4fe8f9cc126bda0933d4", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d4ff1cd4077ffb9082fe0", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1600, - "id": "667d4ffc0f4a5e68200e766e", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039d1", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a721039d1", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1600 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d500ee106f3757711423a", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039d4", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039d3", - "_tpl": "63877c99e785640d436458ea", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039d4", - "_tpl": "63877c99e785640d436458ea", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d50288f391ec6e307ce8e", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039d7", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039d6", - "_tpl": "612e0d3767085e45ef14057f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039d7", - "_tpl": "612e0d3767085e45ef14057f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d504446773164c205eda2", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039da", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039d9", - "_tpl": "5fbe7618d6fa9c00c571bb6c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039da", - "_tpl": "5fbe7618d6fa9c00c571bb6c", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "674600a366e6a521aa05eb66": { - "QuestName": "Route Deviation", - "_id": "674600a366e6a521aa05eb66", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "674600a366e6a521aa05eb66 acceptPlayerMessage", - "changeQuestMessageText": "674600a366e6a521aa05eb66 changeQuestMessageText", - "completePlayerMessage": "674600a366e6a521aa05eb66 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "PlaceBeacon", - "id": "67460118d3498f1b35e0a025", - "index": 3, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_1", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6746011dfd1dc9d0f502e55d", - "index": 4, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_2", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "674601247aa943781a1cf3fc", - "index": 5, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_3", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "674601282043d1ef3c6b2eec", - "index": 6, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_4", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6746012a35218bb89951248e", - "index": 7, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_5", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "PlaceBeacon", - "id": "6746012d871e69a9abb5873d", - "index": 8, - "parentId": "", - "dynamicLocale": false, - "plantTime": 15, - "zoneId": "Mark_BTR_6", - "target": [ - "5991b51486f77447b112d44f" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "674600a366e6a521aa05eb68", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6745fae369a58fceba10343d", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [ - { - "conditionType": "Quest", - "id": "674601e755b83e45bd9492df", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "6744af0969a58fceba101fed", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - }, - { - "conditionType": "Quest", - "id": "674601eb4a6a0f17fa7dd5af", - "index": 1, - "parentId": "", - "dynamicLocale": false, - "target": "6745cbee909d2013670a4a55", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ] - }, - "description": "674600a366e6a521aa05eb66 description", - "failMessageText": "674600a366e6a521aa05eb66 failMessageText", - "declinePlayerMessage": "674600a366e6a521aa05eb66 declinePlayerMessage", - "name": "674600a366e6a521aa05eb66 name", - "note": "674600a366e6a521aa05eb66 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "5714dc692459777137212e12", - "image": "/files/quest/icon/63aaec53e842787ad21356a3.jpg", - "type": "Discover", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "674600a366e6a521aa05eb66 startedMessageText", - "successMessageText": "674600a366e6a521aa05eb66 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 6, - "id": "675841607164bdd037e8045f", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039e9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039e4", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039e5", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039e6", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039e7", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039e8", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039e9", - "_tpl": "5991b51486f77447b112d44f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 17900, - "id": "675840e5c3fc54b2324511ce", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1100, - "id": "675840ed8da7385b3d1a02e7", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039eb", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a721039eb", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1100 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "675840f5f6750a19a3dfa9be", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1, - "id": "67584111862fde51cf75758b", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039ec", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039ec", - "_tpl": "5c488a752e221602b412af63", - "upd": { - "StackObjectsCount": 1, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "67eb506040b1947a721039ed", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "67eb506040b1947a721039ec", - "slotId": "mod_pistol_grip" - }, - { - "_id": "67eb506040b1947a721039ee", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "67eb506040b1947a721039ec", - "slotId": "mod_magazine" - }, - { - "_id": "67eb506040b1947a721039ef", - "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "67eb506040b1947a721039ec", - "slotId": "mod_handguard" - }, - { - "_id": "67eb506040b1947a721039f0", - "_tpl": "5c48a2852e221602b21d5923", - "parentId": "67eb506040b1947a721039ec", - "slotId": "mod_barrel" - }, - { - "_id": "67eb506040b1947a721039f1", - "_tpl": "5c48a2a42e221602b66d1e07", - "parentId": "67eb506040b1947a721039f0", - "slotId": "mod_muzzle" - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6758413c96a0d78950c8af2e", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039f5", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a721039f3", - "_tpl": "544a378f4bdc2d30388b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039f4", - "_tpl": "544a378f4bdc2d30388b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a721039f5", - "_tpl": "544a378f4bdc2d30388b4567", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "6758414c8874b6a05ffd38d8", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a721039fc", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a721039f8", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "67eb506040b1947a721039f9", - "_tpl": "54527ac44bdc2d36668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "67eb506040b1947a721039f8", - "slotId": "cartridges" - }, - { - "_id": "67eb506040b1947a721039fa", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "67eb506040b1947a721039fb", - "_tpl": "54527ac44bdc2d36668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "67eb506040b1947a721039fa", - "slotId": "cartridges" - }, - { - "_id": "67eb506040b1947a721039fc", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "67eb506040b1947a721039fd", - "_tpl": "54527ac44bdc2d36668b4567", - "upd": { - "StackObjectsCount": 50 - }, - "parentId": "67eb506040b1947a721039fc", - "slotId": "cartridges" - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314c3acf8442f8b0531a3": { - "QuestName": "Proper Comeback", - "_id": "666314c3acf8442f8b0531a3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314c3acf8442f8b0531a3 acceptPlayerMessage", - "changeQuestMessageText": "666314c3acf8442f8b0531a3 changeQuestMessageText", - "completePlayerMessage": "666314c3acf8442f8b0531a3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "667442da875be5fb415df535", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_11_wood_place", - "target": [ - "5bc9bc53d4351e00367fbcee" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "6682873d755938fa4cb73073", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_11_shoreline_place", - "target": [ - "5bc9bc53d4351e00367fbcee" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66d080533a3c33d823a3477d", - "index": 2, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_11_factory_place", - "target": [ - "5bc9bc53d4351e00367fbcee" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abea55d8c0026325fa26a", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314c10aa5c7436c00908c", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314c3acf8442f8b0531a3 description", - "failMessageText": "666314c3acf8442f8b0531a3 failMessageText", - "declinePlayerMessage": "666314c3acf8442f8b0531a3 declinePlayerMessage", - "name": "666314c3acf8442f8b0531a3 name", - "note": "666314c3acf8442f8b0531a3 note", - "traderId": "58330581ace78e27b8b10cee", - "location": "any", - "image": "/files/quest/icon/664088150e8c3b39563f2b73.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314c3acf8442f8b0531a3 startedMessageText", - "successMessageText": "666314c3acf8442f8b0531a3 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 78000, - "id": "667d516c0f4a5e68200e7672", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d5175e106f3757711423d", - "type": "TraderStanding", - "index": 0, - "target": "58330581ace78e27b8b10cee", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 1900, - "id": "667d517e8f391ec6e307ce92", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a09", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103a09", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 1900 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d518e46773164c205eda6", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a0c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a0b", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a0c", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d5195f9cc126bda0933d7", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a0f", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a0e", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a0f", - "_tpl": "5c12620d86f7743f8b198b72", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314b2a9290f9e0806cca3": { - "QuestName": "Hell on Earth - Part 2", - "_id": "666314b2a9290f9e0806cca3", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314b2a9290f9e0806cca3 acceptPlayerMessage", - "changeQuestMessageText": "666314b2a9290f9e0806cca3 changeQuestMessageText", - "completePlayerMessage": "666314b2a9290f9e0806cca3 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "66632dee1d770a50deb5f7d6", - "conditions": [ - { - "bodyPart": [], - "compareMethod": ">=", - "conditionType": "Kills", - "daytime": { - "from": 0, - "to": 0 - }, - "distance": { - "compareMethod": ">=", - "value": 0 - }, - "dynamicLocale": false, - "enemyEquipmentExclusive": [], - "enemyEquipmentInclusive": [], - "enemyHealthEffects": [], - "id": "66632eb0b0950771a732ab47", - "resetOnSessionEnd": false, - "savageRole": [ - "sectantPriest", - "sectantWarrior" - ], - "target": "Savage", - "value": 1, - "weapon": [ - "5580223e4bdc2d1c128b457f", - "64748cb8de82c85eaf0a273a" - ], - "weaponCaliber": [], - "weaponModsExclusive": [], - "weaponModsInclusive": [] - } - ] - }, - "id": "66632deea5607d352f3aa844", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 3, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe309566bbce552f7e10", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314b0acf8442f8b0531a1", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314b2a9290f9e0806cca3 description", - "failMessageText": "666314b2a9290f9e0806cca3 failMessageText", - "declinePlayerMessage": "666314b2a9290f9e0806cca3 declinePlayerMessage", - "name": "666314b2a9290f9e0806cca3 name", - "note": "666314b2a9290f9e0806cca3 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/6682a71075d2dfc8330a07d8.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314b2a9290f9e0806cca3 startedMessageText", - "successMessageText": "666314b2a9290f9e0806cca3 successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "667c02cc4dbf58fd1e0f5e45", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a1a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a1a", - "_tpl": "5580223e4bdc2d1c128b457f", - "upd": { - "StackObjectsCount": 1, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "67eb506040b1947a72103a1b", - "_tpl": "5580169d4bdc2d9d138b4585", - "parentId": "67eb506040b1947a72103a1a", - "slotId": "mod_barrel" - }, - { - "_id": "67eb506040b1947a72103a1c", - "_tpl": "611a31ce5b7ffe001b4649d1", - "parentId": "67eb506040b1947a72103a1a", - "slotId": "mod_stock" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 98000, - "id": "667d3faa037f250605042445", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "667d3fb4b3d7feb16a099059", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 324000, - "id": "667d3fc44dbf58fd1e1377b4", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a1e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103a1e", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 324000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d3ff1c2e8131e070ae498", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a22", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a20", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a21", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a22", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d3ffa2388eb5c9e057708", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a26", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a24", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a25", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a26", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d400568f52677e00a06e7", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a2a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a28", - "_tpl": "618a431df1eb8e24b8741deb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a29", - "_tpl": "618a431df1eb8e24b8741deb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a2a", - "_tpl": "618a431df1eb8e24b8741deb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314bd920800278d0f6748": { - "QuestName": "Viewer", - "_id": "666314bd920800278d0f6748", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314bd920800278d0f6748 acceptPlayerMessage", - "changeQuestMessageText": "666314bd920800278d0f6748 changeQuestMessageText", - "completePlayerMessage": "666314bd920800278d0f6748 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "667bf8370849ce7edf2b124e", - "index": 3, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_8_wood_place", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "667bf840981b1c594af358ce", - "index": 4, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_8_shoreline_place", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "LeaveItemAtLocation", - "dogtagLevel": 0, - "id": "66d07fa69d373d977f437fe0", - "index": 2, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "plantTime": 40, - "zoneId": "NosQuests_8_factory_place", - "target": [ - "5b4391a586f7745321235ab2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe8257f5a79e2b8bc642", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314bc1d3ec95634095e77", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314bd920800278d0f6748 description", - "failMessageText": "666314bd920800278d0f6748 failMessageText", - "declinePlayerMessage": "666314bd920800278d0f6748 declinePlayerMessage", - "name": "666314bd920800278d0f6748 name", - "note": "666314bd920800278d0f6748 note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/664088150e8c3b39563f2b73.png", - "type": "Completion", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314bd920800278d0f6748 startedMessageText", - "successMessageText": "666314bd920800278d0f6748 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 74000, - "id": "667d506d0f4a5e68200e766f", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d5077b3d7feb16a099062", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 172000, - "id": "667d50838f391ec6e307ce8f", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a8e", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103a8e", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 172000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "667d508d46773164c205eda3", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a94", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a90", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a91", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a92", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a93", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a94", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "667d5096f9cc126bda0933d5", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103a9a", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103a96", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a97", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a98", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a99", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103a9a", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "674602307e3818d5bb069489": { "QuestName": "Hindsight 2020", "_id": "674602307e3818d5bb069489", @@ -138548,262 +141710,6 @@ "arenaLocations": [], "status": 0 }, - "666314b696a9349baa021bac": { - "QuestName": "Quality Standard", - "_id": "666314b696a9349baa021bac", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314b696a9349baa021bac acceptPlayerMessage", - "changeQuestMessageText": "666314b696a9349baa021bac changeQuestMessageText", - "completePlayerMessage": "666314b696a9349baa021bac completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "6672e47f25ab92726912c3e5", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "666879d498b97e3a8f09f1ae" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "6672e49679243c500ec02c2e", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "666879d498b97e3a8f09f1ae" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe4bf4179cecd79b7a6b", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314b4d7f171c4c20226c3", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314b696a9349baa021bac description", - "failMessageText": "666314b696a9349baa021bac failMessageText", - "declinePlayerMessage": "666314b696a9349baa021bac declinePlayerMessage", - "name": "666314b696a9349baa021bac name", - "note": "666314b696a9349baa021bac note", - "traderId": "54cb57776803fa99248b456e", - "location": "5b0fc42d86f7744a585f9105", - "image": "/files/quest/icon/5d694c9086f77468c86a6ada.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314b696a9349baa021bac startedMessageText", - "successMessageText": "666314b696a9349baa021bac successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4b94b3d7feb16a09905e", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103afe", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103afe", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 42000, - "id": "667d4b9e8f391ec6e307ce8c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d4ba846773164c205ed9f", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 164000, - "id": "667d4bb4f9cc126bda0933d3", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103b00", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103b00", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 164000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "667d4bc0cd4077ffb9082fde", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103b06", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103b02", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b03", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b04", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b05", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b06", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 5, - "id": "667d4bc80f4a5e68200e766a", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103b0c", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103b08", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b09", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b0a", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b0b", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103b0c", - "_tpl": "5c0e534186f7747fa1419867", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "6740a15566e6a521aa051b15": { "QuestName": "Forge a Friendship", "_id": "6740a15566e6a521aa051b15", @@ -139141,561 +142047,6 @@ "arenaLocations": [], "status": 0 }, - "666314bafd5ca9577902e03a": { - "QuestName": "The Good Times - Part 2", - "_id": "666314bafd5ca9577902e03a", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314bafd5ca9577902e03a acceptPlayerMessage", - "changeQuestMessageText": "666314bafd5ca9577902e03a changeQuestMessageText", - "completePlayerMessage": "666314bafd5ca9577902e03a completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "completeInSeconds": 0, - "conditionType": "CounterCreator", - "counter": { - "id": "6663389ab88d5660328a9953", - "conditions": [ - { - "bodyPart": [], - "compareMethod": ">=", - "conditionType": "Kills", - "daytime": { - "from": 0, - "to": 0 - }, - "distance": { - "compareMethod": ">=", - "value": 0 - }, - "dynamicLocale": false, - "enemyEquipmentExclusive": [], - "enemyEquipmentInclusive": [], - "enemyHealthEffects": [], - "id": "666338ca9c801e64de9593b5", - "resetOnSessionEnd": false, - "savageRole": [], - "target": "Any", - "value": 1, - "weapon": [ - "5b3b713c5acfc4330140bd8d" - ], - "weaponCaliber": [], - "weaponModsExclusive": [], - "weaponModsInclusive": [] - } - ] - }, - "id": "6663389aa257916ad3c89529", - "index": 0, - "parentId": "", - "oneSessionOnly": false, - "dynamicLocale": false, - "type": "Elimination", - "doNotResetIfCounterCompleted": false, - "globalQuestCounterId": "", - "value": 10, - "visibilityConditions": [], - "isNecessary": false, - "isResetOnConditionFailed": false - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe6918436d08a032c0ed", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314b8312343839d032d24", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314bafd5ca9577902e03a description", - "failMessageText": "666314bafd5ca9577902e03a failMessageText", - "declinePlayerMessage": "666314bafd5ca9577902e03a declinePlayerMessage", - "name": "666314bafd5ca9577902e03a name", - "note": "666314bafd5ca9577902e03a note", - "traderId": "54cb50c76803fa8b248b4571", - "location": "any", - "image": "/files/quest/icon/6682a74575d2dfc8330a07de.png", - "type": "Elimination", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314bafd5ca9577902e03a startedMessageText", - "successMessageText": "666314bafd5ca9577902e03a successMessageText", - "rewards": { - "Started": [ - { - "availableInGameEditions": [], - "value": 1, - "id": "667d4fc2e106f37577114239", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103bf1", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103bf1", - "_tpl": "5b3b713c5acfc4330140bd8d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "67eb506040b1947a72103bf2", - "_tpl": "5b3baf8f5acfc40dc5296692", - "parentId": "67eb506040b1947a72103bf1", - "slotId": "mod_barrel" - }, - { - "_id": "67eb506040b1947a72103bf3", - "_tpl": "5b3cadf35acfc400194776a0", - "parentId": "67eb506040b1947a72103bf1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "67eb506040b1947a72103bf4", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "67eb506040b1947a72103bf1", - "slotId": "mod_magazine" - } - ] - } - ], - "Success": [ - { - "availableInGameEditions": [], - "value": 62400, - "id": "667d4f8b46773164c205eda1", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.03, - "id": "667d4f964dbf58fd1e1377be", - "type": "TraderStanding", - "index": 0, - "target": "54cb50c76803fa8b248b4571", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 226000, - "id": "667d4fa668f52677e00a06ef", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103bf6", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103bf6", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 226000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 2, - "id": "667d4fb6c2e8131e070ae4a5", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103bf9", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103bf8", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103bf9", - "_tpl": "5aafbde786f774389d0cbc0f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, - "666314c10aa5c7436c00908c": { - "QuestName": "Camera Action", - "_id": "666314c10aa5c7436c00908c", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "666314c10aa5c7436c00908c acceptPlayerMessage", - "changeQuestMessageText": "666314c10aa5c7436c00908c changeQuestMessageText", - "completePlayerMessage": "666314c10aa5c7436c00908c completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66675a4567c0cf0989946e12", - "index": 0, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590c392f86f77444754deb29" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66675a50f15c3daac1fcb57d", - "index": 1, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5909e99886f7740c983b9984" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66675a5b89c89dbbf90361d5", - "index": 2, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5af0561e86f7745f5f3ad6ac" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "66675a66e7b6dbc6ff88de91", - "index": 3, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "590a358486f77429692b2790" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c252898eab887725ef789", - "index": 4, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "573477e124597737dd42e191" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c25452c353b0176f883d1", - "index": 5, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "6389c70ca33d8c4cdf4932c6" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c257562774a862480925c", - "index": 6, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c06779c86f77426e00dd782" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c25970b2c3c93bfc0f204", - "index": 7, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5c06782b86f77426df5407d2" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c25a8b3d49a2e3f4bd05c", - "index": 8, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b2ffd86f77425243e8d17" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c25b7b4419ddadbe352be", - "index": 9, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "57347baf24597738002c6178" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c25eeb3fba3b8f07b9193", - "index": 10, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b304286f774253763a528" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "667c26159bd3d32fb565578e", - "index": 11, - "maxDurability": 100, - "minDurability": 0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": true, - "dynamicLocale": false, - "target": [ - "5d1b392c86f77425243e98fe" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "667abe9a893092770c3aa869", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "666314bf1cd52e3d040a2e78", - "status": [ - 4 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "666314c10aa5c7436c00908c description", - "failMessageText": "666314c10aa5c7436c00908c failMessageText", - "declinePlayerMessage": "666314c10aa5c7436c00908c declinePlayerMessage", - "name": "666314c10aa5c7436c00908c name", - "note": "666314c10aa5c7436c00908c note", - "traderId": "5a7c2eca46aef81a7ca2145d", - "location": "any", - "image": "/files/quest/icon/628b805544430c635d52a888.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "666314c10aa5c7436c00908c startedMessageText", - "successMessageText": "666314c10aa5c7436c00908c successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 32000, - "id": "667d5116e106f3757711423c", - "type": "Experience", - "index": 0, - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 0.02, - "id": "667d511f8f391ec6e307ce91", - "type": "TraderStanding", - "index": 0, - "target": "5a7c2eca46aef81a7ca2145d", - "unknown": false - }, - { - "availableInGameEditions": [], - "value": 205000, - "id": "667d513546773164c205eda5", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103bfb", - "unknown": false, - "findInRaid": false, - "items": [ - { - "_id": "67eb506040b1947a72103bfb", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 205000 - } - } - ] - }, - { - "availableInGameEditions": [], - "value": 3, - "id": "667d51544dbf58fd1e1377c2", - "type": "Item", - "index": 0, - "target": "67eb506040b1947a72103bff", - "unknown": false, - "findInRaid": true, - "items": [ - { - "_id": "67eb506040b1947a72103bfd", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103bfe", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - }, - { - "_id": "67eb506040b1947a72103bff", - "_tpl": "5c94bbff86f7747ee735c08f", - "upd": { - "StackObjectsCount": 1, - "SpawnedInSession": true - } - } - ] - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "5e381b0286f77420e3417a74": { "QuestName": "Textile - Part 1", "_id": "5e381b0286f77420e3417a74", @@ -145345,245 +147696,6 @@ "arenaLocations": [], "status": 0 }, - "59c9392986f7742f6923add2": { - "QuestName": "Trust Regain", - "_id": "59c9392986f7742f6923add2", - "canShowNotificationsInGame": true, - "acceptPlayerMessage": "59c9392986f7742f6923add2 acceptPlayerMessage", - "changeQuestMessageText": "59c9392986f7742f6923add2 changeQuestMessageText", - "completePlayerMessage": "59c9392986f7742f6923add2 completePlayerMessage", - "conditions": { - "AvailableForFinish": [ - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "59c93bdb86f7742a19140434", - "index": 0, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593aa4be86f77457f56379f8" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "59c93c1986f7742a424eaa33", - "index": 1, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "591afe0186f77431bd616a11" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "59c93cbb86f7742a19140435", - "index": 2, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5913915886f774123603c392" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "FindItem", - "dogtagLevel": 0, - "id": "59c93cea86f7742a08623162", - "index": 3, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5913877a86f774432f15d444" - ], - "countInRaid": false, - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59c93d4e86f774496b698953", - "index": 4, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "593aa4be86f77457f56379f8" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a5777f086f7740adb5caac7", - "target": "59c93bdb86f7742a19140434", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59c93d8086f7742a19140436", - "index": 5, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "591afe0186f77431bd616a11" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a5777f786f7740ad83ccf69", - "target": "59c93c1986f7742a424eaa33", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59c93d9c86f7742f6923add3", - "index": 6, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5913915886f774123603c392" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57780486f7740adc2f7e45", - "target": "59c93cbb86f7742a19140435", - "conditionType": "CompleteCondition" - } - ] - }, - { - "conditionType": "HandoverItem", - "dogtagLevel": 0, - "id": "59c93dbf86f7742a424eaa34", - "index": 7, - "maxDurability": 100.0, - "minDurability": 0.0, - "parentId": "", - "isEncoded": false, - "onlyFoundInRaid": false, - "dynamicLocale": false, - "target": [ - "5913877a86f774432f15d444" - ], - "globalQuestCounterId": "", - "value": 1, - "visibilityConditions": [ - { - "id": "5a57780c86f7741cc1242073", - "target": "59c93cea86f7742a08623162", - "conditionType": "CompleteCondition" - } - ] - } - ], - "AvailableForStart": [ - { - "conditionType": "Quest", - "id": "59c93a6a86f77453b7472343", - "index": 0, - "parentId": "", - "dynamicLocale": false, - "target": "597a160786f77477531d39d2", - "status": [ - 5 - ], - "globalQuestCounterId": "", - "availableAfter": 0, - "dispersion": 0, - "visibilityConditions": [] - } - ], - "Fail": [] - }, - "description": "59c9392986f7742f6923add2 description", - "failMessageText": "59c9392986f7742f6923add2 failMessageText", - "declinePlayerMessage": "59c9392986f7742f6923add2 declinePlayerMessage", - "name": "59c9392986f7742f6923add2 name", - "note": "59c9392986f7742f6923add2 note", - "traderId": "54cb57776803fa99248b456e", - "location": "any", - "image": "/files/quest/icon/59c2742286f77475ec568d92.jpg", - "type": "PickUp", - "isKey": false, - "restartable": false, - "instantComplete": false, - "secretQuest": false, - "startedMessageText": "59c9392986f7742f6923add2 startedMessageText", - "successMessageText": "59c9392986f7742f6923add2 successMessageText", - "rewards": { - "Started": [], - "Success": [ - { - "availableInGameEditions": [], - "value": 0.25, - "id": "60c8bec280b2027f403dd99c", - "type": "TraderStanding", - "index": 0, - "target": "54cb57776803fa99248b456e", - "unknown": false - } - ], - "Fail": [] - }, - "side": "Pmc", - "acceptanceAndFinishingSource": "eft", - "progressSource": "eft", - "rankingModes": [], - "gameModes": [], - "arenaLocations": [], - "status": 0 - }, "66058cb22cee99303f1ba067": { "QuestName": "Easy Money - Part 1", "_id": "66058cb22cee99303f1ba067", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/assort.json index 1f2889d1..80ce531f 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/assort.json @@ -1,7 +1,7 @@ { "items": [ { - "_id": "676d24ce798491c5260f5d02", + "_id": "6808bad7364a85cccb04b607", "_tpl": "544fb45d4bdc2dee738b4568", "parentId": "hideout", "slotId": "hideout", @@ -13,79 +13,7 @@ } }, { - "_id": "676d24ce798491c5260f5d05", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d08", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d0b", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d0e", - "_tpl": "590c678286f77426c9660122", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d11", - "_tpl": "5751a25924597722c463c472", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d14", - "_tpl": "5755356824597772cb798962", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d17", + "_id": "6808bad7364a85cccb04b60a", "_tpl": "5673de654bdc2d180f8b456d", "parentId": "hideout", "slotId": "hideout", @@ -97,43 +25,19 @@ } }, { - "_id": "676d24ce798491c5260f5d1a", - "_tpl": "574eb85c245977648157eec3", + "_id": "6808bad7364a85cccb04b60d", + "_tpl": "590c678286f77426c9660122", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24ce798491c5260f5d1d", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d20", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d23", + "_id": "6808bad7364a85cccb04b610", "_tpl": "5751487e245977207e26a315", "parentId": "hideout", "slotId": "hideout", @@ -145,55 +49,31 @@ } }, { - "_id": "676d24ce798491c5260f5d26", - "_tpl": "59fb016586f7746d0d4b423a", + "_id": "6808bad7364a85cccb04b613", + "_tpl": "5448fee04bdc2dbc018b4567", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24ce798491c5260f5d29", - "_tpl": "59fb042886f7746c5005a7b2", + "_id": "6808bad7364a85cccb04b616", + "_tpl": "590c657e86f77412b013051d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24ce798491c5260f5d2c", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d2f", - "_tpl": "590c695186f7741e566b64a2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d32", + "_id": "6808bad7364a85cccb04b619", "_tpl": "590c678286f77426c9660122", "parentId": "hideout", "slotId": "hideout", @@ -205,32 +85,8 @@ } }, { - "_id": "676d24ce798491c5260f5d35", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d38", - "_tpl": "590c657e86f77412b013051d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ce798491c5260f5d3b", - "_tpl": "590c60fc86f77412b13fddcf", + "_id": "6808bad7364a85cccb04b61c", + "_tpl": "574eb85c245977648157eec3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -241,91 +97,19 @@ } }, { - "_id": "676d24cf798491c5260f5d3e", - "_tpl": "5aafbcd986f7745e590fff23", + "_id": "6808bad7364a85cccb04b61f", + "_tpl": "544fb25a4bdc2dfb738b4567", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 20, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24cf798491c5260f5d41", - "_tpl": "590c657e86f77412b013051d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d44", - "_tpl": "5b7c710788a4506dec015957", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d47", - "_tpl": "5a80a29286f7742b25692012", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d4a", - "_tpl": "567143bf4bdc2d1a0f8b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d4d", - "_tpl": "59fafd4b86f7745ca07e1232", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d50", - "_tpl": "5c093e3486f77430cb02e593", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d53", + "_id": "6808bad7364a85cccb04b622", "_tpl": "59fb042886f7746c5005a7b2", "parentId": "hideout", "slotId": "hideout", @@ -337,8 +121,20 @@ } }, { - "_id": "676d24cf798491c5260f5d56", - "_tpl": "5ad5d7d286f77450166e0a89", + "_id": "6808bad7364a85cccb04b625", + "_tpl": "5751a25924597722c463c472", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad7364a85cccb04b628", + "_tpl": "59fb016586f7746d0d4b423a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -349,31 +145,79 @@ } }, { - "_id": "676d24cf798491c5260f5d59", - "_tpl": "5780d0532459777a5108b9a2", + "_id": "6808bad7364a85cccb04b62b", + "_tpl": "590c5d4b86f774784e1b9c45", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24cf798491c5260f5d5c", - "_tpl": "5c10c8fd86f7743d7d706df3", + "_id": "6808bad7364a85cccb04b62e", + "_tpl": "590c695186f7741e566b64a2", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24cf798491c5260f5d5f", + "_id": "6808bad8364a85cccb04b631", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b634", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b637", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b63a", + "_tpl": "5755356824597772cb798962", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b63d", "_tpl": "544fb37f4bdc2dee738b4567", "parentId": "hideout", "slotId": "hideout", @@ -385,331 +229,7 @@ } }, { - "_id": "676d24cf798491c5260f5d62", - "_tpl": "5a8036fb86f77407252ddc02", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d65", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d68", - "_tpl": "5c0a840b86f7742ffa4f2482", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d6b", - "_tpl": "5aafbcd986f7745e590fff23", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d6e", - "_tpl": "5b7c710788a4506dec015957", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d71", - "_tpl": "5c0e534186f7747fa1419867", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d74", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d77", - "_tpl": "5c0e531286f7747fa54205c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d7a", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d7d", - "_tpl": "5c0a840b86f7742ffa4f2482", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d80", - "_tpl": "5be4038986f774527d3fae60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d83", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d86", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24cf798491c5260f5d89", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d8c", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d8f", - "_tpl": "5d80c78786f774403a401e3e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d92", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d95", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d98", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d9b", - "_tpl": "59e3577886f774176a362503", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5d9e", - "_tpl": "5c10c8fd86f7743d7d706df3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5da1", - "_tpl": "5c0e530286f7747fa1419862", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5da4", - "_tpl": "5c94bbff86f7747ee735c08f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5da7", - "_tpl": "59fb042886f7746c5005a7b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5daa", - "_tpl": "5e4abc6786f77406812bd572", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5dad", - "_tpl": "5c0530ee86f774697952d952", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5db0", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5db3", + "_id": "6808bad8364a85cccb04b640", "_tpl": "5780d0532459777a5108b9a2", "parentId": "hideout", "slotId": "hideout", @@ -721,20 +241,80 @@ } }, { - "_id": "676d24d0798491c5260f5db6", - "_tpl": "5e831507ea0a7c419c2f9bd9", + "_id": "6808bad8364a85cccb04b643", + "_tpl": "5aafbcd986f7745e590fff23", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24d0798491c5260f5db9", - "_tpl": "5e8488fa988a8701445df1e4", + "_id": "6808bad8364a85cccb04b646", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b649", + "_tpl": "5a8036fb86f77407252ddc02", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b64c", + "_tpl": "5c093e3486f77430cb02e593", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b64f", + "_tpl": "590c657e86f77412b013051d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b652", + "_tpl": "59fafd4b86f7745ca07e1232", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b655", + "_tpl": "5c10c8fd86f7743d7d706df3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -745,8 +325,152 @@ } }, { - "_id": "676d24d0798491c5260f5dbc", - "_tpl": "57347d5f245977448b40fa81", + "_id": "6808bad8364a85cccb04b658", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b65b", + "_tpl": "5c0a840b86f7742ffa4f2482", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b65e", + "_tpl": "5ad5d7d286f77450166e0a89", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b661", + "_tpl": "567143bf4bdc2d1a0f8b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad8364a85cccb04b664", + "_tpl": "59fb042886f7746c5005a7b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b667", + "_tpl": "5a80a29286f7742b25692012", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b66a", + "_tpl": "590c60fc86f77412b13fddcf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b66d", + "_tpl": "5b7c710788a4506dec015957", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b670", + "_tpl": "5c0e534186f7747fa1419867", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b673", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b676", + "_tpl": "59fb042886f7746c5005a7b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b679", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b67c", + "_tpl": "5c0e533786f7747fa23f4d47", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -757,8 +481,20 @@ } }, { - "_id": "676d24d0798491c5260f5dbf", - "_tpl": "5a0ee37f86f774023657a86f", + "_id": "6808bad9364a85cccb04b67f", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b682", + "_tpl": "5b7c710788a4506dec015957", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -769,8 +505,20 @@ } }, { - "_id": "676d24d0798491c5260f5dc2", - "_tpl": "619cbf9e0a7c3a1a2731940a", + "_id": "6808bad9364a85cccb04b685", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b688", + "_tpl": "5c0a840b86f7742ffa4f2482", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -781,8 +529,92 @@ } }, { - "_id": "676d24d0798491c5260f5dc5", - "_tpl": "5bc9be8fd4351e00334cae6e", + "_id": "6808bad9364a85cccb04b68b", + "_tpl": "5c0e531286f7747fa54205c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b68e", + "_tpl": "5be4038986f774527d3fae60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b691", + "_tpl": "5d80c78786f774403a401e3e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b694", + "_tpl": "5aafbcd986f7745e590fff23", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b697", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b69a", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b69d", + "_tpl": "5c10c8fd86f7743d7d706df3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b6a0", + "_tpl": "59e3577886f774176a362503", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -793,8 +625,8 @@ } }, { - "_id": "676d24d0798491c5260f5dc8", - "_tpl": "593aa4be86f77457f56379f8", + "_id": "6808bad9364a85cccb04b6a3", + "_tpl": "5c0e531d86f7747fa23f4d42", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -805,44 +637,8 @@ } }, { - "_id": "676d24d0798491c5260f5dcb", - "_tpl": "5938603e86f77435642354f4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5dce", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d0798491c5260f5dd1", - "_tpl": "5d1b371186f774253763a656", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d1798491c5260f5dd4", - "_tpl": "5448fee04bdc2dbc018b4567", + "_id": "6808bad9364a85cccb04b6a6", + "_tpl": "5c94bbff86f7747ee735c08f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -853,19 +649,31 @@ } }, { - "_id": "676d24d1798491c5260f5dd7", - "_tpl": "5e8488fa988a8701445df1e4", + "_id": "6808bad9364a85cccb04b6a9", + "_tpl": "5448ff904bdc2d6f028b456e", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24d1798491c5260f5dda", + "_id": "6808bad9364a85cccb04b6ac", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b6af", "_tpl": "57347c93245977448d35f6e3", "parentId": "hideout", "slotId": "hideout", @@ -877,7 +685,19 @@ } }, { - "_id": "676d24d1798491c5260f5ddd", + "_id": "6808bad9364a85cccb04b6b2", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad9364a85cccb04b6b5", "_tpl": "619cbf7d23893217ec30b689", "parentId": "hideout", "slotId": "hideout", @@ -889,7 +709,187 @@ } }, { - "_id": "676d24d1798491c5260f5de0", + "_id": "6808bad9364a85cccb04b6b8", + "_tpl": "593aa4be86f77457f56379f8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6bb", + "_tpl": "619cbf9e0a7c3a1a2731940a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6be", + "_tpl": "5a0ee37f86f774023657a86f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6c1", + "_tpl": "5e4abc6786f77406812bd572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6c4", + "_tpl": "5d1b371186f774253763a656", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6c7", + "_tpl": "5938603e86f77435642354f4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6ca", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6cd", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6d0", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6d3", + "_tpl": "5780d0532459777a5108b9a2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6d6", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6d9", + "_tpl": "5c0530ee86f774697952d952", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6dc", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6df", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6e2", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6e5", "_tpl": "5c0e530286f7747fa1419862", "parentId": "hideout", "slotId": "hideout", @@ -901,7 +901,7 @@ } }, { - "_id": "676d24d1798491c5260f5de3", + "_id": "6808bada364a85cccb04b6e8", "_tpl": "5c0e530286f7747fa1419862", "parentId": "hideout", "slotId": "hideout", @@ -913,43 +913,7 @@ } }, { - "_id": "676d24d1798491c5260f5de6", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d1798491c5260f5de9", - "_tpl": "5938144586f77473c2087145", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d1798491c5260f5dec", - "_tpl": "5780cfa52459777dfb276eb1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24d1798491c5260f5def", + "_id": "6808bada364a85cccb04b6eb", "_tpl": "62a0a043cf4a99369e2624a5", "parentId": "hideout", "slotId": "hideout", @@ -961,7 +925,31 @@ } }, { - "_id": "676d24d1798491c5260f5df2", + "_id": "6808bada364a85cccb04b6ee", + "_tpl": "5780cfa52459777dfb276eb1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6f1", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6f4", "_tpl": "5448ff904bdc2d6f028b456e", "parentId": "hideout", "slotId": "hideout", @@ -973,7 +961,19 @@ } }, { - "_id": "67e50e6d4e0adf4dec0eb281", + "_id": "6808bada364a85cccb04b6f7", + "_tpl": "5938144586f77473c2087145", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b6fa", "_tpl": "67d3ed3271c17ff82e0a5b0b", "parentId": "hideout", "slotId": "hideout", @@ -985,26 +985,26 @@ } }, { - "_id": "67e50e6d4e0adf4dec0eb284", + "_id": "6808bada364a85cccb04b6fd", + "_tpl": "67d3ed3271c17ff82e0a5b0b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bada364a85cccb04b700", "_tpl": "679b9819a2f2dd4da9023512", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67e50e6d4e0adf4dec0eb287", - "_tpl": "67d3ed3271c17ff82e0a5b0b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, @@ -1020,7 +1020,7 @@ } ], "barter_scheme": { - "676d24ce798491c5260f5d02": [ + "6808bad7364a85cccb04b607": [ [ { "count": 37061, @@ -1028,55 +1028,7 @@ } ] ], - "676d24ce798491c5260f5d05": [ - [ - { - "count": 1, - "_tpl": "5d1b3f2d86f774253763b735" - } - ] - ], - "676d24ce798491c5260f5d08": [ - [ - { - "count": 4283, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d0b": [ - [ - { - "count": 2182, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d0e": [ - [ - { - "count": 1, - "_tpl": "59e35abd86f7741778269d82" - } - ] - ], - "676d24ce798491c5260f5d11": [ - [ - { - "count": 2275, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d14": [ - [ - { - "count": 6638, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d17": [ + "6808bad7364a85cccb04b60a": [ [ { "count": 1, @@ -1088,31 +1040,15 @@ } ] ], - "676d24ce798491c5260f5d1a": [ + "6808bad7364a85cccb04b60d": [ [ { - "count": 17896, - "_tpl": "5449016a4bdc2d6f028b456f" + "count": 1, + "_tpl": "59e35abd86f7741778269d82" } ] ], - "676d24ce798491c5260f5d1d": [ - [ - { - "count": 12401, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d20": [ - [ - { - "count": 8542, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d23": [ + "6808bad7364a85cccb04b610": [ [ { "count": 16539, @@ -1120,7 +1056,63 @@ } ] ], - "676d24ce798491c5260f5d26": [ + "6808bad7364a85cccb04b613": [ + [ + { + "count": 12401, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b616": [ + [ + { + "count": 79739, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b619": [ + [ + { + "count": 43524, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b61c": [ + [ + { + "count": 17896, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b61f": [ + [ + { + "count": 2182, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b622": [ + [ + { + "count": 15192.74, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808bad7364a85cccb04b625": [ + [ + { + "count": 2275, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad7364a85cccb04b628": [ [ { "count": 5, @@ -1136,23 +1128,15 @@ } ] ], - "676d24ce798491c5260f5d29": [ + "6808bad7364a85cccb04b62b": [ [ { - "count": 15192.74, - "_tpl": "569668774bdc2da2298b4568" + "count": 1, + "_tpl": "5d1b3f2d86f774253763b735" } ] ], - "676d24ce798491c5260f5d2c": [ - [ - { - "count": 42133, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24ce798491c5260f5d2f": [ + "6808bad7364a85cccb04b62e": [ [ { "count": 45067, @@ -1160,15 +1144,15 @@ } ] ], - "676d24ce798491c5260f5d32": [ + "6808bad8364a85cccb04b631": [ [ { - "count": 43524, + "count": 42133, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "676d24ce798491c5260f5d35": [ + "6808bad8364a85cccb04b634": [ [ { "count": 11795, @@ -1176,31 +1160,39 @@ } ] ], - "676d24ce798491c5260f5d38": [ + "6808bad8364a85cccb04b637": [ [ { - "count": 79739, + "count": 4283, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "676d24ce798491c5260f5d3b": [ + "6808bad8364a85cccb04b63a": [ [ { - "count": 1, - "_tpl": "59e3658a86f7741776641ac4" - }, - { - "count": 1, - "_tpl": "59e3639286f7741777737013" - }, - { - "count": 4, - "_tpl": "573478bc24597738002c6175" + "count": 6638, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "676d24cf798491c5260f5d3e": [ + "6808bad8364a85cccb04b63d": [ + [ + { + "count": 8542, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad8364a85cccb04b640": [ + [ + { + "count": 4, + "_tpl": "5734758f24597738025ee253" + } + ] + ], + "6808bad8364a85cccb04b643": [ [ { "count": 548610, @@ -1208,7 +1200,31 @@ } ] ], - "676d24cf798491c5260f5d41": [ + "6808bad8364a85cccb04b646": [ + [ + { + "count": 1, + "_tpl": "57347d5f245977448b40fa81" + } + ] + ], + "6808bad8364a85cccb04b649": [ + [ + { + "count": 22145, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad8364a85cccb04b64c": [ + [ + { + "count": 344100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad8364a85cccb04b64f": [ [ { "count": 1, @@ -1220,35 +1236,7 @@ } ] ], - "676d24cf798491c5260f5d44": [ - [ - { - "count": 1106138, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d47": [ - [ - { - "count": 10408, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d4a": [ - [ - { - "count": 6, - "_tpl": "5d1b3a5d86f774252167ba22" - }, - { - "count": 4, - "_tpl": "5d1b3f2d86f774253763b735" - } - ] - ], - "676d24cf798491c5260f5d4d": [ + "6808bad8364a85cccb04b652": [ [ { "count": 10, @@ -1264,48 +1252,7 @@ } ] ], - "676d24cf798491c5260f5d50": [ - [ - { - "count": 344100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d53": [ - [ - { - "count": 10, - "_tpl": "5af0534a86f7743b6f354284" - }, - { - "count": 25, - "_tpl": "5d1b3a5d86f774252167ba22", - "onlyFunctional": true - } - ] - ], - "676d24cf798491c5260f5d56": [ - [ - { - "count": 60, - "_tpl": "5734773724597737fd047c14" - }, - { - "count": 10, - "_tpl": "57347d90245977448f7b7f65" - } - ] - ], - "676d24cf798491c5260f5d59": [ - [ - { - "count": 4, - "_tpl": "5734758f24597738025ee253" - } - ] - ], - "676d24cf798491c5260f5d5c": [ + "6808bad8364a85cccb04b655": [ [ { "count": 40159, @@ -1313,7 +1260,7 @@ } ] ], - "676d24cf798491c5260f5d5f": [ + "6808bad8364a85cccb04b658": [ [ { "count": 1, @@ -1321,23 +1268,7 @@ } ] ], - "676d24cf798491c5260f5d62": [ - [ - { - "count": 22145, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d65": [ - [ - { - "count": 1, - "_tpl": "57347d5f245977448b40fa81" - } - ] - ], - "676d24cf798491c5260f5d68": [ + "6808bad8364a85cccb04b65b": [ [ { "count": 15, @@ -1357,7 +1288,200 @@ } ] ], - "676d24cf798491c5260f5d6b": [ + "6808bad8364a85cccb04b65e": [ + [ + { + "count": 60, + "_tpl": "5734773724597737fd047c14" + }, + { + "count": 10, + "_tpl": "57347d90245977448f7b7f65" + } + ] + ], + "6808bad8364a85cccb04b661": [ + [ + { + "count": 6, + "_tpl": "5d1b3a5d86f774252167ba22" + }, + { + "count": 4, + "_tpl": "5d1b3f2d86f774253763b735" + } + ] + ], + "6808bad8364a85cccb04b664": [ + [ + { + "count": 10, + "_tpl": "5af0534a86f7743b6f354284" + }, + { + "count": 25, + "_tpl": "5d1b3a5d86f774252167ba22", + "onlyFunctional": true + } + ] + ], + "6808bad9364a85cccb04b667": [ + [ + { + "count": 10408, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b66a": [ + [ + { + "count": 1, + "_tpl": "59e3658a86f7741776641ac4" + }, + { + "count": 1, + "_tpl": "59e3639286f7741777737013" + }, + { + "count": 4, + "_tpl": "573478bc24597738002c6175" + } + ] + ], + "6808bad9364a85cccb04b66d": [ + [ + { + "count": 1106138, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b670": [ + [ + { + "count": 4, + "_tpl": "5d40412b86f7743cb332ac3a" + } + ] + ], + "6808bad9364a85cccb04b673": [ + [ + { + "count": 3, + "_tpl": "56742c284bdc2d98058b456d" + }, + { + "count": 2, + "_tpl": "57347b8b24597737dd42e192" + } + ] + ], + "6808bad9364a85cccb04b676": [ + [ + { + "count": 80, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 15, + "side": "Any" + } + ] + ], + "6808bad9364a85cccb04b679": [ + [ + { + "count": 1, + "_tpl": "60098b1705871270cd5352a1" + } + ] + ], + "6808bad9364a85cccb04b67c": [ + [ + { + "count": 46537, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b67f": [ + [ + { + "count": 1, + "_tpl": "57513fcc24597720a31c09a6" + } + ] + ], + "6808bad9364a85cccb04b682": [ + [ + { + "count": 40, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 15, + "side": "Any" + } + ] + ], + "6808bad9364a85cccb04b685": [ + [ + { + "count": 33897, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b688": [ + [ + { + "count": 50, + "_tpl": "5d1b376e86f774252519444e" + }, + { + "count": 50, + "_tpl": "5d40407c86f774318526545a" + }, + { + "count": 30, + "_tpl": "5d403f9186f7743cac3f229b" + } + ] + ], + "6808bad9364a85cccb04b68b": [ + [ + { + "count": 1, + "_tpl": "5d1b3f2d86f774253763b735" + }, + { + "count": 1, + "_tpl": "59e361e886f774176c10a2a5" + }, + { + "count": 1, + "_tpl": "59e35abd86f7741778269d82" + } + ] + ], + "6808bad9364a85cccb04b68e": [ + [ + { + "count": 10157, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b691": [ + [ + { + "count": 2, + "_tpl": "5d1b33a686f7742523398398" + }, + { + "count": 2, + "_tpl": "5d1b385e86f774252167b98a" + } + ] + ], + "6808bad9364a85cccb04b694": [ [ { "count": 7, @@ -1377,137 +1501,7 @@ } ] ], - "676d24cf798491c5260f5d6e": [ - [ - { - "count": 40, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 15, - "side": "Any" - } - ] - ], - "676d24cf798491c5260f5d71": [ - [ - { - "count": 4, - "_tpl": "5d40412b86f7743cb332ac3a" - } - ] - ], - "676d24cf798491c5260f5d74": [ - [ - { - "count": 25397, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d77": [ - [ - { - "count": 1, - "_tpl": "5d1b3f2d86f774253763b735" - }, - { - "count": 1, - "_tpl": "59e361e886f774176c10a2a5" - }, - { - "count": 1, - "_tpl": "59e35abd86f7741778269d82" - } - ] - ], - "676d24cf798491c5260f5d7a": [ - [ - { - "count": 1, - "_tpl": "57513fcc24597720a31c09a6" - } - ] - ], - "676d24cf798491c5260f5d7d": [ - [ - { - "count": 50, - "_tpl": "5d1b376e86f774252519444e" - }, - { - "count": 50, - "_tpl": "5d40407c86f774318526545a" - }, - { - "count": 30, - "_tpl": "5d403f9186f7743cac3f229b" - } - ] - ], - "676d24cf798491c5260f5d80": [ - [ - { - "count": 10157, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d83": [ - [ - { - "count": 2, - "_tpl": "5d1b3f2d86f774253763b735" - } - ] - ], - "676d24cf798491c5260f5d86": [ - [ - { - "count": 46537, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24cf798491c5260f5d89": [ - [ - { - "count": 2, - "_tpl": "59e3606886f77417674759a5" - }, - { - "count": 1, - "_tpl": "59e361e886f774176c10a2a5" - } - ] - ], - "676d24d0798491c5260f5d8c": [ - [ - { - "count": 1, - "_tpl": "60098b1705871270cd5352a1" - } - ] - ], - "676d24d0798491c5260f5d8f": [ - [ - { - "count": 2, - "_tpl": "5d1b33a686f7742523398398" - }, - { - "count": 2, - "_tpl": "5d1b385e86f774252167b98a" - } - ] - ], - "676d24d0798491c5260f5d92": [ - [ - { - "count": 14665, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24d0798491c5260f5d95": [ + "6808bad9364a85cccb04b697": [ [ { "count": 1, @@ -1519,27 +1513,15 @@ } ] ], - "676d24d0798491c5260f5d98": [ + "6808bad9364a85cccb04b69a": [ [ - { - "count": 3, - "_tpl": "56742c284bdc2d98058b456d" - }, { "count": 2, - "_tpl": "57347b8b24597737dd42e192" + "_tpl": "5d1b3f2d86f774253763b735" } ] ], - "676d24d0798491c5260f5d9b": [ - [ - { - "count": 6, - "_tpl": "5d1b3a5d86f774252167ba22" - } - ] - ], - "676d24d0798491c5260f5d9e": [ + "6808bad9364a85cccb04b69d": [ [ { "count": 1, @@ -1551,15 +1533,27 @@ } ] ], - "676d24d0798491c5260f5da1": [ + "6808bad9364a85cccb04b6a0": [ [ { - "count": 33897, - "_tpl": "5449016a4bdc2d6f028b456f" + "count": 6, + "_tpl": "5d1b3a5d86f774252167ba22" } ] ], - "676d24d0798491c5260f5da4": [ + "6808bad9364a85cccb04b6a3": [ + [ + { + "count": 2, + "_tpl": "59e3606886f77417674759a5" + }, + { + "count": 1, + "_tpl": "59e361e886f774176c10a2a5" + } + ] + ], + "6808bad9364a85cccb04b6a6": [ [ { "count": 166500, @@ -1567,17 +1561,83 @@ } ] ], - "676d24d0798491c5260f5da7": [ + "6808bad9364a85cccb04b6a9": [ [ { - "count": 80, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 15, - "side": "Any" + "count": 14665, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "676d24d0798491c5260f5daa": [ + "6808bad9364a85cccb04b6ac": [ + [ + { + "count": 25397, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bad9364a85cccb04b6af": [ + [ + { + "count": 2, + "_tpl": "5d4041f086f7743cac3f22a7" + } + ] + ], + "6808bad9364a85cccb04b6b2": [ + [ + { + "count": 1, + "_tpl": "59e361e886f774176c10a2a5" + } + ] + ], + "6808bad9364a85cccb04b6b5": [ + [ + { + "count": 20, + "_tpl": "619cc01e0a7c3a1a2731940c" + }, + { + "count": 15, + "_tpl": "5d1b3f2d86f774253763b735" + }, + { + "count": 12, + "_tpl": "59e361e886f774176c10a2a5" + } + ] + ], + "6808bad9364a85cccb04b6b8": [ + [ + { + "count": 7, + "_tpl": "57347cd0245977445a2d6ff1" + }, + { + "count": 3, + "_tpl": "5734795124597738002c6176" + } + ] + ], + "6808bada364a85cccb04b6bb": [ + [ + { + "count": 508883, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bada364a85cccb04b6be": [ + [ + { + "count": 8, + "_tpl": "5e2af02c86f7746d420957d4" + } + ] + ], + "6808bada364a85cccb04b6c1": [ [ { "count": 2, @@ -1597,23 +1657,23 @@ } ] ], - "676d24d0798491c5260f5dad": [ + "6808bada364a85cccb04b6c4": [ [ { - "count": 20, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 39, - "side": "Any" - }, - { - "count": 140, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 10, - "side": "Usec" + "count": 4, + "_tpl": "6389c6463485cf0eeb260715" } ] ], - "676d24d0798491c5260f5db0": [ + "6808bada364a85cccb04b6c7": [ + [ + { + "count": 7, + "_tpl": "5d1b3a5d86f774252167ba22" + } + ] + ], + "6808bada364a85cccb04b6ca": [ [ { "count": 1, @@ -1621,7 +1681,23 @@ } ] ], - "676d24d0798491c5260f5db3": [ + "6808bada364a85cccb04b6cd": [ + [ + { + "count": 4263, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bada364a85cccb04b6d0": [ + [ + { + "count": 2, + "_tpl": "59e35ef086f7741777737012" + } + ] + ], + "6808bada364a85cccb04b6d3": [ [ { "count": 1, @@ -1637,23 +1713,7 @@ } ] ], - "676d24d0798491c5260f5db6": [ - [ - { - "count": 4263, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24d0798491c5260f5db9": [ - [ - { - "count": 13949, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24d0798491c5260f5dbc": [ + "6808bada364a85cccb04b6d6": [ [ { "count": 2, @@ -1661,51 +1721,31 @@ } ] ], - "676d24d0798491c5260f5dbf": [ + "6808bada364a85cccb04b6d9": [ [ { - "count": 8, - "_tpl": "5e2af02c86f7746d420957d4" + "count": 20, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 39, + "side": "Any" + }, + { + "count": 140, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 10, + "side": "Usec" } ] ], - "676d24d0798491c5260f5dc2": [ + "6808bada364a85cccb04b6dc": [ [ { - "count": 508883, + "count": 13949, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "676d24d0798491c5260f5dc5": [ - [ - { - "count": 4, - "_tpl": "575062b524597720a31c09a1" - } - ] - ], - "676d24d0798491c5260f5dc8": [ - [ - { - "count": 7, - "_tpl": "57347cd0245977445a2d6ff1" - }, - { - "count": 3, - "_tpl": "5734795124597738002c6176" - } - ] - ], - "676d24d0798491c5260f5dcb": [ - [ - { - "count": 7, - "_tpl": "5d1b3a5d86f774252167ba22" - } - ] - ], - "676d24d0798491c5260f5dce": [ + "6808bada364a85cccb04b6df": [ [ { "count": 2, @@ -1713,55 +1753,15 @@ } ] ], - "676d24d0798491c5260f5dd1": [ + "6808bada364a85cccb04b6e2": [ [ { "count": 4, - "_tpl": "6389c6463485cf0eeb260715" + "_tpl": "575062b524597720a31c09a1" } ] ], - "676d24d1798491c5260f5dd4": [ - [ - { - "count": 1, - "_tpl": "59e361e886f774176c10a2a5" - } - ] - ], - "676d24d1798491c5260f5dd7": [ - [ - { - "count": 2, - "_tpl": "59e35ef086f7741777737012" - } - ] - ], - "676d24d1798491c5260f5dda": [ - [ - { - "count": 2, - "_tpl": "5d4041f086f7743cac3f22a7" - } - ] - ], - "676d24d1798491c5260f5ddd": [ - [ - { - "count": 20, - "_tpl": "619cc01e0a7c3a1a2731940c" - }, - { - "count": 15, - "_tpl": "5d1b3f2d86f774253763b735" - }, - { - "count": 12, - "_tpl": "59e361e886f774176c10a2a5" - } - ] - ], - "676d24d1798491c5260f5de0": [ + "6808bada364a85cccb04b6e5": [ [ { "count": 5, @@ -1769,7 +1769,7 @@ } ] ], - "676d24d1798491c5260f5de3": [ + "6808bada364a85cccb04b6e8": [ [ { "count": 2, @@ -1777,31 +1777,15 @@ } ] ], - "676d24d1798491c5260f5de6": [ + "6808bada364a85cccb04b6eb": [ [ { - "count": 1, - "_tpl": "59e3596386f774176c10a2a2" + "count": 5, + "_tpl": "573475fb24597737fb1379e1" } ] ], - "676d24d1798491c5260f5de9": [ - [ - { - "count": 1, - "_tpl": "57513fcc24597720a31c09a6" - }, - { - "count": 1, - "_tpl": "575146b724597720a27126d5" - }, - { - "count": 1, - "_tpl": "5c13cef886f774072e618e82" - } - ] - ], - "676d24d1798491c5260f5dec": [ + "6808bada364a85cccb04b6ee": [ [ { "count": 1, @@ -1817,15 +1801,15 @@ } ] ], - "676d24d1798491c5260f5def": [ + "6808bada364a85cccb04b6f1": [ [ { - "count": 5, - "_tpl": "573475fb24597737fb1379e1" + "count": 1, + "_tpl": "59e3596386f774176c10a2a2" } ] ], - "676d24d1798491c5260f5df2": [ + "6808bada364a85cccb04b6f4": [ [ { "count": 1, @@ -1833,7 +1817,23 @@ } ] ], - "67e50e6d4e0adf4dec0eb281": [ + "6808bada364a85cccb04b6f7": [ + [ + { + "count": 1, + "_tpl": "57513fcc24597720a31c09a6" + }, + { + "count": 1, + "_tpl": "575146b724597720a27126d5" + }, + { + "count": 1, + "_tpl": "5c13cef886f774072e618e82" + } + ] + ], + "6808bada364a85cccb04b6fa": [ [ { "count": 2, @@ -1849,15 +1849,7 @@ } ] ], - "67e50e6d4e0adf4dec0eb284": [ - [ - { - "count": 268026, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67e50e6d4e0adf4dec0eb287": [ + "6808bada364a85cccb04b6fd": [ [ { "count": 550560, @@ -1865,6 +1857,26 @@ } ] ], + "6808bada364a85cccb04b700": [ + [ + { + "count": 8, + "_tpl": "59e361e886f774176c10a2a5" + }, + { + "count": 5, + "_tpl": "5b4335ba86f7744d2837a264" + }, + { + "count": 5, + "_tpl": "590a3d9c86f774385926e510" + }, + { + "count": 3, + "_tpl": "5d1b3f2d86f774253763b735" + } + ] + ], "667eac90d135442276096594": [ [ { @@ -1883,90 +1895,90 @@ ] }, "loyal_level_items": { - "676d24ce798491c5260f5d02": 2, - "676d24ce798491c5260f5d05": 1, - "676d24ce798491c5260f5d08": 1, - "676d24ce798491c5260f5d0b": 1, - "676d24ce798491c5260f5d0e": 2, - "676d24ce798491c5260f5d11": 2, - "676d24ce798491c5260f5d14": 1, - "676d24ce798491c5260f5d17": 1, - "676d24ce798491c5260f5d1a": 1, - "676d24ce798491c5260f5d1d": 1, - "676d24ce798491c5260f5d20": 1, - "676d24ce798491c5260f5d23": 2, - "676d24ce798491c5260f5d26": 4, - "676d24ce798491c5260f5d29": 3, - "676d24ce798491c5260f5d2c": 4, - "676d24ce798491c5260f5d2f": 4, - "676d24ce798491c5260f5d32": 3, - "676d24ce798491c5260f5d35": 1, - "676d24ce798491c5260f5d38": 4, - "676d24ce798491c5260f5d3b": 2, - "676d24cf798491c5260f5d3e": 3, - "676d24cf798491c5260f5d41": 2, - "676d24cf798491c5260f5d44": 1, - "676d24cf798491c5260f5d47": 1, - "676d24cf798491c5260f5d4a": 2, - "676d24cf798491c5260f5d4d": 2, - "676d24cf798491c5260f5d50": 1, - "676d24cf798491c5260f5d53": 3, - "676d24cf798491c5260f5d56": 4, - "676d24cf798491c5260f5d59": 2, - "676d24cf798491c5260f5d5c": 4, - "676d24cf798491c5260f5d5f": 1, - "676d24cf798491c5260f5d62": 1, - "676d24cf798491c5260f5d65": 1, - "676d24cf798491c5260f5d68": 4, - "676d24cf798491c5260f5d6b": 2, - "676d24cf798491c5260f5d6e": 2, - "676d24cf798491c5260f5d71": 3, - "676d24cf798491c5260f5d74": 3, - "676d24cf798491c5260f5d77": 3, - "676d24cf798491c5260f5d7a": 1, - "676d24cf798491c5260f5d7d": 4, - "676d24cf798491c5260f5d80": 2, - "676d24cf798491c5260f5d83": 2, - "676d24cf798491c5260f5d86": 4, - "676d24cf798491c5260f5d89": 4, - "676d24d0798491c5260f5d8c": 1, - "676d24d0798491c5260f5d8f": 3, - "676d24d0798491c5260f5d92": 1, - "676d24d0798491c5260f5d95": 4, - "676d24d0798491c5260f5d98": 1, - "676d24d0798491c5260f5d9b": 4, - "676d24d0798491c5260f5d9e": 2, - "676d24d0798491c5260f5da1": 4, - "676d24d0798491c5260f5da4": 4, - "676d24d0798491c5260f5da7": 3, - "676d24d0798491c5260f5daa": 3, - "676d24d0798491c5260f5dad": 3, - "676d24d0798491c5260f5db0": 2, - "676d24d0798491c5260f5db3": 1, - "676d24d0798491c5260f5db6": 1, - "676d24d0798491c5260f5db9": 3, - "676d24d0798491c5260f5dbc": 1, - "676d24d0798491c5260f5dbf": 2, - "676d24d0798491c5260f5dc2": 3, - "676d24d0798491c5260f5dc5": 2, - "676d24d0798491c5260f5dc8": 1, - "676d24d0798491c5260f5dcb": 1, - "676d24d0798491c5260f5dce": 2, - "676d24d0798491c5260f5dd1": 2, - "676d24d1798491c5260f5dd4": 1, - "676d24d1798491c5260f5dd7": 1, - "676d24d1798491c5260f5dda": 1, - "676d24d1798491c5260f5ddd": 4, - "676d24d1798491c5260f5de0": 2, - "676d24d1798491c5260f5de3": 3, - "676d24d1798491c5260f5de6": 1, - "676d24d1798491c5260f5de9": 1, - "676d24d1798491c5260f5dec": 2, - "676d24d1798491c5260f5def": 1, - "676d24d1798491c5260f5df2": 1, - "67e50e6d4e0adf4dec0eb281": 1, - "67e50e6d4e0adf4dec0eb284": 1, - "67e50e6d4e0adf4dec0eb287": 2, + "6808bad7364a85cccb04b607": 2, + "6808bad7364a85cccb04b60a": 1, + "6808bad7364a85cccb04b60d": 2, + "6808bad7364a85cccb04b610": 2, + "6808bad7364a85cccb04b613": 1, + "6808bad7364a85cccb04b616": 4, + "6808bad7364a85cccb04b619": 3, + "6808bad7364a85cccb04b61c": 1, + "6808bad7364a85cccb04b61f": 1, + "6808bad7364a85cccb04b622": 3, + "6808bad7364a85cccb04b625": 2, + "6808bad7364a85cccb04b628": 4, + "6808bad7364a85cccb04b62b": 1, + "6808bad7364a85cccb04b62e": 4, + "6808bad8364a85cccb04b631": 4, + "6808bad8364a85cccb04b634": 1, + "6808bad8364a85cccb04b637": 1, + "6808bad8364a85cccb04b63a": 1, + "6808bad8364a85cccb04b63d": 1, + "6808bad8364a85cccb04b640": 2, + "6808bad8364a85cccb04b643": 3, + "6808bad8364a85cccb04b646": 1, + "6808bad8364a85cccb04b649": 1, + "6808bad8364a85cccb04b64c": 1, + "6808bad8364a85cccb04b64f": 2, + "6808bad8364a85cccb04b652": 2, + "6808bad8364a85cccb04b655": 4, + "6808bad8364a85cccb04b658": 1, + "6808bad8364a85cccb04b65b": 4, + "6808bad8364a85cccb04b65e": 4, + "6808bad8364a85cccb04b661": 2, + "6808bad8364a85cccb04b664": 3, + "6808bad9364a85cccb04b667": 1, + "6808bad9364a85cccb04b66a": 2, + "6808bad9364a85cccb04b66d": 1, + "6808bad9364a85cccb04b670": 3, + "6808bad9364a85cccb04b673": 1, + "6808bad9364a85cccb04b676": 3, + "6808bad9364a85cccb04b679": 1, + "6808bad9364a85cccb04b67c": 4, + "6808bad9364a85cccb04b67f": 1, + "6808bad9364a85cccb04b682": 2, + "6808bad9364a85cccb04b685": 4, + "6808bad9364a85cccb04b688": 4, + "6808bad9364a85cccb04b68b": 3, + "6808bad9364a85cccb04b68e": 2, + "6808bad9364a85cccb04b691": 3, + "6808bad9364a85cccb04b694": 2, + "6808bad9364a85cccb04b697": 4, + "6808bad9364a85cccb04b69a": 2, + "6808bad9364a85cccb04b69d": 2, + "6808bad9364a85cccb04b6a0": 4, + "6808bad9364a85cccb04b6a3": 4, + "6808bad9364a85cccb04b6a6": 4, + "6808bad9364a85cccb04b6a9": 1, + "6808bad9364a85cccb04b6ac": 3, + "6808bad9364a85cccb04b6af": 1, + "6808bad9364a85cccb04b6b2": 1, + "6808bad9364a85cccb04b6b5": 4, + "6808bad9364a85cccb04b6b8": 1, + "6808bada364a85cccb04b6bb": 3, + "6808bada364a85cccb04b6be": 2, + "6808bada364a85cccb04b6c1": 3, + "6808bada364a85cccb04b6c4": 2, + "6808bada364a85cccb04b6c7": 1, + "6808bada364a85cccb04b6ca": 2, + "6808bada364a85cccb04b6cd": 1, + "6808bada364a85cccb04b6d0": 1, + "6808bada364a85cccb04b6d3": 1, + "6808bada364a85cccb04b6d6": 1, + "6808bada364a85cccb04b6d9": 3, + "6808bada364a85cccb04b6dc": 3, + "6808bada364a85cccb04b6df": 2, + "6808bada364a85cccb04b6e2": 2, + "6808bada364a85cccb04b6e5": 2, + "6808bada364a85cccb04b6e8": 3, + "6808bada364a85cccb04b6eb": 1, + "6808bada364a85cccb04b6ee": 2, + "6808bada364a85cccb04b6f1": 1, + "6808bada364a85cccb04b6f4": 1, + "6808bada364a85cccb04b6f7": 1, + "6808bada364a85cccb04b6fa": 1, + "6808bada364a85cccb04b6fd": 2, + "6808bada364a85cccb04b700": 1, "667eac90d135442276096594": 1 } } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/questassort.json index 1d53b93e..cf35d909 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/54cb57776803fa99248b456e/questassort.json @@ -1,18 +1,18 @@ { "started": {}, "success": { - "676d24d1798491c5260f5def": "5ac3475486f7741d6224abd3", - "676d24ce798491c5260f5d2c": "5a68665c86f774255929b4c7", - "676d24ce798491c5260f5d32": "5a68661a86f774500f48afb0", - "676d24cf798491c5260f5d41": "6179afd0bca27a099552e040", - "676d24cf798491c5260f5d74": "6179ad56c760af5ad2053587", - "676d24ce798491c5260f5d11": "5968eb3186f7741dde183a4d", - "676d24ce798491c5260f5d02": "596760e186f7741e11214d58", - "676d24ce798491c5260f5d35": "59689ee586f7740d1570bbd5", - "676d24cf798491c5260f5d5c": "5c0d0d5086f774363760aef2", - "676d24d1798491c5260f5de0": "64f3176921045e77405d63b5", - "67e50e6d4e0adf4dec0eb284": "67a09673972c11a3f507731d", - "667eac90d135442276096594": "6672ec2a2b6f3b71be794cc5" + "6808bad7364a85cccb04b607": "596760e186f7741e11214d58", + "6808bad8364a85cccb04b634": "59689ee586f7740d1570bbd5", + "6808bad7364a85cccb04b625": "5968eb3186f7741dde183a4d", + "6808bad7364a85cccb04b619": "5a68661a86f774500f48afb0", + "6808bad8364a85cccb04b631": "5a68665c86f774255929b4c7", + "6808bada364a85cccb04b6eb": "5ac3475486f7741d6224abd3", + "6808bad8364a85cccb04b655": "5c0d0d5086f774363760aef2", + "6808bad9364a85cccb04b6ac": "6179ad56c760af5ad2053587", + "6808bad8364a85cccb04b64f": "6179afd0bca27a099552e040", + "6808bada364a85cccb04b6e5": "64f3176921045e77405d63b5", + "667eac90d135442276096594": "6672ec2a2b6f3b71be794cc5", + "6808bada364a85cccb04b700": "67a09673972c11a3f507731d" }, "fail": {} } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/assort.json index e12db910..24aeb909 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/assort.json @@ -1,8 +1,8 @@ { "items": [ { - "_id": "677536ee7949f87882036f7f", - "_tpl": "57cffcd624597763133760c5", + "_id": "6808bb07364a85cccb04c660", + "_tpl": "57cffe20245977632f391a9d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -13,115 +13,7 @@ } }, { - "_id": "677536ee7949f87882036f82", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f85", - "_tpl": "57cff947245977638e6f2a19", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f88", - "_tpl": "57cffcd624597763133760c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f8b", - "_tpl": "5827272a24597748c74bdeea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f8e", - "_tpl": "577d128124597739d65d0e56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f91", - "_tpl": "593d490386f7745ee97a1555", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f94", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f97", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f9a", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036f9c", + "_id": "6808bb07364a85cccb04c662", "_tpl": "59e6152586f77473dc057aa1", "parentId": "hideout", "slotId": "hideout", @@ -137,317 +29,55 @@ } }, { - "_id": "677536ee7949f87882036f9d", + "_id": "6808bb07364a85cccb04c663", "_tpl": "59e649f986f77411d949b246", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_gas_block" }, { - "_id": "677536ee7949f87882036f9e", + "_id": "6808bb07364a85cccb04c664", "_tpl": "59e6284f86f77440d569536f", - "parentId": "677536ee7949f87882036f9d", + "parentId": "6808bb07364a85cccb04c663", "slotId": "mod_handguard" }, { - "_id": "677536ee7949f87882036f9f", + "_id": "6808bb07364a85cccb04c665", "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_muzzle" }, { - "_id": "677536ee7949f87882036fa0", + "_id": "6808bb07364a85cccb04c666", "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_pistol_grip" }, { - "_id": "677536ee7949f87882036fa1", + "_id": "6808bb07364a85cccb04c667", "_tpl": "59e6449086f7746c9f75e822", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_reciever" }, { - "_id": "677536ee7949f87882036fa2", + "_id": "6808bb07364a85cccb04c668", "_tpl": "59d650cf86f7741b846413a4", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_sight_rear" }, { - "_id": "677536ee7949f87882036fa3", + "_id": "6808bb07364a85cccb04c669", "_tpl": "59e6227d86f77440d64f5dc2", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_stock" }, { - "_id": "677536ee7949f87882036fa4", + "_id": "6808bb07364a85cccb04c66a", "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "677536ee7949f87882036f9c", + "parentId": "6808bb07364a85cccb04c662", "slotId": "mod_magazine" }, { - "_id": "677536ee7949f87882036fa7", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036faa", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036fad", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ee7949f87882036fb0", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999 - } - }, - { - "_id": "677536ef7949f87882036fb4", - "_tpl": "593d489686f7745c6255d58a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fb7", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fba", - "_tpl": "588226d124597767ad33f787", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fbd", - "_tpl": "5943eeeb86f77412d6384f6b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fc0", - "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fc3", - "_tpl": "57235b6f24597759bf5a30f1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fc6", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fc9", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fcc", - "_tpl": "58889c7324597754281f9439", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fcf", - "_tpl": "57cffddc24597763133760c6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fd2", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fd5", - "_tpl": "564caa3d4bdc2d17108b458e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fd8", - "_tpl": "577d141e24597739c5255e01", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fdb", - "_tpl": "59fb257e86f7742981561852", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fde", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fe1", - "_tpl": "57a3459f245977764a01f703", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fe4", - "_tpl": "57486e672459770abd687134", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fe7", - "_tpl": "57cffcdd24597763f5110006", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ef7949f87882036fea", + "_id": "6808bb07364a85cccb04c66d", "_tpl": "59f9d81586f7744c7506ee62", "parentId": "hideout", "slotId": "hideout", @@ -459,343 +89,7 @@ } }, { - "_id": "677536ef7949f87882036fed", - "_tpl": "56ea70acd2720b844b8b4594", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036ff0", - "_tpl": "560838c94bdc2d77798b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036ff3", - "_tpl": "570fd721d2720bc5458b4596", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036ff6", - "_tpl": "59ccfdba86f7747f2109a587", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036ff9", - "_tpl": "57ffaea724597779f52b3a4d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036ffc", - "_tpl": "58272b392459774b4c7b3ccd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882036fff", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037002", - "_tpl": "58272b842459774abc128d50", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037005", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037008", - "_tpl": "57cffe0024597763b03fc60b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203700a", - "_tpl": "588892092459774ac91d4b11", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203700b", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "677536f07949f8788203700a", - "slotId": "mod_magazine" - }, - { - "_id": "677536f07949f8788203700c", - "_tpl": "5888945a2459774bf43ba385", - "parentId": "677536f07949f8788203700a", - "slotId": "mod_barrel" - }, - { - "_id": "677536f07949f8788203700d", - "_tpl": "58889c7324597754281f9439", - "parentId": "677536f07949f8788203700c", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f07949f8788203700e", - "_tpl": "5888961624597754281f93f3", - "parentId": "677536f07949f8788203700c", - "slotId": "mod_bipod" - }, - { - "_id": "677536f07949f8788203700f", - "_tpl": "57c55f172459772d27602381", - "parentId": "677536f07949f8788203700a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f07949f87882037010", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "677536f07949f8788203700a", - "slotId": "mod_stock" - }, - { - "_id": "677536f07949f87882037013", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037016", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037019", - "_tpl": "5998529a86f774647f44f421", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203701c", - "_tpl": "57ade1442459771557167e15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203701f", - "_tpl": "591af28e86f77414a27a9e1d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037022", - "_tpl": "584984812459776a704a82a6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037025", - "_tpl": "57cffb66245977632f391a99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037028", - "_tpl": "57cffce524597763b31685d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203702b", - "_tpl": "59ecc28286f7746d7a68aa8c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f8788203702e", - "_tpl": "57ee59b42459771c7b045da5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037031", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037034", - "_tpl": "57cffd8224597763b03fc609", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f07949f87882037037", - "_tpl": "57cffe20245977632f391a9d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203703a", - "_tpl": "59d790f486f77403cb06aec6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203703c", + "_id": "6808bb07364a85cccb04c66f", "_tpl": "59f9cabd86f7743a10721f46", "parentId": "hideout", "slotId": "hideout", @@ -807,115 +101,55 @@ } }, { - "_id": "677536f17949f8788203703d", + "_id": "6808bb07364a85cccb04c670", "_tpl": "5998517986f7746017232f7e", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_pistol_grip" }, { - "_id": "677536f17949f8788203703e", + "_id": "6808bb07364a85cccb04c671", "_tpl": "599851db86f77467372f0a18", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_stock" }, { - "_id": "677536f17949f8788203703f", + "_id": "6808bb07364a85cccb04c672", "_tpl": "5998529a86f774647f44f421", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_magazine" }, { - "_id": "677536f17949f87882037040", + "_id": "6808bb07364a85cccb04c673", "_tpl": "5998598e86f7740b3f498a86", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_muzzle" }, { - "_id": "677536f17949f87882037041", + "_id": "6808bb07364a85cccb04c674", "_tpl": "59985a8086f77414ec448d1a", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_reciever" }, { - "_id": "677536f17949f87882037042", + "_id": "6808bb07364a85cccb04c675", "_tpl": "599860e986f7743bb57573a6", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_sight_rear" }, { - "_id": "677536f17949f87882037043", + "_id": "6808bb07364a85cccb04c676", "_tpl": "59ccd11386f77428f24a488f", - "parentId": "677536f17949f8788203703c", + "parentId": "6808bb07364a85cccb04c66f", "slotId": "mod_gas_block" }, { - "_id": "677536f17949f87882037044", + "_id": "6808bb07364a85cccb04c677", "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "677536f17949f87882037043", + "parentId": "6808bb07364a85cccb04c676", "slotId": "mod_handguard" }, { - "_id": "677536f17949f87882037047", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203704a", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203704d", - "_tpl": "5a0abb6e1526d8000a025282", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037050", - "_tpl": "56eabf3bd2720b75698b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037053", - "_tpl": "588b56d02459771481110ae2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037056", + "_id": "6808bb07364a85cccb04c67a", "_tpl": "5648b4534bdc2d3d1c8b4580", "parentId": "hideout", "slotId": "hideout", @@ -927,20 +161,20 @@ } }, { - "_id": "677536f17949f87882037059", - "_tpl": "5943ee5a86f77413872d25ec", + "_id": "6808bb07364a85cccb04c67d", + "_tpl": "57486e672459770abd687134", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f17949f8788203705c", - "_tpl": "59e5f5a486f7746c530b3ce2", + "_id": "6808bb07364a85cccb04c680", + "_tpl": "59ecc28286f7746d7a68aa8c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -951,7 +185,139 @@ } }, { - "_id": "677536f17949f8788203705e", + "_id": "6808bb07364a85cccb04c683", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c686", + "_tpl": "57235b6f24597759bf5a30f1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c689", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c68c", + "_tpl": "577d141e24597739c5255e01", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c68f", + "_tpl": "5a0abb6e1526d8000a025282", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c692", + "_tpl": "57cffcd624597763133760c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb07364a85cccb04c695", + "_tpl": "57cffcdd24597763f5110006", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c698", + "_tpl": "588b56d02459771481110ae2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c69b", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c69e", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6a1", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6a3", "_tpl": "588892092459774ac91d4b11", "parentId": "hideout", "slotId": "hideout", @@ -963,55 +329,55 @@ } }, { - "_id": "677536f17949f8788203705f", + "_id": "6808bb08364a85cccb04c6a4", "_tpl": "5888988e24597752fe43a6fa", - "parentId": "677536f17949f8788203705e", + "parentId": "6808bb08364a85cccb04c6a3", "slotId": "mod_magazine" }, { - "_id": "677536f17949f87882037060", + "_id": "6808bb08364a85cccb04c6a5", "_tpl": "5888956924597752983e182d", - "parentId": "677536f17949f8788203705e", + "parentId": "6808bb08364a85cccb04c6a3", "slotId": "mod_barrel" }, { - "_id": "677536f17949f87882037061", + "_id": "6808bb08364a85cccb04c6a6", "_tpl": "5888996c24597754281f9419", - "parentId": "677536f17949f87882037060", + "parentId": "6808bb08364a85cccb04c6a5", "slotId": "mod_muzzle" }, { - "_id": "677536f17949f87882037062", + "_id": "6808bb08364a85cccb04c6a7", "_tpl": "5888976c24597754281f93f5", - "parentId": "677536f17949f87882037060", + "parentId": "6808bb08364a85cccb04c6a5", "slotId": "mod_handguard" }, { - "_id": "677536f17949f87882037063", + "_id": "6808bb08364a85cccb04c6a8", "_tpl": "57c55f172459772d27602381", - "parentId": "677536f17949f8788203705e", + "parentId": "6808bb08364a85cccb04c6a3", "slotId": "mod_pistol_grip" }, { - "_id": "677536f17949f87882037064", + "_id": "6808bb08364a85cccb04c6a9", "_tpl": "58889d0c2459775bc215d981", - "parentId": "677536f17949f8788203705e", + "parentId": "6808bb08364a85cccb04c6a3", "slotId": "mod_stock" }, { - "_id": "677536f17949f87882037067", - "_tpl": "576a7c512459771e796e0e17", + "_id": "6808bb08364a85cccb04c6ac", + "_tpl": "560d5e524bdc2d25448b4571", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 400, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f17949f8788203706a", + "_id": "6808bb08364a85cccb04c6af", "_tpl": "570fd79bd2720bc7458b4583", "parentId": "hideout", "slotId": "hideout", @@ -1023,7 +389,211 @@ } }, { - "_id": "677536f17949f8788203706c", + "_id": "6808bb08364a85cccb04c6b2", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6b5", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6b8", + "_tpl": "584984812459776a704a82a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6bb", + "_tpl": "58272b842459774abc128d50", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6be", + "_tpl": "576a7c512459771e796e0e17", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6c1", + "_tpl": "59fb257e86f7742981561852", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6c4", + "_tpl": "57cff947245977638e6f2a19", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6c7", + "_tpl": "5943eeeb86f77412d6384f6b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6ca", + "_tpl": "58889c7324597754281f9439", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6cd", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6d0", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6d3", + "_tpl": "57cffce524597763b31685d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6d6", + "_tpl": "58272b392459774b4c7b3ccd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6d9", + "_tpl": "57cffe0024597763b03fc60b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6dc", + "_tpl": "591af28e86f77414a27a9e1d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6df", + "_tpl": "59d790f486f77403cb06aec6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6e2", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb08364a85cccb04c6e4", "_tpl": "59e6687d86f77411d949b251", "parentId": "hideout", "slotId": "hideout", @@ -1039,209 +609,55 @@ } }, { - "_id": "677536f17949f8788203706d", + "_id": "6808bb08364a85cccb04c6e5", "_tpl": "59e649f986f77411d949b246", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_gas_block" }, { - "_id": "677536f17949f8788203706e", + "_id": "6808bb08364a85cccb04c6e6", "_tpl": "59e898ee86f77427614bd225", - "parentId": "677536f17949f8788203706d", + "parentId": "6808bb08364a85cccb04c6e5", "slotId": "mod_handguard" }, { - "_id": "677536f17949f8788203706f", + "_id": "6808bb08364a85cccb04c6e7", "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_muzzle" }, { - "_id": "677536f17949f87882037070", + "_id": "6808bb08364a85cccb04c6e8", "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_pistol_grip" }, { - "_id": "677536f17949f87882037071", + "_id": "6808bb08364a85cccb04c6e9", "_tpl": "59e6449086f7746c9f75e822", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_reciever" }, { - "_id": "677536f17949f87882037072", + "_id": "6808bb08364a85cccb04c6ea", "_tpl": "59e8977386f77415a553c453", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_sight_rear" }, { - "_id": "677536f17949f87882037073", + "_id": "6808bb08364a85cccb04c6eb", "_tpl": "59e89d0986f77427600d226e", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_stock" }, { - "_id": "677536f17949f87882037074", + "_id": "6808bb08364a85cccb04c6ec", "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "677536f17949f8788203706c", + "parentId": "6808bb08364a85cccb04c6e4", "slotId": "mod_magazine" }, { - "_id": "677536f17949f87882037077", - "_tpl": "59e5d83b86f7745aed03d262", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203707a", - "_tpl": "58d2912286f7744e27117493", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203707d", - "_tpl": "5bfe86df0db834001b734685", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037081", - "_tpl": "5c1127d0d174af29be75cf68", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037082", - "_tpl": "5c0d591486f7744c505b416f", - "parentId": "677536f17949f87882037081", - "slotId": "cartridges", - "location": 0, - "upd": { - "StackObjectsCount": 5 - } - }, - { - "_id": "677536f17949f87882037085", - "_tpl": "5a9fb739a2750c003215717f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f87882037088", - "_tpl": "5c0673fb0db8340023300271", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f17949f8788203708b", - "_tpl": "5a9eb32da2750c00171b3f9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f8788203708e", - "_tpl": "5b30b0dc5acfc400153b7124", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f87882037091", - "_tpl": "59e6284f86f77440d569536f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f87882037094", - "_tpl": "5b222d335acfc4771e1be099", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f87882037097", - "_tpl": "5b04473a5acfc40018632f70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f8788203709a", - "_tpl": "5888945a2459774bf43ba385", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f8788203709d", + "_id": "6808bb09364a85cccb04c6ef", "_tpl": "56ea70acd2720b844b8b4594", "parentId": "hideout", "slotId": "hideout", @@ -1253,8 +669,32 @@ } }, { - "_id": "677536f27949f878820370a0", - "_tpl": "593d493f86f7745e6b2ceb22", + "_id": "6808bb09364a85cccb04c6f2", + "_tpl": "570fd721d2720bc5458b4596", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c6f5", + "_tpl": "57cffddc24597763133760c6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c6f8", + "_tpl": "5827272a24597748c74bdeea", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1265,8 +705,104 @@ } }, { - "_id": "677536f27949f878820370a3", - "_tpl": "5b1fd4e35acfc40018633c39", + "_id": "6808bb09364a85cccb04c6fb", + "_tpl": "577d128124597739d65d0e56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c6fe", + "_tpl": "5998529a86f774647f44f421", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c701", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c703", + "_tpl": "588892092459774ac91d4b11", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c704", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6808bb09364a85cccb04c703", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb09364a85cccb04c705", + "_tpl": "5888945a2459774bf43ba385", + "parentId": "6808bb09364a85cccb04c703", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb09364a85cccb04c706", + "_tpl": "58889c7324597754281f9439", + "parentId": "6808bb09364a85cccb04c705", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb09364a85cccb04c707", + "_tpl": "5888961624597754281f93f3", + "parentId": "6808bb09364a85cccb04c705", + "slotId": "mod_bipod" + }, + { + "_id": "6808bb09364a85cccb04c708", + "_tpl": "57c55f172459772d27602381", + "parentId": "6808bb09364a85cccb04c703", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb09364a85cccb04c709", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "6808bb09364a85cccb04c703", + "slotId": "mod_stock" + }, + { + "_id": "6808bb09364a85cccb04c70c", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c70f", + "_tpl": "59e5f5a486f7746c530b3ce2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1277,8 +813,90 @@ } }, { - "_id": "677536f27949f878820370a6", - "_tpl": "5aaa5e60e5b5b000140293d6", + "_id": "6808bb09364a85cccb04c712", + "_tpl": "593d489686f7745c6255d58a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c715", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c718", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c71b", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c71e", + "_tpl": "57a3459f245977764a01f703", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c721", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c724", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999 + } + }, + { + "_id": "6808bb09364a85cccb04c728", + "_tpl": "57cffb66245977632f391a99", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1289,7 +907,199 @@ } }, { - "_id": "677536f27949f878820370a9", + "_id": "6808bb09364a85cccb04c72b", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c72e", + "_tpl": "59ccfdba86f7747f2109a587", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c731", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c734", + "_tpl": "59e5d83b86f7745aed03d262", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c737", + "_tpl": "57ade1442459771557167e15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c73a", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb09364a85cccb04c73d", + "_tpl": "57cffd8224597763b03fc609", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c740", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c743", + "_tpl": "57cffcd624597763133760c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c746", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c749", + "_tpl": "564caa3d4bdc2d17108b458e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c74c", + "_tpl": "593d490386f7745ee97a1555", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c74f", + "_tpl": "588226d124597767ad33f787", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c752", + "_tpl": "57ee59b42459771c7b045da5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c755", + "_tpl": "57ffaea724597779f52b3a4d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c758", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c75b", "_tpl": "5c0695860db834001b735461", "parentId": "hideout", "slotId": "hideout", @@ -1301,32 +1111,8 @@ } }, { - "_id": "677536f27949f878820370ac", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370af", - "_tpl": "5bfe7fb30db8340018089fed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370b2", - "_tpl": "5bfe86bd0db83400232fe959", + "_id": "6808bb0a364a85cccb04c75e", + "_tpl": "5bfe86df0db834001b734685", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1337,115 +1123,7 @@ } }, { - "_id": "677536f27949f878820370b4", - "_tpl": "5a7828548dc32e5a9c28b516", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370b5", - "_tpl": "5a787f7ac5856700177af660", - "parentId": "677536f27949f878820370b4", - "slotId": "mod_barrel" - }, - { - "_id": "677536f27949f878820370b6", - "_tpl": "5a788089c5856700142fdd9c", - "parentId": "677536f27949f878820370b4", - "slotId": "mod_handguard" - }, - { - "_id": "677536f27949f878820370b7", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "677536f27949f878820370b4", - "slotId": "mod_magazine" - }, - { - "_id": "677536f27949f878820370b8", - "_tpl": "5a7880d0c5856700142fdd9d", - "parentId": "677536f27949f878820370b4", - "slotId": "mod_stock" - }, - { - "_id": "677536f27949f878820370bb", - "_tpl": "5b222d405acfc400153af4fe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370be", - "_tpl": "5a9fbb74a2750c0032157181", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370c1", - "_tpl": "5bfe86a20db834001d23e8f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370c4", - "_tpl": "5a788031c585673f2b5c1c79", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370c7", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370ca", - "_tpl": "5bffdd7e0db834001b734a1a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370cc", + "_id": "6808bb0a364a85cccb04c760", "_tpl": "59e6152586f77473dc057aa1", "parentId": "hideout", "slotId": "hideout", @@ -1461,74 +1139,59 @@ } }, { - "_id": "677536f27949f878820370cd", + "_id": "6808bb0a364a85cccb04c761", "_tpl": "59e649f986f77411d949b246", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_gas_block" }, { - "_id": "677536f27949f878820370ce", + "_id": "6808bb0a364a85cccb04c762", "_tpl": "59e6284f86f77440d569536f", - "parentId": "677536f27949f878820370cd", + "parentId": "6808bb0a364a85cccb04c761", "slotId": "mod_handguard" }, { - "_id": "677536f27949f878820370cf", + "_id": "6808bb0a364a85cccb04c763", "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_muzzle" }, { - "_id": "677536f27949f878820370d0", + "_id": "6808bb0a364a85cccb04c764", "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_pistol_grip" }, { - "_id": "677536f27949f878820370d1", + "_id": "6808bb0a364a85cccb04c765", "_tpl": "59e6449086f7746c9f75e822", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_reciever" }, { - "_id": "677536f27949f878820370d2", + "_id": "6808bb0a364a85cccb04c766", "_tpl": "59d650cf86f7741b846413a4", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_sight_rear" }, { - "_id": "677536f27949f878820370d3", + "_id": "6808bb0a364a85cccb04c767", "_tpl": "59e6227d86f77440d64f5dc2", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_stock" }, { - "_id": "677536f27949f878820370d4", + "_id": "6808bb0a364a85cccb04c768", "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "677536f27949f878820370cc", + "parentId": "6808bb0a364a85cccb04c760", "slotId": "mod_magazine" }, { - "_id": "677536f27949f878820370d7", - "_tpl": "5c0672ed0db834001b7353f3", + "_id": "6808bb0a364a85cccb04c76b", + "_tpl": "5b30b0dc5acfc400153b7124", "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f27949f878820370d9", - "_tpl": "5c07c60e0db834002330051f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 4, @@ -1536,73 +1199,7 @@ } }, { - "_id": "677536f27949f878820370da", - "_tpl": "5c0e2ff6d174af02a1659d4a", - "parentId": "677536f27949f878820370d9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f27949f878820370db", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "677536f27949f878820370d9", - "slotId": "mod_magazine" - }, - { - "_id": "677536f27949f878820370dc", - "_tpl": "5c0e2f26d174af02a9625114", - "parentId": "677536f27949f878820370d9", - "slotId": "mod_reciever" - }, - { - "_id": "677536f27949f878820370dd", - "_tpl": "5c0e2f94d174af029f650d56", - "parentId": "677536f27949f878820370dc", - "slotId": "mod_barrel" - }, - { - "_id": "677536f27949f878820370de", - "_tpl": "5c0fafb6d174af02a96260ba", - "parentId": "677536f27949f878820370dd", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f27949f878820370df", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "677536f27949f878820370dd", - "slotId": "mod_gas_block" - }, - { - "_id": "677536f27949f878820370e0", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "parentId": "677536f27949f878820370dc", - "slotId": "mod_handguard" - }, - { - "_id": "677536f27949f878820370e1", - "_tpl": "5c0faeddd174af02a962601f", - "parentId": "677536f27949f878820370d9", - "slotId": "mod_stock" - }, - { - "_id": "677536f27949f878820370e2", - "_tpl": "5c0faf68d174af02a96260b8", - "parentId": "677536f27949f878820370d9", - "slotId": "mod_charge" - }, - { - "_id": "677536f37949f878820370e5", - "_tpl": "5b7d679f5acfc4001a5c4024", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f878820370e8", + "_id": "6808bb0a364a85cccb04c76e", "_tpl": "5c0696830db834001d23f5da", "parentId": "hideout", "slotId": "hideout", @@ -1614,7 +1211,386 @@ } }, { - "_id": "677536f37949f878820370eb", + "_id": "6808bb0a364a85cccb04c770", + "_tpl": "5a7828548dc32e5a9c28b516", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c771", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "6808bb0a364a85cccb04c770", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb0a364a85cccb04c772", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "6808bb0a364a85cccb04c770", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb0a364a85cccb04c773", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "6808bb0a364a85cccb04c770", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0a364a85cccb04c774", + "_tpl": "5a7880d0c5856700142fdd9d", + "parentId": "6808bb0a364a85cccb04c770", + "slotId": "mod_stock" + }, + { + "_id": "6808bb0a364a85cccb04c777", + "_tpl": "56ea70acd2720b844b8b4594", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c77a", + "_tpl": "5bffdd7e0db834001b734a1a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c77d", + "_tpl": "5a788031c585673f2b5c1c79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c780", + "_tpl": "5bfe7fb30db8340018089fed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c783", + "_tpl": "5c0673fb0db8340023300271", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c786", + "_tpl": "5a9fb739a2750c003215717f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c789", + "_tpl": "593d493f86f7745e6b2ceb22", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c78c", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c78f", + "_tpl": "5888945a2459774bf43ba385", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0a364a85cccb04c792", + "_tpl": "58d2912286f7744e27117493", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c795", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c798", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c79b", + "_tpl": "5a9eb32da2750c00171b3f9c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c79e", + "_tpl": "5b222d335acfc4771e1be099", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7a1", + "_tpl": "5bfe86a20db834001d23e8f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7a4", + "_tpl": "5b222d405acfc400153af4fe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7a7", + "_tpl": "59e6284f86f77440d569536f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7a9", + "_tpl": "5c07c60e0db834002330051f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7aa", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "6808bb0b364a85cccb04c7a9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb0b364a85cccb04c7ab", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "6808bb0b364a85cccb04c7a9", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0b364a85cccb04c7ac", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "6808bb0b364a85cccb04c7a9", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb0b364a85cccb04c7ad", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "6808bb0b364a85cccb04c7ac", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb0b364a85cccb04c7ae", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "6808bb0b364a85cccb04c7ad", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb0b364a85cccb04c7af", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6808bb0b364a85cccb04c7ad", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb0b364a85cccb04c7b0", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "6808bb0b364a85cccb04c7ac", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb0b364a85cccb04c7b1", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "6808bb0b364a85cccb04c7a9", + "slotId": "mod_stock" + }, + { + "_id": "6808bb0b364a85cccb04c7b2", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "6808bb0b364a85cccb04c7a9", + "slotId": "mod_charge" + }, + { + "_id": "6808bb0b364a85cccb04c7b6", + "_tpl": "5c1127d0d174af29be75cf68", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7b7", + "_tpl": "5c0d591486f7744c505b416f", + "parentId": "6808bb0b364a85cccb04c7b6", + "slotId": "cartridges", + "location": 0, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "6808bb0b364a85cccb04c7ba", + "_tpl": "5c0672ed0db834001b7353f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7bd", + "_tpl": "5b04473a5acfc40018632f70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7c0", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7c3", + "_tpl": "5b7d679f5acfc4001a5c4024", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7c6", "_tpl": "5a1eaa87fcdbcb001865f75e", "parentId": "hideout", "slotId": "hideout", @@ -1626,7 +1602,31 @@ } }, { - "_id": "677536f37949f878820370ee", + "_id": "6808bb0b364a85cccb04c7c9", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7cc", + "_tpl": "5bfe86bd0db83400232fe959", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0b364a85cccb04c7cf", "_tpl": "5bfe89510db834001808a127", "parentId": "hideout", "slotId": "hideout", @@ -1638,211 +1638,7 @@ } }, { - "_id": "677536f37949f878820370f1", - "_tpl": "5c1bc7432e221602b412949d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f878820370f4", - "_tpl": "5c1bc5fb2e221602b1779b32", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f878820370f7", - "_tpl": "5c1cdd512e22161b267d91ae", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f878820370fa", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f878820370fd", - "_tpl": "5c1cdd302e221602b3137250", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037100", - "_tpl": "5c1bc5af2e221602b412949b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037103", - "_tpl": "59e6227d86f77440d64f5dc2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037106", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037109", - "_tpl": "5c78f2492e221600114c9f04", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f8788203710c", - "_tpl": "5c78f2612e221600114c9f0d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f8788203710f", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037112", - "_tpl": "5a787ebcc5856700142fdd98", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037115", - "_tpl": "5c90c3622e221601da359851", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037118", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f8788203711b", - "_tpl": "5cebec10d7f00c065703d185", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f8788203711e", - "_tpl": "5d1b198cd7ad1a604869ad72", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f37949f87882037121", - "_tpl": "5c9a1c422e221600106f69f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037124", + "_id": "6808bb0b364a85cccb04c7d2", "_tpl": "5d023784d7ad1a049d4aa7f2", "parentId": "hideout", "slotId": "hideout", @@ -1854,32 +1650,20 @@ } }, { - "_id": "677536f47949f87882037127", - "_tpl": "5cdeac22d7f00c000f26168f", + "_id": "6808bb0c364a85cccb04c7d5", + "_tpl": "5c1cdd512e22161b267d91ae", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f47949f8788203712a", - "_tpl": "5d2c76ed48f03532f2136169", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f8788203712d", - "_tpl": "5cf7acfcd7f00c1084477cf2", + "_id": "6808bb0c364a85cccb04c7d8", + "_tpl": "5c1bc7432e221602b412949d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1890,20 +1674,8 @@ } }, { - "_id": "677536f47949f87882037130", - "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037133", - "_tpl": "5d2c770c48f0354b4a07c100", + "_id": "6808bb0c364a85cccb04c7db", + "_tpl": "5a787ebcc5856700142fdd98", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1914,263 +1686,8 @@ } }, { - "_id": "677536f47949f87882037136", - "_tpl": "5d2c829448f0353a5c7d6674", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037139", - "_tpl": "5c6d710d2e22165df16b81e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f8788203713c", - "_tpl": "5d25a7b88abbc3054f3e60bc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f8788203713e", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f8788203713f", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "677536f47949f8788203713e", - "slotId": "mod_magazine" - }, - { - "_id": "677536f47949f87882037140", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "677536f47949f8788203713e", - "slotId": "mod_stock" - }, - { - "_id": "677536f47949f87882037141", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "677536f47949f87882037140", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f47949f87882037144", - "_tpl": "59fb023c86f7746d0d4b423c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037146", - "_tpl": "5d43021ca4b9362eab4b5e25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037147", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "677536f47949f87882037146", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f47949f87882037148", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "677536f47949f87882037146", - "slotId": "mod_magazine" - }, - { - "_id": "677536f47949f87882037149", - "_tpl": "5d4405aaa4b9361e6a4e6bd3", - "parentId": "677536f47949f87882037146", - "slotId": "mod_reciever" - }, - { - "_id": "677536f47949f8788203714a", - "_tpl": "5d440b93a4b9364276578d4b", - "parentId": "677536f47949f87882037149", - "slotId": "mod_barrel" - }, - { - "_id": "677536f47949f8788203714b", - "_tpl": "5d440625a4b9361eec4ae6c5", - "parentId": "677536f47949f8788203714a", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f47949f8788203714c", - "_tpl": "5d44064fa4b9361e4f6eb8b5", - "parentId": "677536f47949f8788203714b", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f47949f8788203714d", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "677536f47949f8788203714a", - "slotId": "mod_gas_block" - }, - { - "_id": "677536f47949f8788203714e", - "_tpl": "5d4405f0a4b9361e6a4e6bd9", - "parentId": "677536f47949f87882037149", - "slotId": "mod_handguard" - }, - { - "_id": "677536f47949f8788203714f", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536f47949f8788203714e", - "slotId": "mod_mount_004" - }, - { - "_id": "677536f47949f87882037150", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "677536f47949f8788203714e", - "slotId": "mod_foregrip" - }, - { - "_id": "677536f47949f87882037151", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536f47949f87882037146", - "slotId": "mod_stock" - }, - { - "_id": "677536f47949f87882037152", - "_tpl": "5d4406a8a4b9361e4f6eb8b7", - "parentId": "677536f47949f87882037151", - "slotId": "mod_stock_000" - }, - { - "_id": "677536f47949f87882037153", - "_tpl": "5d44334ba4b9362b346d1948", - "parentId": "677536f47949f87882037146", - "slotId": "mod_charge" - }, - { - "_id": "677536f47949f87882037156", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037159", - "_tpl": "5c617a5f2e2216000f1e81b3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f8788203715c", - "_tpl": "5cf4fb76d7f00c065703d3ac", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037164", - "_tpl": "588892092459774ac91d4b11", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037165", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "677536f47949f87882037164", - "slotId": "mod_magazine" - }, - { - "_id": "677536f47949f87882037166", - "_tpl": "5888956924597752983e182d", - "parentId": "677536f47949f87882037164", - "slotId": "mod_barrel" - }, - { - "_id": "677536f47949f87882037167", - "_tpl": "5888996c24597754281f9419", - "parentId": "677536f47949f87882037166", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f47949f87882037168", - "_tpl": "5888976c24597754281f93f5", - "parentId": "677536f47949f87882037166", - "slotId": "mod_handguard" - }, - { - "_id": "677536f47949f87882037169", - "_tpl": "57c55f172459772d27602381", - "parentId": "677536f47949f87882037164", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f47949f8788203716a", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "677536f47949f87882037164", - "slotId": "mod_stock" - }, - { - "_id": "677536f47949f8788203716d", - "_tpl": "5cf656f2d7f00c06585fb6eb", + "_id": "6808bb0c364a85cccb04c7de", + "_tpl": "5c90c3622e221601da359851", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2181,238 +1698,7 @@ } }, { - "_id": "677536f47949f87882037170", - "_tpl": "5ce69cbad7f00c00b61c5098", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f47949f87882037173", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037176", - "_tpl": "5c61a40d2e2216001403158d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037179", - "_tpl": "5c78f2882e22165df16b832e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f8788203717c", - "_tpl": "5c78f2792e221600106f4683", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f8788203717f", - "_tpl": "5c9a07572e221644f31c4b32", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037182", - "_tpl": "5cdeac5cd7f00c000f261694", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037185", - "_tpl": "5df35e7f2a78646d96665dd4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037188", - "_tpl": "5c1bc5612e221602b5429350", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f87882037194", - "_tpl": "5c07c60e0db834002330051f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371a0", - "_tpl": "5d1c702ad7ad1a632267f429", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371a3", - "_tpl": "5d0236dad7ad1a0940739d29", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371a6", - "_tpl": "5c0faeddd174af02a962601f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371a9", - "_tpl": "5b3b99475acfc432ff4dcbee", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371ac", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371af", - "_tpl": "5c1bc7752e221602b1779b34", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371b2", - "_tpl": "5c78f26f2e221601da3581d1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371b5", - "_tpl": "5c7951452e221644f31bfd5c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371b8", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371bb", + "_id": "6808bb0c364a85cccb04c7e1", "_tpl": "5cdeac42d7f00c000d36ba73", "parentId": "hideout", "slotId": "hideout", @@ -2424,80 +1710,8 @@ } }, { - "_id": "677536f57949f878820371be", - "_tpl": "5cc9c20cd7f00c001336c65d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371c1", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371c4", - "_tpl": "5c0e2f94d174af029f650d56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371c7", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f57949f878820371ca", - "_tpl": "5cc701d7e4a94900100ac4e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f878820371cd", - "_tpl": "5e01ea19e9dc277128008c0b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f878820371d0", - "_tpl": "5c878ebb2e2216001219d48a", + "_id": "6808bb0c364a85cccb04c7e3", + "_tpl": "5a38e6bac4a2826c6e06d79b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2508,8 +1722,26 @@ } }, { - "_id": "677536f67949f878820371d3", - "_tpl": "5c9a1c3a2e2216000e69fb6a", + "_id": "6808bb0c364a85cccb04c7e4", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "6808bb0c364a85cccb04c7e3", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0c364a85cccb04c7e5", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "6808bb0c364a85cccb04c7e3", + "slotId": "mod_stock" + }, + { + "_id": "6808bb0c364a85cccb04c7e6", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "6808bb0c364a85cccb04c7e5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb0c364a85cccb04c7e9", + "_tpl": "5c1bc4812e22164bef5cfde7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2520,19 +1752,67 @@ } }, { - "_id": "677536f67949f878820371d6", - "_tpl": "5fb651dc85f90547f674b6f4", + "_id": "6808bb0c364a85cccb04c7ec", + "_tpl": "5cf4fb76d7f00c065703d3ac", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f67949f878820371d8", + "_id": "6808bb0c364a85cccb04c7ef", + "_tpl": "5c6d710d2e22165df16b81e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c7f2", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c7f5", + "_tpl": "5df35e7f2a78646d96665dd4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c7f8", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c7fa", "_tpl": "5fbcc1d9016cce60e8341ab3", "parentId": "hideout", "slotId": "hideout", @@ -2547,79 +1827,715 @@ } }, { - "_id": "677536f67949f878820371d9", + "_id": "6808bb0c364a85cccb04c7fb", "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "677536f67949f878820371d8", + "parentId": "6808bb0c364a85cccb04c7fa", "slotId": "mod_pistol_grip" }, { - "_id": "677536f67949f878820371da", + "_id": "6808bb0c364a85cccb04c7fc", "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "677536f67949f878820371d8", + "parentId": "6808bb0c364a85cccb04c7fa", "slotId": "mod_magazine" }, { - "_id": "677536f67949f878820371db", + "_id": "6808bb0c364a85cccb04c7fd", "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "677536f67949f878820371d8", + "parentId": "6808bb0c364a85cccb04c7fa", "slotId": "mod_reciever" }, { - "_id": "677536f67949f878820371dc", + "_id": "6808bb0c364a85cccb04c7fe", "_tpl": "5fbbfacda56d053a3543f799", - "parentId": "677536f67949f878820371db", + "parentId": "6808bb0c364a85cccb04c7fd", "slotId": "mod_barrel" }, { - "_id": "677536f67949f878820371dd", + "_id": "6808bb0c364a85cccb04c7ff", "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "677536f67949f878820371dc", + "parentId": "6808bb0c364a85cccb04c7fe", "slotId": "mod_muzzle" }, { - "_id": "677536f67949f878820371de", + "_id": "6808bb0c364a85cccb04c800", "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "677536f67949f878820371dd", + "parentId": "6808bb0c364a85cccb04c7ff", "slotId": "mod_muzzle_000" }, { - "_id": "677536f67949f878820371df", + "_id": "6808bb0c364a85cccb04c801", "_tpl": "5fbc210bf24b94483f726481", - "parentId": "677536f67949f878820371dc", + "parentId": "6808bb0c364a85cccb04c7fe", "slotId": "mod_gas_block" }, { - "_id": "677536f67949f878820371e0", + "_id": "6808bb0c364a85cccb04c802", "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "677536f67949f878820371db", + "parentId": "6808bb0c364a85cccb04c7fd", "slotId": "mod_handguard" }, { - "_id": "677536f67949f878820371e1", + "_id": "6808bb0c364a85cccb04c803", "_tpl": "5fc0fa362770a0045c59c677", - "parentId": "677536f67949f878820371e0", + "parentId": "6808bb0c364a85cccb04c802", "slotId": "mod_sight_front" }, { - "_id": "677536f67949f878820371e2", + "_id": "6808bb0c364a85cccb04c804", "_tpl": "5fc0fa957283c4046c58147e", - "parentId": "677536f67949f878820371db", + "parentId": "6808bb0c364a85cccb04c7fd", "slotId": "mod_sight_rear" }, { - "_id": "677536f67949f878820371e3", + "_id": "6808bb0c364a85cccb04c805", "_tpl": "5fbcc437d724d907e2077d5c", - "parentId": "677536f67949f878820371d8", + "parentId": "6808bb0c364a85cccb04c7fa", "slotId": "mod_stock" }, { - "_id": "677536f67949f878820371e4", + "_id": "6808bb0c364a85cccb04c806", "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "677536f67949f878820371d8", + "parentId": "6808bb0c364a85cccb04c7fa", "slotId": "mod_charge" }, { - "_id": "677536f67949f878820371e6", + "_id": "6808bb0c364a85cccb04c809", + "_tpl": "5c78f26f2e221601da3581d1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c815", + "_tpl": "5c07c60e0db834002330051f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c821", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c824", + "_tpl": "5cc701d7e4a94900100ac4e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c827", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c82a", + "_tpl": "5c61a40d2e2216001403158d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c82d", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0c364a85cccb04c830", + "_tpl": "5c1bc7752e221602b1779b34", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c833", + "_tpl": "5c1bc5fb2e221602b1779b32", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c836", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c839", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c83c", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c83e", + "_tpl": "588892092459774ac91d4b11", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c83f", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6808bb0d364a85cccb04c83e", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0d364a85cccb04c840", + "_tpl": "5888956924597752983e182d", + "parentId": "6808bb0d364a85cccb04c83e", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb0d364a85cccb04c841", + "_tpl": "5888996c24597754281f9419", + "parentId": "6808bb0d364a85cccb04c840", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb0d364a85cccb04c842", + "_tpl": "5888976c24597754281f93f5", + "parentId": "6808bb0d364a85cccb04c840", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb0d364a85cccb04c843", + "_tpl": "57c55f172459772d27602381", + "parentId": "6808bb0d364a85cccb04c83e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb0d364a85cccb04c844", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "6808bb0d364a85cccb04c83e", + "slotId": "mod_stock" + }, + { + "_id": "6808bb0d364a85cccb04c847", + "_tpl": "5c78f2792e221600106f4683", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c850", + "_tpl": "59fb023c86f7746d0d4b423c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c853", + "_tpl": "5cebec10d7f00c065703d185", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c856", + "_tpl": "5e01ea19e9dc277128008c0b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c859", + "_tpl": "5c1bc5af2e221602b412949b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c85c", + "_tpl": "5cf7acfcd7f00c1084477cf2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c85f", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c862", + "_tpl": "5fb651dc85f90547f674b6f4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c865", + "_tpl": "5c7951452e221644f31bfd5c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c868", + "_tpl": "5d1b198cd7ad1a604869ad72", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c86b", + "_tpl": "5c78f2492e221600114c9f04", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c86e", + "_tpl": "5c78f2612e221600114c9f0d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c871", + "_tpl": "5c9a1c422e221600106f69f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c874", + "_tpl": "5c878ebb2e2216001219d48a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c877", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c87a", + "_tpl": "5d0236dad7ad1a0940739d29", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0d364a85cccb04c87d", + "_tpl": "5d2c76ed48f03532f2136169", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c880", + "_tpl": "5c1cdd302e221602b3137250", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c883", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c886", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c889", + "_tpl": "5ce69cbad7f00c00b61c5098", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c88c", + "_tpl": "5df25b6c0b92095fd441e4cf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c88f", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c892", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c895", + "_tpl": "5c617a5f2e2216000f1e81b3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c898", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c89b", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c89d", + "_tpl": "5d43021ca4b9362eab4b5e25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c89e", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "6808bb0e364a85cccb04c89d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb0e364a85cccb04c89f", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "6808bb0e364a85cccb04c89d", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0e364a85cccb04c8a0", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "6808bb0e364a85cccb04c89d", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb0e364a85cccb04c8a1", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "6808bb0e364a85cccb04c8a0", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb0e364a85cccb04c8a2", + "_tpl": "5d440625a4b9361eec4ae6c5", + "parentId": "6808bb0e364a85cccb04c8a1", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb0e364a85cccb04c8a3", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "parentId": "6808bb0e364a85cccb04c8a2", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb0e364a85cccb04c8a4", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6808bb0e364a85cccb04c8a1", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb0e364a85cccb04c8a5", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "parentId": "6808bb0e364a85cccb04c8a0", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb0e364a85cccb04c8a6", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808bb0e364a85cccb04c8a5", + "slotId": "mod_mount_004" + }, + { + "_id": "6808bb0e364a85cccb04c8a7", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6808bb0e364a85cccb04c8a5", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb0e364a85cccb04c8a8", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808bb0e364a85cccb04c89d", + "slotId": "mod_stock" + }, + { + "_id": "6808bb0e364a85cccb04c8a9", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "6808bb0e364a85cccb04c8a8", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb0e364a85cccb04c8aa", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "6808bb0e364a85cccb04c89d", + "slotId": "mod_charge" + }, + { + "_id": "6808bb0e364a85cccb04c8ad", + "_tpl": "5d1c702ad7ad1a632267f429", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8b0", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8b2", "_tpl": "5df24cf80dee1b22f862e9bc", "parentId": "hideout", "slotId": "hideout", @@ -2634,27 +2550,27 @@ } }, { - "_id": "677536f67949f878820371e7", + "_id": "6808bb0e364a85cccb04c8b3", "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "677536f67949f878820371e6", + "parentId": "6808bb0e364a85cccb04c8b2", "slotId": "mod_magazine" }, { - "_id": "677536f67949f878820371e8", + "_id": "6808bb0e364a85cccb04c8b4", "_tpl": "5df256570dee1b22f862e9c4", - "parentId": "677536f67949f878820371e6", + "parentId": "6808bb0e364a85cccb04c8b2", "slotId": "mod_barrel" }, { - "_id": "677536f67949f878820371e9", + "_id": "6808bb0e364a85cccb04c8b5", "_tpl": "5df35e7f2a78646d96665dd4", - "parentId": "677536f67949f878820371e8", + "parentId": "6808bb0e364a85cccb04c8b4", "slotId": "mod_muzzle" }, { - "_id": "677536f67949f878820371ea", + "_id": "6808bb0e364a85cccb04c8b6", "_tpl": "5df35e59c41b2312ea3334d5", - "parentId": "677536f67949f878820371e6", + "parentId": "6808bb0e364a85cccb04c8b2", "slotId": "mod_stock", "upd": { "Foldable": { @@ -2663,110 +2579,74 @@ } }, { - "_id": "677536f67949f878820371eb", + "_id": "6808bb0e364a85cccb04c8b7", "_tpl": "5df25d3bfd6b4e6e2276dc9a", - "parentId": "677536f67949f878820371ea", + "parentId": "6808bb0e364a85cccb04c8b6", "slotId": "mod_handguard" }, { - "_id": "677536f67949f878820371ec", + "_id": "6808bb0e364a85cccb04c8b8", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "677536f67949f878820371eb", + "parentId": "6808bb0e364a85cccb04c8b7", "slotId": "mod_mount_000" }, { - "_id": "677536f67949f878820371ed", + "_id": "6808bb0e364a85cccb04c8b9", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "677536f67949f878820371eb", + "parentId": "6808bb0e364a85cccb04c8b7", "slotId": "mod_mount_001" }, { - "_id": "677536f67949f878820371ee", + "_id": "6808bb0e364a85cccb04c8ba", "_tpl": "5df35ea9c41b2312ea3334d8", - "parentId": "677536f67949f878820371eb", + "parentId": "6808bb0e364a85cccb04c8b7", "slotId": "mod_mount_002" }, { - "_id": "677536f67949f878820371ef", + "_id": "6808bb0e364a85cccb04c8bb", "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "677536f67949f878820371eb", + "parentId": "6808bb0e364a85cccb04c8b7", "slotId": "mod_mount_003" }, { - "_id": "677536f67949f878820371f0", + "_id": "6808bb0e364a85cccb04c8bc", "_tpl": "5df36948bb49d91fb446d5ad", - "parentId": "677536f67949f878820371eb", + "parentId": "6808bb0e364a85cccb04c8b7", "slotId": "mod_foregrip" }, { - "_id": "677536f67949f878820371f1", + "_id": "6808bb0e364a85cccb04c8bd", "_tpl": "5df38a5fb74cd90030650cb6", - "parentId": "677536f67949f878820371ea", + "parentId": "6808bb0e364a85cccb04c8b6", "slotId": "mod_pistol_grip" }, { - "_id": "677536f67949f878820371f2", + "_id": "6808bb0e364a85cccb04c8be", "_tpl": "5df35ddddfc58d14537c2036", - "parentId": "677536f67949f878820371ea", + "parentId": "6808bb0e364a85cccb04c8b6", "slotId": "mod_stock_axis" }, { - "_id": "677536f67949f878820371f3", + "_id": "6808bb0e364a85cccb04c8bf", "_tpl": "5df35e970b92095fd441e4d2", - "parentId": "677536f67949f878820371e6", + "parentId": "6808bb0e364a85cccb04c8b2", "slotId": "mod_mount" }, { - "_id": "677536f67949f878820371f6", - "_tpl": "5fbbc3324e8a554c40648348", + "_id": "6808bb0e364a85cccb04c8c2", + "_tpl": "5e023e6e34d52a55c3304f71", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 1000, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f67949f878820371f9", - "_tpl": "5fbcc437d724d907e2077d5c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f878820371fc", - "_tpl": "5fbe760793164a5b6278efc8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f878820371ff", - "_tpl": "6087e663132d4d12c81fd96b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f87882037202", - "_tpl": "6113cce3d92c473c770200c7", + "_id": "6808bb0e364a85cccb04c8c5", + "_tpl": "5d2c829448f0353a5c7d6674", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2777,7 +2657,67 @@ } }, { - "_id": "677536f67949f87882037205", + "_id": "6808bb0e364a85cccb04c8c8", + "_tpl": "5d25a7b88abbc3054f3e60bc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8cb", + "_tpl": "5cdeac5cd7f00c000f261694", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8ce", + "_tpl": "5c9a07572e221644f31c4b32", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8d1", + "_tpl": "5c78f2882e22165df16b832e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8d4", + "_tpl": "5b3b99475acfc432ff4dcbee", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0e364a85cccb04c8d7", "_tpl": "5fb655b748c711690e3a8d5a", "parentId": "hideout", "slotId": "hideout", @@ -2789,268 +2729,31 @@ } }, { - "_id": "677536f67949f87882037208", - "_tpl": "5fbbfacda56d053a3543f799", + "_id": "6808bb0e364a85cccb04c8da", + "_tpl": "64b8f7b5389d7ffd620ccba2", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 1000, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f67949f8788203720b", - "_tpl": "618bab21526131765025ab3f", + "_id": "6808bb0e364a85cccb04c8dd", + "_tpl": "5fb651b52b1b027b1f50bcff", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f67949f8788203720e", - "_tpl": "6477772ea8a38bb2050ed4db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f87882037211", - "_tpl": "612e0cfc8004cc50514c2d9e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f87882037214", - "_tpl": "5efaf417aeb21837e749c7f2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f8788203721e", - "_tpl": "5c0e5edb86f77461f55ed1f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f8788203721f", - "_tpl": "6571dbd388ead79fcf091d71", - "parentId": "677536f67949f8788203721e", - "slotId": "Soft_armor_front" - }, - { - "_id": "677536f67949f87882037220", - "_tpl": "6571dbda88ead79fcf091d75", - "parentId": "677536f67949f8788203721e", - "slotId": "Soft_armor_back" - }, - { - "_id": "677536f67949f87882037221", - "_tpl": "6571dbe07c02ae206002502e", - "parentId": "677536f67949f8788203721e", - "slotId": "Soft_armor_left" - }, - { - "_id": "677536f67949f87882037222", - "_tpl": "6571dbeaee8ec43d520cf89e", - "parentId": "677536f67949f8788203721e", - "slotId": "soft_armor_right" - }, - { - "_id": "677536f67949f87882037223", - "_tpl": "6571dbef88ead79fcf091d79", - "parentId": "677536f67949f8788203721e", - "slotId": "Collar" - }, - { - "_id": "677536f67949f87882037224", - "_tpl": "656f57dc27aed95beb08f628", - "parentId": "677536f67949f8788203721e", - "slotId": "Front_plate" - }, - { - "_id": "677536f67949f87882037225", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "677536f67949f8788203721e", - "slotId": "Back_plate" - }, - { - "_id": "677536f67949f87882037228", - "_tpl": "603373004e02ce1eaa358814", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f8788203722a", - "_tpl": "606587252535c57a13424cfd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f67949f8788203722b", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "677536f67949f8788203722a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f67949f8788203722c", - "_tpl": "59d6272486f77466146386ff", - "parentId": "677536f67949f8788203722a", - "slotId": "mod_magazine" - }, - { - "_id": "677536f67949f8788203722d", - "_tpl": "606587a88900dc2d9a55b659", - "parentId": "677536f67949f8788203722a", - "slotId": "mod_reciever" - }, - { - "_id": "677536f67949f8788203722e", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "677536f67949f8788203722d", - "slotId": "mod_barrel" - }, - { - "_id": "677536f67949f8788203722f", - "_tpl": "6065c6e7132d4d12c81fd8e1", - "parentId": "677536f67949f8788203722e", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f67949f87882037230", - "_tpl": "6065dc8a132d4d12c81fd8e3", - "parentId": "677536f67949f8788203722e", - "slotId": "mod_gas_block" - }, - { - "_id": "677536f67949f87882037231", - "_tpl": "6065880c132d4d12c81fd8da", - "parentId": "677536f67949f8788203722d", - "slotId": "mod_handguard" - }, - { - "_id": "677536f67949f87882037232", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "677536f67949f87882037231", - "slotId": "mod_sight_front" - }, - { - "_id": "677536f67949f87882037233", - "_tpl": "5bc09a18d4351e003562b68e", - "parentId": "677536f67949f8788203722d", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536f67949f87882037234", - "_tpl": "606587e18900dc2d9a55b65f", - "parentId": "677536f67949f8788203722a", - "slotId": "mod_stock_001" - }, - { - "_id": "677536f67949f87882037235", - "_tpl": "606587d11246154cad35d635", - "parentId": "677536f67949f87882037234", - "slotId": "mod_stock_000" - }, - { - "_id": "677536f67949f87882037236", - "_tpl": "606587bd6d0bd7580617bacc", - "parentId": "677536f67949f8788203722a", - "slotId": "mod_charge" - }, - { - "_id": "677536f67949f87882037239", - "_tpl": "5f2aa43ba9b91d26f20ae6d2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203723c", - "_tpl": "606587e18900dc2d9a55b65f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203723f", - "_tpl": "618ba91477b82356f91ae0e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037242", - "_tpl": "5fbbfabed5cb881a7363194e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037245", + "_id": "6808bb0f364a85cccb04c8e0", "_tpl": "618b9643526131765025ab35", "parentId": "hideout", "slotId": "hideout", @@ -3062,7 +2765,229 @@ } }, { - "_id": "677536f77949f87882037248", + "_id": "6808bb0f364a85cccb04c8e3", + "_tpl": "618b9671d14d6d5ab879c5ea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c8ea", + "_tpl": "5c0d2727d174af02a012cf58", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c8eb", + "_tpl": "657ba6c3c6f689d3a205b857", + "parentId": "6808bb0f364a85cccb04c8ea", + "slotId": "Helmet_top" + }, + { + "_id": "6808bb0f364a85cccb04c8ec", + "_tpl": "657ba737b7e9ca9a02045bf6", + "parentId": "6808bb0f364a85cccb04c8ea", + "slotId": "Helmet_back" + }, + { + "_id": "6808bb0f364a85cccb04c8ed", + "_tpl": "658188edf026a90c1708c827", + "parentId": "6808bb0f364a85cccb04c8ea", + "slotId": "helmet_eyes" + }, + { + "_id": "6808bb0f364a85cccb04c8ee", + "_tpl": "657ba75e23918923cb0df573", + "parentId": "6808bb0f364a85cccb04c8ea", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bb0f364a85cccb04c8f1", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c8f4", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c8f7", + "_tpl": "603372d154072b51b239f9e1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c8fa", + "_tpl": "6034e3e20ddce744014cb878", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c904", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c905", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bb0f364a85cccb04c906", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bb0f364a85cccb04c907", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bb0f364a85cccb04c908", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bb0f364a85cccb04c909", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Collar" + }, + { + "_id": "6808bb0f364a85cccb04c90a", + "_tpl": "656f57dc27aed95beb08f628", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Front_plate" + }, + { + "_id": "6808bb0f364a85cccb04c90b", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6808bb0f364a85cccb04c904", + "slotId": "Back_plate" + }, + { + "_id": "6808bb0f364a85cccb04c90e", + "_tpl": "5fbbc3324e8a554c40648348", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c911", + "_tpl": "61965d9058ef8c428c287e0d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c914", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c917", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c91a", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c91d", + "_tpl": "5b07db875acfc40dc528a5f6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c920", "_tpl": "5fbc227aa56d053a3543f79e", "parentId": "hideout", "slotId": "hideout", @@ -3074,8 +2999,32 @@ } }, { - "_id": "677536f77949f8788203724b", - "_tpl": "5fc0fa957283c4046c58147e", + "_id": "6808bb0f364a85cccb04c923", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c926", + "_tpl": "60338ff388382f4fab3fd2c8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c929", + "_tpl": "602f85fd9b513876d4338d9c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3086,7 +3035,118 @@ } }, { - "_id": "677536f77949f8788203724e", + "_id": "6808bb0f364a85cccb04c92c", + "_tpl": "5df36948bb49d91fb446d5ad", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c92f", + "_tpl": "5fbcc437d724d907e2077d5c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c932", + "_tpl": "5fbe760793164a5b6278efc8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c934", + "_tpl": "60339954d62c9b14ed777c06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb0f364a85cccb04c935", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb0f364a85cccb04c936", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb0f364a85cccb04c937", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb0f364a85cccb04c938", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "6808bb0f364a85cccb04c937", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb0f364a85cccb04c939", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "6808bb0f364a85cccb04c938", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb0f364a85cccb04c93a", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "6808bb0f364a85cccb04c937", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb0f364a85cccb04c93b", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bb0f364a85cccb04c93c", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "6808bb0f364a85cccb04c93b", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb0f364a85cccb04c93d", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_charge" + }, + { + "_id": "6808bb0f364a85cccb04c93e", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "6808bb0f364a85cccb04c934", + "slotId": "mod_tactical_000" + }, + { + "_id": "6808bb0f364a85cccb04c941", "_tpl": "5fc0fa362770a0045c59c677", "parentId": "hideout", "slotId": "hideout", @@ -3098,7 +3158,19 @@ } }, { - "_id": "677536f77949f87882037251", + "_id": "6808bb0f364a85cccb04c944", + "_tpl": "5fb65424956329274326f316", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c947", "_tpl": "5f6331e097199b7db2128dc2", "parentId": "hideout", "slotId": "hideout", @@ -3110,7 +3182,208 @@ } }, { - "_id": "677536f77949f87882037253", + "_id": "6808bb10364a85cccb04c94a", + "_tpl": "5fbcbd02900b1d5091531dd3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c94d", + "_tpl": "60a23797a37c940de7062d02", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c950", + "_tpl": "6477772ea8a38bb2050ed4db", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c953", + "_tpl": "6034e3d953a60014f970617b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c955", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c956", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "6808bb10364a85cccb04c955", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb10364a85cccb04c957", + "_tpl": "619f4f8c4c58466fe1228439", + "parentId": "6808bb10364a85cccb04c955", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb10364a85cccb04c958", + "_tpl": "619f52454c58466fe122843b", + "parentId": "6808bb10364a85cccb04c955", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb10364a85cccb04c959", + "_tpl": "619f4ab2d25cbd424731fb95", + "parentId": "6808bb10364a85cccb04c955", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb10364a85cccb04c95a", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "6808bb10364a85cccb04c955", + "slotId": "mod_tactical" + }, + { + "_id": "6808bb10364a85cccb04c95d", + "_tpl": "5fb655a72b1b027b1f50bd06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c960", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c963", + "_tpl": "6086b5731246154cad35d6c7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c966", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c969", + "_tpl": "603372f153a60014f970616d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c96c", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c96f", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c972", + "_tpl": "5f63407e1b231926f2329f15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c975", + "_tpl": "619666f4af1f5202c57a952d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c977", "_tpl": "5fc3f2d5900b1d5091531e57", "parentId": "hideout", "slotId": "hideout", @@ -3128,62 +3401,62 @@ } }, { - "_id": "677536f77949f87882037254", + "_id": "6808bb10364a85cccb04c978", "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_magazine" }, { - "_id": "677536f77949f87882037255", + "_id": "6808bb10364a85cccb04c979", "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_sight_front" }, { - "_id": "677536f77949f87882037256", + "_id": "6808bb10364a85cccb04c97a", "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_sight_rear" }, { - "_id": "677536f77949f87882037257", + "_id": "6808bb10364a85cccb04c97b", "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_stock" }, { - "_id": "677536f77949f87882037258", + "_id": "6808bb10364a85cccb04c97c", "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_barrel" }, { - "_id": "677536f77949f87882037259", + "_id": "6808bb10364a85cccb04c97d", "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "677536f77949f87882037258", + "parentId": "6808bb10364a85cccb04c97c", "slotId": "mod_muzzle" }, { - "_id": "677536f77949f8788203725a", + "_id": "6808bb10364a85cccb04c97e", "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_mount" }, { - "_id": "677536f77949f8788203725b", + "_id": "6808bb10364a85cccb04c97f", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_mount_001" }, { - "_id": "677536f77949f8788203725c", + "_id": "6808bb10364a85cccb04c980", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "677536f77949f87882037253", + "parentId": "6808bb10364a85cccb04c977", "slotId": "mod_mount_002" }, { - "_id": "677536f77949f8788203725f", - "_tpl": "6130ca3fd92c473c77020dbd", + "_id": "6808bb10364a85cccb04c983", + "_tpl": "6113cce3d92c473c770200c7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3194,83 +3467,8 @@ } }, { - "_id": "677536f77949f87882037261", - "_tpl": "60339954d62c9b14ed777c06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037262", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "677536f77949f87882037261", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f77949f87882037263", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "677536f77949f87882037261", - "slotId": "mod_magazine" - }, - { - "_id": "677536f77949f87882037264", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "677536f77949f87882037261", - "slotId": "mod_reciever" - }, - { - "_id": "677536f77949f87882037265", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "677536f77949f87882037264", - "slotId": "mod_barrel" - }, - { - "_id": "677536f77949f87882037266", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "677536f77949f87882037265", - "slotId": "mod_muzzle" - }, - { - "_id": "677536f77949f87882037267", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "677536f77949f87882037264", - "slotId": "mod_handguard" - }, - { - "_id": "677536f77949f87882037268", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "677536f77949f87882037261", - "slotId": "mod_stock_001" - }, - { - "_id": "677536f77949f87882037269", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "677536f77949f87882037268", - "slotId": "mod_stock_000" - }, - { - "_id": "677536f77949f8788203726a", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "677536f77949f87882037261", - "slotId": "mod_charge" - }, - { - "_id": "677536f77949f8788203726b", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "677536f77949f87882037261", - "slotId": "mod_tactical_000" - }, - { - "_id": "677536f77949f8788203726e", - "_tpl": "6034e3cb0ddce744014cb870", + "_id": "6808bb10364a85cccb04c986", + "_tpl": "5fc0fa957283c4046c58147e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3281,196 +3479,7 @@ } }, { - "_id": "677536f77949f87882037271", - "_tpl": "603372d154072b51b239f9e1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037274", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037277", - "_tpl": "6165ac8c290d254f5e6b2f6c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203727a", - "_tpl": "6113c3586c780c1e710c90bc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203727c", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203727d", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "677536f77949f8788203727c", - "slotId": "mod_magazine" - }, - { - "_id": "677536f77949f8788203727e", - "_tpl": "619f4f8c4c58466fe1228439", - "parentId": "677536f77949f8788203727c", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536f77949f8788203727f", - "_tpl": "619f52454c58466fe122843b", - "parentId": "677536f77949f8788203727c", - "slotId": "mod_sight_front" - }, - { - "_id": "677536f77949f87882037280", - "_tpl": "619f4ab2d25cbd424731fb95", - "parentId": "677536f77949f8788203727c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536f77949f87882037281", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "677536f77949f8788203727c", - "slotId": "mod_tactical" - }, - { - "_id": "677536f77949f87882037284", - "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f87882037287", - "_tpl": "5fbcbd02900b1d5091531dd3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f77949f8788203728a", - "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f8788203728d", - "_tpl": "5d44064fa4b9361e4f6eb8b5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f87882037290", - "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f87882037293", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f87882037296", - "_tpl": "6034e3e20ddce744014cb878", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f87882037299", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f8788203729c", + "_id": "6808bb10364a85cccb04c989", "_tpl": "5fb6567747ce63734e3fa1dc", "parentId": "hideout", "slotId": "hideout", @@ -3482,127 +3491,7 @@ } }, { - "_id": "677536f87949f8788203729f", - "_tpl": "603372f153a60014f970616d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372a2", - "_tpl": "61965d9058ef8c428c287e0d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372a5", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 210, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372ac", - "_tpl": "59e7635f86f7742cbf2c1095", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372ad", - "_tpl": "65702f87722744627e05cdb8", - "parentId": "677536f87949f878820372ac", - "slotId": "Soft_armor_front" - }, - { - "_id": "677536f87949f878820372ae", - "_tpl": "65702fe593b7ea9c330f4ce8", - "parentId": "677536f87949f878820372ac", - "slotId": "Soft_armor_back" - }, - { - "_id": "677536f87949f878820372af", - "_tpl": "6570305d93b7ea9c330f4ced", - "parentId": "677536f87949f878820372ac", - "slotId": "Soft_armor_left" - }, - { - "_id": "677536f87949f878820372b0", - "_tpl": "65703472c9030b928a0a8a78", - "parentId": "677536f87949f878820372ac", - "slotId": "soft_armor_right" - }, - { - "_id": "677536f87949f878820372b3", - "_tpl": "5fbbc383d5cb881a7363194a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372b6", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372b9", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372bc", - "_tpl": "618b9671d14d6d5ab879c5ea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372bf", + "_id": "6808bb10364a85cccb04c98c", "_tpl": "5e208b9842457a4a7a33d074", "parentId": "hideout", "slotId": "hideout", @@ -3614,20 +3503,8 @@ } }, { - "_id": "677536f87949f878820372c2", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372c5", - "_tpl": "5fbb976df9986c4cff3fe5f2", + "_id": "6808bb10364a85cccb04c98f", + "_tpl": "5efaf417aeb21837e749c7f2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3638,7 +3515,199 @@ } }, { - "_id": "677536f87949f878820372c7", + "_id": "6808bb10364a85cccb04c992", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c995", + "_tpl": "6113c3586c780c1e710c90bc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c998", + "_tpl": "5fb653962b1b027b1f50bd03", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c99a", + "_tpl": "56dee2bdd2720bc8328b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb10364a85cccb04c99b", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "6808bb10364a85cccb04c99a", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb10364a85cccb04c99c", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "6808bb10364a85cccb04c99a", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb10364a85cccb04c99d", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "6808bb10364a85cccb04c99a", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb10364a85cccb04c99e", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "6808bb10364a85cccb04c99a", + "slotId": "mod_stock" + }, + { + "_id": "6808bb11364a85cccb04c9a1", + "_tpl": "612e0d81290d254f5e6b291a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9a4", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9a7", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9aa", + "_tpl": "6086b5392535c57a13424d70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9ad", + "_tpl": "618bab21526131765025ab3f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9b0", + "_tpl": "5fbbfacda56d053a3543f799", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9b3", + "_tpl": "618ba91477b82356f91ae0e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9b6", + "_tpl": "612e0d3767085e45ef14057f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9b9", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9bc", + "_tpl": "5fbbc383d5cb881a7363194a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9be", "_tpl": "5f2a9575926fd9352339381f", "parentId": "hideout", "slotId": "hideout", @@ -3654,56 +3723,56 @@ } }, { - "_id": "677536f87949f878820372c8", + "_id": "6808bb11364a85cccb04c9bf", "_tpl": "5b099ac65acfc400186331e1", - "parentId": "677536f87949f878820372c7", + "parentId": "6808bb11364a85cccb04c9be", "slotId": "mod_magazine" }, { - "_id": "677536f87949f878820372c9", + "_id": "6808bb11364a85cccb04c9c0", "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "677536f87949f878820372c7", + "parentId": "6808bb11364a85cccb04c9be", "slotId": "mod_barrel" }, { - "_id": "677536f87949f878820372ca", + "_id": "6808bb11364a85cccb04c9c1", "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "677536f87949f878820372c9", + "parentId": "6808bb11364a85cccb04c9c0", "slotId": "mod_muzzle" }, { - "_id": "677536f87949f878820372cb", + "_id": "6808bb11364a85cccb04c9c2", "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "677536f87949f878820372c7", + "parentId": "6808bb11364a85cccb04c9be", "slotId": "mod_handguard" }, { - "_id": "677536f87949f878820372cc", + "_id": "6808bb11364a85cccb04c9c3", "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "677536f87949f878820372cb", + "parentId": "6808bb11364a85cccb04c9c2", "slotId": "mod_mount_000" }, { - "_id": "677536f87949f878820372cd", + "_id": "6808bb11364a85cccb04c9c4", "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "677536f87949f878820372c7", + "parentId": "6808bb11364a85cccb04c9be", "slotId": "mod_mount" }, { - "_id": "677536f87949f878820372ce", + "_id": "6808bb11364a85cccb04c9c5", "_tpl": "5c1780312e221602b66cc189", - "parentId": "677536f87949f878820372cd", + "parentId": "6808bb11364a85cccb04c9c4", "slotId": "mod_sight_rear" }, { - "_id": "677536f87949f878820372cf", + "_id": "6808bb11364a85cccb04c9c6", "_tpl": "5c17804b2e2216152006c02f", - "parentId": "677536f87949f878820372cd", + "parentId": "6808bb11364a85cccb04c9c4", "slotId": "mod_sight_front" }, { - "_id": "677536f87949f878820372d2", - "_tpl": "5fb65363d1409e5ca04b54f5", + "_id": "6808bb11364a85cccb04c9c9", + "_tpl": "6033fa48ffd42c541047f728", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3714,43 +3783,7 @@ } }, { - "_id": "677536f87949f878820372d5", - "_tpl": "5fb65424956329274326f316", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f87949f878820372d8", - "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f878820372db", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f878820372de", + "_id": "6808bb11364a85cccb04c9cc", "_tpl": "606587d11246154cad35d635", "parentId": "hideout", "slotId": "hideout", @@ -3762,32 +3795,20 @@ } }, { - "_id": "677536f97949f878820372e1", - "_tpl": "602e620f9b513876d4338d9a", + "_id": "6808bb11364a85cccb04c9cf", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 7, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536f97949f878820372e4", - "_tpl": "6086b5392535c57a13424d70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f878820372e7", - "_tpl": "60a23797a37c940de7062d02", + "_id": "6808bb11364a85cccb04c9d2", + "_tpl": "612e0cfc8004cc50514c2d9e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3798,32 +3819,8 @@ } }, { - "_id": "677536f97949f878820372ea", - "_tpl": "6086b5731246154cad35d6c7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f878820372ed", - "_tpl": "5df36948bb49d91fb446d5ad", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f878820372f0", - "_tpl": "5fb653962b1b027b1f50bd03", + "_id": "6808bb11364a85cccb04c9d9", + "_tpl": "59e7635f86f7742cbf2c1095", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3834,7 +3831,43 @@ } }, { - "_id": "677536f97949f878820372f2", + "_id": "6808bb11364a85cccb04c9da", + "_tpl": "65702f87722744627e05cdb8", + "parentId": "6808bb11364a85cccb04c9d9", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bb11364a85cccb04c9db", + "_tpl": "65702fe593b7ea9c330f4ce8", + "parentId": "6808bb11364a85cccb04c9d9", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bb11364a85cccb04c9dc", + "_tpl": "6570305d93b7ea9c330f4ced", + "parentId": "6808bb11364a85cccb04c9d9", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bb11364a85cccb04c9dd", + "_tpl": "65703472c9030b928a0a8a78", + "parentId": "6808bb11364a85cccb04c9d9", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bb11364a85cccb04c9e0", + "_tpl": "612e0e04568c120fdd294258", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9e2", "_tpl": "5fbcc1d9016cce60e8341ab3", "parentId": "hideout", "slotId": "hideout", @@ -3849,79 +3882,250 @@ } }, { - "_id": "677536f97949f878820372f3", + "_id": "6808bb11364a85cccb04c9e3", "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "677536f97949f878820372f2", + "parentId": "6808bb11364a85cccb04c9e2", "slotId": "mod_pistol_grip" }, { - "_id": "677536f97949f878820372f4", + "_id": "6808bb11364a85cccb04c9e4", "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "677536f97949f878820372f2", + "parentId": "6808bb11364a85cccb04c9e2", "slotId": "mod_magazine" }, { - "_id": "677536f97949f878820372f5", + "_id": "6808bb11364a85cccb04c9e5", "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "677536f97949f878820372f2", + "parentId": "6808bb11364a85cccb04c9e2", "slotId": "mod_reciever" }, { - "_id": "677536f97949f878820372f6", + "_id": "6808bb11364a85cccb04c9e6", "_tpl": "5fbbfacda56d053a3543f799", - "parentId": "677536f97949f878820372f5", + "parentId": "6808bb11364a85cccb04c9e5", "slotId": "mod_barrel" }, { - "_id": "677536f97949f878820372f7", + "_id": "6808bb11364a85cccb04c9e7", "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "677536f97949f878820372f6", + "parentId": "6808bb11364a85cccb04c9e6", "slotId": "mod_muzzle" }, { - "_id": "677536f97949f878820372f8", + "_id": "6808bb11364a85cccb04c9e8", "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "677536f97949f878820372f7", + "parentId": "6808bb11364a85cccb04c9e7", "slotId": "mod_muzzle_000" }, { - "_id": "677536f97949f878820372f9", + "_id": "6808bb11364a85cccb04c9e9", "_tpl": "5fbc210bf24b94483f726481", - "parentId": "677536f97949f878820372f6", + "parentId": "6808bb11364a85cccb04c9e6", "slotId": "mod_gas_block" }, { - "_id": "677536f97949f878820372fa", + "_id": "6808bb11364a85cccb04c9ea", "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "677536f97949f878820372f5", + "parentId": "6808bb11364a85cccb04c9e5", "slotId": "mod_handguard" }, { - "_id": "677536f97949f878820372fb", + "_id": "6808bb11364a85cccb04c9eb", "_tpl": "5fc0fa362770a0045c59c677", - "parentId": "677536f97949f878820372fa", + "parentId": "6808bb11364a85cccb04c9ea", "slotId": "mod_sight_front" }, { - "_id": "677536f97949f878820372fc", + "_id": "6808bb11364a85cccb04c9ec", "_tpl": "5fc0fa957283c4046c58147e", - "parentId": "677536f97949f878820372f5", + "parentId": "6808bb11364a85cccb04c9e5", "slotId": "mod_sight_rear" }, { - "_id": "677536f97949f878820372fd", + "_id": "6808bb11364a85cccb04c9ed", "_tpl": "5fbcc437d724d907e2077d5c", - "parentId": "677536f97949f878820372f2", + "parentId": "6808bb11364a85cccb04c9e2", "slotId": "mod_stock" }, { - "_id": "677536f97949f878820372fe", + "_id": "6808bb11364a85cccb04c9ee", "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "677536f97949f878820372f2", + "parentId": "6808bb11364a85cccb04c9e2", "slotId": "mod_charge" }, { - "_id": "677536f97949f87882037300", + "_id": "6808bb11364a85cccb04c9f1", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9f4", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9f7", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9f9", + "_tpl": "606587252535c57a13424cfd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04c9fa", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "6808bb11364a85cccb04c9f9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb11364a85cccb04c9fb", + "_tpl": "59d6272486f77466146386ff", + "parentId": "6808bb11364a85cccb04c9f9", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb11364a85cccb04c9fc", + "_tpl": "606587a88900dc2d9a55b659", + "parentId": "6808bb11364a85cccb04c9f9", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb11364a85cccb04c9fd", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "6808bb11364a85cccb04c9fc", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb11364a85cccb04c9fe", + "_tpl": "6065c6e7132d4d12c81fd8e1", + "parentId": "6808bb11364a85cccb04c9fd", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb11364a85cccb04c9ff", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "6808bb11364a85cccb04c9fd", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb11364a85cccb04ca00", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "6808bb11364a85cccb04c9fc", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb11364a85cccb04ca01", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "6808bb11364a85cccb04ca00", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb11364a85cccb04ca02", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "6808bb11364a85cccb04c9fc", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb11364a85cccb04ca03", + "_tpl": "606587e18900dc2d9a55b65f", + "parentId": "6808bb11364a85cccb04c9f9", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bb11364a85cccb04ca04", + "_tpl": "606587d11246154cad35d635", + "parentId": "6808bb11364a85cccb04ca03", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb11364a85cccb04ca05", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "6808bb11364a85cccb04c9f9", + "slotId": "mod_charge" + }, + { + "_id": "6808bb11364a85cccb04ca08", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb11364a85cccb04ca0b", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca0e", + "_tpl": "5fbbfabed5cb881a7363194e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca11", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 210, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca13", "_tpl": "5fb64bc92b1b027b1f50bcf2", "parentId": "hideout", "slotId": "hideout", @@ -3939,61 +4143,73 @@ } }, { - "_id": "677536f97949f87882037301", + "_id": "6808bb12364a85cccb04ca14", "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_magazine" }, { - "_id": "677536f97949f87882037302", + "_id": "6808bb12364a85cccb04ca15", "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_sight_front" }, { - "_id": "677536f97949f87882037303", + "_id": "6808bb12364a85cccb04ca16", "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_sight_rear" }, { - "_id": "677536f97949f87882037304", + "_id": "6808bb12364a85cccb04ca17", "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_stock" }, { - "_id": "677536f97949f87882037305", + "_id": "6808bb12364a85cccb04ca18", "_tpl": "5fb65363d1409e5ca04b54f5", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_barrel" }, { - "_id": "677536f97949f87882037306", + "_id": "6808bb12364a85cccb04ca19", "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "677536f97949f87882037305", + "parentId": "6808bb12364a85cccb04ca18", "slotId": "mod_muzzle" }, { - "_id": "677536f97949f87882037307", + "_id": "6808bb12364a85cccb04ca1a", "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_mount" }, { - "_id": "677536f97949f87882037308", + "_id": "6808bb12364a85cccb04ca1b", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_mount_001" }, { - "_id": "677536f97949f87882037309", + "_id": "6808bb12364a85cccb04ca1c", "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "677536f97949f87882037300", + "parentId": "6808bb12364a85cccb04ca13", "slotId": "mod_mount_002" }, { - "_id": "677536f97949f8788203730c", + "_id": "6808bb12364a85cccb04ca1f", + "_tpl": "606587e18900dc2d9a55b65f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca22", "_tpl": "5fce0f9b55375d18a253eff2", "parentId": "hideout", "slotId": "hideout", @@ -4005,68 +4221,8 @@ } }, { - "_id": "677536f97949f8788203730f", - "_tpl": "6033fa48ffd42c541047f728", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037312", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037315", - "_tpl": "6034e3d953a60014f970617b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037318", - "_tpl": "606587bd6d0bd7580617bacc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f8788203731b", - "_tpl": "619666f4af1f5202c57a952d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f8788203731e", - "_tpl": "612e0e04568c120fdd294258", + "_id": "6808bb12364a85cccb04ca25", + "_tpl": "603373004e02ce1eaa358814", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4077,56 +4233,8 @@ } }, { - "_id": "677536f97949f87882037321", - "_tpl": "612e0d3767085e45ef14057f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037328", - "_tpl": "5c0d2727d174af02a012cf58", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037329", - "_tpl": "657ba6c3c6f689d3a205b857", - "parentId": "677536f97949f87882037328", - "slotId": "Helmet_top" - }, - { - "_id": "677536f97949f8788203732a", - "_tpl": "657ba737b7e9ca9a02045bf6", - "parentId": "677536f97949f87882037328", - "slotId": "Helmet_back" - }, - { - "_id": "677536f97949f8788203732b", - "_tpl": "658188edf026a90c1708c827", - "parentId": "677536f97949f87882037328", - "slotId": "helmet_eyes" - }, - { - "_id": "677536f97949f8788203732c", - "_tpl": "657ba75e23918923cb0df573", - "parentId": "677536f97949f87882037328", - "slotId": "Helmet_ears" - }, - { - "_id": "677536f97949f8788203732f", - "_tpl": "5b07db875acfc40dc528a5f6", + "_id": "6808bb12364a85cccb04ca28", + "_tpl": "5d44064fa4b9361e4f6eb8b5", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4137,488 +4245,7 @@ } }, { - "_id": "677536f97949f87882037332", - "_tpl": "5f63407e1b231926f2329f15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536f97949f87882037335", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037338", - "_tpl": "5fb655a72b1b027b1f50bd06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203733b", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203733d", - "_tpl": "56dee2bdd2720bc8328b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203733e", - "_tpl": "56deec93d2720bec348b4568", - "parentId": "677536fa7949f8788203733d", - "slotId": "mod_barrel" - }, - { - "_id": "677536fa7949f8788203733f", - "_tpl": "56deed6ed2720b4c698b4583", - "parentId": "677536fa7949f8788203733d", - "slotId": "mod_handguard" - }, - { - "_id": "677536fa7949f87882037340", - "_tpl": "56deee15d2720bee328b4567", - "parentId": "677536fa7949f8788203733d", - "slotId": "mod_magazine" - }, - { - "_id": "677536fa7949f87882037341", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "677536fa7949f8788203733d", - "slotId": "mod_stock" - }, - { - "_id": "677536fa7949f87882037344", - "_tpl": "60338ff388382f4fab3fd2c8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037347", - "_tpl": "612e0d81290d254f5e6b291a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203734a", - "_tpl": "6269220d70b6c02e665f2635", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203734d", - "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037350", - "_tpl": "6272370ee4013c5d7e31f418", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037353", - "_tpl": "6269545d0e57f218e4548ca2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037356", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037359", - "_tpl": "63f4ba71f31d4a33b87bd046", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203735c", - "_tpl": "63d114019e35b334d82302f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203735f", - "_tpl": "63f4da90f31d4a33b87bd054", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037362", - "_tpl": "6492d7847363b8a52206bc52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037365", - "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037368", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203736b", - "_tpl": "637b6d610aef6cfc5e02dd14", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203736e", - "_tpl": "5c0e2f26d174af02a9625114", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203737d", - "_tpl": "5fbcc1d9016cce60e8341ab3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203738c", - "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f8788203738f", - "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037392", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037395", - "_tpl": "630767c37d50ff5e8a1ea71a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fa7949f87882037398", - "_tpl": "64b9e265c94d0d15c5027e35", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f8788203739b", - "_tpl": "647dd2b8a12ebf96c3031655", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f8788203739d", - "_tpl": "63088377b5cd696784087147", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536fb7949f8788203739e", - "_tpl": "630764fea987397c0816d219", - "parentId": "677536fb7949f8788203739d", - "slotId": "mod_barrel" - }, - { - "_id": "677536fb7949f8788203739f", - "_tpl": "63075cc5962d0247b029dc2a", - "parentId": "677536fb7949f8788203739d", - "slotId": "mod_reciever" - }, - { - "_id": "677536fb7949f878820373a0", - "_tpl": "630765cb962d0247b029dc45", - "parentId": "677536fb7949f8788203739f", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536fb7949f878820373a1", - "_tpl": "630765777d50ff5e8a1ea718", - "parentId": "677536fb7949f8788203739f", - "slotId": "mod_sight_front" - }, - { - "_id": "677536fb7949f878820373a2", - "_tpl": "63076701a987397c0816d21b", - "parentId": "677536fb7949f8788203739d", - "slotId": "mod_magazine" - }, - { - "_id": "677536fb7949f878820373a8", - "_tpl": "647de824196bf69818044c93", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373ab", - "_tpl": "64942bfc6ee699f6890dff95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373ae", - "_tpl": "628a664bccaab13006640e47", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373b1", - "_tpl": "638de3603a1a4031d8260b8c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373b4", - "_tpl": "638612b607dfed1ccb7206ba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373b7", - "_tpl": "6405ff6bd4578826ec3e377a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373ba", - "_tpl": "644a3df63b0b6f03e101e065", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373bd", + "_id": "6808bb12364a85cccb04ca2e", "_tpl": "5c0e2f5cd174af02a012cfc9", "parentId": "hideout", "slotId": "hideout", @@ -4630,8 +4257,8 @@ } }, { - "_id": "677536fb7949f878820373c0", - "_tpl": "5c0faf68d174af02a96260b8", + "_id": "6808bb12364a85cccb04ca31", + "_tpl": "6494094948796d891603e59f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4642,8 +4269,8 @@ } }, { - "_id": "677536fb7949f878820373c3", - "_tpl": "5f2aa4464b50c14bcf07acdb", + "_id": "6808bb12364a85cccb04ca34", + "_tpl": "647dd2b8a12ebf96c3031655", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4654,8 +4281,8 @@ } }, { - "_id": "677536fb7949f878820373c6", - "_tpl": "59e649f986f77411d949b246", + "_id": "6808bb12364a85cccb04ca37", + "_tpl": "644a3df63b0b6f03e101e065", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4666,89 +4293,8 @@ } }, { - "_id": "677536fb7949f878820373c9", - "_tpl": "6272874a6c47bd74f92e2087", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373cb", - "_tpl": "628b5638ad252a16da6dd245", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fb7949f878820373cc", - "_tpl": "628b8d83717774443b15e248", - "parentId": "677536fb7949f878820373cb", - "slotId": "mod_gas_block" - }, - { - "_id": "677536fb7949f878820373cd", - "_tpl": "628b916469015a4e1711ed8d", - "parentId": "677536fb7949f878820373cc", - "slotId": "mod_handguard" - }, - { - "_id": "677536fb7949f878820373ce", - "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "677536fb7949f878820373cd", - "slotId": "mod_reciever" - }, - { - "_id": "677536fb7949f878820373cf", - "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "677536fb7949f878820373ce", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536fb7949f878820373d0", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "677536fb7949f878820373cb", - "slotId": "mod_muzzle" - }, - { - "_id": "677536fb7949f878820373d1", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "677536fb7949f878820373cb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536fb7949f878820373d2", - "_tpl": "628b9a40717774443b15e9f2", - "parentId": "677536fb7949f878820373cb", - "slotId": "mod_stock_000" - }, - { - "_id": "677536fb7949f878820373d3", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "677536fb7949f878820373d2", - "slotId": "mod_stock" - }, - { - "_id": "677536fb7949f878820373d4", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "677536fb7949f878820373cb", - "slotId": "mod_magazine" - }, - { - "_id": "677536fb7949f878820373d7", - "_tpl": "6272379924e29f06af4d5ecb", + "_id": "6808bb12364a85cccb04ca3a", + "_tpl": "63d114019e35b334d82302f7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4759,32 +4305,80 @@ } }, { - "_id": "677536fb7949f878820373da", - "_tpl": "63076701a987397c0816d21b", + "_id": "6808bb12364a85cccb04ca3d", + "_tpl": "623c3be0484b5003161840dc", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536fc7949f878820373dd", - "_tpl": "64b9cf0ac12b9c38db26923a", + "_id": "6808bb12364a85cccb04ca40", + "_tpl": "5c0e2ff6d174af02a1659d4a", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536fc7949f878820373e0", - "_tpl": "63f5ed14534b2c3d5479a677", + "_id": "6808bb12364a85cccb04ca43", + "_tpl": "637784c5f7b3f4ac1a0d1a9a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca46", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca49", + "_tpl": "63f4da90f31d4a33b87bd054", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca4c", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca4f", + "_tpl": "6492c6dd60fdb10a020621a2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4795,20 +4389,20 @@ } }, { - "_id": "677536fc7949f878820373e3", - "_tpl": "655cb6b5d680a544f30607fa", + "_id": "6808bb12364a85cccb04ca52", + "_tpl": "5e85a9f4add9fe03027d9bf1", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536fc7949f878820373e6", - "_tpl": "628c9ab845c59e5b80768a81", + "_id": "6808bb12364a85cccb04ca55", + "_tpl": "5c0fafb6d174af02a96260ba", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4819,7 +4413,7 @@ } }, { - "_id": "677536fc7949f878820373e8", + "_id": "6808bb12364a85cccb04ca57", "_tpl": "628b9c37a733087d0d7fe84b", "parentId": "hideout", "slotId": "hideout", @@ -4834,133 +4428,61 @@ } }, { - "_id": "677536fc7949f878820373e9", + "_id": "6808bb12364a85cccb04ca58", "_tpl": "628b8d83717774443b15e248", - "parentId": "677536fc7949f878820373e8", + "parentId": "6808bb12364a85cccb04ca57", "slotId": "mod_gas_block" }, { - "_id": "677536fc7949f878820373ea", + "_id": "6808bb12364a85cccb04ca59", "_tpl": "628b916469015a4e1711ed8d", - "parentId": "677536fc7949f878820373e9", + "parentId": "6808bb12364a85cccb04ca58", "slotId": "mod_handguard" }, { - "_id": "677536fc7949f878820373eb", + "_id": "6808bb12364a85cccb04ca5a", "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "677536fc7949f878820373ea", + "parentId": "6808bb12364a85cccb04ca59", "slotId": "mod_reciever" }, { - "_id": "677536fc7949f878820373ec", + "_id": "6808bb12364a85cccb04ca5b", "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "677536fc7949f878820373eb", + "parentId": "6808bb12364a85cccb04ca5a", "slotId": "mod_sight_rear" }, { - "_id": "677536fc7949f878820373ed", + "_id": "6808bb12364a85cccb04ca5c", "_tpl": "5943eeeb86f77412d6384f6b", - "parentId": "677536fc7949f878820373e8", + "parentId": "6808bb12364a85cccb04ca57", "slotId": "mod_muzzle" }, { - "_id": "677536fc7949f878820373ee", + "_id": "6808bb12364a85cccb04ca5d", "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "677536fc7949f878820373e8", + "parentId": "6808bb12364a85cccb04ca57", "slotId": "mod_pistol_grip" }, { - "_id": "677536fc7949f878820373ef", + "_id": "6808bb12364a85cccb04ca5e", "_tpl": "628b9a40717774443b15e9f2", - "parentId": "677536fc7949f878820373e8", + "parentId": "6808bb12364a85cccb04ca57", "slotId": "mod_stock_000" }, { - "_id": "677536fc7949f878820373f0", + "_id": "6808bb12364a85cccb04ca5f", "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "677536fc7949f878820373ef", + "parentId": "6808bb12364a85cccb04ca5e", "slotId": "mod_stock" }, { - "_id": "677536fc7949f878820373f1", + "_id": "6808bb12364a85cccb04ca60", "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "677536fc7949f878820373e8", + "parentId": "6808bb12364a85cccb04ca57", "slotId": "mod_magazine" }, { - "_id": "677536fc7949f878820373f4", - "_tpl": "6389f1dfc879ce63f72fc43e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f878820373f7", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f878820373fa", - "_tpl": "5888961624597754281f93f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f878820373fd", - "_tpl": "648afce7ec6bb25b2608defb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f87882037400", - "_tpl": "626bb8532c923541184624b4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f87882037403", - "_tpl": "6267c6396b642f77f56f5c1c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f87882037406", + "_id": "6808bb12364a85cccb04ca63", "_tpl": "62e281349ecd3f493f6df954", "parentId": "hideout", "slotId": "hideout", @@ -4972,7 +4494,451 @@ } }, { - "_id": "677536fc7949f87882037408", + "_id": "6808bb12364a85cccb04ca66", + "_tpl": "630769c4962d0247b029dc60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca69", + "_tpl": "6269220d70b6c02e665f2635", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca6c", + "_tpl": "653ed132896b99b40a0292e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca6f", + "_tpl": "6272874a6c47bd74f92e2087", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb12364a85cccb04ca72", + "_tpl": "6269545d0e57f218e4548ca2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca75", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca78", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca7b", + "_tpl": "63d3d44a2a49307baf09386d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca7e", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca81", + "_tpl": "6492ef63cfcf7c89e701abf1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca84", + "_tpl": "637b6d610aef6cfc5e02dd14", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca87", + "_tpl": "63d3ce0446bd475bcb50f55f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca8a", + "_tpl": "638db77630c4240f9e06f8b6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca8d", + "_tpl": "63f4ba71f31d4a33b87bd046", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca90", + "_tpl": "6272379924e29f06af4d5ecb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca93", + "_tpl": "648067db042be0705c0b3009", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca96", + "_tpl": "647de824196bf69818044c93", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca99", + "_tpl": "64807a29e5ffe165600abc97", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca9c", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04ca9f", + "_tpl": "6405ff6bd4578826ec3e377a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04caa2", + "_tpl": "64806bdd26c80811d408d37a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04caa5", + "_tpl": "6386120cd6baa055ad1e201c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04caa8", + "_tpl": "63877c99e785640d436458ea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb13364a85cccb04caab", + "_tpl": "630767c37d50ff5e8a1ea71a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caae", + "_tpl": "6267c6396b642f77f56f5c1c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cab1", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cab4", + "_tpl": "6492c8bba6e68e06fb0bae87", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cab7", + "_tpl": "640b20359ab20e15ee445fa9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caba", + "_tpl": "655cb6b5d680a544f30607fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cabd", + "_tpl": "6491c6f6ef312a876705191b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cac3", + "_tpl": "628a664bccaab13006640e47", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cac6", + "_tpl": "653ece125a1690d9d90491e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cac9", + "_tpl": "647db1eca8d3399c380d195c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cacc", + "_tpl": "64b9cf0ac12b9c38db26923a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cacf", + "_tpl": "651bfe4d1065f87f082e7209", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cad2", + "_tpl": "6492d7847363b8a52206bc52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cad5", + "_tpl": "6389f1dfc879ce63f72fc43e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cad7", "_tpl": "5f2a9575926fd9352339381f", "parentId": "hideout", "slotId": "hideout", @@ -4988,56 +4954,56 @@ } }, { - "_id": "677536fc7949f87882037409", + "_id": "6808bb14364a85cccb04cad8", "_tpl": "5b099ac65acfc400186331e1", - "parentId": "677536fc7949f87882037408", + "parentId": "6808bb14364a85cccb04cad7", "slotId": "mod_magazine" }, { - "_id": "677536fc7949f8788203740a", + "_id": "6808bb14364a85cccb04cad9", "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "677536fc7949f87882037408", + "parentId": "6808bb14364a85cccb04cad7", "slotId": "mod_barrel" }, { - "_id": "677536fc7949f8788203740b", + "_id": "6808bb14364a85cccb04cada", "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "677536fc7949f8788203740a", + "parentId": "6808bb14364a85cccb04cad9", "slotId": "mod_muzzle" }, { - "_id": "677536fc7949f8788203740c", + "_id": "6808bb14364a85cccb04cadb", "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "677536fc7949f87882037408", + "parentId": "6808bb14364a85cccb04cad7", "slotId": "mod_handguard" }, { - "_id": "677536fc7949f8788203740d", + "_id": "6808bb14364a85cccb04cadc", "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "677536fc7949f8788203740c", + "parentId": "6808bb14364a85cccb04cadb", "slotId": "mod_mount_000" }, { - "_id": "677536fc7949f8788203740e", + "_id": "6808bb14364a85cccb04cadd", "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "677536fc7949f87882037408", + "parentId": "6808bb14364a85cccb04cad7", "slotId": "mod_mount" }, { - "_id": "677536fc7949f8788203740f", + "_id": "6808bb14364a85cccb04cade", "_tpl": "5c1780312e221602b66cc189", - "parentId": "677536fc7949f8788203740e", + "parentId": "6808bb14364a85cccb04cadd", "slotId": "mod_sight_rear" }, { - "_id": "677536fc7949f87882037410", + "_id": "6808bb14364a85cccb04cadf", "_tpl": "5c17804b2e2216152006c02f", - "parentId": "677536fc7949f8788203740e", + "parentId": "6808bb14364a85cccb04cadd", "slotId": "mod_sight_front" }, { - "_id": "677536fc7949f87882037416", - "_tpl": "5c0fafb6d174af02a96260ba", + "_id": "6808bb14364a85cccb04cae2", + "_tpl": "628c9ab845c59e5b80768a81", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5048,367 +5014,7 @@ } }, { - "_id": "677536fc7949f87882037419", - "_tpl": "647def638295ebcb5b02f05b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fc7949f8788203741c", - "_tpl": "6494094948796d891603e59f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f8788203741f", - "_tpl": "656f9d5900d62bcd2e02407c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037422", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037425", - "_tpl": "647db1eca8d3399c380d195c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037428", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f8788203742b", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f8788203742e", - "_tpl": "55d4837c4bdc2d1d4e8b456c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037431", - "_tpl": "638db77630c4240f9e06f8b6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037434", - "_tpl": "63877c99e785640d436458ea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037437", - "_tpl": "6386120cd6baa055ad1e201c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f8788203743a", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f8788203743d", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037440", - "_tpl": "651bfe4d1065f87f082e7209", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037443", - "_tpl": "63d3ce0446bd475bcb50f55f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037446", - "_tpl": "63f5feead259b42f0b4d6d0f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fd7949f87882037449", - "_tpl": "647dba3142c479dde701b654", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203744c", - "_tpl": "6492c8bba6e68e06fb0bae87", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203744f", - "_tpl": "63d3d44a2a49307baf09386d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037452", - "_tpl": "6492ef63cfcf7c89e701abf1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037455", - "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037458", - "_tpl": "6491c6f6ef312a876705191b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203745b", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203745e", - "_tpl": "630769c4962d0247b029dc60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037461", - "_tpl": "65434a4e4e3a01736a6c9706", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037464", - "_tpl": "63d3ce281fe77d0f2801859e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037467", - "_tpl": "640b20359ab20e15ee445fa9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203746a", - "_tpl": "5c0e2ff6d174af02a1659d4a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f8788203746d", - "_tpl": "648067db042be0705c0b3009", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037470", - "_tpl": "623c3be0484b5003161840dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536fe7949f87882037473", + "_id": "6808bb14364a85cccb04cae5", "_tpl": "656fa0fb498d1b7e3e071d9c", "parentId": "hideout", "slotId": "hideout", @@ -5420,7 +5026,190 @@ } }, { - "_id": "677536fe7949f87882037476", + "_id": "6808bb14364a85cccb04cae8", + "_tpl": "648afce7ec6bb25b2608defb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caeb", + "_tpl": "65434a4e4e3a01736a6c9706", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caee", + "_tpl": "63f5ed14534b2c3d5479a677", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caf1", + "_tpl": "5888961624597754281f93f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caf4", + "_tpl": "63076701a987397c0816d21b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04caf7", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cafa", + "_tpl": "647def638295ebcb5b02f05b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb14364a85cccb04cafd", + "_tpl": "55d4837c4bdc2d1d4e8b456c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb00", + "_tpl": "59e649f986f77411d949b246", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb0f", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb1e", + "_tpl": "55d6190f4bdc2d87028b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb21", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb24", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb27", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb2a", + "_tpl": "626bb8532c923541184624b4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb2d", "_tpl": "587df583245977373c4f1129", "parentId": "hideout", "slotId": "hideout", @@ -5432,8 +5221,102 @@ } }, { - "_id": "677536fe7949f87882037479", - "_tpl": "6492c6dd60fdb10a020621a2", + "_id": "6808bb15364a85cccb04cb30", + "_tpl": "64b9e265c94d0d15c5027e35", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb33", + "_tpl": "638612b607dfed1ccb7206ba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb36", + "_tpl": "6272370ee4013c5d7e31f418", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb39", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb3b", + "_tpl": "63088377b5cd696784087147", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb15364a85cccb04cb3c", + "_tpl": "630764fea987397c0816d219", + "parentId": "6808bb15364a85cccb04cb3b", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb15364a85cccb04cb3d", + "_tpl": "63075cc5962d0247b029dc2a", + "parentId": "6808bb15364a85cccb04cb3b", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb15364a85cccb04cb3e", + "_tpl": "630765cb962d0247b029dc45", + "parentId": "6808bb15364a85cccb04cb3d", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb15364a85cccb04cb3f", + "_tpl": "630765777d50ff5e8a1ea718", + "parentId": "6808bb15364a85cccb04cb3d", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb15364a85cccb04cb40", + "_tpl": "63076701a987397c0816d21b", + "parentId": "6808bb15364a85cccb04cb3b", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb15364a85cccb04cb43", + "_tpl": "5d1b36a186f7742523398433", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5444,8 +5327,8 @@ } }, { - "_id": "677536fe7949f8788203747c", - "_tpl": "64806bdd26c80811d408d37a", + "_id": "6808bb15364a85cccb04cb46", + "_tpl": "5c0e2f26d174af02a9625114", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5456,56 +5339,77 @@ } }, { - "_id": "677536ff7949f8788203747f", - "_tpl": "64807a29e5ffe165600abc97", + "_id": "6808bb15364a85cccb04cb48", + "_tpl": "628b5638ad252a16da6dd245", "parentId": "hideout", "slotId": "hideout", "upd": { + "FireMode": { + "FireMode": "single" + }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536ff7949f87882037482", - "_tpl": "653ece125a1690d9d90491e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bb15364a85cccb04cb49", + "_tpl": "628b8d83717774443b15e248", + "parentId": "6808bb15364a85cccb04cb48", + "slotId": "mod_gas_block" }, { - "_id": "677536ff7949f87882037485", - "_tpl": "653ed132896b99b40a0292e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bb15364a85cccb04cb4a", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "6808bb15364a85cccb04cb49", + "slotId": "mod_handguard" }, { - "_id": "677536ff7949f87882037488", - "_tpl": "637784c5f7b3f4ac1a0d1a9a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bb15364a85cccb04cb4b", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "6808bb15364a85cccb04cb4a", + "slotId": "mod_reciever" }, { - "_id": "677536ff7949f8788203748b", - "_tpl": "5fb655b748c711690e3a8d5a", + "_id": "6808bb15364a85cccb04cb4c", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "6808bb15364a85cccb04cb4b", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb15364a85cccb04cb4d", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "6808bb15364a85cccb04cb48", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb15364a85cccb04cb4e", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "6808bb15364a85cccb04cb48", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb15364a85cccb04cb4f", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "6808bb15364a85cccb04cb48", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb15364a85cccb04cb50", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6808bb15364a85cccb04cb4f", + "slotId": "mod_stock" + }, + { + "_id": "6808bb15364a85cccb04cb51", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6808bb15364a85cccb04cb48", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb15364a85cccb04cb54", + "_tpl": "64942bfc6ee699f6890dff95", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5516,7 +5420,115 @@ } }, { - "_id": "677536ff7949f8788203748e", + "_id": "6808bb15364a85cccb04cb57", + "_tpl": "63f5feead259b42f0b4d6d0f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb5a", + "_tpl": "63d3ce281fe77d0f2801859e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb5d", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb60", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb63", + "_tpl": "638de3603a1a4031d8260b8c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb66", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb69", + "_tpl": "647dba3142c479dde701b654", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb6c", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb6f", + "_tpl": "66ffac601f7492c901027bbb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb15364a85cccb04cb72", "_tpl": "5f2aa4559b44de6b1b4e68d1", "parentId": "hideout", "slotId": "hideout", @@ -5528,8 +5540,8 @@ } }, { - "_id": "677536ff7949f87882037491", - "_tpl": "628b8d83717774443b15e248", + "_id": "6808bb16364a85cccb04cb75", + "_tpl": "65f1b1176dbd6c5ba2082eed", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5540,7 +5552,19 @@ } }, { - "_id": "677536ff7949f87882037494", + "_id": "6808bb16364a85cccb04cb78", + "_tpl": "674fe8cf4472d471fb0f07df", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cb7b", "_tpl": "66ffac9e316b08f6840a73e6", "parentId": "hideout", "slotId": "hideout", @@ -5552,38 +5576,14 @@ } }, { - "_id": "677536ff7949f87882037497", - "_tpl": "67110dd41ad01bb88705347b", + "_id": "6808bb16364a85cccb04cb7d", + "_tpl": "673cab3e03c6a20581028bc1", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ff7949f8788203749a", - "_tpl": "5fbbc383d5cb881a7363194a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ff7949f8788203749c", - "_tpl": "67124dcfa3541f2a1f0e788b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, "Repairable": { "Durability": 100, @@ -5592,32 +5592,79 @@ } }, { - "_id": "677536ff7949f8788203749d", - "_tpl": "670fd23798663bc4b10e911a", - "parentId": "677536ff7949f8788203749c", - "slotId": "mod_stock" - }, - { - "_id": "677536ff7949f8788203749e", - "_tpl": "66ffaab91f7492c901027bb8", - "parentId": "677536ff7949f8788203749c", + "_id": "6808bb16364a85cccb04cb7e", + "_tpl": "673cbdfad0453ba50c0f76d6", + "parentId": "6808bb16364a85cccb04cb7d", "slotId": "mod_magazine" }, { - "_id": "677536ff7949f8788203749f", - "_tpl": "670fd03dc424cf758f006946", - "parentId": "677536ff7949f8788203749c", + "_id": "6808bb16364a85cccb04cb7f", + "_tpl": "673cb4054ff4aa8f86076f4a", + "parentId": "6808bb16364a85cccb04cb7d", + "slotId": "mod_charge" + }, + { + "_id": "6808bb16364a85cccb04cb80", + "_tpl": "673cb212e695740be0047a46", + "parentId": "6808bb16364a85cccb04cb7d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6808bb16364a85cccb04cb81", + "_tpl": "673cb491280680de5e02ff36", + "parentId": "6808bb16364a85cccb04cb7d", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb16364a85cccb04cb82", + "_tpl": "673cb5d1280680de5e02ff3b", + "parentId": "6808bb16364a85cccb04cb81", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb16364a85cccb04cb83", + "_tpl": "673cb81f5b1511adb10cd326", + "parentId": "6808bb16364a85cccb04cb82", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb16364a85cccb04cb84", + "_tpl": "673dd5f73f92dc7e120d20a9", + "parentId": "6808bb16364a85cccb04cb82", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bb16364a85cccb04cb85", + "_tpl": "673dd5f73f92dc7e120d20a9", + "parentId": "6808bb16364a85cccb04cb82", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bb16364a85cccb04cb86", + "_tpl": "673cb551093e0ea7fd0b874a", + "parentId": "6808bb16364a85cccb04cb81", "slotId": "mod_barrel" }, { - "_id": "677536ff7949f878820374a0", - "_tpl": "670fd0eed8d4eae4790c818a", - "parentId": "677536ff7949f8788203749f", + "_id": "6808bb16364a85cccb04cb87", + "_tpl": "673f4046259f5945d70e43ab", + "parentId": "6808bb16364a85cccb04cb86", "slotId": "mod_muzzle" }, { - "_id": "677536ff7949f878820374a3", - "_tpl": "673cb491280680de5e02ff36", + "_id": "6808bb16364a85cccb04cb88", + "_tpl": "673cb51e093e0ea7fd0b8746", + "parentId": "6808bb16364a85cccb04cb81", + "slotId": "mod_mount" + }, + { + "_id": "6808bb16364a85cccb04cb8b", + "_tpl": "673dd5f73f92dc7e120d20a9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5628,176 +5675,7 @@ } }, { - "_id": "677536ff7949f878820374a6", - "_tpl": "673cb81f5b1511adb10cd326", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ff7949f878820374a9", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ff7949f878820374ac", - "_tpl": "661e52e29c8b4dadef008577", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374af", - "_tpl": "670fd1cc95c92bfc8e0bea39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374b2", - "_tpl": "673cb212e695740be0047a46", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374b5", - "_tpl": "673cb551093e0ea7fd0b874a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374b7", - "_tpl": "66ffa9b66e19cc902401c5e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677537007949f878820374b8", - "_tpl": "66ffac9e316b08f6840a73e6", - "parentId": "677537007949f878820374b7", - "slotId": "mod_stock" - }, - { - "_id": "677537007949f878820374b9", - "_tpl": "66ffaab91f7492c901027bb8", - "parentId": "677537007949f878820374b7", - "slotId": "mod_magazine" - }, - { - "_id": "677537007949f878820374ba", - "_tpl": "66ffac601f7492c901027bbb", - "parentId": "677537007949f878820374b7", - "slotId": "mod_barrel" - }, - { - "_id": "677537007949f878820374bd", - "_tpl": "66ffac601f7492c901027bbb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374c0", - "_tpl": "670fd0a8d8d4eae4790c8187", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374c3", - "_tpl": "6711109e723c2733410161eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374c6", - "_tpl": "673f4046259f5945d70e43ab", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374c9", - "_tpl": "67405fd0812f476fb2020066", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374cd", + "_id": "6808bb16364a85cccb04cb8f", "_tpl": "657023ccbfc87b3a3409320a", "parentId": "hideout", "slotId": "hideout", @@ -5809,9 +5687,9 @@ } }, { - "_id": "677537007949f878820374ce", + "_id": "6808bb16364a85cccb04cb90", "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "677537007949f878820374cd", + "parentId": "6808bb16364a85cccb04cb8f", "slotId": "cartridges", "location": 0, "upd": { @@ -5819,7 +5697,235 @@ } }, { - "_id": "677537007949f878820374d0", + "_id": "6808bb16364a85cccb04cb93", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cb96", + "_tpl": "673f0a38259f5945d70e43a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cb99", + "_tpl": "67405e3b83ac5c69ae025406", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cb9c", + "_tpl": "5fbb978207e8a97d1f0902d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cb9f", + "_tpl": "67405fd0812f476fb2020066", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cba2", + "_tpl": "65f1b2a5c14a07890801fc70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cba5", + "_tpl": "67405d760098dcb5940ea1a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cba8", + "_tpl": "6642f63667f5cb56a00662eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbab", + "_tpl": "5c0558060db834001b735271", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbae", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbb1", + "_tpl": "661e52e29c8b4dadef008577", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbb4", + "_tpl": "673ddbb567c759b3c90e5f76", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbb7", + "_tpl": "673f0a9370a3ddcf0d0ee0b8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbba", + "_tpl": "673f3f5eef7545280c00f026", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbbd", + "_tpl": "5fb655b748c711690e3a8d5a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbc0", + "_tpl": "673f3f9840aeca974e0b5c68", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbc3", + "_tpl": "673cb212e695740be0047a46", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbc6", + "_tpl": "673cb4054ff4aa8f86076f4a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbc9", + "_tpl": "673f4046259f5945d70e43ab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb16364a85cccb04cbcb", "_tpl": "674fe9a75e51f1c47c04ec23", "parentId": "hideout", "slotId": "hideout", @@ -5841,92 +5947,92 @@ } }, { - "_id": "677537007949f878820374d1", + "_id": "6808bb16364a85cccb04cbcc", "_tpl": "674fe57721a9aa6be6045b96", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_handguard" }, { - "_id": "677537007949f878820374d2", + "_id": "6808bb16364a85cccb04cbcd", "_tpl": "5c87ca002e221600114cb150", - "parentId": "677537007949f878820374d1", + "parentId": "6808bb16364a85cccb04cbcc", "slotId": "mod_foregrip" }, { - "_id": "677537007949f878820374d3", + "_id": "6808bb16364a85cccb04cbce", "_tpl": "674fe89a4472d471fb0f07d8", - "parentId": "677537007949f878820374d1", + "parentId": "6808bb16364a85cccb04cbcc", "slotId": "mod_mount" }, { - "_id": "677537007949f878820374d4", + "_id": "6808bb16364a85cccb04cbcf", "_tpl": "674fe8dd362ea1f88b0e2792", - "parentId": "677537007949f878820374d3", + "parentId": "6808bb16364a85cccb04cbce", "slotId": "mod_sight_front" }, { - "_id": "677537007949f878820374d5", + "_id": "6808bb16364a85cccb04cbd0", "_tpl": "674fe8b9362ea1f88b0e278d", - "parentId": "677537007949f878820374d3", + "parentId": "6808bb16364a85cccb04cbce", "slotId": "mod_mount" }, { - "_id": "677537007949f878820374d6", + "_id": "6808bb16364a85cccb04cbd1", "_tpl": "616584766ef05c2ce828ef57", - "parentId": "677537007949f878820374d5", + "parentId": "6808bb16364a85cccb04cbd0", "slotId": "mod_scope" }, { - "_id": "677537007949f878820374d7", + "_id": "6808bb16364a85cccb04cbd2", "_tpl": "5c7d55de2e221644f31bff68", - "parentId": "677537007949f878820374d6", + "parentId": "6808bb16364a85cccb04cbd1", "slotId": "mod_scope" }, { - "_id": "677537007949f878820374d8", + "_id": "6808bb16364a85cccb04cbd3", "_tpl": "674fe8cf4472d471fb0f07df", - "parentId": "677537007949f878820374d5", + "parentId": "6808bb16364a85cccb04cbd0", "slotId": "mod_sight_rear" }, { - "_id": "677537007949f878820374d9", + "_id": "6808bb16364a85cccb04cbd4", "_tpl": "59fb137a86f7740adb646af1", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_muzzle" }, { - "_id": "677537007949f878820374da", + "_id": "6808bb16364a85cccb04cbd5", "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_pistol_grip" }, { - "_id": "677537007949f878820374db", + "_id": "6808bb16364a85cccb04cbd6", "_tpl": "676017fe8cfeeba9f707c8d6", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_reciever" }, { - "_id": "677537007949f878820374dc", + "_id": "6808bb16364a85cccb04cbd7", "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_stock" }, { - "_id": "677537007949f878820374dd", + "_id": "6808bb16364a85cccb04cbd8", "_tpl": "5947c73886f7747701588af5", - "parentId": "677537007949f878820374dc", + "parentId": "6808bb16364a85cccb04cbd7", "slotId": "mod_stock" }, { - "_id": "677537007949f878820374de", + "_id": "6808bb16364a85cccb04cbd9", "_tpl": "674fe8f6f34d761ab8020cc8", - "parentId": "677537007949f878820374d0", + "parentId": "6808bb16364a85cccb04cbcb", "slotId": "mod_magazine" }, { - "_id": "677537007949f878820374e1", - "_tpl": "6761777a1f08ed5e8800b7ac", + "_id": "6808bb17364a85cccb04cbdc", + "_tpl": "628b8d83717774443b15e248", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5937,175 +6043,7 @@ } }, { - "_id": "677537007949f878820374e4", - "_tpl": "673dd5f73f92dc7e120d20a9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374e7", - "_tpl": "673dd617912f68467c0615b6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537007949f878820374ea", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374ed", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374f0", - "_tpl": "673cb51e093e0ea7fd0b8746", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374f3", - "_tpl": "67405e3b83ac5c69ae025406", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374f6", - "_tpl": "67405ef125beb509e8070276", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374f9", - "_tpl": "674fe8dd362ea1f88b0e2792", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374fc", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f878820374ff", - "_tpl": "65f1b1176dbd6c5ba2082eed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f87882037502", - "_tpl": "664301213dd83ddae20dda18", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f87882037505", - "_tpl": "6711107e1ad01bb88705347e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f87882037508", - "_tpl": "6749c40822a2740bb408d066", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f8788203750b", - "_tpl": "670fd23798663bc4b10e911a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f8788203750e", + "_id": "6808bb17364a85cccb04cbdf", "_tpl": "670fced86a7e274b1a0964e8", "parentId": "hideout", "slotId": "hideout", @@ -6117,333 +6055,31 @@ } }, { - "_id": "677537017949f87882037511", - "_tpl": "673f3ef1259f5945d70e43a8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f87882037514", - "_tpl": "6642f63667f5cb56a00662eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537017949f87882037517", - "_tpl": "67110d8d388bded67304ceb4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f8788203751a", - "_tpl": "673f3f5eef7545280c00f026", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f8788203751d", - "_tpl": "661e52415be02310ed07a07a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037520", - "_tpl": "670fd0eed8d4eae4790c818a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037523", - "_tpl": "67111094d1758189fc0bd223", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037526", - "_tpl": "65f1b2a5c14a07890801fc70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037529", - "_tpl": "673f0a9370a3ddcf0d0ee0b8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f8788203752c", - "_tpl": "67405d760098dcb5940ea1a6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f8788203752f", - "_tpl": "66ffaab91f7492c901027bb8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037532", - "_tpl": "673f3f9840aeca974e0b5c68", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037535", - "_tpl": "673f0b36536d64240f01acd6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537027949f87882037538", - "_tpl": "674fe8cf4472d471fb0f07df", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f8788203753b", - "_tpl": "5c0558060db834001b735271", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f8788203753e", - "_tpl": "673ddbb567c759b3c90e5f76", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f87882037541", - "_tpl": "673f3f2f40aeca974e0b5c66", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f87882037544", - "_tpl": "676177591f08ed5e8800b7a9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f87882037547", - "_tpl": "5fbb978207e8a97d1f0902d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f8788203754a", - "_tpl": "673cb5d1280680de5e02ff3b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677537037949f8788203754c", - "_tpl": "673cab3e03c6a20581028bc1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677537037949f8788203754d", - "_tpl": "673cbdfad0453ba50c0f76d6", - "parentId": "677537037949f8788203754c", - "slotId": "mod_magazine" - }, - { - "_id": "677537037949f8788203754e", - "_tpl": "673cb4054ff4aa8f86076f4a", - "parentId": "677537037949f8788203754c", - "slotId": "mod_charge" - }, - { - "_id": "677537037949f8788203754f", - "_tpl": "673cb212e695740be0047a46", - "parentId": "677537037949f8788203754c", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "677537037949f87882037550", - "_tpl": "673cb491280680de5e02ff36", - "parentId": "677537037949f8788203754c", - "slotId": "mod_reciever" - }, - { - "_id": "677537037949f87882037551", - "_tpl": "673cb5d1280680de5e02ff3b", - "parentId": "677537037949f87882037550", - "slotId": "mod_handguard" - }, - { - "_id": "677537037949f87882037552", + "_id": "6808bb17364a85cccb04cbe2", "_tpl": "673cb81f5b1511adb10cd326", - "parentId": "677537037949f87882037551", - "slotId": "mod_foregrip" + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "677537037949f87882037553", - "_tpl": "673dd5f73f92dc7e120d20a9", - "parentId": "677537037949f87882037551", - "slotId": "mod_mount_000" + "_id": "6808bb17364a85cccb04cbe5", + "_tpl": "670fd23798663bc4b10e911a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "677537037949f87882037554", - "_tpl": "673dd5f73f92dc7e120d20a9", - "parentId": "677537037949f87882037551", - "slotId": "mod_mount_001" - }, - { - "_id": "677537037949f87882037555", - "_tpl": "673cb551093e0ea7fd0b874a", - "parentId": "677537037949f87882037550", - "slotId": "mod_barrel" - }, - { - "_id": "677537037949f87882037556", - "_tpl": "673f4046259f5945d70e43ab", - "parentId": "677537037949f87882037555", - "slotId": "mod_muzzle" - }, - { - "_id": "677537037949f87882037557", - "_tpl": "673cb51e093e0ea7fd0b8746", - "parentId": "677537037949f87882037550", - "slotId": "mod_mount" - }, - { - "_id": "677537037949f8788203755a", + "_id": "6808bb17364a85cccb04cbe8", "_tpl": "670fd03dc424cf758f006946", "parentId": "hideout", "slotId": "hideout", @@ -6455,8 +6091,72 @@ } }, { - "_id": "677537037949f8788203755d", - "_tpl": "673cb4054ff4aa8f86076f4a", + "_id": "6808bb17364a85cccb04cbea", + "_tpl": "67124dcfa3541f2a1f0e788b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb17364a85cccb04cbeb", + "_tpl": "670fd23798663bc4b10e911a", + "parentId": "6808bb17364a85cccb04cbea", + "slotId": "mod_stock" + }, + { + "_id": "6808bb17364a85cccb04cbec", + "_tpl": "66ffaab91f7492c901027bb8", + "parentId": "6808bb17364a85cccb04cbea", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb17364a85cccb04cbed", + "_tpl": "670fd03dc424cf758f006946", + "parentId": "6808bb17364a85cccb04cbea", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb17364a85cccb04cbee", + "_tpl": "670fd0eed8d4eae4790c818a", + "parentId": "6808bb17364a85cccb04cbed", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb17364a85cccb04cbf1", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cbf4", + "_tpl": "670fd0eed8d4eae4790c818a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cbf7", + "_tpl": "673f0b36536d64240f01acd6", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6467,7 +6167,102 @@ } }, { - "_id": "677537037949f87882037560", + "_id": "6808bb17364a85cccb04cbfa", + "_tpl": "664301213dd83ddae20dda18", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cbfd", + "_tpl": "67110d8d388bded67304ceb4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc00", + "_tpl": "67111094d1758189fc0bd223", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc03", + "_tpl": "673cb551093e0ea7fd0b874a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc06", + "_tpl": "5fbbc383d5cb881a7363194a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc09", + "_tpl": "661e52415be02310ed07a07a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 20000, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc0c", + "_tpl": "673cb491280680de5e02ff36", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc0f", + "_tpl": "6761777a1f08ed5e8800b7ac", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc12", "_tpl": "673cbdfad0453ba50c0f76d6", "parentId": "hideout", "slotId": "hideout", @@ -6479,8 +6274,8 @@ } }, { - "_id": "677537037949f87882037563", - "_tpl": "673f0a38259f5945d70e43a6", + "_id": "6808bb17364a85cccb04cc15", + "_tpl": "67405ef125beb509e8070276", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6491,7 +6286,115 @@ } }, { - "_id": "67a4ca4bf19476606006bd70", + "_id": "6808bb17364a85cccb04cc18", + "_tpl": "676177591f08ed5e8800b7a9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc1b", + "_tpl": "6749c40822a2740bb408d066", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc1e", + "_tpl": "67110dd41ad01bb88705347b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc21", + "_tpl": "6711109e723c2733410161eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc24", + "_tpl": "673cb5d1280680de5e02ff3b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc27", + "_tpl": "673f3ef1259f5945d70e43a8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc2a", + "_tpl": "6711107e1ad01bb88705347e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc2d", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc30", + "_tpl": "670fd0a8d8d4eae4790c8187", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb17364a85cccb04cc33", "_tpl": "675a0288c3102563bd01c9c3", "parentId": "hideout", "slotId": "hideout", @@ -6502,6 +6405,103 @@ "BuyRestrictionCurrent": 0 } }, + { + "_id": "6808bb17364a85cccb04cc37", + "_tpl": "673cb51e093e0ea7fd0b8746", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb18364a85cccb04cc3a", + "_tpl": "674fe8dd362ea1f88b0e2792", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb18364a85cccb04cc3d", + "_tpl": "673dd617912f68467c0615b6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb18364a85cccb04cc40", + "_tpl": "673f3f2f40aeca974e0b5c66", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb18364a85cccb04cc43", + "_tpl": "66ffaab91f7492c901027bb8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb18364a85cccb04cc45", + "_tpl": "66ffa9b66e19cc902401c5e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb18364a85cccb04cc46", + "_tpl": "66ffac9e316b08f6840a73e6", + "parentId": "6808bb18364a85cccb04cc45", + "slotId": "mod_stock" + }, + { + "_id": "6808bb18364a85cccb04cc47", + "_tpl": "66ffaab91f7492c901027bb8", + "parentId": "6808bb18364a85cccb04cc45", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb18364a85cccb04cc48", + "_tpl": "66ffac601f7492c901027bbb", + "parentId": "6808bb18364a85cccb04cc45", + "slotId": "mod_barrel" + }, { "_id": "6492e44bf4287b13040fccf6", "_tpl": "5efb0da7a29a85116f6ea05f", @@ -6544,87 +6544,15 @@ } ], "barter_scheme": { - "677536ee7949f87882036f7f": [ + "6808bb07364a85cccb04c660": [ [ { - "count": 64.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "677536ee7949f87882036f82": [ - [ - { - "count": 65, + "count": 15814, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ee7949f87882036f85": [ - [ - { - "count": 18670, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f88": [ - [ - { - "count": 8067, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f8b": [ - [ - { - "count": 11783, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f8e": [ - [ - { - "count": 1820, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f91": [ - [ - { - "count": 50456, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f94": [ - [ - { - "count": 1352, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f97": [ - [ - { - "count": 9338, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f9a": [ - [ - { - "count": 80, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036f9c": [ + "6808bb07364a85cccb04c662": [ [ { "count": 31198, @@ -6632,185 +6560,7 @@ } ] ], - "677536ee7949f87882036fa7": [ - [ - { - "count": 3219, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036faa": [ - [ - { - "count": 5811, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036fad": [ - [ - { - "count": 4802, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ee7949f87882036fb0": [ - [ - { - "count": 153, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fb4": [ - [ - { - "count": 49122, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fb7": [ - [ - { - "count": 4865, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fba": [ - [ - { - "count": 60.3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "677536ef7949f87882036fbd": [ - [ - { - "count": 15615, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fc0": [ - [ - { - "count": 26494, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fc3": [ - [ - { - "count": 105744, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fc6": [ - [ - { - "count": 15582, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fc9": [ - [ - { - "count": 257.41, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "677536ef7949f87882036fcc": [ - [ - { - "count": 6031, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fcf": [ - [ - { - "count": 125.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "677536ef7949f87882036fd2": [ - [ - { - "count": 18014, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fd5": [ - [ - { - "count": 4, - "_tpl": "59f32bb586f774757e1e8442", - "level": 20, - "side": "Bear" - } - ] - ], - "677536ef7949f87882036fd8": [ - [ - { - "count": 18986, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fdb": [ - [ - { - "count": 55675, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fde": [ - [ - { - "count": 5167, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fe1": [ - [ - { - "count": 3165, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fe4": [ - [ - { - "count": 19520, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fe7": [ - [ - { - "count": 9182, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ef7949f87882036fea": [ + "6808bb07364a85cccb04c66d": [ [ { "count": 29725, @@ -6818,7 +6568,295 @@ } ] ], - "677536ef7949f87882036fed": [ + "6808bb07364a85cccb04c66f": [ + [ + { + "count": 16198, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c67a": [ + [ + { + "count": 15327, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c67d": [ + [ + { + "count": 19520, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c680": [ + [ + { + "count": 3713, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c683": [ + [ + { + "count": 3063, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c686": [ + [ + { + "count": 105744, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c689": [ + [ + { + "count": 65, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c68c": [ + [ + { + "count": 18986, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c68f": [ + [ + { + "count": 708, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c692": [ + [ + { + "count": 8067, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb07364a85cccb04c695": [ + [ + { + "count": 9182, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c698": [ + [ + { + "count": 96.61, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bb08364a85cccb04c69b": [ + [ + { + "count": 80, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c69e": [ + [ + { + "count": 22950, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6a1": [ + [ + { + "count": 4865, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6a3": [ + [ + { + "count": 80243, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6ac": [ + [ + { + "count": 35, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6af": [ + [ + { + "count": 16885, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6b2": [ + [ + { + "count": 1839, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6b5": [ + [ + { + "count": 5811, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6b8": [ + [ + { + "count": 13915, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6bb": [ + [ + { + "count": 2760, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6be": [ + [ + { + "count": 3156, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6c1": [ + [ + { + "count": 55675, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6c4": [ + [ + { + "count": 18670, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6c7": [ + [ + { + "count": 15615, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6ca": [ + [ + { + "count": 6031, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6cd": [ + [ + { + "count": 3219, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6d0": [ + [ + { + "count": 18014, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6d3": [ + [ + { + "count": 9114, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6d6": [ + [ + { + "count": 8670, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6d9": [ + [ + { + "count": 16263, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6dc": [ + [ + { + "count": 7508, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6df": [ + [ + { + "count": 6957, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6e2": [ + [ + { + "count": 1352, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb08364a85cccb04c6e4": [ + [ + { + "count": 28378, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c6ef": [ [ { "count": 5, @@ -6828,15 +6866,7 @@ } ] ], - "677536f07949f87882036ff0": [ - [ - { - "count": 3201, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882036ff3": [ + "6808bb09364a85cccb04c6f2": [ [ { "count": 13800, @@ -6844,63 +6874,47 @@ } ] ], - "677536f07949f87882036ff6": [ + "6808bb09364a85cccb04c6f5": [ [ { - "count": 2578, + "count": 128.82, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bb09364a85cccb04c6f8": [ + [ + { + "count": 11783, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f07949f87882036ff9": [ + "6808bb09364a85cccb04c6fb": [ [ { - "count": 3971, + "count": 1820, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f07949f87882036ffc": [ + "6808bb09364a85cccb04c6fe": [ [ { - "count": 8670, + "count": 1724, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f07949f87882036fff": [ + "6808bb09364a85cccb04c701": [ [ { - "count": 3063, + "count": 9338, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f07949f87882037002": [ - [ - { - "count": 2760, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037005": [ - [ - { - "count": 35, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037008": [ - [ - { - "count": 16263, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f8788203700a": [ + "6808bb09364a85cccb04c703": [ [ { "count": 4, @@ -6912,183 +6926,15 @@ } ] ], - "677536f07949f87882037013": [ + "6808bb09364a85cccb04c70c": [ [ { - "count": 32.44, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536f07949f87882037016": [ - [ - { - "count": 19831, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037019": [ - [ - { - "count": 1724, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f8788203701c": [ - [ - { - "count": 6189, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f8788203701f": [ - [ - { - "count": 7508, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037022": [ - [ - { - "count": 13915, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037025": [ - [ - { - "count": 9315, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037028": [ - [ - { - "count": 9114, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f8788203702b": [ - [ - { - "count": 3713, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f8788203702e": [ - [ - { - "count": 4397, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037031": [ - [ - { - "count": 5974, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037034": [ - [ - { - "count": 15968, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f07949f87882037037": [ - [ - { - "count": 15814, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f8788203703a": [ - [ - { - "count": 6957, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f8788203703c": [ - [ - { - "count": 16198, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f87882037047": [ - [ - { - "count": 1839, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f8788203704a": [ - [ - { - "count": 22950, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f8788203704d": [ - [ - { - "count": 708, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f87882037050": [ - [ - { - "count": 80.21, + "count": 263.74, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "677536f17949f87882037053": [ - [ - { - "count": 94.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "677536f17949f87882037056": [ - [ - { - "count": 15327, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f87882037059": [ - [ - { - "count": 13789, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f17949f8788203705c": [ + "6808bb09364a85cccb04c70f": [ [ { "count": 2862, @@ -7096,39 +6942,95 @@ } ] ], - "677536f17949f8788203705e": [ + "6808bb09364a85cccb04c712": [ [ { - "count": 80243, + "count": 49122, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f87882037067": [ + "6808bb09364a85cccb04c715": [ [ { - "count": 3156, + "count": 15582, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f8788203706a": [ + "6808bb09364a85cccb04c718": [ [ { - "count": 16885, + "count": 4802, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f8788203706c": [ + "6808bb09364a85cccb04c71b": [ [ { - "count": 28378, + "count": 5167, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f87882037077": [ + "6808bb09364a85cccb04c71e": [ + [ + { + "count": 3165, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c721": [ + [ + { + "count": 19831, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c724": [ + [ + { + "count": 153, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c728": [ + [ + { + "count": 9315, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c72b": [ + [ + { + "count": 32.44, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808bb09364a85cccb04c72e": [ + [ + { + "count": 2578, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb09364a85cccb04c731": [ + [ + { + "count": 82.19, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bb09364a85cccb04c734": [ [ { "count": 1148, @@ -7136,127 +7038,105 @@ } ] ], - "677536f17949f8788203707a": [ + "6808bb09364a85cccb04c737": [ [ { - "count": 13125, + "count": 6189, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f8788203707d": [ + "6808bb09364a85cccb04c73a": [ [ { - "count": 5520, + "count": 5974, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f87882037081": [ + "6808bb09364a85cccb04c73d": [ [ { - "count": 1, - "_tpl": "57347cd0245977445a2d6ff1" - } - ] - ], - "677536f17949f87882037085": [ - [ - { - "count": 1, - "_tpl": "5af0484c86f7740f02001f7f" - } - ] - ], - "677536f17949f87882037088": [ - [ - { - "count": 2128, + "count": 15968, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f17949f8788203708b": [ + "6808bb0a364a85cccb04c740": [ [ { - "count": 11927, + "count": 3201, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f8788203708e": [ + "6808bb0a364a85cccb04c743": [ [ { - "count": 17131, + "count": 66.12, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bb0a364a85cccb04c746": [ + [ + { + "count": 26494, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f87882037091": [ + "6808bb0a364a85cccb04c749": [ [ { - "count": 922, + "count": 4, + "_tpl": "59f32bb586f774757e1e8442", + "level": 20, + "side": "Bear" + } + ] + ], + "6808bb0a364a85cccb04c74c": [ + [ + { + "count": 50456, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f87882037094": [ + "6808bb0a364a85cccb04c74f": [ [ { - "count": 3668, + "count": 61.78, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bb0a364a85cccb04c752": [ + [ + { + "count": 4397, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f87882037097": [ + "6808bb0a364a85cccb04c755": [ [ { - "count": 18489, + "count": 3971, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f8788203709a": [ + "6808bb0a364a85cccb04c758": [ [ { - "count": 39873, + "count": 13789, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f8788203709d": [ - [ - { - "count": 64152, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370a0": [ - [ - { - "count": 45278, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370a3": [ - [ - { - "count": 805, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370a6": [ - [ - { - "count": 2302, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370a9": [ + "6808bb0a364a85cccb04c75b": [ [ { "count": 2657, @@ -7264,31 +7144,39 @@ } ] ], - "677536f27949f878820370ac": [ + "6808bb0a364a85cccb04c75e": [ [ { - "count": 1148, + "count": 5520, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f878820370af": [ + "6808bb0a364a85cccb04c760": [ [ { - "count": 2530, + "count": 1, + "_tpl": "635a758bfefc88a93f021b8a" + } + ] + ], + "6808bb0a364a85cccb04c76b": [ + [ + { + "count": 17131, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f878820370b2": [ + "6808bb0a364a85cccb04c76e": [ [ { - "count": 297, + "count": 32200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f878820370b4": [ + "6808bb0a364a85cccb04c770": [ [ { "count": 33923, @@ -7296,47 +7184,15 @@ } ] ], - "677536f27949f878820370bb": [ + "6808bb0a364a85cccb04c777": [ [ { - "count": 13522, + "count": 64152, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f878820370be": [ - [ - { - "count": 28784, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370c1": [ - [ - { - "count": 3300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370c4": [ - [ - { - "count": 2359, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370c7": [ - [ - { - "count": 3120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f27949f878820370ca": [ + "6808bb0a364a85cccb04c77a": [ [ { "count": 2, @@ -7356,23 +7212,127 @@ } ] ], - "677536f27949f878820370cc": [ + "6808bb0a364a85cccb04c77d": [ [ { - "count": 1, - "_tpl": "635a758bfefc88a93f021b8a" - } - ] - ], - "677536f27949f878820370d7": [ - [ - { - "count": 3853, + "count": 2359, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f27949f878820370d9": [ + "6808bb0a364a85cccb04c780": [ + [ + { + "count": 2530, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0a364a85cccb04c783": [ + [ + { + "count": 2128, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0a364a85cccb04c786": [ + [ + { + "count": 1, + "_tpl": "5af0484c86f7740f02001f7f" + } + ] + ], + "6808bb0a364a85cccb04c789": [ + [ + { + "count": 45278, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0a364a85cccb04c78c": [ + [ + { + "count": 1148, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0a364a85cccb04c78f": [ + [ + { + "count": 39873, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0a364a85cccb04c792": [ + [ + { + "count": 13125, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c795": [ + [ + { + "count": 805, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c798": [ + [ + { + "count": 2302, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c79b": [ + [ + { + "count": 11927, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c79e": [ + [ + { + "count": 3668, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7a1": [ + [ + { + "count": 3300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7a4": [ + [ + { + "count": 13522, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7a7": [ + [ + { + "count": 922, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7a9": [ [ { "count": 45333, @@ -7380,7 +7340,39 @@ } ] ], - "677536f37949f878820370e5": [ + "6808bb0b364a85cccb04c7b6": [ + [ + { + "count": 1, + "_tpl": "57347cd0245977445a2d6ff1" + } + ] + ], + "6808bb0b364a85cccb04c7ba": [ + [ + { + "count": 3853, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7bd": [ + [ + { + "count": 18489, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7c0": [ + [ + { + "count": 3120, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7c3": [ [ { "count": 9445, @@ -7388,15 +7380,7 @@ } ] ], - "677536f37949f878820370e8": [ - [ - { - "count": 32200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f878820370eb": [ + "6808bb0b364a85cccb04c7c6": [ [ { "count": 5, @@ -7412,7 +7396,23 @@ } ] ], - "677536f37949f878820370ee": [ + "6808bb0b364a85cccb04c7c9": [ + [ + { + "count": 28784, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7cc": [ + [ + { + "count": 297, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0b364a85cccb04c7cf": [ [ { "count": 1231, @@ -7420,143 +7420,7 @@ } ] ], - "677536f37949f878820370f1": [ - [ - { - "count": 6912, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f878820370f4": [ - [ - { - "count": 9145, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f878820370f7": [ - [ - { - "count": 20125, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f878820370fa": [ - [ - { - "count": 884, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f878820370fd": [ - [ - { - "count": 1150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037100": [ - [ - { - "count": 32437, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037103": [ - [ - { - "count": 2098, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037106": [ - [ - { - "count": 19608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037109": [ - [ - { - "count": 76332, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f8788203710c": [ - [ - { - "count": 61962, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f8788203710f": [ - [ - { - "count": 48444, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037112": [ - [ - { - "count": 8514, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037115": [ - [ - { - "count": 8740, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037118": [ - [ - { - "count": 28, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f8788203711b": [ - [ - { - "count": 3853, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f8788203711e": [ - [ - { - "count": 4830, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f37949f87882037121": [ - [ - { - "count": 22080, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037124": [ + "6808bb0b364a85cccb04c7d2": [ [ { "count": 7310, @@ -7564,299 +7428,39 @@ } ] ], - "677536f47949f87882037127": [ + "6808bb0c364a85cccb04c7d5": [ [ { - "count": 20668, + "count": 20125, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f47949f8788203712a": [ + "6808bb0c364a85cccb04c7d8": [ [ { - "count": 6325, + "count": 6912, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f47949f8788203712d": [ + "6808bb0c364a85cccb04c7db": [ [ { - "count": 2530, + "count": 8514, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f47949f87882037130": [ + "6808bb0c364a85cccb04c7de": [ [ { - "count": 2243, + "count": 8740, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f47949f87882037133": [ - [ - { - "count": 18786, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037136": [ - [ - { - "count": 3968, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037139": [ - [ - { - "count": 5520, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f8788203713c": [ - [ - { - "count": 5750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f8788203713e": [ - [ - { - "count": 8917, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037144": [ - [ - { - "count": 10, - "_tpl": "5d1b376e86f774252519444e" - }, - { - "count": 10, - "_tpl": "5d40407c86f774318526545a" - }, - { - "count": 5, - "_tpl": "544fb6cc4bdc2d34748b456e" - } - ] - ], - "677536f47949f87882037146": [ - [ - { - "count": 209858, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037156": [ - [ - { - "count": 903, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037159": [ - [ - { - "count": 7049, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f8788203715c": [ - [ - { - "count": 4025, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037164": [ - [ - { - "count": 5, - "_tpl": "573478bc24597738002c6175" - }, - { - "count": 1, - "_tpl": "590de71386f774347051a052" - } - ] - ], - "677536f47949f8788203716d": [ - [ - { - "count": 20240, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037170": [ - [ - { - "count": 3220, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f47949f87882037173": [ - [ - { - "count": 1949, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037176": [ - [ - { - "count": 8970, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037179": [ - [ - { - "count": 23538, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f8788203717c": [ - [ - { - "count": 10120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f8788203717f": [ - [ - { - "count": 22080, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037182": [ - [ - { - "count": 2070, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037185": [ - [ - { - "count": 5241, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037188": [ - [ - { - "count": 24866, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f87882037194": [ - [ - { - "count": 14490, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371a0": [ - [ - { - "count": 10580, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371a3": [ - [ - { - "count": 23057, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371a6": [ - [ - { - "count": 920, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371a9": [ - [ - { - "count": 2, - "_tpl": "5c1265fc86f7743f896a21c2" - } - ] - ], - "677536f57949f878820371ac": [ - [ - { - "count": 7245, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371af": [ - [ - { - "count": 7263, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371b2": [ - [ - { - "count": 12765, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371b5": [ - [ - { - "count": 11328, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371b8": [ - [ - { - "count": 196, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f57949f878820371bb": [ + "6808bb0c364a85cccb04c7e1": [ [ { "count": 5404, @@ -7864,79 +7468,63 @@ } ] ], - "677536f57949f878820371be": [ + "6808bb0c364a85cccb04c7e3": [ [ { - "count": 5658, + "count": 8917, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f57949f878820371c1": [ + "6808bb0c364a85cccb04c7e9": [ [ { - "count": 332, + "count": 7245, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f57949f878820371c4": [ + "6808bb0c364a85cccb04c7ec": [ [ { - "count": 18630, + "count": 4025, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f57949f878820371c7": [ + "6808bb0c364a85cccb04c7ef": [ [ { - "count": 2691, + "count": 5520, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f57949f878820371ca": [ + "6808bb0c364a85cccb04c7f2": [ [ { - "count": 25645, + "count": 18786, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371cd": [ + "6808bb0c364a85cccb04c7f5": [ [ { - "count": 53130, + "count": 5241, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371d0": [ + "6808bb0c364a85cccb04c7f8": [ [ { - "count": 14145, + "count": 903, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371d3": [ - [ - { - "count": 22080, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f67949f878820371d6": [ - [ - { - "count": 1, - "_tpl": "5734770f24597738025ee254" - } - ] - ], - "677536f67949f878820371d8": [ + "6808bb0c364a85cccb04c7fa": [ [ { "count": 1, @@ -7952,87 +7540,347 @@ } ] ], - "677536f67949f878820371e6": [ + "6808bb0c364a85cccb04c809": [ [ { - "count": 73329, + "count": 12765, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371f6": [ + "6808bb0c364a85cccb04c815": [ [ { - "count": 1541, + "count": 14490, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371f9": [ + "6808bb0c364a85cccb04c821": [ [ { - "count": 7935, + "count": 48444, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f878820371fc": [ + "6808bb0c364a85cccb04c824": [ + [ + { + "count": 25645, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0c364a85cccb04c827": [ + [ + { + "count": 18630, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0c364a85cccb04c82a": [ + [ + { + "count": 8970, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0c364a85cccb04c82d": [ + [ + { + "count": 24866, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0c364a85cccb04c830": [ + [ + { + "count": 7263, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c833": [ + [ + { + "count": 9145, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c836": [ + [ + { + "count": 332, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c839": [ + [ + { + "count": 884, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c83c": [ + [ + { + "count": 2098, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c83e": [ + [ + { + "count": 5, + "_tpl": "573478bc24597738002c6175" + }, + { + "count": 1, + "_tpl": "590de71386f774347051a052" + } + ] + ], + "6808bb0d364a85cccb04c847": [ + [ + { + "count": 10120, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c850": [ + [ + { + "count": 10, + "_tpl": "5d1b376e86f774252519444e" + }, + { + "count": 10, + "_tpl": "5d40407c86f774318526545a" + }, + { + "count": 5, + "_tpl": "544fb6cc4bdc2d34748b456e" + } + ] + ], + "6808bb0d364a85cccb04c853": [ + [ + { + "count": 3853, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c856": [ + [ + { + "count": 53130, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c859": [ + [ + { + "count": 32437, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c85c": [ + [ + { + "count": 2530, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c85f": [ + [ + { + "count": 20668, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c862": [ [ { "count": 1, - "_tpl": "5e54f62086f774219b0f1937" + "_tpl": "5734770f24597738025ee254" } ] ], - "677536f67949f878820371ff": [ + "6808bb0d364a85cccb04c865": [ [ { - "count": 16445, + "count": 11328, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f87882037202": [ + "6808bb0d364a85cccb04c868": [ [ { - "count": 17193, + "count": 4830, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f87882037205": [ + "6808bb0d364a85cccb04c86b": [ [ { - "count": 4485, + "count": 76332, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f87882037208": [ + "6808bb0d364a85cccb04c86e": [ [ { - "count": 22331, + "count": 61962, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f8788203720b": [ + "6808bb0d364a85cccb04c871": [ [ { - "count": 15180, + "count": 22080, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f8788203720e": [ + "6808bb0d364a85cccb04c874": [ [ { - "count": 18805, + "count": 14145, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f87882037211": [ + "6808bb0d364a85cccb04c877": [ + [ + { + "count": 1949, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c87a": [ + [ + { + "count": 23057, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0d364a85cccb04c87d": [ + [ + { + "count": 6325, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c880": [ + [ + { + "count": 1150, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c883": [ + [ + { + "count": 2691, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c886": [ + [ + { + "count": 920, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c889": [ + [ + { + "count": 3220, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c88c": [ + [ + { + "count": 2243, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c88f": [ + [ + { + "count": 28, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c892": [ + [ + { + "count": 19608, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c895": [ + [ + { + "count": 7049, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c898": [ + [ + { + "count": 20240, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c89b": [ + [ + { + "count": 22080, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c89d": [ + [ + { + "count": 209858, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8ad": [ [ { "count": 10580, @@ -8040,15 +7888,159 @@ } ] ], - "677536f67949f87882037214": [ + "6808bb0e364a85cccb04c8b0": [ [ { - "count": 21077, + "count": 5658, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f67949f8788203721e": [ + "6808bb0e364a85cccb04c8b2": [ + [ + { + "count": 73329, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8c2": [ + [ + { + "count": 196, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8c5": [ + [ + { + "count": 3968, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8c8": [ + [ + { + "count": 5750, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8cb": [ + [ + { + "count": 2070, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8ce": [ + [ + { + "count": 22080, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8d1": [ + [ + { + "count": 23538, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8d4": [ + [ + { + "count": 2, + "_tpl": "5c1265fc86f7743f896a21c2" + } + ] + ], + "6808bb0e364a85cccb04c8d7": [ + [ + { + "count": 4485, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8da": [ + [ + { + "count": 280, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0e364a85cccb04c8dd": [ + [ + { + "count": 1783, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8e0": [ + [ + { + "count": 14375, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8e3": [ + [ + { + "count": 1725, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8ea": [ + [ + { + "count": 11844, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8f1": [ + [ + { + "count": 4550, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8f4": [ + [ + { + "count": 4865, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8f7": [ + [ + { + "count": 8625, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c8fa": [ + [ + { + "count": 14375, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c904": [ [ { "count": 1, @@ -8061,347 +8053,7 @@ } ] ], - "677536f67949f87882037228": [ - [ - { - "count": 14375, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f67949f8788203722a": [ - [ - { - "count": 140253, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f67949f87882037239": [ - [ - { - "count": 2530, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203723c": [ - [ - { - "count": 4370, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203723f": [ - [ - { - "count": 1955, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037242": [ - [ - { - "count": 18536, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037245": [ - [ - { - "count": 14375, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037248": [ - [ - { - "count": 11500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203724b": [ - [ - { - "count": 1208, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203724e": [ - [ - { - "count": 2703, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037251": [ - [ - { - "count": 22195, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037253": [ - [ - { - "count": 96715, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203725f": [ - [ - { - "count": 5750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037261": [ - [ - { - "count": 45215, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203726e": [ - [ - { - "count": 12075, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037271": [ - [ - { - "count": 8625, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037274": [ - [ - { - "count": 8050, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037277": [ - [ - { - "count": 14030, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203727a": [ - [ - { - "count": 9015, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203727c": [ - [ - { - "count": 36084, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037284": [ - [ - { - "count": 9430, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f87882037287": [ - [ - { - "count": 2691, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f77949f8788203728a": [ - [ - { - "count": 1, - "_tpl": "59e3647686f774176a362507" - } - ] - ], - "677536f87949f8788203728d": [ - [ - { - "count": 1, - "_tpl": "60a7acf20c5cb24b01346648" - }, - { - "count": 2, - "_tpl": "61c18db6dfd64163ea78fbb4" - } - ] - ], - "677536f87949f87882037290": [ - [ - { - "count": 9200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f87882037293": [ - [ - { - "count": 2760, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f87882037296": [ - [ - { - "count": 14375, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f87882037299": [ - [ - { - "count": 7038, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f8788203729c": [ - [ - { - "count": 2530, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f8788203729f": [ - [ - { - "count": 11500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372a2": [ - [ - { - "count": 8970, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372a5": [ - [ - { - "count": 184, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372ac": [ - [ - { - "count": 24671, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372b3": [ - [ - { - "count": 11155, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372b6": [ - [ - { - "count": 2194, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372b9": [ - [ - { - "count": 1468, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372bc": [ - [ - { - "count": 1725, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372bf": [ - [ - { - "count": 59472, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372c2": [ - [ - { - "count": 4550, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372c5": [ - [ - { - "count": 1265, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372c7": [ - [ - { - "count": 60504, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372d2": [ - [ - { - "count": 10235, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f87949f878820372d5": [ + "6808bb0f364a85cccb04c90e": [ [ { "count": 1541, @@ -8409,167 +8061,39 @@ } ] ], - "677536f87949f878820372d8": [ + "6808bb0f364a85cccb04c911": [ [ { - "count": 4865, + "count": 8970, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f97949f878820372db": [ + "6808bb0f364a85cccb04c914": [ [ { - "count": 280, + "count": 10235, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f97949f878820372de": [ + "6808bb0f364a85cccb04c917": [ [ { - "count": 4025, + "count": 14030, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f97949f878820372e1": [ + "6808bb0f364a85cccb04c91a": [ [ { - "count": 4715, + "count": 9200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536f97949f878820372e4": [ - [ - { - "count": 1150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f878820372e7": [ - [ - { - "count": 33235, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f878820372ea": [ - [ - { - "count": 18170, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f878820372ed": [ - [ - { - "count": 2128, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f878820372f0": [ - [ - { - "count": 12305, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f878820372f2": [ - [ - { - "count": 94533, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037300": [ - [ - { - "count": 89439, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f8788203730c": [ - [ - { - "count": 1188, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f8788203730f": [ - [ - { - "count": 28253, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037312": [ - [ - { - "count": 1898, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037315": [ - [ - { - "count": 17250, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037318": [ - [ - { - "count": 2530, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f8788203731b": [ - [ - { - "count": 11730, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f8788203731e": [ - [ - { - "count": 1150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037321": [ - [ - { - "count": 12075, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f87882037328": [ - [ - { - "count": 11844, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536f97949f8788203732f": [ + "6808bb0f364a85cccb04c91d": [ [ { "count": 3, @@ -8581,7 +8105,191 @@ } ] ], - "677536f97949f87882037332": [ + "6808bb0f364a85cccb04c920": [ + [ + { + "count": 11500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c923": [ + [ + { + "count": 3680, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c926": [ + [ + { + "count": 1813, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c929": [ + [ + { + "count": 1468, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c92c": [ + [ + { + "count": 2128, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c92f": [ + [ + { + "count": 7935, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c932": [ + [ + { + "count": 1, + "_tpl": "5e54f62086f774219b0f1937" + } + ] + ], + "6808bb0f364a85cccb04c934": [ + [ + { + "count": 45215, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c941": [ + [ + { + "count": 2703, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb0f364a85cccb04c944": [ + [ + { + "count": 1541, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c947": [ + [ + { + "count": 22195, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c94a": [ + [ + { + "count": 2691, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c94d": [ + [ + { + "count": 33235, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c950": [ + [ + { + "count": 18805, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c953": [ + [ + { + "count": 17250, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c955": [ + [ + { + "count": 36084, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c95d": [ + [ + { + "count": 1725, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c960": [ + [ + { + "count": 16445, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c963": [ + [ + { + "count": 18170, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c966": [ + [ + { + "count": 1265, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c969": [ + [ + { + "count": 11500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c96c": [ + [ + { + "count": 7038, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c96f": [ + [ + { + "count": 9430, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c972": [ [ { "count": 1, @@ -8593,31 +8301,87 @@ } ] ], - "677536f97949f87882037335": [ + "6808bb10364a85cccb04c975": [ [ { - "count": 1783, + "count": 11730, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fa7949f87882037338": [ + "6808bb10364a85cccb04c977": [ [ { - "count": 1725, + "count": 96715, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fa7949f8788203733b": [ + "6808bb10364a85cccb04c983": [ [ { - "count": 3680, + "count": 17193, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fa7949f8788203733d": [ + "6808bb10364a85cccb04c986": [ + [ + { + "count": 1208, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c989": [ + [ + { + "count": 2530, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c98c": [ + [ + { + "count": 59472, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c98f": [ + [ + { + "count": 21077, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c992": [ + [ + { + "count": 4715, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c995": [ + [ + { + "count": 9015, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c998": [ + [ + { + "count": 12305, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb10364a85cccb04c99a": [ [ { "count": 1, @@ -8633,15 +8397,7 @@ } ] ], - "677536fa7949f87882037344": [ - [ - { - "count": 1813, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037347": [ + "6808bb11364a85cccb04c9a1": [ [ { "count": 22425, @@ -8649,375 +8405,7 @@ } ] ], - "677536fa7949f8788203734a": [ - [ - { - "count": 2070, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203734d": [ - [ - { - "count": 6095, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037350": [ - [ - { - "count": 9483, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037353": [ - [ - { - "count": 1610, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037356": [ - [ - { - "count": 1, - "_tpl": "62a09e974f842e1bd12da3f0" - } - ] - ], - "677536fa7949f87882037359": [ - [ - { - "count": 9343, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203735c": [ - [ - { - "count": 8226, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203735f": [ - [ - { - "count": 4618, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037362": [ - [ - { - "count": 21244, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037365": [ - [ - { - "count": 843, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037368": [ - [ - { - "count": 22668, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203736b": [ - [ - { - "count": 4891, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203736e": [ - [ - { - "count": 3818, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203737d": [ - [ - { - "count": 24495, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203738c": [ - [ - { - "count": 460, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f8788203738f": [ - [ - { - "count": 460, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037392": [ - [ - { - "count": 3381, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037395": [ - [ - { - "count": 3400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fa7949f87882037398": [ - [ - { - "count": 1968, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f8788203739b": [ - [ - { - "count": 20487, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f8788203739d": [ - [ - { - "count": 22023, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373a8": [ - [ - { - "count": 13262, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373ab": [ - [ - { - "count": 16120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373ae": [ - [ - { - "count": 8625, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373b1": [ - [ - { - "count": 5060, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373b4": [ - [ - { - "count": 88550, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373b7": [ - [ - { - "count": 10079, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373ba": [ - [ - { - "count": 23618, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373bd": [ - [ - { - "count": 1840, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373c0": [ - [ - { - "count": 694, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373c3": [ - [ - { - "count": 460, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373c6": [ - [ - { - "count": 2274, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373c9": [ - [ - { - "count": 2645, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373cb": [ - [ - { - "count": 72055, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373d7": [ - [ - { - "count": 9943, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fb7949f878820373da": [ - [ - { - "count": 2070, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373dd": [ - [ - { - "count": 2746, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373e0": [ - [ - { - "count": 34643, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373e3": [ - [ - { - "count": 5819, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373e6": [ - [ - { - "count": 9085, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373e8": [ - [ - { - "count": 81792, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373f4": [ - [ - { - "count": 7590, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373f7": [ - [ - { - "count": 828, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f878820373fa": [ - [ - { - "count": 36.38, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536fc7949f878820373fd": [ - [ - { - "count": 3697, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f87882037400": [ - [ - { - "count": 34252, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f87882037403": [ + "6808bb11364a85cccb04c9a4": [ [ { "count": 2530, @@ -9025,143 +8413,79 @@ } ] ], - "677536fc7949f87882037406": [ - [ - { - "count": 4485, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f87882037408": [ - [ - { - "count": 2, - "_tpl": "590a3efd86f77437d351a25b" - } - ] - ], - "677536fc7949f87882037416": [ - [ - { - "count": 1044, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f87882037419": [ - [ - { - "count": 4552, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fc7949f8788203741c": [ - [ - { - "count": 6316, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fd7949f8788203741f": [ - [ - { - "count": 14467, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fd7949f87882037422": [ - [ - { - "count": 5348, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fd7949f87882037425": [ - [ - { - "count": 5974, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fd7949f87882037428": [ - [ - { - "count": 2, - "_tpl": "5734770f24597738025ee254" - } - ] - ], - "677536fd7949f8788203742b": [ + "6808bb11364a85cccb04c9a7": [ [ { "count": 1, - "_tpl": "5bc9bc53d4351e00367fbcee" + "_tpl": "59e3647686f774176a362507" } ] ], - "677536fd7949f8788203742e": [ + "6808bb11364a85cccb04c9aa": [ [ { - "count": 1575, + "count": 1150, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037431": [ + "6808bb11364a85cccb04c9ad": [ [ { - "count": 7015, + "count": 15180, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037434": [ + "6808bb11364a85cccb04c9b0": [ [ { - "count": 69000, + "count": 22331, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037437": [ + "6808bb11364a85cccb04c9b3": [ [ { - "count": 8855, + "count": 1955, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f8788203743a": [ + "6808bb11364a85cccb04c9b6": [ [ { - "count": 6, - "_tpl": "62a09f32621468534a797acb" - } - ] - ], - "677536fd7949f8788203743d": [ - [ - { - "count": 117, + "count": 12075, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037440": [ + "6808bb11364a85cccb04c9b9": [ [ { - "count": 14293, + "count": 8050, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037443": [ + "6808bb11364a85cccb04c9bc": [ + [ + { + "count": 11155, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb11364a85cccb04c9be": [ + [ + { + "count": 60504, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb11364a85cccb04c9c9": [ [ { "count": 28253, @@ -9169,119 +8493,203 @@ } ] ], - "677536fd7949f87882037446": [ + "6808bb11364a85cccb04c9cc": [ [ { - "count": 15447, + "count": 4025, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fd7949f87882037449": [ + "6808bb11364a85cccb04c9cf": [ [ { - "count": 7747, + "count": 2530, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203744c": [ + "6808bb11364a85cccb04c9d2": [ [ { - "count": 2157, + "count": 10580, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203744f": [ + "6808bb11364a85cccb04c9d9": [ [ { - "count": 36303, + "count": 24671, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037452": [ + "6808bb11364a85cccb04c9e0": [ [ { - "count": 8444, + "count": 1150, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037455": [ + "6808bb11364a85cccb04c9e2": [ [ { - "count": 4036, + "count": 94533, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037458": [ + "6808bb11364a85cccb04c9f1": [ [ { - "count": 28520, + "count": 2194, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203745b": [ + "6808bb11364a85cccb04c9f4": [ [ { - "count": 20978, + "count": 12075, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203745e": [ + "6808bb11364a85cccb04c9f7": [ [ { - "count": 2875, + "count": 1898, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037461": [ + "6808bb11364a85cccb04c9f9": [ [ { - "count": 1001, + "count": 140253, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037464": [ + "6808bb11364a85cccb04ca08": [ [ { - "count": 7770, + "count": 2760, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037467": [ + "6808bb11364a85cccb04ca0b": [ [ { - "count": 54225, + "count": 5750, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203746a": [ + "6808bb12364a85cccb04ca0e": [ [ { - "count": 5887, + "count": 18536, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f8788203746d": [ + "6808bb12364a85cccb04ca11": [ [ { - "count": 3824, + "count": 184, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037470": [ + "6808bb12364a85cccb04ca13": [ + [ + { + "count": 89439, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca1f": [ + [ + { + "count": 4370, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca22": [ + [ + { + "count": 1188, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca25": [ + [ + { + "count": 14375, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca28": [ + [ + { + "count": 1, + "_tpl": "60a7acf20c5cb24b01346648" + }, + { + "count": 2, + "_tpl": "61c18db6dfd64163ea78fbb4" + } + ] + ], + "6808bb12364a85cccb04ca2e": [ + [ + { + "count": 1840, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca31": [ + [ + { + "count": 6316, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca34": [ + [ + { + "count": 20487, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca37": [ + [ + { + "count": 23618, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca3a": [ + [ + { + "count": 8226, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca3d": [ [ { "count": 3450, @@ -9289,63 +8697,15 @@ } ] ], - "677536fe7949f87882037473": [ + "6808bb12364a85cccb04ca40": [ [ { - "count": 18491, + "count": 5887, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536fe7949f87882037476": [ - [ - { - "count": 1, - "_tpl": "573474f924597738002c6174" - } - ] - ], - "677536fe7949f87882037479": [ - [ - { - "count": 1280, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536fe7949f8788203747c": [ - [ - { - "count": 14203, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ff7949f8788203747f": [ - [ - { - "count": 13492, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ff7949f87882037482": [ - [ - { - "count": 1459, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ff7949f87882037485": [ - [ - { - "count": 15995, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ff7949f87882037488": [ + "6808bb12364a85cccb04ca43": [ [ { "count": 3697, @@ -9353,23 +8713,95 @@ } ] ], - "677536ff7949f8788203748b": [ + "6808bb12364a85cccb04ca46": [ [ { - "count": 1, - "_tpl": "5734781f24597737e04bf32a" + "count": 2, + "_tpl": "5734770f24597738025ee254" } ] ], - "677536ff7949f8788203748e": [ + "6808bb12364a85cccb04ca49": [ [ { - "count": 1541, + "count": 4618, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f87882037491": [ + "6808bb12364a85cccb04ca4c": [ + [ + { + "count": 117, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca4f": [ + [ + { + "count": 1280, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca52": [ + [ + { + "count": 3381, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca55": [ + [ + { + "count": 1044, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca57": [ + [ + { + "count": 81792, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca63": [ + [ + { + "count": 4485, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca66": [ + [ + { + "count": 2875, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca69": [ + [ + { + "count": 2070, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca6c": [ + [ + { + "count": 15995, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb12364a85cccb04ca6f": [ [ { "count": 2645, @@ -9377,23 +8809,415 @@ } ] ], - "677536ff7949f87882037494": [ + "6808bb12364a85cccb04ca72": [ [ { - "count": 10020, + "count": 1610, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f87882037497": [ + "6808bb13364a85cccb04ca75": [ [ { - "count": 2240, + "count": 4036, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f8788203749a": [ + "6808bb13364a85cccb04ca78": [ + [ + { + "count": 20978, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca7b": [ + [ + { + "count": 36303, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca7e": [ + [ + { + "count": 14467, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca81": [ + [ + { + "count": 8444, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca84": [ + [ + { + "count": 4891, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca87": [ + [ + { + "count": 28253, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca8a": [ + [ + { + "count": 7015, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca8d": [ + [ + { + "count": 9343, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca90": [ + [ + { + "count": 9943, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca93": [ + [ + { + "count": 3824, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca96": [ + [ + { + "count": 13262, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca99": [ + [ + { + "count": 13492, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca9c": [ + [ + { + "count": 6095, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04ca9f": [ + [ + { + "count": 10079, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04caa2": [ + [ + { + "count": 14203, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04caa5": [ + [ + { + "count": 8855, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04caa8": [ + [ + { + "count": 69000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb13364a85cccb04caab": [ + [ + { + "count": 3400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caae": [ + [ + { + "count": 2530, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cab1": [ + [ + { + "count": 460, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cab4": [ + [ + { + "count": 2157, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cab7": [ + [ + { + "count": 54225, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caba": [ + [ + { + "count": 5819, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cabd": [ + [ + { + "count": 28520, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cac3": [ + [ + { + "count": 8625, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cac6": [ + [ + { + "count": 1459, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cac9": [ + [ + { + "count": 5974, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cacc": [ + [ + { + "count": 2746, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cacf": [ + [ + { + "count": 14293, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cad2": [ + [ + { + "count": 21244, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cad5": [ + [ + { + "count": 7590, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cad7": [ + [ + { + "count": 2, + "_tpl": "590a3efd86f77437d351a25b" + } + ] + ], + "6808bb14364a85cccb04cae2": [ + [ + { + "count": 9085, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cae5": [ + [ + { + "count": 18491, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cae8": [ + [ + { + "count": 3697, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caeb": [ + [ + { + "count": 1001, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caee": [ + [ + { + "count": 34643, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caf1": [ + [ + { + "count": 36.38, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808bb14364a85cccb04caf4": [ + [ + { + "count": 2070, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04caf7": [ + [ + { + "count": 1, + "_tpl": "5bc9bc53d4351e00367fbcee" + } + ] + ], + "6808bb14364a85cccb04cafa": [ + [ + { + "count": 4552, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb14364a85cccb04cafd": [ + [ + { + "count": 1575, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb00": [ + [ + { + "count": 2274, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb0f": [ + [ + { + "count": 24495, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb1e": [ + [ + { + "count": 1, + "_tpl": "62a09e974f842e1bd12da3f0" + } + ] + ], + "6808bb15364a85cccb04cb21": [ + [ + { + "count": 22668, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb24": [ + [ + { + "count": 5348, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb27": [ + [ + { + "count": 460, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb2a": [ + [ + { + "count": 34252, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb2d": [ [ { "count": 1, @@ -9401,87 +9225,143 @@ } ] ], - "677536ff7949f8788203749c": [ + "6808bb15364a85cccb04cb30": [ [ { - "count": 5, - "_tpl": "62a0a124de7ac81993580542" - }, - { - "count": 3, - "_tpl": "5d1c819a86f774771b0acd6c" - }, - { - "count": 1, - "_tpl": "5d0376a486f7747d8050965c" - } - ] - ], - "677536ff7949f878820374a3": [ - [ - { - "count": 8332, + "count": 1968, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f878820374a6": [ + "6808bb15364a85cccb04cb33": [ [ { - "count": 3770, + "count": 88550, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f878820374a9": [ + "6808bb15364a85cccb04cb36": [ [ { - "count": 3036, + "count": 9483, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ff7949f878820374ac": [ + "6808bb15364a85cccb04cb39": [ [ { - "count": 4745, + "count": 460, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374af": [ + "6808bb15364a85cccb04cb3b": [ [ { - "count": 3396, + "count": 22023, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374b2": [ + "6808bb15364a85cccb04cb43": [ [ { - "count": 35179, + "count": 6, + "_tpl": "62a09f32621468534a797acb" + } + ] + ], + "6808bb15364a85cccb04cb46": [ + [ + { + "count": 3818, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374b5": [ + "6808bb15364a85cccb04cb48": [ [ { - "count": 80673, + "count": 72055, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374b7": [ + "6808bb15364a85cccb04cb54": [ [ { - "count": 117884, + "count": 16120, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374bd": [ + "6808bb15364a85cccb04cb57": [ + [ + { + "count": 15447, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb5a": [ + [ + { + "count": 7770, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb5d": [ + [ + { + "count": 843, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb60": [ + [ + { + "count": 694, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb63": [ + [ + { + "count": 5060, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb66": [ + [ + { + "count": 828, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb69": [ + [ + { + "count": 7747, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb6c": [ + [ + { + "count": 18055, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb15364a85cccb04cb6f": [ [ { "count": 10911, @@ -9489,39 +9369,55 @@ } ] ], - "677537007949f878820374c0": [ + "6808bb15364a85cccb04cb72": [ [ { - "count": 16639, + "count": 1541, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374c3": [ + "6808bb16364a85cccb04cb75": [ [ { - "count": 1556, + "count": 10997, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374c6": [ + "6808bb16364a85cccb04cb78": [ [ { - "count": 5287, + "count": 1432, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374c9": [ + "6808bb16364a85cccb04cb7b": [ [ { - "count": 29492, + "count": 10020, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374cd": [ + "6808bb16364a85cccb04cb7d": [ + [ + { + "count": 265352, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cb8b": [ + [ + { + "count": 1367, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cb8f": [ [ { "count": 3, @@ -9529,7 +9425,159 @@ } ] ], - "677537007949f878820374d0": [ + "6808bb16364a85cccb04cb93": [ + [ + { + "count": 2444, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cb96": [ + [ + { + "count": 116380, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cb99": [ + [ + { + "count": 83318, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cb9c": [ + [ + { + "count": 1, + "_tpl": "573478bc24597738002c6175" + } + ] + ], + "6808bb16364a85cccb04cb9f": [ + [ + { + "count": 29492, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cba2": [ + [ + { + "count": 3226, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cba5": [ + [ + { + "count": 83979, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cba8": [ + [ + { + "count": 9655, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbab": [ + [ + { + "count": 1, + "_tpl": "5c052fb986f7746b2101e909" + } + ] + ], + "6808bb16364a85cccb04cbae": [ + [ + { + "count": 12518, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbb1": [ + [ + { + "count": 4745, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbb4": [ + [ + { + "count": 16532, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbb7": [ + [ + { + "count": 98394, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbba": [ + [ + { + "count": 529, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbbd": [ + [ + { + "count": 1, + "_tpl": "5734781f24597737e04bf32a" + } + ] + ], + "6808bb16364a85cccb04cbc0": [ + [ + { + "count": 7929, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbc3": [ + [ + { + "count": 35179, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbc6": [ + [ + { + "count": 20499, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbc9": [ + [ + { + "count": 5287, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb16364a85cccb04cbcb": [ [ { "count": 1, @@ -9545,127 +9593,15 @@ } ] ], - "677537007949f878820374e1": [ + "6808bb17364a85cccb04cbdc": [ [ { - "count": 8678, + "count": 2645, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537007949f878820374e4": [ - [ - { - "count": 1367, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537007949f878820374e7": [ - [ - { - "count": 2351, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537007949f878820374ea": [ - [ - { - "count": 18055, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374ed": [ - [ - { - "count": 12518, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374f0": [ - [ - { - "count": 2984, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374f3": [ - [ - { - "count": 83318, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374f6": [ - [ - { - "count": 26186, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374f9": [ - [ - { - "count": 1109, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374fc": [ - [ - { - "count": 2444, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f878820374ff": [ - [ - { - "count": 10997, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f87882037502": [ - [ - { - "count": 9866, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f87882037505": [ - [ - { - "count": 1774, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f87882037508": [ - [ - { - "count": 42974, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f8788203750b": [ - [ - { - "count": 10020, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537017949f8788203750e": [ + "6808bb17364a85cccb04cbdf": [ [ { "count": 18386, @@ -9673,175 +9609,23 @@ } ] ], - "677537017949f87882037511": [ + "6808bb17364a85cccb04cbe2": [ [ { - "count": 25789, + "count": 3770, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537017949f87882037514": [ + "6808bb17364a85cccb04cbe5": [ [ { - "count": 9655, + "count": 10020, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537017949f87882037517": [ - [ - { - "count": 24739, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f8788203751a": [ - [ - { - "count": 529, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f8788203751d": [ - [ - { - "count": 4366, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037520": [ - [ - { - "count": 525, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037523": [ - [ - { - "count": 1130, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037526": [ - [ - { - "count": 3226, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037529": [ - [ - { - "count": 98394, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f8788203752c": [ - [ - { - "count": 83979, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f8788203752f": [ - [ - { - "count": 6469, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037532": [ - [ - { - "count": 7929, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037535": [ - [ - { - "count": 105139, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537027949f87882037538": [ - [ - { - "count": 1432, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f8788203753b": [ - [ - { - "count": 1, - "_tpl": "5c052fb986f7746b2101e909" - } - ] - ], - "677537037949f8788203753e": [ - [ - { - "count": 16532, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f87882037541": [ - [ - { - "count": 986, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f87882037544": [ - [ - { - "count": 1440, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f87882037547": [ - [ - { - "count": 1, - "_tpl": "573478bc24597738002c6175" - } - ] - ], - "677537037949f8788203754a": [ - [ - { - "count": 20698, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f8788203754c": [ - [ - { - "count": 265352, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677537037949f8788203755a": [ + "6808bb17364a85cccb04cbe8": [ [ { "count": 12044, @@ -9849,15 +9633,111 @@ } ] ], - "677537037949f8788203755d": [ + "6808bb17364a85cccb04cbea": [ [ { - "count": 20499, + "count": 5, + "_tpl": "62a0a124de7ac81993580542" + }, + { + "count": 3, + "_tpl": "5d1c819a86f774771b0acd6c" + }, + { + "count": 1, + "_tpl": "5d0376a486f7747d8050965c" + } + ] + ], + "6808bb17364a85cccb04cbf1": [ + [ + { + "count": 3396, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677537037949f87882037560": [ + "6808bb17364a85cccb04cbf4": [ + [ + { + "count": 525, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cbf7": [ + [ + { + "count": 105139, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cbfa": [ + [ + { + "count": 9866, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cbfd": [ + [ + { + "count": 24739, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc00": [ + [ + { + "count": 1130, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc03": [ + [ + { + "count": 80673, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc06": [ + [ + { + "count": 1, + "_tpl": "573474f924597738002c6174" + } + ] + ], + "6808bb17364a85cccb04cc09": [ + [ + { + "count": 4366, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc0c": [ + [ + { + "count": 8332, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc0f": [ + [ + { + "count": 8678, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc12": [ [ { "count": 12829, @@ -9865,15 +9745,87 @@ } ] ], - "677537037949f87882037563": [ + "6808bb17364a85cccb04cc15": [ [ { - "count": 116380, + "count": 26186, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67a4ca4bf19476606006bd70": [ + "6808bb17364a85cccb04cc18": [ + [ + { + "count": 1440, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc1b": [ + [ + { + "count": 42974, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc1e": [ + [ + { + "count": 2240, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc21": [ + [ + { + "count": 1556, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc24": [ + [ + { + "count": 20698, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc27": [ + [ + { + "count": 25789, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc2a": [ + [ + { + "count": 1774, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc2d": [ + [ + { + "count": 3036, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc30": [ + [ + { + "count": 16639, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb17364a85cccb04cc33": [ [ { "count": 184000, @@ -9881,6 +9833,54 @@ } ] ], + "6808bb17364a85cccb04cc37": [ + [ + { + "count": 2984, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb18364a85cccb04cc3a": [ + [ + { + "count": 1109, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb18364a85cccb04cc3d": [ + [ + { + "count": 2351, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb18364a85cccb04cc40": [ + [ + { + "count": 986, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb18364a85cccb04cc43": [ + [ + { + "count": 6469, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb18364a85cccb04cc45": [ + [ + { + "count": 117884, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], "6492e44bf4287b13040fccf6": [ [ { @@ -9915,415 +9915,415 @@ ] }, "loyal_level_items": { - "677536ee7949f87882036f7f": 3, - "677536ee7949f87882036f82": 1, - "677536ee7949f87882036f85": 3, - "677536ee7949f87882036f88": 3, - "677536ee7949f87882036f8b": 3, - "677536ee7949f87882036f8e": 2, - "677536ee7949f87882036f91": 3, - "677536ee7949f87882036f94": 2, - "677536ee7949f87882036f97": 3, - "677536ee7949f87882036f9a": 1, - "677536ee7949f87882036f9c": 1, - "677536ee7949f87882036fa7": 1, - "677536ee7949f87882036faa": 3, - "677536ee7949f87882036fad": 2, - "677536ee7949f87882036fb0": 1, - "677536ef7949f87882036fb4": 3, - "677536ef7949f87882036fb7": 2, - "677536ef7949f87882036fba": 3, - "677536ef7949f87882036fbd": 3, - "677536ef7949f87882036fc0": 2, - "677536ef7949f87882036fc3": 3, - "677536ef7949f87882036fc6": 3, - "677536ef7949f87882036fc9": 4, - "677536ef7949f87882036fcc": 4, - "677536ef7949f87882036fcf": 3, - "677536ef7949f87882036fd2": 3, - "677536ef7949f87882036fd5": 2, - "677536ef7949f87882036fd8": 2, - "677536ef7949f87882036fdb": 3, - "677536ef7949f87882036fde": 2, - "677536ef7949f87882036fe1": 3, - "677536ef7949f87882036fe4": 3, - "677536ef7949f87882036fe7": 3, - "677536ef7949f87882036fea": 4, - "677536ef7949f87882036fed": 3, - "677536f07949f87882036ff0": 2, - "677536f07949f87882036ff3": 1, - "677536f07949f87882036ff6": 1, - "677536f07949f87882036ff9": 2, - "677536f07949f87882036ffc": 2, - "677536f07949f87882036fff": 1, - "677536f07949f87882037002": 2, - "677536f07949f87882037005": 1, - "677536f07949f87882037008": 3, - "677536f07949f8788203700a": 4, - "677536f07949f87882037013": 1, - "677536f07949f87882037016": 2, - "677536f07949f87882037019": 1, - "677536f07949f8788203701c": 1, - "677536f07949f8788203701f": 3, - "677536f07949f87882037022": 1, - "677536f07949f87882037025": 3, - "677536f07949f87882037028": 3, - "677536f07949f8788203702b": 2, - "677536f07949f8788203702e": 2, - "677536f07949f87882037031": 1, - "677536f07949f87882037034": 3, - "677536f07949f87882037037": 3, - "677536f17949f8788203703a": 2, - "677536f17949f8788203703c": 1, - "677536f17949f87882037047": 2, - "677536f17949f8788203704a": 3, - "677536f17949f8788203704d": 1, - "677536f17949f87882037050": 3, - "677536f17949f87882037053": 3, - "677536f17949f87882037056": 3, - "677536f17949f87882037059": 3, - "677536f17949f8788203705c": 2, - "677536f17949f8788203705e": 3, - "677536f17949f87882037067": 1, - "677536f17949f8788203706a": 2, - "677536f17949f8788203706c": 1, - "677536f17949f87882037077": 1, - "677536f17949f8788203707a": 4, - "677536f17949f8788203707d": 3, - "677536f17949f87882037081": 2, - "677536f17949f87882037085": 2, - "677536f17949f87882037088": 1, - "677536f17949f8788203708b": 4, - "677536f27949f8788203708e": 2, - "677536f27949f87882037091": 1, - "677536f27949f87882037094": 2, - "677536f27949f87882037097": 4, - "677536f27949f8788203709a": 4, - "677536f27949f8788203709d": 4, - "677536f27949f878820370a0": 2, - "677536f27949f878820370a3": 1, - "677536f27949f878820370a6": 1, - "677536f27949f878820370a9": 2, - "677536f27949f878820370ac": 1, - "677536f27949f878820370af": 1, - "677536f27949f878820370b2": 2, - "677536f27949f878820370b4": 1, - "677536f27949f878820370bb": 2, - "677536f27949f878820370be": 1, - "677536f27949f878820370c1": 2, - "677536f27949f878820370c4": 2, - "677536f27949f878820370c7": 2, - "677536f27949f878820370ca": 4, - "677536f27949f878820370cc": 1, - "677536f27949f878820370d7": 2, - "677536f27949f878820370d9": 1, - "677536f37949f878820370e5": 4, - "677536f37949f878820370e8": 2, - "677536f37949f878820370eb": 4, - "677536f37949f878820370ee": 2, - "677536f37949f878820370f1": 3, - "677536f37949f878820370f4": 2, - "677536f37949f878820370f7": 2, - "677536f37949f878820370fa": 1, - "677536f37949f878820370fd": 2, - "677536f37949f87882037100": 4, - "677536f37949f87882037103": 1, - "677536f37949f87882037106": 4, - "677536f37949f87882037109": 4, - "677536f37949f8788203710c": 4, - "677536f37949f8788203710f": 4, - "677536f37949f87882037112": 2, - "677536f37949f87882037115": 2, - "677536f37949f87882037118": 1, - "677536f37949f8788203711b": 3, - "677536f37949f8788203711e": 2, - "677536f37949f87882037121": 4, - "677536f47949f87882037124": 3, - "677536f47949f87882037127": 3, - "677536f47949f8788203712a": 1, - "677536f47949f8788203712d": 3, - "677536f47949f87882037130": 3, - "677536f47949f87882037133": 4, - "677536f47949f87882037136": 1, - "677536f47949f87882037139": 2, - "677536f47949f8788203713c": 3, - "677536f47949f8788203713e": 1, - "677536f47949f87882037144": 4, - "677536f47949f87882037146": 3, - "677536f47949f87882037156": 1, - "677536f47949f87882037159": 2, - "677536f47949f8788203715c": 2, - "677536f47949f8788203715e": 1, - "677536f47949f87882037164": 3, - "677536f47949f8788203716d": 4, - "677536f47949f87882037170": 2, - "677536f47949f87882037173": 1, - "677536f57949f87882037176": 2, - "677536f57949f87882037179": 4, - "677536f57949f8788203717c": 1, - "677536f57949f8788203717f": 4, - "677536f57949f87882037182": 3, - "677536f57949f87882037185": 3, - "677536f57949f87882037188": 3, - "677536f57949f87882037194": 1, - "677536f57949f878820371a0": 2, - "677536f57949f878820371a3": 3, - "677536f57949f878820371a6": 1, - "677536f57949f878820371a9": 4, - "677536f57949f878820371ac": 3, - "677536f57949f878820371af": 1, - "677536f57949f878820371b2": 2, - "677536f57949f878820371b5": 3, - "677536f57949f878820371b8": 2, - "677536f57949f878820371bb": 3, - "677536f57949f878820371be": 1, - "677536f57949f878820371c1": 3, - "677536f57949f878820371c4": 1, - "677536f57949f878820371c7": 3, - "677536f57949f878820371ca": 3, - "677536f67949f878820371cd": 3, - "677536f67949f878820371d0": 4, - "677536f67949f878820371d3": 4, - "677536f67949f878820371d6": 2, - "677536f67949f878820371d8": 2, - "677536f67949f878820371e6": 3, - "677536f67949f878820371f6": 3, - "677536f67949f878820371f9": 3, - "677536f67949f878820371fc": 3, - "677536f67949f878820371ff": 4, - "677536f67949f87882037202": 4, - "677536f67949f87882037205": 3, - "677536f67949f87882037208": 3, - "677536f67949f8788203720b": 4, - "677536f67949f8788203720e": 1, - "677536f67949f87882037211": 4, - "677536f67949f87882037214": 4, - "677536f67949f8788203721e": 1, - "677536f67949f87882037228": 4, - "677536f67949f8788203722a": 4, - "677536f67949f87882037239": 2, - "677536f77949f8788203723c": 3, - "677536f77949f8788203723f": 4, - "677536f77949f87882037242": 3, - "677536f77949f87882037245": 4, - "677536f77949f87882037248": 3, - "677536f77949f8788203724b": 3, - "677536f77949f8788203724e": 3, - "677536f77949f87882037251": 3, - "677536f77949f87882037253": 3, - "677536f77949f8788203725f": 3, - "677536f77949f87882037261": 2, - "677536f77949f8788203726e": 3, - "677536f77949f87882037271": 3, - "677536f77949f87882037274": 3, - "677536f77949f87882037277": 2, - "677536f77949f8788203727a": 3, - "677536f77949f8788203727c": 2, - "677536f77949f87882037284": 3, - "677536f77949f87882037287": 3, - "677536f77949f8788203728a": 2, - "677536f87949f8788203728d": 3, - "677536f87949f87882037290": 3, - "677536f87949f87882037293": 3, - "677536f87949f87882037296": 3, - "677536f87949f87882037299": 3, - "677536f87949f8788203729c": 2, - "677536f87949f8788203729f": 3, - "677536f87949f878820372a2": 2, - "677536f87949f878820372a5": 2, - "677536f87949f878820372ac": 1, - "677536f87949f878820372b3": 3, - "677536f87949f878820372b6": 3, - "677536f87949f878820372b9": 3, - "677536f87949f878820372bc": 4, - "677536f87949f878820372bf": 4, - "677536f87949f878820372c2": 3, - "677536f87949f878820372c5": 3, - "677536f87949f878820372c7": 3, - "677536f87949f878820372d2": 3, - "677536f87949f878820372d5": 3, - "677536f87949f878820372d8": 3, - "677536f97949f878820372db": 1, - "677536f97949f878820372de": 3, - "677536f97949f878820372e1": 3, - "677536f97949f878820372e4": 3, - "677536f97949f878820372e7": 3, - "677536f97949f878820372ea": 3, - "677536f97949f878820372ed": 3, - "677536f97949f878820372f0": 3, - "677536f97949f878820372f2": 3, - "677536f97949f87882037300": 3, - "677536f97949f8788203730c": 3, - "677536f97949f8788203730f": 1, - "677536f97949f87882037312": 1, - "677536f97949f87882037315": 4, - "677536f97949f87882037318": 4, - "677536f97949f8788203731b": 3, - "677536f97949f8788203731e": 4, - "677536f97949f87882037321": 4, - "677536f97949f87882037328": 1, - "677536f97949f8788203732f": 3, - "677536f97949f87882037332": 3, - "677536f97949f87882037335": 2, - "677536fa7949f87882037338": 3, - "677536fa7949f8788203733b": 2, - "677536fa7949f8788203733d": 1, - "677536fa7949f87882037344": 3, - "677536fa7949f87882037347": 4, - "677536fa7949f8788203734a": 2, - "677536fa7949f8788203734d": 3, - "677536fa7949f87882037350": 2, - "677536fa7949f87882037353": 2, - "677536fa7949f87882037356": 2, - "677536fa7949f87882037359": 3, - "677536fa7949f8788203735c": 3, - "677536fa7949f8788203735f": 2, - "677536fa7949f87882037362": 4, - "677536fa7949f87882037365": 3, - "677536fa7949f87882037368": 2, - "677536fa7949f8788203736b": 1, - "677536fa7949f8788203736e": 1, - "677536fa7949f8788203737d": 3, - "677536fa7949f8788203738c": 3, - "677536fa7949f8788203738f": 3, - "677536fa7949f87882037392": 4, - "677536fa7949f87882037395": 3, - "677536fa7949f87882037398": 1, - "677536fb7949f8788203739b": 3, - "677536fb7949f8788203739d": 2, - "677536fb7949f878820373a5": 1, - "677536fb7949f878820373a8": 2, - "677536fb7949f878820373ab": 4, - "677536fb7949f878820373ae": 3, - "677536fb7949f878820373b1": 2, - "677536fb7949f878820373b4": 4, - "677536fb7949f878820373b7": 3, - "677536fb7949f878820373ba": 4, - "677536fb7949f878820373bd": 1, - "677536fb7949f878820373c0": 1, - "677536fb7949f878820373c3": 2, - "677536fb7949f878820373c6": 1, - "677536fb7949f878820373c9": 3, - "677536fb7949f878820373cb": 2, - "677536fb7949f878820373d7": 3, - "677536fb7949f878820373da": 2, - "677536fc7949f878820373dd": 1, - "677536fc7949f878820373e0": 4, - "677536fc7949f878820373e3": 1, - "677536fc7949f878820373e6": 3, - "677536fc7949f878820373e8": 2, - "677536fc7949f878820373f4": 3, - "677536fc7949f878820373f7": 1, - "677536fc7949f878820373fa": 2, - "677536fc7949f878820373fd": 1, - "677536fc7949f87882037400": 3, - "677536fc7949f87882037403": 2, - "677536fc7949f87882037406": 2, - "677536fc7949f87882037408": 2, - "677536fc7949f87882037413": 1, - "677536fc7949f87882037416": 1, - "677536fc7949f87882037419": 2, - "677536fc7949f8788203741c": 4, - "677536fd7949f8788203741f": 2, - "677536fd7949f87882037422": 4, - "677536fd7949f87882037425": 2, - "677536fd7949f87882037428": 3, - "677536fd7949f8788203742b": 4, - "677536fd7949f8788203742e": 1, - "677536fd7949f87882037431": 2, - "677536fd7949f87882037434": 3, - "677536fd7949f87882037437": 3, - "677536fd7949f8788203743a": 3, - "677536fd7949f8788203743d": 1, - "677536fd7949f87882037440": 1, - "677536fd7949f87882037443": 3, - "677536fd7949f87882037446": 4, - "677536fd7949f87882037449": 2, - "677536fe7949f8788203744c": 4, - "677536fe7949f8788203744f": 4, - "677536fe7949f87882037452": 4, - "677536fe7949f87882037455": 3, - "677536fe7949f87882037458": 4, - "677536fe7949f8788203745b": 3, - "677536fe7949f8788203745e": 2, - "677536fe7949f87882037461": 1, - "677536fe7949f87882037464": 3, - "677536fe7949f87882037467": 4, - "677536fe7949f8788203746a": 1, - "677536fe7949f8788203746d": 2, - "677536fe7949f87882037470": 2, - "677536fe7949f87882037473": 3, - "677536fe7949f87882037476": 1, - "677536fe7949f87882037479": 4, - "677536fe7949f8788203747c": 3, - "677536ff7949f8788203747f": 3, - "677536ff7949f87882037482": 3, - "677536ff7949f87882037485": 3, - "677536ff7949f87882037488": 1, - "677536ff7949f8788203748b": 2, - "677536ff7949f8788203748e": 2, - "677536ff7949f87882037491": 2, - "677536ff7949f87882037494": 4, - "677536ff7949f87882037497": 4, - "677536ff7949f8788203749a": 2, - "677536ff7949f8788203749c": 4, - "677536ff7949f878820374a3": 4, - "677536ff7949f878820374a6": 4, - "677536ff7949f878820374a9": 2, - "677536ff7949f878820374ac": 2, - "677537007949f878820374af": 4, - "677537007949f878820374b2": 4, - "677537007949f878820374b5": 4, - "677537007949f878820374b7": 4, - "677537007949f878820374bd": 4, - "677537007949f878820374c0": 4, - "677537007949f878820374c3": 4, - "677537007949f878820374c6": 4, - "677537007949f878820374c9": 4, - "677537007949f878820374cd": 4, - "677537007949f878820374d0": 4, - "677537007949f878820374e1": 2, - "677537007949f878820374e4": 4, - "677537007949f878820374e7": 4, - "677537007949f878820374ea": 2, - "677537017949f878820374ed": 2, - "677537017949f878820374f0": 4, - "677537017949f878820374f3": 4, - "677537017949f878820374f6": 4, - "677537017949f878820374f9": 4, - "677537017949f878820374fc": 2, - "677537017949f878820374ff": 4, - "677537017949f87882037502": 3, - "677537017949f87882037505": 4, - "677537017949f87882037508": 3, - "677537017949f8788203750b": 4, - "677537017949f8788203750e": 4, - "677537017949f87882037511": 4, - "677537017949f87882037514": 3, - "677537017949f87882037517": 4, - "677537027949f8788203751a": 4, - "677537027949f8788203751d": 2, - "677537027949f87882037520": 4, - "677537027949f87882037523": 4, - "677537027949f87882037526": 4, - "677537027949f87882037529": 4, - "677537027949f8788203752c": 4, - "677537027949f8788203752f": 4, - "677537027949f87882037532": 4, - "677537027949f87882037535": 4, - "677537027949f87882037538": 4, - "677537037949f8788203753b": 4, - "677537037949f8788203753e": 4, - "677537037949f87882037541": 4, - "677537037949f87882037544": 2, - "677537037949f87882037547": 2, - "677537037949f8788203754a": 4, - "677537037949f8788203754c": 4, - "677537037949f8788203755a": 4, - "677537037949f8788203755d": 4, - "677537037949f87882037560": 4, - "677537037949f87882037563": 4, - "67a4ca4bf19476606006bd70": 1, + "6808bb07364a85cccb04c660": 3, + "6808bb07364a85cccb04c662": 1, + "6808bb07364a85cccb04c66d": 4, + "6808bb07364a85cccb04c66f": 1, + "6808bb07364a85cccb04c67a": 3, + "6808bb07364a85cccb04c67d": 3, + "6808bb07364a85cccb04c680": 2, + "6808bb07364a85cccb04c683": 1, + "6808bb07364a85cccb04c686": 3, + "6808bb07364a85cccb04c689": 1, + "6808bb07364a85cccb04c68c": 2, + "6808bb07364a85cccb04c68f": 1, + "6808bb07364a85cccb04c692": 3, + "6808bb07364a85cccb04c695": 3, + "6808bb08364a85cccb04c698": 3, + "6808bb08364a85cccb04c69b": 1, + "6808bb08364a85cccb04c69e": 3, + "6808bb08364a85cccb04c6a1": 2, + "6808bb08364a85cccb04c6a3": 3, + "6808bb08364a85cccb04c6ac": 1, + "6808bb08364a85cccb04c6af": 2, + "6808bb08364a85cccb04c6b2": 2, + "6808bb08364a85cccb04c6b5": 3, + "6808bb08364a85cccb04c6b8": 1, + "6808bb08364a85cccb04c6bb": 2, + "6808bb08364a85cccb04c6be": 1, + "6808bb08364a85cccb04c6c1": 3, + "6808bb08364a85cccb04c6c4": 3, + "6808bb08364a85cccb04c6c7": 3, + "6808bb08364a85cccb04c6ca": 4, + "6808bb08364a85cccb04c6cd": 1, + "6808bb08364a85cccb04c6d0": 3, + "6808bb08364a85cccb04c6d3": 3, + "6808bb08364a85cccb04c6d6": 2, + "6808bb08364a85cccb04c6d9": 3, + "6808bb08364a85cccb04c6dc": 3, + "6808bb08364a85cccb04c6df": 2, + "6808bb08364a85cccb04c6e2": 2, + "6808bb08364a85cccb04c6e4": 1, + "6808bb09364a85cccb04c6ef": 3, + "6808bb09364a85cccb04c6f2": 1, + "6808bb09364a85cccb04c6f5": 3, + "6808bb09364a85cccb04c6f8": 3, + "6808bb09364a85cccb04c6fb": 2, + "6808bb09364a85cccb04c6fe": 1, + "6808bb09364a85cccb04c701": 3, + "6808bb09364a85cccb04c703": 4, + "6808bb09364a85cccb04c70c": 4, + "6808bb09364a85cccb04c70f": 2, + "6808bb09364a85cccb04c712": 3, + "6808bb09364a85cccb04c715": 3, + "6808bb09364a85cccb04c718": 2, + "6808bb09364a85cccb04c71b": 2, + "6808bb09364a85cccb04c71e": 3, + "6808bb09364a85cccb04c721": 2, + "6808bb09364a85cccb04c724": 1, + "6808bb09364a85cccb04c728": 3, + "6808bb09364a85cccb04c72b": 1, + "6808bb09364a85cccb04c72e": 1, + "6808bb09364a85cccb04c731": 3, + "6808bb09364a85cccb04c734": 1, + "6808bb09364a85cccb04c737": 1, + "6808bb09364a85cccb04c73a": 1, + "6808bb09364a85cccb04c73d": 3, + "6808bb0a364a85cccb04c740": 2, + "6808bb0a364a85cccb04c743": 3, + "6808bb0a364a85cccb04c746": 2, + "6808bb0a364a85cccb04c749": 2, + "6808bb0a364a85cccb04c74c": 3, + "6808bb0a364a85cccb04c74f": 3, + "6808bb0a364a85cccb04c752": 2, + "6808bb0a364a85cccb04c755": 2, + "6808bb0a364a85cccb04c758": 3, + "6808bb0a364a85cccb04c75b": 2, + "6808bb0a364a85cccb04c75e": 3, + "6808bb0a364a85cccb04c760": 1, + "6808bb0a364a85cccb04c76b": 2, + "6808bb0a364a85cccb04c76e": 2, + "6808bb0a364a85cccb04c770": 1, + "6808bb0a364a85cccb04c777": 4, + "6808bb0a364a85cccb04c77a": 4, + "6808bb0a364a85cccb04c77d": 2, + "6808bb0a364a85cccb04c780": 1, + "6808bb0a364a85cccb04c783": 1, + "6808bb0a364a85cccb04c786": 2, + "6808bb0a364a85cccb04c789": 2, + "6808bb0a364a85cccb04c78c": 1, + "6808bb0a364a85cccb04c78f": 4, + "6808bb0a364a85cccb04c792": 4, + "6808bb0b364a85cccb04c795": 1, + "6808bb0b364a85cccb04c798": 1, + "6808bb0b364a85cccb04c79b": 4, + "6808bb0b364a85cccb04c79e": 2, + "6808bb0b364a85cccb04c7a1": 2, + "6808bb0b364a85cccb04c7a4": 2, + "6808bb0b364a85cccb04c7a7": 1, + "6808bb0b364a85cccb04c7a9": 1, + "6808bb0b364a85cccb04c7b6": 2, + "6808bb0b364a85cccb04c7ba": 2, + "6808bb0b364a85cccb04c7bd": 4, + "6808bb0b364a85cccb04c7c0": 2, + "6808bb0b364a85cccb04c7c3": 4, + "6808bb0b364a85cccb04c7c6": 4, + "6808bb0b364a85cccb04c7c9": 1, + "6808bb0b364a85cccb04c7cc": 2, + "6808bb0b364a85cccb04c7cf": 2, + "6808bb0b364a85cccb04c7d2": 3, + "6808bb0c364a85cccb04c7d5": 2, + "6808bb0c364a85cccb04c7d8": 3, + "6808bb0c364a85cccb04c7db": 2, + "6808bb0c364a85cccb04c7de": 2, + "6808bb0c364a85cccb04c7e1": 3, + "6808bb0c364a85cccb04c7e3": 1, + "6808bb0c364a85cccb04c7e9": 3, + "6808bb0c364a85cccb04c7ec": 2, + "6808bb0c364a85cccb04c7ef": 2, + "6808bb0c364a85cccb04c7f2": 4, + "6808bb0c364a85cccb04c7f5": 3, + "6808bb0c364a85cccb04c7f8": 1, + "6808bb0c364a85cccb04c7fa": 2, + "6808bb0c364a85cccb04c809": 2, + "6808bb0c364a85cccb04c815": 1, + "6808bb0c364a85cccb04c821": 4, + "6808bb0c364a85cccb04c824": 3, + "6808bb0c364a85cccb04c827": 1, + "6808bb0c364a85cccb04c82a": 2, + "6808bb0c364a85cccb04c82d": 3, + "6808bb0c364a85cccb04c830": 1, + "6808bb0d364a85cccb04c833": 2, + "6808bb0d364a85cccb04c836": 3, + "6808bb0d364a85cccb04c839": 1, + "6808bb0d364a85cccb04c83c": 1, + "6808bb0d364a85cccb04c83e": 3, + "6808bb0d364a85cccb04c847": 1, + "6808bb0d364a85cccb04c849": 1, + "6808bb0d364a85cccb04c850": 4, + "6808bb0d364a85cccb04c853": 3, + "6808bb0d364a85cccb04c856": 3, + "6808bb0d364a85cccb04c859": 4, + "6808bb0d364a85cccb04c85c": 3, + "6808bb0d364a85cccb04c85f": 3, + "6808bb0d364a85cccb04c862": 2, + "6808bb0d364a85cccb04c865": 3, + "6808bb0d364a85cccb04c868": 2, + "6808bb0d364a85cccb04c86b": 4, + "6808bb0d364a85cccb04c86e": 4, + "6808bb0d364a85cccb04c871": 4, + "6808bb0d364a85cccb04c874": 4, + "6808bb0d364a85cccb04c877": 1, + "6808bb0d364a85cccb04c87a": 3, + "6808bb0d364a85cccb04c87d": 1, + "6808bb0e364a85cccb04c880": 2, + "6808bb0e364a85cccb04c883": 3, + "6808bb0e364a85cccb04c886": 1, + "6808bb0e364a85cccb04c889": 2, + "6808bb0e364a85cccb04c88c": 3, + "6808bb0e364a85cccb04c88f": 1, + "6808bb0e364a85cccb04c892": 4, + "6808bb0e364a85cccb04c895": 2, + "6808bb0e364a85cccb04c898": 4, + "6808bb0e364a85cccb04c89b": 4, + "6808bb0e364a85cccb04c89d": 3, + "6808bb0e364a85cccb04c8ad": 2, + "6808bb0e364a85cccb04c8b0": 1, + "6808bb0e364a85cccb04c8b2": 3, + "6808bb0e364a85cccb04c8c2": 2, + "6808bb0e364a85cccb04c8c5": 1, + "6808bb0e364a85cccb04c8c8": 3, + "6808bb0e364a85cccb04c8cb": 3, + "6808bb0e364a85cccb04c8ce": 4, + "6808bb0e364a85cccb04c8d1": 4, + "6808bb0e364a85cccb04c8d4": 4, + "6808bb0e364a85cccb04c8d7": 3, + "6808bb0e364a85cccb04c8da": 1, + "6808bb0e364a85cccb04c8dd": 2, + "6808bb0f364a85cccb04c8e0": 4, + "6808bb0f364a85cccb04c8e3": 4, + "6808bb0f364a85cccb04c8ea": 1, + "6808bb0f364a85cccb04c8f1": 3, + "6808bb0f364a85cccb04c8f4": 3, + "6808bb0f364a85cccb04c8f7": 3, + "6808bb0f364a85cccb04c8fa": 3, + "6808bb0f364a85cccb04c904": 1, + "6808bb0f364a85cccb04c90e": 3, + "6808bb0f364a85cccb04c911": 2, + "6808bb0f364a85cccb04c914": 3, + "6808bb0f364a85cccb04c917": 2, + "6808bb0f364a85cccb04c91a": 3, + "6808bb0f364a85cccb04c91d": 3, + "6808bb0f364a85cccb04c920": 3, + "6808bb0f364a85cccb04c923": 2, + "6808bb0f364a85cccb04c926": 3, + "6808bb0f364a85cccb04c929": 3, + "6808bb0f364a85cccb04c92c": 3, + "6808bb0f364a85cccb04c92f": 3, + "6808bb0f364a85cccb04c932": 3, + "6808bb0f364a85cccb04c934": 2, + "6808bb0f364a85cccb04c941": 3, + "6808bb0f364a85cccb04c944": 3, + "6808bb10364a85cccb04c947": 3, + "6808bb10364a85cccb04c94a": 3, + "6808bb10364a85cccb04c94d": 3, + "6808bb10364a85cccb04c950": 1, + "6808bb10364a85cccb04c953": 4, + "6808bb10364a85cccb04c955": 2, + "6808bb10364a85cccb04c95d": 3, + "6808bb10364a85cccb04c960": 4, + "6808bb10364a85cccb04c963": 3, + "6808bb10364a85cccb04c966": 3, + "6808bb10364a85cccb04c969": 3, + "6808bb10364a85cccb04c96c": 3, + "6808bb10364a85cccb04c96f": 3, + "6808bb10364a85cccb04c972": 3, + "6808bb10364a85cccb04c975": 3, + "6808bb10364a85cccb04c977": 3, + "6808bb10364a85cccb04c983": 4, + "6808bb10364a85cccb04c986": 3, + "6808bb10364a85cccb04c989": 2, + "6808bb10364a85cccb04c98c": 4, + "6808bb10364a85cccb04c98f": 4, + "6808bb10364a85cccb04c992": 3, + "6808bb10364a85cccb04c995": 3, + "6808bb10364a85cccb04c998": 3, + "6808bb10364a85cccb04c99a": 1, + "6808bb11364a85cccb04c9a1": 4, + "6808bb11364a85cccb04c9a4": 4, + "6808bb11364a85cccb04c9a7": 2, + "6808bb11364a85cccb04c9aa": 3, + "6808bb11364a85cccb04c9ad": 4, + "6808bb11364a85cccb04c9b0": 3, + "6808bb11364a85cccb04c9b3": 4, + "6808bb11364a85cccb04c9b6": 4, + "6808bb11364a85cccb04c9b9": 3, + "6808bb11364a85cccb04c9bc": 3, + "6808bb11364a85cccb04c9be": 3, + "6808bb11364a85cccb04c9c9": 1, + "6808bb11364a85cccb04c9cc": 3, + "6808bb11364a85cccb04c9cf": 2, + "6808bb11364a85cccb04c9d2": 4, + "6808bb11364a85cccb04c9d9": 1, + "6808bb11364a85cccb04c9e0": 4, + "6808bb11364a85cccb04c9e2": 3, + "6808bb11364a85cccb04c9f1": 3, + "6808bb11364a85cccb04c9f4": 3, + "6808bb11364a85cccb04c9f7": 1, + "6808bb11364a85cccb04c9f9": 4, + "6808bb11364a85cccb04ca08": 3, + "6808bb11364a85cccb04ca0b": 3, + "6808bb12364a85cccb04ca0e": 3, + "6808bb12364a85cccb04ca11": 2, + "6808bb12364a85cccb04ca13": 3, + "6808bb12364a85cccb04ca1f": 3, + "6808bb12364a85cccb04ca22": 3, + "6808bb12364a85cccb04ca25": 4, + "6808bb12364a85cccb04ca28": 3, + "6808bb12364a85cccb04ca2b": 1, + "6808bb12364a85cccb04ca2e": 1, + "6808bb12364a85cccb04ca31": 4, + "6808bb12364a85cccb04ca34": 3, + "6808bb12364a85cccb04ca37": 4, + "6808bb12364a85cccb04ca3a": 3, + "6808bb12364a85cccb04ca3d": 2, + "6808bb12364a85cccb04ca40": 1, + "6808bb12364a85cccb04ca43": 1, + "6808bb12364a85cccb04ca46": 3, + "6808bb12364a85cccb04ca49": 2, + "6808bb12364a85cccb04ca4c": 1, + "6808bb12364a85cccb04ca4f": 4, + "6808bb12364a85cccb04ca52": 4, + "6808bb12364a85cccb04ca55": 1, + "6808bb12364a85cccb04ca57": 2, + "6808bb12364a85cccb04ca63": 2, + "6808bb12364a85cccb04ca66": 2, + "6808bb12364a85cccb04ca69": 2, + "6808bb12364a85cccb04ca6c": 3, + "6808bb12364a85cccb04ca6f": 3, + "6808bb12364a85cccb04ca72": 2, + "6808bb13364a85cccb04ca75": 3, + "6808bb13364a85cccb04ca78": 3, + "6808bb13364a85cccb04ca7b": 4, + "6808bb13364a85cccb04ca7e": 2, + "6808bb13364a85cccb04ca81": 4, + "6808bb13364a85cccb04ca84": 1, + "6808bb13364a85cccb04ca87": 3, + "6808bb13364a85cccb04ca8a": 2, + "6808bb13364a85cccb04ca8d": 3, + "6808bb13364a85cccb04ca90": 3, + "6808bb13364a85cccb04ca93": 2, + "6808bb13364a85cccb04ca96": 2, + "6808bb13364a85cccb04ca99": 3, + "6808bb13364a85cccb04ca9c": 3, + "6808bb13364a85cccb04ca9f": 3, + "6808bb13364a85cccb04caa2": 3, + "6808bb13364a85cccb04caa5": 3, + "6808bb13364a85cccb04caa8": 3, + "6808bb13364a85cccb04caab": 3, + "6808bb14364a85cccb04caae": 2, + "6808bb14364a85cccb04cab1": 3, + "6808bb14364a85cccb04cab4": 4, + "6808bb14364a85cccb04cab7": 4, + "6808bb14364a85cccb04caba": 1, + "6808bb14364a85cccb04cabd": 4, + "6808bb14364a85cccb04cac0": 1, + "6808bb14364a85cccb04cac3": 3, + "6808bb14364a85cccb04cac6": 3, + "6808bb14364a85cccb04cac9": 2, + "6808bb14364a85cccb04cacc": 1, + "6808bb14364a85cccb04cacf": 1, + "6808bb14364a85cccb04cad2": 4, + "6808bb14364a85cccb04cad5": 3, + "6808bb14364a85cccb04cad7": 2, + "6808bb14364a85cccb04cae2": 3, + "6808bb14364a85cccb04cae5": 3, + "6808bb14364a85cccb04cae8": 1, + "6808bb14364a85cccb04caeb": 1, + "6808bb14364a85cccb04caee": 4, + "6808bb14364a85cccb04caf1": 2, + "6808bb14364a85cccb04caf4": 2, + "6808bb14364a85cccb04caf7": 4, + "6808bb14364a85cccb04cafa": 2, + "6808bb14364a85cccb04cafd": 1, + "6808bb15364a85cccb04cb00": 1, + "6808bb15364a85cccb04cb0f": 3, + "6808bb15364a85cccb04cb1e": 2, + "6808bb15364a85cccb04cb21": 2, + "6808bb15364a85cccb04cb24": 4, + "6808bb15364a85cccb04cb27": 2, + "6808bb15364a85cccb04cb2a": 3, + "6808bb15364a85cccb04cb2d": 1, + "6808bb15364a85cccb04cb30": 1, + "6808bb15364a85cccb04cb33": 4, + "6808bb15364a85cccb04cb36": 2, + "6808bb15364a85cccb04cb39": 3, + "6808bb15364a85cccb04cb3b": 2, + "6808bb15364a85cccb04cb43": 3, + "6808bb15364a85cccb04cb46": 1, + "6808bb15364a85cccb04cb48": 2, + "6808bb15364a85cccb04cb54": 4, + "6808bb15364a85cccb04cb57": 4, + "6808bb15364a85cccb04cb5a": 3, + "6808bb15364a85cccb04cb5d": 3, + "6808bb15364a85cccb04cb60": 1, + "6808bb15364a85cccb04cb63": 2, + "6808bb15364a85cccb04cb66": 1, + "6808bb15364a85cccb04cb69": 2, + "6808bb15364a85cccb04cb6c": 2, + "6808bb15364a85cccb04cb6f": 4, + "6808bb15364a85cccb04cb72": 2, + "6808bb16364a85cccb04cb75": 4, + "6808bb16364a85cccb04cb78": 4, + "6808bb16364a85cccb04cb7b": 4, + "6808bb16364a85cccb04cb7d": 4, + "6808bb16364a85cccb04cb8b": 4, + "6808bb16364a85cccb04cb8f": 4, + "6808bb16364a85cccb04cb93": 2, + "6808bb16364a85cccb04cb96": 4, + "6808bb16364a85cccb04cb99": 4, + "6808bb16364a85cccb04cb9c": 2, + "6808bb16364a85cccb04cb9f": 4, + "6808bb16364a85cccb04cba2": 4, + "6808bb16364a85cccb04cba5": 4, + "6808bb16364a85cccb04cba8": 3, + "6808bb16364a85cccb04cbab": 4, + "6808bb16364a85cccb04cbae": 2, + "6808bb16364a85cccb04cbb1": 2, + "6808bb16364a85cccb04cbb4": 4, + "6808bb16364a85cccb04cbb7": 4, + "6808bb16364a85cccb04cbba": 4, + "6808bb16364a85cccb04cbbd": 2, + "6808bb16364a85cccb04cbc0": 4, + "6808bb16364a85cccb04cbc3": 4, + "6808bb16364a85cccb04cbc6": 4, + "6808bb16364a85cccb04cbc9": 4, + "6808bb16364a85cccb04cbcb": 4, + "6808bb17364a85cccb04cbdc": 2, + "6808bb17364a85cccb04cbdf": 4, + "6808bb17364a85cccb04cbe2": 4, + "6808bb17364a85cccb04cbe5": 4, + "6808bb17364a85cccb04cbe8": 4, + "6808bb17364a85cccb04cbea": 4, + "6808bb17364a85cccb04cbf1": 4, + "6808bb17364a85cccb04cbf4": 4, + "6808bb17364a85cccb04cbf7": 4, + "6808bb17364a85cccb04cbfa": 3, + "6808bb17364a85cccb04cbfd": 4, + "6808bb17364a85cccb04cc00": 4, + "6808bb17364a85cccb04cc03": 4, + "6808bb17364a85cccb04cc06": 2, + "6808bb17364a85cccb04cc09": 2, + "6808bb17364a85cccb04cc0c": 4, + "6808bb17364a85cccb04cc0f": 2, + "6808bb17364a85cccb04cc12": 4, + "6808bb17364a85cccb04cc15": 4, + "6808bb17364a85cccb04cc18": 2, + "6808bb17364a85cccb04cc1b": 3, + "6808bb17364a85cccb04cc1e": 4, + "6808bb17364a85cccb04cc21": 4, + "6808bb17364a85cccb04cc24": 4, + "6808bb17364a85cccb04cc27": 4, + "6808bb17364a85cccb04cc2a": 4, + "6808bb17364a85cccb04cc2d": 2, + "6808bb17364a85cccb04cc30": 4, + "6808bb17364a85cccb04cc33": 1, + "6808bb17364a85cccb04cc37": 4, + "6808bb18364a85cccb04cc3a": 4, + "6808bb18364a85cccb04cc3d": 4, + "6808bb18364a85cccb04cc40": 4, + "6808bb18364a85cccb04cc43": 4, + "6808bb18364a85cccb04cc45": 4, "6492e44bf4287b13040fccf6": 1, "64a8578f0e9876295f0f83ed": 1, "64a8578f0e9876295f0f83ee": 1, diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/questassort.json index e8166865..5685df06 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/58330581ace78e27b8b10cee/questassort.json @@ -1,38 +1,38 @@ { "started": {}, "success": { - "677536f27949f878820370a0": "5a27b87686f77460de0252a8", - "677537007949f878820374d0": "675c3582f6ddc329a90f9c6d", - "677536f27949f878820370ca": "5c0bdb5286f774166e38eed4", - "677536fd7949f8788203742b": "5c0d4c12d09282029f539173", - "677536f47949f87882037146": "5ac242ab86f77412464f68b4", - "677536f17949f87882037050": "6179b4f16e9dd54ac275e407", - "677536ee7949f87882036f97": "6179b4f16e9dd54ac275e407", - "677536f17949f8788203707a": "6179b4f16e9dd54ac275e407", - "677536f17949f8788203703c": "596b36c586f77450d6045ad2", - "677536f97949f878820372db": "596b36c586f77450d6045ad2", - "677536ef7949f87882036fc0": "5967725e86f774601a446662", - "677536fa7949f87882037392": "6179b5eabca27a099552e052", - "677536f27949f878820370b4": "596b43fb86f77457ca186186", - "677536f17949f8788203705e": "6193850f60b34236ee0483de", - "677536f07949f87882037022": "5979eee086f774311955e614", - "677536f97949f87882037300": "5a27d2af86f7744e1115b323", - "677536f77949f8788203727c": "596b455186f77457cb50eccb", - "677536f67949f878820371e6": "5b4794cb86f774598100d5d4", - "677536f17949f87882037081": "5c0bbaa886f7746941031d82", - "677536f67949f8788203722a": "5c0bbaa886f7746941031d82", - "677536fd7949f87882037428": "5c0bbaa886f7746941031d82", - "677536f77949f87882037253": "5b478ff486f7744d184ecbbf", - "677536f67949f878820371ff": "639873003693c63d86328f25", - "677536f37949f8788203710f": "64f6aafd67e11a7c6206e0d0", - "677536f77949f8788203725f": "64f5e20652fc01298e2c61e3", - "677536ff7949f8788203749c": "671a59e43d73dac1360765cc", - "677537007949f878820374b7": "671a49f77d49aea42c029b5f", - "677537037949f8788203754c": "6764174c86addd02bc033d68", + "6808bb0a364a85cccb04c746": "5967725e86f774601a446662", + "6808bb07364a85cccb04c66f": "596b36c586f77450d6045ad2", + "6808bb0e364a85cccb04c8da": "596b36c586f77450d6045ad2", + "6808bb0a364a85cccb04c770": "596b43fb86f77457ca186186", + "6808bb10364a85cccb04c955": "596b455186f77457cb50eccb", + "6808bb08364a85cccb04c6b8": "5979eee086f774311955e614", + "6808bb0a364a85cccb04c789": "5a27b87686f77460de0252a8", + "6808bb12364a85cccb04ca13": "5a27d2af86f7744e1115b323", + "6808bb0e364a85cccb04c89d": "5ac242ab86f77412464f68b4", + "6808bb10364a85cccb04c977": "5b478ff486f7744d184ecbbf", + "6808bb0e364a85cccb04c8b2": "5b4794cb86f774598100d5d4", + "6808bb0b364a85cccb04c7b6": "5c0bbaa886f7746941031d82", + "6808bb11364a85cccb04c9f9": "5c0bbaa886f7746941031d82", + "6808bb12364a85cccb04ca46": "5c0bbaa886f7746941031d82", + "6808bb0a364a85cccb04c77a": "5c0bdb5286f774166e38eed4", + "6808bb14364a85cccb04caf7": "5c0d4c12d09282029f539173", + "6808bb09364a85cccb04c731": "6179b4f16e9dd54ac275e407", + "6808bb09364a85cccb04c701": "6179b4f16e9dd54ac275e407", + "6808bb0a364a85cccb04c792": "6179b4f16e9dd54ac275e407", + "6808bb12364a85cccb04ca52": "6179b5eabca27a099552e052", + "6808bb08364a85cccb04c6a3": "6193850f60b34236ee0483de", + "6808bb10364a85cccb04c960": "639873003693c63d86328f25", "6492e44bf4287b13040fccf6": "647710905320c660d91c15a5", "64a8578f0e9876295f0f83ed": "649af47d717cb30e7e4b5e26", "64a8578f0e9876295f0f83ee": "649af47d717cb30e7e4b5e26", - "64a8578f0e9876295f0f83ef": "649af47d717cb30e7e4b5e26" + "64a8578f0e9876295f0f83ef": "649af47d717cb30e7e4b5e26", + "6808bb11364a85cccb04ca0b": "64f5e20652fc01298e2c61e3", + "6808bb0c364a85cccb04c821": "64f6aafd67e11a7c6206e0d0", + "6808bb18364a85cccb04cc45": "671a49f77d49aea42c029b5f", + "6808bb17364a85cccb04cbea": "671a59e43d73dac1360765cc", + "6808bb16364a85cccb04cbcb": "675c3582f6ddc329a90f9c6d", + "6808bb16364a85cccb04cb7d": "6764174c86addd02bc033d68" }, "fail": {} } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json index 1aef0894..28a7faf0 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json @@ -1,180 +1,8 @@ { "items": [ { - "_id": "676d24a3798491c5260f4a14", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a3798491c5260f4a15", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "676d24a3798491c5260f4a14", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a3798491c5260f4a16", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "676d24a3798491c5260f4a14", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a3798491c5260f4a17", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "676d24a3798491c5260f4a14", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a3798491c5260f4a18", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "676d24a3798491c5260f4a17", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a3798491c5260f4a19", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "676d24a3798491c5260f4a17", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a3798491c5260f4a1a", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "676d24a3798491c5260f4a14", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a3798491c5260f4a1c", - "_tpl": "58948c8e86f77409493f7266", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24a3798491c5260f4a1d", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "676d24a3798491c5260f4a1c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a3798491c5260f4a1e", - "_tpl": "5894a05586f774094708ef75", - "parentId": "676d24a3798491c5260f4a1c", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a3798491c5260f4a1f", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "676d24a3798491c5260f4a1c", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a3798491c5260f4a20", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "676d24a3798491c5260f4a1f", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a3798491c5260f4a21", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "676d24a3798491c5260f4a20", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a3798491c5260f4a22", - "_tpl": "5894a42086f77426d2590762", - "parentId": "676d24a3798491c5260f4a1f", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a3798491c5260f4a23", - "_tpl": "5894a73486f77426d259076c", - "parentId": "676d24a3798491c5260f4a22", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a3798491c5260f4a24", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a3798491c5260f4a22", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24a3798491c5260f4a25", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "676d24a3798491c5260f4a22", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24a3798491c5260f4a26", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a3798491c5260f4a22", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24a3798491c5260f4a27", - "_tpl": "5894a81786f77427140b8347", - "parentId": "676d24a3798491c5260f4a1f", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a3798491c5260f4a28", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "676d24a3798491c5260f4a1c", - "slotId": "mod_stock" - }, - { - "_id": "676d24a3798491c5260f4a29", - "_tpl": "57ade1442459771557167e15", - "parentId": "676d24a3798491c5260f4a28", - "slotId": "mod_stock" - }, - { - "_id": "676d24a3798491c5260f4a2a", - "_tpl": "58949fac86f77409483e16aa", - "parentId": "676d24a3798491c5260f4a1c", - "slotId": "mod_charge" - }, - { - "_id": "676d24a3798491c5260f4a2d", - "_tpl": "5894a05586f774094708ef75", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a3798491c5260f4a30", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a3798491c5260f4a33", - "_tpl": "544a3a774bdc2d3a388b4567", + "_id": "6808bab7364a85cccb04ac00", + "_tpl": "58d268fc86f774111273f8c2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -185,20 +13,8 @@ } }, { - "_id": "676d24a3798491c5260f4a36", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a3798491c5260f4a39", - "_tpl": "59db7eed86f77461f8380365", + "_id": "6808bab7364a85cccb04ac03", + "_tpl": "59c63b4486f7747afb151c1c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -209,127 +25,7 @@ } }, { - "_id": "676d24a3798491c5260f4a3c", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a3798491c5260f4a3f", - "_tpl": "5a16b672fcdbcb001912fa83", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a42", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a45", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a48", - "_tpl": "57cffe20245977632f391a9d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a4b", - "_tpl": "5857a8b324597729ab0a0e7d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a4e", - "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a51", - "_tpl": "59bfe68886f7746004266202", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a54", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a57", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a5a", + "_id": "6808bab7364a85cccb04ac06", "_tpl": "57c55f092459772d291a8463", "parentId": "hideout", "slotId": "hideout", @@ -341,126 +37,8 @@ } }, { - "_id": "676d24a4798491c5260f4a5d", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a60", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a62", - "_tpl": "58948c8e86f77409493f7266", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24a4798491c5260f4a63", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "676d24a4798491c5260f4a62", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a4798491c5260f4a64", - "_tpl": "5894a05586f774094708ef75", - "parentId": "676d24a4798491c5260f4a62", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a4798491c5260f4a65", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "676d24a4798491c5260f4a62", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a4798491c5260f4a66", - "_tpl": "5894a2c386f77427140b8342", - "parentId": "676d24a4798491c5260f4a65", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a4798491c5260f4a67", - "_tpl": "58949dea86f77409483e16a8", - "parentId": "676d24a4798491c5260f4a66", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a4798491c5260f4a68", - "_tpl": "5894a42086f77426d2590762", - "parentId": "676d24a4798491c5260f4a65", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a4798491c5260f4a69", - "_tpl": "5894a73486f77426d259076c", - "parentId": "676d24a4798491c5260f4a68", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a4798491c5260f4a6a", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a4798491c5260f4a68", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24a4798491c5260f4a6b", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "676d24a4798491c5260f4a68", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24a4798491c5260f4a6c", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a4798491c5260f4a68", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24a4798491c5260f4a6d", - "_tpl": "5894a81786f77427140b8347", - "parentId": "676d24a4798491c5260f4a65", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a4798491c5260f4a6e", - "_tpl": "5894a13e86f7742405482982", - "parentId": "676d24a4798491c5260f4a62", - "slotId": "mod_stock" - }, - { - "_id": "676d24a4798491c5260f4a6f", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "676d24a4798491c5260f4a62", - "slotId": "mod_charge" - }, - { - "_id": "676d24a4798491c5260f4a72", - "_tpl": "55d4887d4bdc2d962f8b4570", + "_id": "6808bab7364a85cccb04ac09", + "_tpl": "59e0bed186f774156f04ce84", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -471,19 +49,7 @@ } }, { - "_id": "676d24a4798491c5260f4a75", - "_tpl": "58d2947e86f77447aa070d53", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a78", + "_id": "6808bab7364a85cccb04ac0c", "_tpl": "588b56d02459771481110ae2", "parentId": "hideout", "slotId": "hideout", @@ -495,7 +61,19 @@ } }, { - "_id": "676d24a4798491c5260f4a7b", + "_id": "6808bab7364a85cccb04ac0f", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac12", "_tpl": "5649a2464bdc2d91118b45a8", "parentId": "hideout", "slotId": "hideout", @@ -507,766 +85,7 @@ } }, { - "_id": "676d24a4798491c5260f4a7e", - "_tpl": "57ac965c24597706be5f975c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a81", - "_tpl": "57c55f112459772d28133310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a84", - "_tpl": "5a16b7e1fcdbcb00165aa6c9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a87", - "_tpl": "544a378f4bdc2d30388b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a8a", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4a8c", - "_tpl": "58948c8e86f77409493f7266", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24a4798491c5260f4a8d", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "676d24a4798491c5260f4a8c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a4798491c5260f4a8e", - "_tpl": "5894a05586f774094708ef75", - "parentId": "676d24a4798491c5260f4a8c", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a4798491c5260f4a8f", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "676d24a4798491c5260f4a8c", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a4798491c5260f4a90", - "_tpl": "5894a2c386f77427140b8342", - "parentId": "676d24a4798491c5260f4a8f", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a4798491c5260f4a91", - "_tpl": "58949dea86f77409483e16a8", - "parentId": "676d24a4798491c5260f4a90", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a4798491c5260f4a92", - "_tpl": "5894a42086f77426d2590762", - "parentId": "676d24a4798491c5260f4a8f", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a4798491c5260f4a93", - "_tpl": "5894a73486f77426d259076c", - "parentId": "676d24a4798491c5260f4a92", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a4798491c5260f4a94", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a4798491c5260f4a92", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24a4798491c5260f4a95", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "676d24a4798491c5260f4a92", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24a4798491c5260f4a96", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "676d24a4798491c5260f4a92", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24a4798491c5260f4a97", - "_tpl": "5894a81786f77427140b8347", - "parentId": "676d24a4798491c5260f4a8f", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a4798491c5260f4a98", - "_tpl": "5894a13e86f7742405482982", - "parentId": "676d24a4798491c5260f4a8c", - "slotId": "mod_stock" - }, - { - "_id": "676d24a4798491c5260f4a99", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "676d24a4798491c5260f4a8c", - "slotId": "mod_charge" - }, - { - "_id": "676d24a4798491c5260f4a9b", - "_tpl": "5926bb2186f7744b1c6c6e60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24a4798491c5260f4a9c", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "676d24a4798491c5260f4a9b", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a4798491c5260f4a9d", - "_tpl": "5926f2e086f7745aae644231", - "parentId": "676d24a4798491c5260f4a9b", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a4798491c5260f4a9e", - "_tpl": "5926f34786f77469195bfe92", - "parentId": "676d24a4798491c5260f4a9d", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a4798491c5260f4a9f", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "676d24a4798491c5260f4a9d", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a4798491c5260f4aa0", - "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "676d24a4798491c5260f4a9d", - "slotId": "mod_stock" - }, - { - "_id": "676d24a4798491c5260f4aa1", - "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "676d24a4798491c5260f4a9d", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a4798491c5260f4aa2", - "_tpl": "5926c32286f774616e42de99", - "parentId": "676d24a4798491c5260f4a9b", - "slotId": "mod_charge" - }, - { - "_id": "676d24a4798491c5260f4aa5", - "_tpl": "59c1383d86f774290a37e0ca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4aa8", - "_tpl": "57cffcdd24597763f5110006", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4aab", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4aae", - "_tpl": "59fafc5086f7740dbe19f6c3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4ab1", - "_tpl": "5a32a064c4a28200741e22de", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a4798491c5260f4ab4", - "_tpl": "5a16badafcdbcb001865f72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ab7", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4aba", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4abd", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ac0", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ac3", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ac6", - "_tpl": "588226e62459776e3e094af7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ac9", - "_tpl": "595cf16b86f77427440c32e2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4acc", - "_tpl": "5a33bab6c4a28200741e22f8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ad2", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ad3", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "676d24a5798491c5260f4ad2", - "slotId": "helmet_top" - }, - { - "_id": "676d24a5798491c5260f4ad4", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "676d24a5798491c5260f4ad2", - "slotId": "helmet_back" - }, - { - "_id": "676d24a5798491c5260f4ad5", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "676d24a5798491c5260f4ad2", - "slotId": "helmet_ears" - }, - { - "_id": "676d24a5798491c5260f4ad8", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4adb", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ade", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ae2", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ae4", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 32, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4ae5", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "676d24a5798491c5260f4ae4", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a5798491c5260f4ae6", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "676d24a5798491c5260f4ae4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a5798491c5260f4ae7", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "676d24a5798491c5260f4ae4", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a5798491c5260f4ae8", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "676d24a5798491c5260f4ae7", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a5798491c5260f4ae9", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "676d24a5798491c5260f4ae7", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a5798491c5260f4aea", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "676d24a5798491c5260f4ae4", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a5798491c5260f4aed", - "_tpl": "544a5cde4bdc2d39388b456b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4af0", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4af3", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4af6", - "_tpl": "544a37c44bdc2d25388b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4af9", - "_tpl": "591af28e86f77414a27a9e1d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4afb", - "_tpl": "5a16bb52fcdbcb001a3b00dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4afc", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "676d24a5798491c5260f4afb", - "slotId": "mod_nvg" - }, - { - "_id": "676d24a5798491c5260f4afd", - "_tpl": "5a16b93dfcdbcbcae6687261", - "parentId": "676d24a5798491c5260f4afc", - "slotId": "mod_nvg" - }, - { - "_id": "676d24a5798491c5260f4afe", - "_tpl": "57235b6f24597759bf5a30f1", - "parentId": "676d24a5798491c5260f4afd", - "slotId": "mod_nvg" - }, - { - "_id": "676d24a5798491c5260f4b01", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999 - } - }, - { - "_id": "676d24a5798491c5260f4b04", - "_tpl": "5926bb2186f7744b1c6c6e60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b05", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "676d24a5798491c5260f4b04", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a5798491c5260f4b06", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "676d24a5798491c5260f4b04", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a5798491c5260f4b07", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "676d24a5798491c5260f4b06", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a5798491c5260f4b08", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "676d24a5798491c5260f4b06", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a5798491c5260f4b09", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "676d24a5798491c5260f4b06", - "slotId": "mod_stock" - }, - { - "_id": "676d24a5798491c5260f4b0a", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "676d24a5798491c5260f4b06", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a5798491c5260f4b0b", - "_tpl": "5926c32286f774616e42de99", - "parentId": "676d24a5798491c5260f4b04", - "slotId": "mod_charge" - }, - { - "_id": "676d24a5798491c5260f4b0e", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b11", - "_tpl": "5947e98b86f774778f1448bc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b14", - "_tpl": "588226dd24597767ad33f789", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b17", - "_tpl": "59db3b0886f77429d72fb895", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b1a", - "_tpl": "59fb375986f7741b681b81a6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b1f", - "_tpl": "5ac8d6885acfc400180ae7b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a5798491c5260f4b20", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "676d24a5798491c5260f4b1f", - "slotId": "Helmet_top" - }, - { - "_id": "676d24a5798491c5260f4b21", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "676d24a5798491c5260f4b1f", - "slotId": "Helmet_back" - }, - { - "_id": "676d24a6798491c5260f4b24", - "_tpl": "58c157c886f774032749fb06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b27", + "_id": "6808bab7364a85cccb04ac15", "_tpl": "58d39d3d86f77445bb794ae7", "parentId": "hideout", "slotId": "hideout", @@ -1278,7 +97,115 @@ } }, { - "_id": "676d24a6798491c5260f4b29", + "_id": "6808bab7364a85cccb04ac18", + "_tpl": "544a37c44bdc2d25388b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac1b", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac1e", + "_tpl": "587df583245977373c4f1129", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac21", + "_tpl": "544a378f4bdc2d30388b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac24", + "_tpl": "5894a05586f774094708ef75", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac27", + "_tpl": "588226dd24597767ad33f789", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac2a", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac2d", + "_tpl": "58c157c886f774032749fb06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac30", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac32", "_tpl": "5447a9cd4bdc2dbd208b4567", "parentId": "hideout", "slotId": "hideout", @@ -1294,144 +221,150 @@ } }, { - "_id": "676d24a6798491c5260f4b2a", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "676d24a6798491c5260f4b29", + "_id": "6808bab7364a85cccb04ac33", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808bab7364a85cccb04ac32", "slotId": "mod_pistol_grip" }, { - "_id": "676d24a6798491c5260f4b2b", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "676d24a6798491c5260f4b29", + "_id": "6808bab7364a85cccb04ac34", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6808bab7364a85cccb04ac32", "slotId": "mod_magazine" }, { - "_id": "676d24a6798491c5260f4b2c", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "676d24a6798491c5260f4b2b", - "slotId": "cartridges", - "location": 0, - "upd": { - "StackObjectsCount": 30 - } - }, - { - "_id": "676d24a6798491c5260f4b2d", + "_id": "6808bab7364a85cccb04ac35", "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "676d24a6798491c5260f4b29", + "parentId": "6808bab7364a85cccb04ac32", "slotId": "mod_reciever" }, { - "_id": "676d24a6798491c5260f4b2e", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "676d24a6798491c5260f4b2d", - "slotId": "mod_scope" - }, - { - "_id": "676d24a6798491c5260f4b2f", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "676d24a6798491c5260f4b2d", + "_id": "6808bab7364a85cccb04ac36", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6808bab7364a85cccb04ac35", "slotId": "mod_barrel" }, { - "_id": "676d24a6798491c5260f4b30", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "676d24a6798491c5260f4b2f", + "_id": "6808bab7364a85cccb04ac37", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6808bab7364a85cccb04ac36", "slotId": "mod_muzzle" }, { - "_id": "676d24a6798491c5260f4b31", - "_tpl": "57da93632459771cb65bf83f", - "parentId": "676d24a6798491c5260f4b30", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a6798491c5260f4b32", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "676d24a6798491c5260f4b2f", + "_id": "6808bab7364a85cccb04ac38", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6808bab7364a85cccb04ac36", "slotId": "mod_gas_block" }, { - "_id": "676d24a6798491c5260f4b33", - "_tpl": "55f84c3c4bdc2d5f408b4576", - "parentId": "676d24a6798491c5260f4b2d", + "_id": "6808bab7364a85cccb04ac39", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "6808bab7364a85cccb04ac35", "slotId": "mod_handguard" }, { - "_id": "676d24a6798491c5260f4b34", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "676d24a6798491c5260f4b33", - "slotId": "mod_scope" - }, - { - "_id": "676d24a6798491c5260f4b35", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "676d24a6798491c5260f4b34", - "slotId": "mod_scope" - }, - { - "_id": "676d24a6798491c5260f4b36", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "676d24a6798491c5260f4b35", - "slotId": "mod_scope" - }, - { - "_id": "676d24a6798491c5260f4b37", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "676d24a6798491c5260f4b33", - "slotId": "mod_tactical002" - }, - { - "_id": "676d24a6798491c5260f4b38", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "676d24a6798491c5260f4b37", - "slotId": "mod_flashlight" - }, - { - "_id": "676d24a6798491c5260f4b39", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "676d24a6798491c5260f4b33", - "slotId": "mod_tactical" - }, - { - "_id": "676d24a6798491c5260f4b3a", - "_tpl": "638f1ff84822287cad04be9d", - "parentId": "676d24a6798491c5260f4b33", + "_id": "6808bab7364a85cccb04ac3a", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "6808bab7364a85cccb04ac39", "slotId": "mod_handguard" }, { - "_id": "676d24a6798491c5260f4b3b", - "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "676d24a6798491c5260f4b3a", - "slotId": "mod_foregrip" + "_id": "6808bab7364a85cccb04ac3b", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "6808bab7364a85cccb04ac35", + "slotId": "mod_sight_rear" }, { - "_id": "676d24a6798491c5260f4b3c", + "_id": "6808bab7364a85cccb04ac3c", "_tpl": "5649be884bdc2d79388b4577", - "parentId": "676d24a6798491c5260f4b29", + "parentId": "6808bab7364a85cccb04ac32", "slotId": "mod_stock" }, { - "_id": "676d24a6798491c5260f4b3d", - "_tpl": "58d2946386f774496974c37e", - "parentId": "676d24a6798491c5260f4b3c", + "_id": "6808bab7364a85cccb04ac3d", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6808bab7364a85cccb04ac3c", "slotId": "mod_stock_000" }, { - "_id": "676d24a6798491c5260f4b3e", - "_tpl": "58d2912286f7744e27117493", - "parentId": "676d24a6798491c5260f4b3d", - "slotId": "mod_stock" - }, - { - "_id": "676d24a6798491c5260f4b3f", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "676d24a6798491c5260f4b29", + "_id": "6808bab7364a85cccb04ac3e", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6808bab7364a85cccb04ac32", "slotId": "mod_charge" }, { - "_id": "676d24a6798491c5260f4b42", - "_tpl": "57c55efc2459772d2c6271e7", + "_id": "6808bab7364a85cccb04ac41", + "_tpl": "57c55f112459772d28133310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac43", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bab7364a85cccb04ac44", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "6808bab7364a85cccb04ac43", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab7364a85cccb04ac45", + "_tpl": "5926f2e086f7745aae644231", + "parentId": "6808bab7364a85cccb04ac43", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab7364a85cccb04ac46", + "_tpl": "5926f34786f77469195bfe92", + "parentId": "6808bab7364a85cccb04ac45", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab7364a85cccb04ac47", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6808bab7364a85cccb04ac45", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab7364a85cccb04ac48", + "_tpl": "5926d40686f7740f152b6b7e", + "parentId": "6808bab7364a85cccb04ac45", + "slotId": "mod_stock" + }, + { + "_id": "6808bab7364a85cccb04ac49", + "_tpl": "5926d33d86f77410de68ebc0", + "parentId": "6808bab7364a85cccb04ac45", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab7364a85cccb04ac4a", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6808bab7364a85cccb04ac43", + "slotId": "mod_charge" + }, + { + "_id": "6808bab7364a85cccb04ac4d", + "_tpl": "59fc48e086f77463b1118392", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1442,7 +375,109 @@ } }, { - "_id": "676d24a6798491c5260f4b45", + "_id": "6808bab7364a85cccb04ac50", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab7364a85cccb04ac53", + "_tpl": "57cffcdd24597763f5110006", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac56", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac59", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac5c", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac62", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac63", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6808bab8364a85cccb04ac62", + "slotId": "helmet_top" + }, + { + "_id": "6808bab8364a85cccb04ac64", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6808bab8364a85cccb04ac62", + "slotId": "helmet_back" + }, + { + "_id": "6808bab8364a85cccb04ac65", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6808bab8364a85cccb04ac62", + "slotId": "helmet_ears" + }, + { + "_id": "6808bab8364a85cccb04ac68", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac6b", "_tpl": "59db3acc86f7742a2c4ab912", "parentId": "hideout", "slotId": "hideout", @@ -1454,8 +489,8 @@ } }, { - "_id": "676d24a6798491c5260f4b48", - "_tpl": "59e0be5d86f7742d48765bd2", + "_id": "6808bab8364a85cccb04ac6e", + "_tpl": "58491f3324597764bc48fa02", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1466,7 +501,839 @@ } }, { - "_id": "676d24a6798491c5260f4b4a", + "_id": "6808bab8364a85cccb04ac71", + "_tpl": "5a33bab6c4a28200741e22f8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac73", + "_tpl": "58948c8e86f77409493f7266", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bab8364a85cccb04ac74", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "6808bab8364a85cccb04ac73", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bab8364a85cccb04ac75", + "_tpl": "5894a05586f774094708ef75", + "parentId": "6808bab8364a85cccb04ac73", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab8364a85cccb04ac76", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "6808bab8364a85cccb04ac73", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab8364a85cccb04ac77", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "6808bab8364a85cccb04ac76", + "slotId": "mod_barrel" + }, + { + "_id": "6808bab8364a85cccb04ac78", + "_tpl": "58949dea86f77409483e16a8", + "parentId": "6808bab8364a85cccb04ac77", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab8364a85cccb04ac79", + "_tpl": "5894a42086f77426d2590762", + "parentId": "6808bab8364a85cccb04ac76", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab8364a85cccb04ac7a", + "_tpl": "5894a73486f77426d259076c", + "parentId": "6808bab8364a85cccb04ac79", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bab8364a85cccb04ac7b", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab8364a85cccb04ac79", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bab8364a85cccb04ac7c", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "6808bab8364a85cccb04ac79", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bab8364a85cccb04ac7d", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab8364a85cccb04ac79", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bab8364a85cccb04ac7e", + "_tpl": "5894a81786f77427140b8347", + "parentId": "6808bab8364a85cccb04ac76", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab8364a85cccb04ac7f", + "_tpl": "5894a13e86f7742405482982", + "parentId": "6808bab8364a85cccb04ac73", + "slotId": "mod_stock" + }, + { + "_id": "6808bab8364a85cccb04ac80", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "6808bab8364a85cccb04ac73", + "slotId": "mod_charge" + }, + { + "_id": "6808bab8364a85cccb04ac83", + "_tpl": "58d2947e86f77447aa070d53", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac86", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac89", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999 + } + }, + { + "_id": "6808bab8364a85cccb04ac8d", + "_tpl": "595cf16b86f77427440c32e2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac90", + "_tpl": "544a11ac4bdc2d470e8b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac94", + "_tpl": "5448c1d04bdc2dff2f8b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac97", + "_tpl": "57cffce524597763b31685d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac9a", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04ac9d", + "_tpl": "5947e98b86f774778f1448bc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04aca0", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04aca3", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04aca8", + "_tpl": "5ac8d6885acfc400180ae7b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04aca9", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "6808bab8364a85cccb04aca8", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab8364a85cccb04acaa", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "6808bab8364a85cccb04aca8", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab8364a85cccb04acad", + "_tpl": "57cffcd624597763133760c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab8364a85cccb04acb0", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acb2", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acb3", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "6808bab9364a85cccb04acb2", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab9364a85cccb04acb4", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "6808bab9364a85cccb04acb2", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab9364a85cccb04acb5", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "6808bab9364a85cccb04acb4", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab9364a85cccb04acb6", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6808bab9364a85cccb04acb4", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab9364a85cccb04acb7", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "6808bab9364a85cccb04acb4", + "slotId": "mod_stock" + }, + { + "_id": "6808bab9364a85cccb04acb8", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "6808bab9364a85cccb04acb4", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab9364a85cccb04acb9", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6808bab9364a85cccb04acb2", + "slotId": "mod_charge" + }, + { + "_id": "6808bab9364a85cccb04acbc", + "_tpl": "5926f34786f77469195bfe92", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acbf", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acc2", + "_tpl": "587de4282459771bca0ec90b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acc5", + "_tpl": "5a16b9fffcdbcb0176308b34", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acc9", + "_tpl": "58d2912286f7744e27117493", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04accc", + "_tpl": "5926f2e086f7745aae644231", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04accf", + "_tpl": "59d6272486f77466146386ff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acd2", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acd5", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acd8", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acda", + "_tpl": "58948c8e86f77409493f7266", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bab9364a85cccb04acdb", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "6808bab9364a85cccb04acda", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bab9364a85cccb04acdc", + "_tpl": "5894a05586f774094708ef75", + "parentId": "6808bab9364a85cccb04acda", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab9364a85cccb04acdd", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "6808bab9364a85cccb04acda", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab9364a85cccb04acde", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "6808bab9364a85cccb04acdd", + "slotId": "mod_barrel" + }, + { + "_id": "6808bab9364a85cccb04acdf", + "_tpl": "58949dea86f77409483e16a8", + "parentId": "6808bab9364a85cccb04acde", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab9364a85cccb04ace0", + "_tpl": "5894a42086f77426d2590762", + "parentId": "6808bab9364a85cccb04acdd", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab9364a85cccb04ace1", + "_tpl": "5894a73486f77426d259076c", + "parentId": "6808bab9364a85cccb04ace0", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bab9364a85cccb04ace2", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab9364a85cccb04ace0", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bab9364a85cccb04ace3", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "6808bab9364a85cccb04ace0", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bab9364a85cccb04ace4", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab9364a85cccb04ace0", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bab9364a85cccb04ace5", + "_tpl": "5894a81786f77427140b8347", + "parentId": "6808bab9364a85cccb04acdd", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab9364a85cccb04ace6", + "_tpl": "5894a13e86f7742405482982", + "parentId": "6808bab9364a85cccb04acda", + "slotId": "mod_stock" + }, + { + "_id": "6808bab9364a85cccb04ace7", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "6808bab9364a85cccb04acda", + "slotId": "mod_charge" + }, + { + "_id": "6808bab9364a85cccb04ace9", + "_tpl": "58948c8e86f77409493f7266", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bab9364a85cccb04acea", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "6808bab9364a85cccb04ace9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bab9364a85cccb04aceb", + "_tpl": "5894a05586f774094708ef75", + "parentId": "6808bab9364a85cccb04ace9", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab9364a85cccb04acec", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "6808bab9364a85cccb04ace9", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab9364a85cccb04aced", + "_tpl": "58aeaaa886f7744fc1560f81", + "parentId": "6808bab9364a85cccb04acec", + "slotId": "mod_barrel" + }, + { + "_id": "6808bab9364a85cccb04acee", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "6808bab9364a85cccb04aced", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab9364a85cccb04acef", + "_tpl": "5894a42086f77426d2590762", + "parentId": "6808bab9364a85cccb04acec", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab9364a85cccb04acf0", + "_tpl": "5894a73486f77426d259076c", + "parentId": "6808bab9364a85cccb04acef", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bab9364a85cccb04acf1", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab9364a85cccb04acef", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bab9364a85cccb04acf2", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "6808bab9364a85cccb04acef", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bab9364a85cccb04acf3", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808bab9364a85cccb04acef", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bab9364a85cccb04acf4", + "_tpl": "5894a81786f77427140b8347", + "parentId": "6808bab9364a85cccb04acec", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab9364a85cccb04acf5", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "6808bab9364a85cccb04ace9", + "slotId": "mod_stock" + }, + { + "_id": "6808bab9364a85cccb04acf6", + "_tpl": "57ade1442459771557167e15", + "parentId": "6808bab9364a85cccb04acf5", + "slotId": "mod_stock" + }, + { + "_id": "6808bab9364a85cccb04acf7", + "_tpl": "58949fac86f77409483e16aa", + "parentId": "6808bab9364a85cccb04ace9", + "slotId": "mod_charge" + }, + { + "_id": "6808bab9364a85cccb04acfa", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04acfd", + "_tpl": "544a5cde4bdc2d39388b456b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad00", + "_tpl": "57cffe20245977632f391a9d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad03", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 100, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad05", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad06", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "6808bab9364a85cccb04ad05", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab9364a85cccb04ad07", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "6808bab9364a85cccb04ad05", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab9364a85cccb04ad08", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "6808bab9364a85cccb04ad07", + "slotId": "mod_handguard" + }, + { + "_id": "6808bab9364a85cccb04ad09", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6808bab9364a85cccb04ad07", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab9364a85cccb04ad0a", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "6808bab9364a85cccb04ad07", + "slotId": "mod_stock" + }, + { + "_id": "6808bab9364a85cccb04ad0b", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "6808bab9364a85cccb04ad07", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bab9364a85cccb04ad0c", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6808bab9364a85cccb04ad05", + "slotId": "mod_charge" + }, + { + "_id": "6808bab9364a85cccb04ad0e", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 32, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad0f", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "6808bab9364a85cccb04ad0e", + "slotId": "mod_barrel" + }, + { + "_id": "6808bab9364a85cccb04ad10", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "6808bab9364a85cccb04ad0e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bab9364a85cccb04ad11", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "6808bab9364a85cccb04ad0e", + "slotId": "mod_reciever" + }, + { + "_id": "6808bab9364a85cccb04ad12", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "6808bab9364a85cccb04ad11", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bab9364a85cccb04ad13", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "6808bab9364a85cccb04ad11", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bab9364a85cccb04ad14", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "6808bab9364a85cccb04ad0e", + "slotId": "mod_magazine" + }, + { + "_id": "6808bab9364a85cccb04ad17", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab9364a85cccb04ad1a", + "_tpl": "5857a8b324597729ab0a0e7d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad1c", "_tpl": "5a367e5dc4a282000e49738f", "parentId": "hideout", "slotId": "hideout", @@ -1482,103 +1349,79 @@ } }, { - "_id": "676d24a6798491c5260f4b4b", + "_id": "6808baba364a85cccb04ad1d", "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "676d24a6798491c5260f4b4a", + "parentId": "6808baba364a85cccb04ad1c", "slotId": "mod_pistol_grip" }, { - "_id": "676d24a6798491c5260f4b4c", + "_id": "6808baba364a85cccb04ad1e", "_tpl": "5a3501acc4a282000d72293a", - "parentId": "676d24a6798491c5260f4b4a", + "parentId": "6808baba364a85cccb04ad1c", "slotId": "mod_magazine" }, { - "_id": "676d24a6798491c5260f4b4d", + "_id": "6808baba364a85cccb04ad1f", "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "676d24a6798491c5260f4b4a", + "parentId": "6808baba364a85cccb04ad1c", "slotId": "mod_stock" }, { - "_id": "676d24a6798491c5260f4b4e", + "_id": "6808baba364a85cccb04ad20", "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "676d24a6798491c5260f4b4d", + "parentId": "6808baba364a85cccb04ad1f", "slotId": "mod_stock" }, { - "_id": "676d24a6798491c5260f4b4f", + "_id": "6808baba364a85cccb04ad21", "_tpl": "5a329052c4a28200741e22d3", - "parentId": "676d24a6798491c5260f4b4a", + "parentId": "6808baba364a85cccb04ad1c", "slotId": "mod_handguard" }, { - "_id": "676d24a6798491c5260f4b50", + "_id": "6808baba364a85cccb04ad22", "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "676d24a6798491c5260f4b4a", + "parentId": "6808baba364a85cccb04ad1c", "slotId": "mod_barrel" }, { - "_id": "676d24a6798491c5260f4b51", + "_id": "6808baba364a85cccb04ad23", "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "676d24a6798491c5260f4b50", + "parentId": "6808baba364a85cccb04ad22", "slotId": "mod_muzzle" }, { - "_id": "676d24a6798491c5260f4b52", + "_id": "6808baba364a85cccb04ad24", "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "676d24a6798491c5260f4b50", + "parentId": "6808baba364a85cccb04ad22", "slotId": "mod_gas_block" }, { - "_id": "676d24a6798491c5260f4b55", - "_tpl": "5a33cae9c4a28232980eb086", + "_id": "6808baba364a85cccb04ad27", + "_tpl": "59c1383d86f774290a37e0ca", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a6798491c5260f4b58", - "_tpl": "5a33a8ebc4a282000c5a950d", + "_id": "6808baba364a85cccb04ad2a", + "_tpl": "55802d5f4bdc2dac148b458e", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 20, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a6798491c5260f4b5b", - "_tpl": "5a16ba61fcdbcb098008728a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b5e", - "_tpl": "57da93632459771cb65bf83f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b61", + "_id": "6808baba364a85cccb04ad2d", "_tpl": "58d2946386f774496974c37e", "parentId": "hideout", "slotId": "hideout", @@ -1590,8 +1433,32 @@ } }, { - "_id": "676d24a6798491c5260f4b64", - "_tpl": "58c157be86f77403c74b2bb6", + "_id": "6808baba364a85cccb04ad30", + "_tpl": "59fb375986f7741b681b81a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad33", + "_tpl": "5a33b652c4a28232996e407c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad36", + "_tpl": "595cfa8b86f77427437e845b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1602,164 +1469,20 @@ } }, { - "_id": "676d24a6798491c5260f4b67", - "_tpl": "544909bb4bdc2d6f028b4577", + "_id": "6808baba364a85cccb04ad39", + "_tpl": "59e68f6f86f7746c9f75e846", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 1000, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a6798491c5260f4b6a", - "_tpl": "5926f2e086f7745aae644231", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b6d", - "_tpl": "5926c32286f774616e42de99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b70", - "_tpl": "5943ee5a86f77413872d25ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b73", - "_tpl": "5947c73886f7747701588af5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b76", - "_tpl": "544a11ac4bdc2d470e8b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b7a", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b7d", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b80", - "_tpl": "59db7e1086f77448be30ddf3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b83", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b86", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b89", - "_tpl": "5a34fe59c4a282000b1521a2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b8c", - "_tpl": "570fd6c2d2720bc6458b457f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a6798491c5260f4b8f", - "_tpl": "57cffb66245977632f391a99", + "_id": "6808baba364a85cccb04ad3c", + "_tpl": "57aca93d2459771f2c7e26db", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1770,151 +1493,7 @@ } }, { - "_id": "676d24a6798491c5260f4b92", - "_tpl": "577d141e24597739c5255e01", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4b95", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4b98", - "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4b9b", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4b9e", - "_tpl": "57cffce524597763b31685d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4ba1", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4ba4", - "_tpl": "5a34f7f1c4a2826c6e06d75d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4ba7", - "_tpl": "587df583245977373c4f1129", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4baa", - "_tpl": "5926dad986f7741f82604363", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bad", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bb0", - "_tpl": "57c55f172459772d27602381", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bb3", - "_tpl": "57cffd8224597763b03fc609", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bb6", + "_id": "6808baba364a85cccb04ad3f", "_tpl": "55f84c3c4bdc2d5f408b4576", "parentId": "hideout", "slotId": "hideout", @@ -1926,7 +1505,163 @@ } }, { - "_id": "676d24a7798491c5260f4bb9", + "_id": "6808baba364a85cccb04ad42", + "_tpl": "577d141e24597739c5255e01", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad45", + "_tpl": "5a16ba61fcdbcb098008728a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad48", + "_tpl": "5a34f7f1c4a2826c6e06d75d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad4b", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad4e", + "_tpl": "5926dad986f7741f82604363", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad51", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad54", + "_tpl": "59fafc5086f7740dbe19f6c3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad57", + "_tpl": "5926d33d86f77410de68ebc0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad5a", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad5d", + "_tpl": "5a16badafcdbcb001865f72d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad60", + "_tpl": "5926d40686f7740f152b6b7e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad63", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baba364a85cccb04ad66", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad69", "_tpl": "5648ae314bdc2d3d1c8b457f", "parentId": "hideout", "slotId": "hideout", @@ -1938,8 +1673,140 @@ } }, { - "_id": "676d24a7798491c5260f4bbc", - "_tpl": "57d17c5e2459775a5c57d17d", + "_id": "6808babb364a85cccb04ad6c", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad6f", + "_tpl": "544a3a774bdc2d3a388b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad72", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad75", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad78", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad7b", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad7e", + "_tpl": "59db3b0886f77429d72fb895", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad81", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad84", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad87", + "_tpl": "57cffd8224597763b03fc609", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad8a", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad8d", + "_tpl": "588226d124597767ad33f787", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1950,8 +1817,8 @@ } }, { - "_id": "676d24a7798491c5260f4bbf", - "_tpl": "5a329052c4a28200741e22d3", + "_id": "6808babb364a85cccb04ad8f", + "_tpl": "5a16bb52fcdbcb001a3b00dc", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1962,7 +1829,85 @@ } }, { - "_id": "676d24a7798491c5260f4bc2", + "_id": "6808babb364a85cccb04ad90", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "6808babb364a85cccb04ad8f", + "slotId": "mod_nvg" + }, + { + "_id": "6808babb364a85cccb04ad91", + "_tpl": "5a16b93dfcdbcbcae6687261", + "parentId": "6808babb364a85cccb04ad90", + "slotId": "mod_nvg" + }, + { + "_id": "6808babb364a85cccb04ad92", + "_tpl": "57235b6f24597759bf5a30f1", + "parentId": "6808babb364a85cccb04ad91", + "slotId": "mod_nvg" + }, + { + "_id": "6808babb364a85cccb04ad95", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad98", + "_tpl": "5a33a8ebc4a282000c5a950d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad9b", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ad9e", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ada1", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04ada4", "_tpl": "5947eab886f77475961d96c5", "parentId": "hideout", "slotId": "hideout", @@ -1974,8 +1919,20 @@ } }, { - "_id": "676d24a7798491c5260f4bc5", - "_tpl": "55d5f46a4bdc2d1b198b4567", + "_id": "6808babb364a85cccb04ada7", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babb364a85cccb04adaa", + "_tpl": "591af28e86f77414a27a9e1d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1986,7 +1943,439 @@ } }, { - "_id": "676d24a7798491c5260f4bc7", + "_id": "6808babc364a85cccb04adad", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adb0", + "_tpl": "59db7e1086f77448be30ddf3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adb3", + "_tpl": "57ac965c24597706be5f975c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adb6", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adb8", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adb9", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "6808babc364a85cccb04adb8", + "slotId": "mod_barrel" + }, + { + "_id": "6808babc364a85cccb04adba", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "6808babc364a85cccb04adb8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808babc364a85cccb04adbb", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "6808babc364a85cccb04adb8", + "slotId": "mod_reciever" + }, + { + "_id": "6808babc364a85cccb04adbc", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "6808babc364a85cccb04adbb", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808babc364a85cccb04adbd", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "6808babc364a85cccb04adbb", + "slotId": "mod_sight_front" + }, + { + "_id": "6808babc364a85cccb04adbe", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "6808babc364a85cccb04adb8", + "slotId": "mod_magazine" + }, + { + "_id": "6808babc364a85cccb04adc1", + "_tpl": "59db7eed86f77461f8380365", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adc4", + "_tpl": "57c55f172459772d27602381", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adc7", + "_tpl": "588226e62459776e3e094af7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adca", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adcd", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04add0", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04add3", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04add6", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04add9", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04addc", + "_tpl": "59bfe68886f7746004266202", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04addf", + "_tpl": "5a32aa0cc4a28232996e405f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04ade2", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04ade5", + "_tpl": "5a16b93dfcdbcbcae6687261", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04ade8", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adeb", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adee", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adf2", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adf5", + "_tpl": "5926c32286f774616e42de99", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babc364a85cccb04adf8", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04adfb", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04adfe", + "_tpl": "5947c73886f7747701588af5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae01", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae04", + "_tpl": "57af48872459771f0b2ebf11", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae07", + "_tpl": "577d128124597739d65d0e56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae0a", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae0d", + "_tpl": "57cffb66245977632f391a99", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae10", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae13", + "_tpl": "58d2947686f774485c6a1ee5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae15", "_tpl": "5447a9cd4bdc2dbd208b4567", "parentId": "hideout", "slotId": "hideout", @@ -2002,341 +2391,144 @@ } }, { - "_id": "676d24a7798491c5260f4bc8", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "676d24a7798491c5260f4bc7", + "_id": "6808babd364a85cccb04ae16", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808babd364a85cccb04ae15", "slotId": "mod_pistol_grip" }, { - "_id": "676d24a7798491c5260f4bc9", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "676d24a7798491c5260f4bc7", + "_id": "6808babd364a85cccb04ae17", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "6808babd364a85cccb04ae15", "slotId": "mod_magazine" }, { - "_id": "676d24a7798491c5260f4bca", + "_id": "6808babd364a85cccb04ae18", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6808babd364a85cccb04ae17", + "slotId": "cartridges", + "location": 0, + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "6808babd364a85cccb04ae19", "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "676d24a7798491c5260f4bc7", + "parentId": "6808babd364a85cccb04ae15", "slotId": "mod_reciever" }, { - "_id": "676d24a7798491c5260f4bcb", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "676d24a7798491c5260f4bca", + "_id": "6808babd364a85cccb04ae1a", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "6808babd364a85cccb04ae19", + "slotId": "mod_scope" + }, + { + "_id": "6808babd364a85cccb04ae1b", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "6808babd364a85cccb04ae19", "slotId": "mod_barrel" }, { - "_id": "676d24a7798491c5260f4bcc", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "676d24a7798491c5260f4bcb", + "_id": "6808babd364a85cccb04ae1c", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "6808babd364a85cccb04ae1b", "slotId": "mod_muzzle" }, { - "_id": "676d24a7798491c5260f4bcd", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "676d24a7798491c5260f4bcb", + "_id": "6808babd364a85cccb04ae1d", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "6808babd364a85cccb04ae1c", + "slotId": "mod_muzzle" + }, + { + "_id": "6808babd364a85cccb04ae1e", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6808babd364a85cccb04ae1b", "slotId": "mod_gas_block" }, { - "_id": "676d24a7798491c5260f4bce", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "676d24a7798491c5260f4bca", + "_id": "6808babd364a85cccb04ae1f", + "_tpl": "55f84c3c4bdc2d5f408b4576", + "parentId": "6808babd364a85cccb04ae19", "slotId": "mod_handguard" }, { - "_id": "676d24a7798491c5260f4bcf", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "676d24a7798491c5260f4bce", + "_id": "6808babd364a85cccb04ae20", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "6808babd364a85cccb04ae1f", + "slotId": "mod_scope" + }, + { + "_id": "6808babd364a85cccb04ae21", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "6808babd364a85cccb04ae20", + "slotId": "mod_scope" + }, + { + "_id": "6808babd364a85cccb04ae22", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6808babd364a85cccb04ae21", + "slotId": "mod_scope" + }, + { + "_id": "6808babd364a85cccb04ae23", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "6808babd364a85cccb04ae1f", + "slotId": "mod_tactical002" + }, + { + "_id": "6808babd364a85cccb04ae24", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "6808babd364a85cccb04ae23", + "slotId": "mod_flashlight" + }, + { + "_id": "6808babd364a85cccb04ae25", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "6808babd364a85cccb04ae1f", + "slotId": "mod_tactical" + }, + { + "_id": "6808babd364a85cccb04ae26", + "_tpl": "638f1ff84822287cad04be9d", + "parentId": "6808babd364a85cccb04ae1f", "slotId": "mod_handguard" }, { - "_id": "676d24a7798491c5260f4bd0", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "676d24a7798491c5260f4bca", - "slotId": "mod_sight_rear" + "_id": "6808babd364a85cccb04ae27", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "6808babd364a85cccb04ae26", + "slotId": "mod_foregrip" }, { - "_id": "676d24a7798491c5260f4bd1", + "_id": "6808babd364a85cccb04ae28", "_tpl": "5649be884bdc2d79388b4577", - "parentId": "676d24a7798491c5260f4bc7", + "parentId": "6808babd364a85cccb04ae15", "slotId": "mod_stock" }, { - "_id": "676d24a7798491c5260f4bd2", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "676d24a7798491c5260f4bd1", + "_id": "6808babd364a85cccb04ae29", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6808babd364a85cccb04ae28", "slotId": "mod_stock_000" }, { - "_id": "676d24a7798491c5260f4bd3", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "676d24a7798491c5260f4bc7", - "slotId": "mod_charge" - }, - { - "_id": "676d24a7798491c5260f4bd6", - "_tpl": "57af48872459771f0b2ebf11", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bd9", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bdc", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bdf", - "_tpl": "5926f34786f77469195bfe92", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4be2", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4be5", + "_id": "6808babd364a85cccb04ae2a", "_tpl": "58d2912286f7744e27117493", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4be8", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4beb", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bee", - "_tpl": "57cffcd624597763133760c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bf1", - "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a7798491c5260f4bf4", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4bf7", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4bfa", - "_tpl": "5a16b93dfcdbcbcae6687261", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4bfd", - "_tpl": "5448c1d04bdc2dff2f8b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c00", - "_tpl": "58d2947686f774485c6a1ee5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c03", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c06", - "_tpl": "577d128124597739d65d0e56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c08", - "_tpl": "5926bb2186f7744b1c6c6e60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c09", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "676d24a8798491c5260f4c08", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a8798491c5260f4c0a", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "676d24a8798491c5260f4c08", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a8798491c5260f4c0b", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "676d24a8798491c5260f4c0a", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a8798491c5260f4c0c", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "676d24a8798491c5260f4c0a", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a8798491c5260f4c0d", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "676d24a8798491c5260f4c0a", + "parentId": "6808babd364a85cccb04ae29", "slotId": "mod_stock" }, { - "_id": "676d24a8798491c5260f4c0e", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "676d24a8798491c5260f4c0a", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a8798491c5260f4c0f", - "_tpl": "5926c32286f774616e42de99", - "parentId": "676d24a8798491c5260f4c08", + "_id": "6808babd364a85cccb04ae2b", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "6808babd364a85cccb04ae15", "slotId": "mod_charge" }, { - "_id": "676d24a8798491c5260f4c12", - "_tpl": "5926d2be86f774134d668e4e", + "_id": "6808babd364a85cccb04ae2e", + "_tpl": "5c07dd120db834001c39092d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2347,301 +2539,7 @@ } }, { - "_id": "676d24a8798491c5260f4c15", - "_tpl": "587de4282459771bca0ec90b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c18", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c1b", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c1e", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c21", - "_tpl": "595cfa8b86f77427437e845b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c24", - "_tpl": "588226d124597767ad33f787", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c27", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c2a", - "_tpl": "59d6272486f77466146386ff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c2d", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c30", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c33", - "_tpl": "5a32aa0cc4a28232996e405f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c36", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c39", - "_tpl": "5a33b652c4a28232996e407c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c3c", - "_tpl": "5a16b9fffcdbcb0176308b34", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c40", - "_tpl": "59c63b4486f7747afb151c1c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c43", - "_tpl": "5addcce35acfc4001a5fc635", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c45", - "_tpl": "5ba26383d4351e00334c93d9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c46", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "676d24a8798491c5260f4c45", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a8798491c5260f4c47", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "676d24a8798491c5260f4c45", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a8798491c5260f4c48", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "676d24a8798491c5260f4c45", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24a8798491c5260f4c49", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "676d24a8798491c5260f4c45", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a8798491c5260f4c4a", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "676d24a8798491c5260f4c45", - "slotId": "mod_stock" - }, - { - "_id": "676d24a8798491c5260f4c4d", - "_tpl": "5c5db5f22e2216000e5e47e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c50", - "_tpl": "5c0548ae0db834001966a3c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a8798491c5260f4c53", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c56", - "_tpl": "5c5db6302e2216000e5e47f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c59", - "_tpl": "5c05413a0db834001c390617", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c5c", + "_id": "6808babd364a85cccb04ae31", "_tpl": "5cc80f67e4a949035e43bbba", "parentId": "hideout", "slotId": "hideout", @@ -2653,32 +2551,312 @@ } }, { - "_id": "676d24a9798491c5260f4c5f", - "_tpl": "5b7d63b75acfc400170e2f8a", + "_id": "6808babd364a85cccb04ae34", + "_tpl": "5c066ef40db834001966a595", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a9798491c5260f4c62", - "_tpl": "5c05293e0db83400232fff80", + "_id": "6808babd364a85cccb04ae37", + "_tpl": "5c066e3a0db834001b7353f0", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a9798491c5260f4c65", - "_tpl": "5cc80f8fe4a949033b0224a2", + "_id": "6808babd364a85cccb04ae3a", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae3d", + "_tpl": "5c0558060db834001b735271", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae40", + "_tpl": "5c7d55de2e221644f31bff68", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae47", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae48", + "_tpl": "657044e971369562b300ce9b", + "parentId": "6808babd364a85cccb04ae47", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808babd364a85cccb04ae49", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "6808babd364a85cccb04ae47", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808babd364a85cccb04ae4a", + "_tpl": "657045b97e80617cee095bda", + "parentId": "6808babd364a85cccb04ae47", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808babd364a85cccb04ae4b", + "_tpl": "6570460471369562b300ce9f", + "parentId": "6808babd364a85cccb04ae47", + "slotId": "soft_armor_right" + }, + { + "_id": "6808babd364a85cccb04ae4e", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae51", + "_tpl": "5aaa4194e5b5b055d06310a5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae54", + "_tpl": "5c05295e0db834001a66acbb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae57", + "_tpl": "5c0548ae0db834001966a3c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babd364a85cccb04ae5a", + "_tpl": "5c178a942e22164bef5ceca3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04ae5c", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04ae5d", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808babe364a85cccb04ae5e", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_magazine" + }, + { + "_id": "6808babe364a85cccb04ae5f", + "_tpl": "5b7bed205acfc400161d08cc", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_handguard" + }, + { + "_id": "6808babe364a85cccb04ae60", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_barrel" + }, + { + "_id": "6808babe364a85cccb04ae61", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "6808babe364a85cccb04ae60", + "slotId": "mod_muzzle" + }, + { + "_id": "6808babe364a85cccb04ae62", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808babe364a85cccb04ae63", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_reciever" + }, + { + "_id": "6808babe364a85cccb04ae64", + "_tpl": "5b7d645e5acfc400170e2f90", + "parentId": "6808babe364a85cccb04ae5c", + "slotId": "mod_stock" + }, + { + "_id": "6808babe364a85cccb04ae66", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808babe364a85cccb04ae67", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808babe364a85cccb04ae66", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808babe364a85cccb04ae68", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6808babe364a85cccb04ae66", + "slotId": "mod_magazine" + }, + { + "_id": "6808babe364a85cccb04ae69", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6808babe364a85cccb04ae66", + "slotId": "mod_reciever" + }, + { + "_id": "6808babe364a85cccb04ae6a", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6808babe364a85cccb04ae69", + "slotId": "mod_barrel" + }, + { + "_id": "6808babe364a85cccb04ae6b", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6808babe364a85cccb04ae6a", + "slotId": "mod_muzzle" + }, + { + "_id": "6808babe364a85cccb04ae6c", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6808babe364a85cccb04ae6a", + "slotId": "mod_gas_block" + }, + { + "_id": "6808babe364a85cccb04ae6d", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "6808babe364a85cccb04ae69", + "slotId": "mod_handguard" + }, + { + "_id": "6808babe364a85cccb04ae6e", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "6808babe364a85cccb04ae6d", + "slotId": "mod_handguard" + }, + { + "_id": "6808babe364a85cccb04ae6f", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "6808babe364a85cccb04ae69", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808babe364a85cccb04ae70", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808babe364a85cccb04ae66", + "slotId": "mod_stock" + }, + { + "_id": "6808babe364a85cccb04ae71", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6808babe364a85cccb04ae70", + "slotId": "mod_stock_000" + }, + { + "_id": "6808babe364a85cccb04ae72", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6808babe364a85cccb04ae66", + "slotId": "mod_charge" + }, + { + "_id": "6808babe364a85cccb04ae75", + "_tpl": "5cc80f53e4a949000e1ea4f8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2689,7 +2867,7 @@ } }, { - "_id": "676d24a9798491c5260f4c67", + "_id": "6808babe364a85cccb04ae77", "_tpl": "5aafa857e5b5b00018480968", "parentId": "hideout", "slotId": "hideout", @@ -2705,50 +2883,50 @@ } }, { - "_id": "676d24a9798491c5260f4c68", + "_id": "6808babe364a85cccb04ae78", "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "676d24a9798491c5260f4c67", + "parentId": "6808babe364a85cccb04ae77", "slotId": "mod_magazine" }, { - "_id": "676d24a9798491c5260f4c69", + "_id": "6808babe364a85cccb04ae79", "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "676d24a9798491c5260f4c67", + "parentId": "6808babe364a85cccb04ae77", "slotId": "mod_stock" }, { - "_id": "676d24a9798491c5260f4c6a", + "_id": "6808babe364a85cccb04ae7a", "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "676d24a9798491c5260f4c69", + "parentId": "6808babe364a85cccb04ae79", "slotId": "mod_mount" }, { - "_id": "676d24a9798491c5260f4c6b", + "_id": "6808babe364a85cccb04ae7b", "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "676d24a9798491c5260f4c67", + "parentId": "6808babe364a85cccb04ae77", "slotId": "mod_barrel" }, { - "_id": "676d24a9798491c5260f4c6c", + "_id": "6808babe364a85cccb04ae7c", "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "676d24a9798491c5260f4c6b", + "parentId": "6808babe364a85cccb04ae7b", "slotId": "mod_muzzle" }, { - "_id": "676d24a9798491c5260f4c6d", + "_id": "6808babe364a85cccb04ae7d", "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "676d24a9798491c5260f4c6c", + "parentId": "6808babe364a85cccb04ae7c", "slotId": "mod_sight_front" }, { - "_id": "676d24a9798491c5260f4c6e", + "_id": "6808babe364a85cccb04ae7e", "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "676d24a9798491c5260f4c67", + "parentId": "6808babe364a85cccb04ae77", "slotId": "mod_sight_rear" }, { - "_id": "676d24a9798491c5260f4c71", - "_tpl": "5c5db5fc2e2216000f1b2842", + "_id": "6808babe364a85cccb04ae80", + "_tpl": "5b0bbe4e5acfc40dc528a72d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2759,7 +2937,313 @@ } }, { - "_id": "676d24a9798491c5260f4c73", + "_id": "6808babe364a85cccb04ae81", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808babe364a85cccb04ae82", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_magazine" + }, + { + "_id": "6808babe364a85cccb04ae83", + "_tpl": "5b099a9d5acfc47a8607efe7", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_handguard" + }, + { + "_id": "6808babe364a85cccb04ae84", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_barrel" + }, + { + "_id": "6808babe364a85cccb04ae85", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "6808babe364a85cccb04ae84", + "slotId": "mod_muzzle" + }, + { + "_id": "6808babe364a85cccb04ae86", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808babe364a85cccb04ae87", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_reciever" + }, + { + "_id": "6808babe364a85cccb04ae88", + "_tpl": "5b099bf25acfc4001637e683", + "parentId": "6808babe364a85cccb04ae80", + "slotId": "mod_stock" + }, + { + "_id": "6808babe364a85cccb04ae89", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808babe364a85cccb04ae88", + "slotId": "mod_stock_000" + }, + { + "_id": "6808babe364a85cccb04ae8a", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "6808babe364a85cccb04ae89", + "slotId": "mod_stock_000" + }, + { + "_id": "6808babe364a85cccb04ae8b", + "_tpl": "58d2912286f7744e27117493", + "parentId": "6808babe364a85cccb04ae8a", + "slotId": "mod_stock" + }, + { + "_id": "6808babe364a85cccb04ae8e", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 210, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04ae91", + "_tpl": "5c05413a0db834001c390617", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04ae93", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04ae94", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808babe364a85cccb04ae95", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_magazine" + }, + { + "_id": "6808babe364a85cccb04ae96", + "_tpl": "5b7d671b5acfc43d82528ddd", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_handguard" + }, + { + "_id": "6808babe364a85cccb04ae97", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_barrel" + }, + { + "_id": "6808babe364a85cccb04ae98", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "6808babe364a85cccb04ae97", + "slotId": "mod_muzzle" + }, + { + "_id": "6808babe364a85cccb04ae99", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808babe364a85cccb04ae9a", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_reciever" + }, + { + "_id": "6808babe364a85cccb04ae9b", + "_tpl": "5b7d63cf5acfc4001876c8df", + "parentId": "6808babe364a85cccb04ae93", + "slotId": "mod_stock" + }, + { + "_id": "6808babe364a85cccb04ae9e", + "_tpl": "5c05293e0db83400232fff80", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aea1", + "_tpl": "5c0e66e2d174af02a96252f4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aea4", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 300, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aea7", + "_tpl": "5b39f8db5acfc40016387a1b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aeaa", + "_tpl": "5c5db5f22e2216000e5e47e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aead", + "_tpl": "5b0e794b5acfc47a877359b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aeb0", + "_tpl": "5b31163c5acfc400153b71cb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aeb3", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aeb6", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aeb9", + "_tpl": "5b7bef1e5acfc43d82528402", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aebc", + "_tpl": "5b7d63b75acfc400170e2f8a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aebf", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aec2", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babe364a85cccb04aec4", "_tpl": "5bfea6e90db834001b7347f3", "parentId": "hideout", "slotId": "hideout", @@ -2775,32 +3259,32 @@ } }, { - "_id": "676d24a9798491c5260f4c74", + "_id": "6808babe364a85cccb04aec5", "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "676d24a9798491c5260f4c73", + "parentId": "6808babe364a85cccb04aec4", "slotId": "mod_magazine" }, { - "_id": "676d24a9798491c5260f4c75", + "_id": "6808babe364a85cccb04aec6", "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "676d24a9798491c5260f4c73", + "parentId": "6808babe364a85cccb04aec4", "slotId": "mod_stock" }, { - "_id": "676d24a9798491c5260f4c76", + "_id": "6808babe364a85cccb04aec7", "_tpl": "5bfebc320db8340019668d79", - "parentId": "676d24a9798491c5260f4c73", + "parentId": "6808babe364a85cccb04aec4", "slotId": "mod_barrel" }, { - "_id": "676d24a9798491c5260f4c77", + "_id": "6808babe364a85cccb04aec8", "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "676d24a9798491c5260f4c76", + "parentId": "6808babe364a85cccb04aec7", "slotId": "mod_muzzle" }, { - "_id": "676d24a9798491c5260f4c7a", - "_tpl": "5c178a942e22164bef5ceca3", + "_id": "6808babf364a85cccb04aecb", + "_tpl": "5b3116595acfc40019476364", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2811,119 +3295,136 @@ } }, { - "_id": "676d24a9798491c5260f4c7d", - "_tpl": "5c07dd120db834001c39092d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c80", - "_tpl": "5b7bef1e5acfc43d82528402", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c82", - "_tpl": "5447a9cd4bdc2dbd208b4567", + "_id": "6808babf364a85cccb04aece", + "_tpl": "5c5db5fc2e2216000f1b2842", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24a9798491c5260f4c83", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "676d24a9798491c5260f4c82", + "_id": "6808babf364a85cccb04aed1", + "_tpl": "5a351711c4a282000b1521a4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babf364a85cccb04aed4", + "_tpl": "5cc80f79e4a949033c7343b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 300, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babf364a85cccb04aed6", + "_tpl": "5bb2475ed4351e00853264e3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babf364a85cccb04aed7", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "6808babf364a85cccb04aed6", "slotId": "mod_pistol_grip" }, { - "_id": "676d24a9798491c5260f4c84", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "676d24a9798491c5260f4c82", + "_id": "6808babf364a85cccb04aed8", + "_tpl": "5c05413a0db834001c390617", + "parentId": "6808babf364a85cccb04aed6", "slotId": "mod_magazine" }, { - "_id": "676d24a9798491c5260f4c85", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "676d24a9798491c5260f4c82", + "_id": "6808babf364a85cccb04aed9", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "6808babf364a85cccb04aed6", "slotId": "mod_reciever" }, { - "_id": "676d24a9798491c5260f4c86", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "676d24a9798491c5260f4c85", + "_id": "6808babf364a85cccb04aeda", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "parentId": "6808babf364a85cccb04aed9", "slotId": "mod_barrel" }, { - "_id": "676d24a9798491c5260f4c87", + "_id": "6808babf364a85cccb04aedb", "_tpl": "544a38634bdc2d58388b4568", - "parentId": "676d24a9798491c5260f4c86", + "parentId": "6808babf364a85cccb04aeda", "slotId": "mod_muzzle" }, { - "_id": "676d24a9798491c5260f4c88", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "676d24a9798491c5260f4c86", + "_id": "6808babf364a85cccb04aedc", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "6808babf364a85cccb04aeda", "slotId": "mod_gas_block" }, { - "_id": "676d24a9798491c5260f4c89", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "676d24a9798491c5260f4c85", + "_id": "6808babf364a85cccb04aedd", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "6808babf364a85cccb04aed9", "slotId": "mod_handguard" }, { - "_id": "676d24a9798491c5260f4c8a", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "676d24a9798491c5260f4c89", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a9798491c5260f4c8b", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "676d24a9798491c5260f4c85", + "_id": "6808babf364a85cccb04aede", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "6808babf364a85cccb04aed9", "slotId": "mod_sight_rear" }, { - "_id": "676d24a9798491c5260f4c8c", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "676d24a9798491c5260f4c82", + "_id": "6808babf364a85cccb04aedf", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "6808babf364a85cccb04aed6", "slotId": "mod_stock" }, { - "_id": "676d24a9798491c5260f4c8d", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "676d24a9798491c5260f4c8c", + "_id": "6808babf364a85cccb04aee0", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "6808babf364a85cccb04aedf", "slotId": "mod_stock_000" }, { - "_id": "676d24a9798491c5260f4c8e", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "676d24a9798491c5260f4c82", + "_id": "6808babf364a85cccb04aee1", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "6808babf364a85cccb04aed6", "slotId": "mod_charge" }, { - "_id": "676d24a9798491c5260f4c90", + "_id": "6808babf364a85cccb04aee4", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808babf364a85cccb04aee6", "_tpl": "5aafa857e5b5b00018480968", "parentId": "hideout", "slotId": "hideout", @@ -2939,146 +3440,50 @@ } }, { - "_id": "676d24a9798491c5260f4c91", + "_id": "6808babf364a85cccb04aee7", "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "676d24a9798491c5260f4c90", + "parentId": "6808babf364a85cccb04aee6", "slotId": "mod_magazine" }, { - "_id": "676d24a9798491c5260f4c92", + "_id": "6808babf364a85cccb04aee8", "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "676d24a9798491c5260f4c90", + "parentId": "6808babf364a85cccb04aee6", "slotId": "mod_stock" }, { - "_id": "676d24a9798491c5260f4c93", + "_id": "6808babf364a85cccb04aee9", "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "676d24a9798491c5260f4c92", + "parentId": "6808babf364a85cccb04aee8", "slotId": "mod_mount" }, { - "_id": "676d24a9798491c5260f4c94", + "_id": "6808babf364a85cccb04aeea", "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "676d24a9798491c5260f4c90", + "parentId": "6808babf364a85cccb04aee6", "slotId": "mod_barrel" }, { - "_id": "676d24a9798491c5260f4c95", + "_id": "6808babf364a85cccb04aeeb", "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "676d24a9798491c5260f4c94", + "parentId": "6808babf364a85cccb04aeea", "slotId": "mod_muzzle" }, { - "_id": "676d24a9798491c5260f4c96", + "_id": "6808babf364a85cccb04aeec", "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "676d24a9798491c5260f4c95", + "parentId": "6808babf364a85cccb04aeeb", "slotId": "mod_sight_front" }, { - "_id": "676d24a9798491c5260f4c97", + "_id": "6808babf364a85cccb04aeed", "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "676d24a9798491c5260f4c90", + "parentId": "6808babf364a85cccb04aee6", "slotId": "mod_sight_rear" }, { - "_id": "676d24a9798491c5260f4c99", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4c9a", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a9798491c5260f4c9b", - "_tpl": "5b7bef5d5acfc43bca7067a3", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a9798491c5260f4c9c", - "_tpl": "5b7d671b5acfc43d82528ddd", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a9798491c5260f4c9d", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a9798491c5260f4c9e", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "676d24a9798491c5260f4c9d", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a9798491c5260f4c9f", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a9798491c5260f4ca0", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a9798491c5260f4ca1", - "_tpl": "5b7d63cf5acfc4001876c8df", - "parentId": "676d24a9798491c5260f4c99", - "slotId": "mod_stock" - }, - { - "_id": "676d24a9798491c5260f4ca4", - "_tpl": "5cc80f79e4a949033c7343b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4ca7", - "_tpl": "5b0e794b5acfc47a877359b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4caa", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cad", - "_tpl": "5a351711c4a282000b1521a4", + "_id": "6808babf364a85cccb04aef0", + "_tpl": "5c5db6302e2216000e5e47f0", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3089,286 +3494,7 @@ } }, { - "_id": "676d24a9798491c5260f4cb0", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cb3", - "_tpl": "5b31163c5acfc400153b71cb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cb6", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cb9", - "_tpl": "5c066ef40db834001966a595", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cbc", - "_tpl": "5c066e3a0db834001b7353f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cbe", - "_tpl": "5bb2475ed4351e00853264e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cbf", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "676d24a9798491c5260f4cbe", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24a9798491c5260f4cc0", - "_tpl": "5c05413a0db834001c390617", - "parentId": "676d24a9798491c5260f4cbe", - "slotId": "mod_magazine" - }, - { - "_id": "676d24a9798491c5260f4cc1", - "_tpl": "5bb20d53d4351e4502010a69", - "parentId": "676d24a9798491c5260f4cbe", - "slotId": "mod_reciever" - }, - { - "_id": "676d24a9798491c5260f4cc2", - "_tpl": "5bb20d9cd4351e00334c9d8a", - "parentId": "676d24a9798491c5260f4cc1", - "slotId": "mod_barrel" - }, - { - "_id": "676d24a9798491c5260f4cc3", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "676d24a9798491c5260f4cc2", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24a9798491c5260f4cc4", - "_tpl": "5bb20dcad4351e3bac1212da", - "parentId": "676d24a9798491c5260f4cc2", - "slotId": "mod_gas_block" - }, - { - "_id": "676d24a9798491c5260f4cc5", - "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "676d24a9798491c5260f4cc1", - "slotId": "mod_handguard" - }, - { - "_id": "676d24a9798491c5260f4cc6", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "676d24a9798491c5260f4cc1", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24a9798491c5260f4cc7", - "_tpl": "5bb20e58d4351e00320205d7", - "parentId": "676d24a9798491c5260f4cbe", - "slotId": "mod_stock" - }, - { - "_id": "676d24a9798491c5260f4cc8", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "676d24a9798491c5260f4cc7", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24a9798491c5260f4cc9", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "676d24a9798491c5260f4cbe", - "slotId": "mod_charge" - }, - { - "_id": "676d24a9798491c5260f4ccc", - "_tpl": "5cc80f53e4a949000e1ea4f8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4ccf", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24a9798491c5260f4cd2", - "_tpl": "5b3116595acfc40019476364", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cd5", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cd8", - "_tpl": "5c05295e0db834001a66acbb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cda", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cdb", - "_tpl": "5b099b965acfc400186331e6", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24aa798491c5260f4cdc", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_magazine" - }, - { - "_id": "676d24aa798491c5260f4cdd", - "_tpl": "5b099a9d5acfc47a8607efe7", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_handguard" - }, - { - "_id": "676d24aa798491c5260f4cde", - "_tpl": "5b099a765acfc47a8607efe3", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_barrel" - }, - { - "_id": "676d24aa798491c5260f4cdf", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "676d24aa798491c5260f4cde", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24aa798491c5260f4ce0", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24aa798491c5260f4ce1", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_reciever" - }, - { - "_id": "676d24aa798491c5260f4ce2", - "_tpl": "5b099bf25acfc4001637e683", - "parentId": "676d24aa798491c5260f4cda", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4ce3", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "676d24aa798491c5260f4ce2", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24aa798491c5260f4ce4", - "_tpl": "56eabf3bd2720b75698b4569", - "parentId": "676d24aa798491c5260f4ce3", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24aa798491c5260f4ce5", - "_tpl": "58d2912286f7744e27117493", - "parentId": "676d24aa798491c5260f4ce4", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4ce8", + "_id": "6808babf364a85cccb04aef3", "_tpl": "5c0e805e86f774683f3dd637", "parentId": "hideout", "slotId": "hideout", @@ -3380,80 +3506,8 @@ } }, { - "_id": "676d24aa798491c5260f4ceb", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cec", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24aa798491c5260f4ced", + "_id": "6808babf364a85cccb04aef7", "_tpl": "5b099ac65acfc400186331e1", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_magazine" - }, - { - "_id": "676d24aa798491c5260f4cee", - "_tpl": "5b7bed205acfc400161d08cc", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_handguard" - }, - { - "_id": "676d24aa798491c5260f4cef", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_barrel" - }, - { - "_id": "676d24aa798491c5260f4cf0", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "676d24aa798491c5260f4cef", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24aa798491c5260f4cf1", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24aa798491c5260f4cf2", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_reciever" - }, - { - "_id": "676d24aa798491c5260f4cf3", - "_tpl": "5b7d645e5acfc400170e2f90", - "parentId": "676d24aa798491c5260f4ceb", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4cf6", - "_tpl": "5c0e66e2d174af02a96252f4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cf9", - "_tpl": "5aaa4194e5b5b055d06310a5", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3464,103 +3518,7 @@ } }, { - "_id": "676d24aa798491c5260f4cfc", - "_tpl": "5b39f8db5acfc40016387a1b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4cff", - "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d02", - "_tpl": "5c7d55de2e221644f31bff68", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d05", - "_tpl": "5c0558060db834001b735271", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d0c", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d0d", - "_tpl": "657044e971369562b300ce9b", - "parentId": "676d24aa798491c5260f4d0c", - "slotId": "Soft_armor_front" - }, - { - "_id": "676d24aa798491c5260f4d0e", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "676d24aa798491c5260f4d0c", - "slotId": "Soft_armor_back" - }, - { - "_id": "676d24aa798491c5260f4d0f", - "_tpl": "657045b97e80617cee095bda", - "parentId": "676d24aa798491c5260f4d0c", - "slotId": "Soft_armor_left" - }, - { - "_id": "676d24aa798491c5260f4d10", - "_tpl": "6570460471369562b300ce9f", - "parentId": "676d24aa798491c5260f4d0c", - "slotId": "soft_armor_right" - }, - { - "_id": "676d24aa798491c5260f4d13", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d16", + "_id": "6808babf364a85cccb04aefa", "_tpl": "5c7d55f52e221644f31bff6a", "parentId": "hideout", "slotId": "hideout", @@ -3572,144 +3530,8 @@ } }, { - "_id": "676d24aa798491c5260f4d19", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 210, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d1c", - "_tpl": "5c1793902e221602b21d3de2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d1f", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d22", - "_tpl": "5c5db6552e2216001026119d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d24", - "_tpl": "5a367e5dc4a282000e49738f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24aa798491c5260f4d25", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "676d24aa798491c5260f4d24", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24aa798491c5260f4d26", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "676d24aa798491c5260f4d24", - "slotId": "mod_magazine" - }, - { - "_id": "676d24aa798491c5260f4d27", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "676d24aa798491c5260f4d24", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4d28", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "676d24aa798491c5260f4d27", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4d29", - "_tpl": "5a329052c4a28200741e22d3", - "parentId": "676d24aa798491c5260f4d24", - "slotId": "mod_handguard" - }, - { - "_id": "676d24aa798491c5260f4d2a", - "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "676d24aa798491c5260f4d24", - "slotId": "mod_barrel" - }, - { - "_id": "676d24aa798491c5260f4d2b", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "676d24aa798491c5260f4d2a", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24aa798491c5260f4d2c", - "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "676d24aa798491c5260f4d2a", - "slotId": "mod_gas_block" - }, - { - "_id": "676d24aa798491c5260f4d2f", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d32", - "_tpl": "5df8e085bb49d91fb446d6a8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d35", - "_tpl": "59fafc9386f774067d462453", + "_id": "6808babf364a85cccb04aefd", + "_tpl": "5addcce35acfc4001a5fc635", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3720,8 +3542,8 @@ } }, { - "_id": "676d24aa798491c5260f4d38", - "_tpl": "5c6175362e221600133e3b94", + "_id": "6808babf364a85cccb04aeff", + "_tpl": "5ba26383d4351e00334c93d9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3732,1094 +3554,37 @@ } }, { - "_id": "676d24aa798491c5260f4d3b", - "_tpl": "5c7e5f112e221600106f4ede", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d3e", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d41", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d43", - "_tpl": "5cc82d76e24e8d00134b4b83", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24aa798491c5260f4d44", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "676d24aa798491c5260f4d43", + "_id": "6808babf364a85cccb04af00", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "6808babf364a85cccb04aeff", "slotId": "mod_magazine" }, { - "_id": "676d24aa798491c5260f4d45", - "_tpl": "5cc700b9e4a949000f0f0f25", - "parentId": "676d24aa798491c5260f4d43", - "slotId": "mod_stock" - }, - { - "_id": "676d24aa798491c5260f4d46", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "676d24aa798491c5260f4d45", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24aa798491c5260f4d47", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "676d24aa798491c5260f4d43", - "slotId": "mod_reciever" - }, - { - "_id": "676d24aa798491c5260f4d48", - "_tpl": "5cebec38d7f00c00110a652a", - "parentId": "676d24aa798491c5260f4d47", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24aa798491c5260f4d49", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "676d24aa798491c5260f4d47", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24aa798491c5260f4d4a", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "676d24aa798491c5260f4d47", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24aa798491c5260f4d4b", - "_tpl": "5cc701aae4a949000e1ea45c", - "parentId": "676d24aa798491c5260f4d43", - "slotId": "mod_barrel" - }, - { - "_id": "676d24aa798491c5260f4d4c", - "_tpl": "5cc82796e24e8d000f5859a8", - "parentId": "676d24aa798491c5260f4d4b", + "_id": "6808babf364a85cccb04af01", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "6808babf364a85cccb04aeff", "slotId": "mod_muzzle" }, { - "_id": "676d24aa798491c5260f4d4d", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "676d24aa798491c5260f4d43", - "slotId": "mod_charge" - }, - { - "_id": "676d24ab798491c5260f4d50", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d53", - "_tpl": "5d5d8ca986f7742798716522", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d59", - "_tpl": "5e00c1ad86f774747333222c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d5a", - "_tpl": "6551fec55d0cf82e51014288", - "parentId": "676d24ab798491c5260f4d59", - "slotId": "helmet_top" - }, - { - "_id": "676d24ab798491c5260f4d5b", - "_tpl": "655200ba0ef76cf7be09d528", - "parentId": "676d24ab798491c5260f4d59", - "slotId": "helmet_back" - }, - { - "_id": "676d24ab798491c5260f4d5e", - "_tpl": "5de8eaadbbaf010b10528a6d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d61", - "_tpl": "5c7d560b2e22160bc12c6139", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d64", - "_tpl": "5e9dcf5986f7746c417435b3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d67", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d6a", - "_tpl": "5df8f535bb49d91fb446d6b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d6d", - "_tpl": "5de8ea8ffd6b4e6e2276dc35", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d70", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d73", - "_tpl": "5c87a07c2e2216001219d4a2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d76", - "_tpl": "5d1340bdd7ad1a0e8d245aab", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d79", - "_tpl": "5d1340b3d7ad1a0b52682ed7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d7c", - "_tpl": "5d133067d7ad1a33013f95b4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d7f", - "_tpl": "5d123102d7ad1a004e475fe5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d82", - "_tpl": "5d10b49bd7ad1a1a560708b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d85", - "_tpl": "5cf78496d7f00c065703d6ca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d88", - "_tpl": "5cdd7685d7f00c000f260ed2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d8a", - "_tpl": "5cc82d76e24e8d00134b4b83", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d8b", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "676d24ab798491c5260f4d8a", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ab798491c5260f4d8c", - "_tpl": "5cc700b9e4a949000f0f0f25", - "parentId": "676d24ab798491c5260f4d8a", - "slotId": "mod_stock" - }, - { - "_id": "676d24ab798491c5260f4d8d", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "676d24ab798491c5260f4d8c", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24ab798491c5260f4d8e", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "676d24ab798491c5260f4d8a", - "slotId": "mod_reciever" - }, - { - "_id": "676d24ab798491c5260f4d8f", - "_tpl": "5cc7015ae4a949001152b4c6", - "parentId": "676d24ab798491c5260f4d8e", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24ab798491c5260f4d90", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "676d24ab798491c5260f4d8e", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24ab798491c5260f4d91", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "676d24ab798491c5260f4d8e", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24ab798491c5260f4d92", - "_tpl": "5cc701d7e4a94900100ac4e7", - "parentId": "676d24ab798491c5260f4d8a", - "slotId": "mod_barrel" - }, - { - "_id": "676d24ab798491c5260f4d93", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "676d24ab798491c5260f4d8a", - "slotId": "mod_charge" - }, - { - "_id": "676d24ab798491c5260f4d96", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d99", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d9c", - "_tpl": "5c6d7b3d2e221600114c9b7d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4d9f", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4da2", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4da5", - "_tpl": "5cde77a9d7f00c000f261009", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4da8", - "_tpl": "5d44069ca4b9361ebd26fc37", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ab798491c5260f4daa", - "_tpl": "5d67abc1a4b93614ec50137f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24ab798491c5260f4dab", - "_tpl": "5d3eb59ea4b9361c284bb4b2", - "parentId": "676d24ab798491c5260f4daa", - "slotId": "mod_barrel" - }, - { - "_id": "676d24ab798491c5260f4dac", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "676d24ab798491c5260f4dab", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24ab798491c5260f4dad", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "676d24ab798491c5260f4daa", - "slotId": "mod_reciever" - }, - { - "_id": "676d24ab798491c5260f4dae", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "676d24ab798491c5260f4dad", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24ab798491c5260f4daf", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "676d24ab798491c5260f4dad", + "_id": "6808babf364a85cccb04af02", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "6808babf364a85cccb04aeff", "slotId": "mod_sight_front" }, { - "_id": "676d24ab798491c5260f4db0", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "676d24ab798491c5260f4daa", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ab798491c5260f4db3", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4db8", - "_tpl": "5d5e7d28a4b936645d161203", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4db9", - "_tpl": "657f8a8d7db258e5600fe33d", - "parentId": "676d24ac798491c5260f4db8", - "slotId": "Helmet_top" - }, - { - "_id": "676d24ac798491c5260f4dba", - "_tpl": "657f8b05f4c82973640b2348", - "parentId": "676d24ac798491c5260f4db8", - "slotId": "Helmet_back" - }, - { - "_id": "676d24ac798491c5260f4dbd", - "_tpl": "5c7954d52e221600106f4cc7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dc0", - "_tpl": "5d124c1ad7ad1a12227c53a7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dc3", - "_tpl": "5d124c01d7ad1a115c7d59fb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dc6", - "_tpl": "5d123b70d7ad1a0ee35e0754", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dc9", - "_tpl": "5cdd7693d7f00c0010373aa5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dcc", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dcf", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dd2", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dd5", - "_tpl": "5c5db6f82e2216003a0fe914", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dd8", - "_tpl": "5c9a25172e2216000f20314e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4ddb", - "_tpl": "5d123a3cd7ad1a004e476058", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dde", - "_tpl": "5cf78720d7f00c06595bc93e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4de1", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4de4", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4de7", - "_tpl": "5dfa3d2b0dee1b22f862eade", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4dea", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4ded", - "_tpl": "5c5970672e221602b21d7855", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4df0", - "_tpl": "5e00cdd986f7747473332240", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4df3", - "_tpl": "5dfa397fb11454561e39246c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4df8", - "_tpl": "5e01ef6886f77445f643baa4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4df9", - "_tpl": "6551fec55d0cf82e51014288", - "parentId": "676d24ac798491c5260f4df8", - "slotId": "helmet_top" - }, - { - "_id": "676d24ac798491c5260f4dfa", - "_tpl": "655200ba0ef76cf7be09d528", - "parentId": "676d24ac798491c5260f4df8", - "slotId": "helmet_back" - }, - { - "_id": "676d24ac798491c5260f4dfd", - "_tpl": "5c5db6ee2e221600113fba54", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e00", - "_tpl": "5c6bf4aa2e2216001219b0ae", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e03", - "_tpl": "5c6d10fa2e221600106f3f23", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e06", - "_tpl": "5c7955c22e221644f31bfd5e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e09", - "_tpl": "5c6d42cb2e2216000e69d7d1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e0c", - "_tpl": "5c9a26332e2216001219ea70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e0f", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ac798491c5260f4e12", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e15", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e18", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e1b", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e1e", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e20", - "_tpl": "5d2f0d8048f0356c925bc3b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e21", - "_tpl": "5d2f213448f0355009199284", - "parentId": "676d24ad798491c5260f4e20", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ad798491c5260f4e22", - "_tpl": "5d2f261548f03576f500e7b7", - "parentId": "676d24ad798491c5260f4e20", - "slotId": "mod_reciever" - }, - { - "_id": "676d24ad798491c5260f4e23", - "_tpl": "5d2f259b48f0355a844acd74", - "parentId": "676d24ad798491c5260f4e22", - "slotId": "mod_handguard" - }, - { - "_id": "676d24ad798491c5260f4e24", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "676d24ad798491c5260f4e22", + "_id": "6808babf364a85cccb04af03", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "6808babf364a85cccb04aeff", "slotId": "mod_sight_rear" }, { - "_id": "676d24ad798491c5260f4e25", - "_tpl": "5d2f25bc48f03502573e5d85", - "parentId": "676d24ad798491c5260f4e22", + "_id": "6808babf364a85cccb04af04", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "6808babf364a85cccb04aeff", "slotId": "mod_stock" }, { - "_id": "676d24ad798491c5260f4e26", - "_tpl": "5d2f2d5748f03572ec0c0139", - "parentId": "676d24ad798491c5260f4e20", - "slotId": "mod_charge" - }, - { - "_id": "676d24ad798491c5260f4e29", - "_tpl": "5e01f31d86f77465cf261343", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e2c", - "_tpl": "5c0558060db834001b735271", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e2f", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e32", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e35", - "_tpl": "5c6165902e22160010261b28", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e38", + "_id": "6808babf364a85cccb04af07", "_tpl": "5d19cd96d7ad1a4a992c9f52", "parentId": "hideout", "slotId": "hideout", @@ -4831,104 +3596,8 @@ } }, { - "_id": "676d24ad798491c5260f4e3b", - "_tpl": "5d2da1e948f035477b1ce2ba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e3e", - "_tpl": "5d440625a4b9361eec4ae6c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e41", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e44", - "_tpl": "5bb20d53d4351e4502010a69", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e47", - "_tpl": "5e00cfa786f77469dc6e5685", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e4a", - "_tpl": "5cc700b9e4a949000f0f0f25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e4d", - "_tpl": "5d2369418abbc306c62e0c80", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e50", - "_tpl": "5df917564a9f347bc92edca3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e53", - "_tpl": "5de8e8dafd6b4e6e2276dc32", + "_id": "6808babf364a85cccb04af0a", + "_tpl": "5df8f541c41b2312ea3335e3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4939,8 +3608,8 @@ } }, { - "_id": "676d24ad798491c5260f4e58", - "_tpl": "5c17a7ed2e2216152142459c", + "_id": "6808babf364a85cccb04af0d", + "_tpl": "5d3eb59ea4b9361c284bb4b2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4951,44 +3620,8 @@ } }, { - "_id": "676d24ad798491c5260f4e59", - "_tpl": "657f9897f4c82973640b235e", - "parentId": "676d24ad798491c5260f4e58", - "slotId": "Helmet_top" - }, - { - "_id": "676d24ad798491c5260f4e5a", - "_tpl": "657f98fbada5fadd1f07a585", - "parentId": "676d24ad798491c5260f4e58", - "slotId": "Helmet_back" - }, - { - "_id": "676d24ad798491c5260f4e5d", - "_tpl": "5c052a900db834001a66acbd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e60", - "_tpl": "5c878e9d2e2216000f201903", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ad798491c5260f4e63", - "_tpl": "5cf6935bd7f00c06585fb791", + "_id": "6808babf364a85cccb04af10", + "_tpl": "5c5db6ee2e221600113fba54", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4999,127 +3632,7 @@ } }, { - "_id": "676d24ae798491c5260f4e66", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e69", - "_tpl": "5e9dcf5986f7746c417435b3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e6d", - "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e70", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e73", - "_tpl": "5e01f37686f774773c6f6c15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e76", - "_tpl": "5c6d11072e2216000e69d2e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e79", - "_tpl": "5d122e7bd7ad1a07102d6d7f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e7c", - "_tpl": "5cf508bfd7f00c056e24104e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e7f", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e82", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e84", + "_id": "6808babf364a85cccb04af12", "_tpl": "5cadc190ae921500103bb3b6", "parentId": "hideout", "slotId": "hideout", @@ -5134,85 +3647,49 @@ } }, { - "_id": "676d24ae798491c5260f4e85", + "_id": "6808babf364a85cccb04af13", "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "676d24ae798491c5260f4e84", + "parentId": "6808babf364a85cccb04af12", "slotId": "mod_barrel" }, { - "_id": "676d24ae798491c5260f4e86", + "_id": "6808babf364a85cccb04af14", "_tpl": "5cadc390ae921500126a77f1", - "parentId": "676d24ae798491c5260f4e85", + "parentId": "6808babf364a85cccb04af13", "slotId": "mod_muzzle" }, { - "_id": "676d24ae798491c5260f4e87", + "_id": "6808babf364a85cccb04af15", "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "676d24ae798491c5260f4e84", + "parentId": "6808babf364a85cccb04af12", "slotId": "mod_pistol_grip" }, { - "_id": "676d24ae798491c5260f4e88", + "_id": "6808babf364a85cccb04af16", "_tpl": "5cadc55cae921500103bb3be", - "parentId": "676d24ae798491c5260f4e84", + "parentId": "6808babf364a85cccb04af12", "slotId": "mod_reciever" }, { - "_id": "676d24ae798491c5260f4e89", + "_id": "6808babf364a85cccb04af17", "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "676d24ae798491c5260f4e88", + "parentId": "6808babf364a85cccb04af16", "slotId": "mod_sight_rear" }, { - "_id": "676d24ae798491c5260f4e8a", + "_id": "6808babf364a85cccb04af18", "_tpl": "5cadd919ae921500126a77f3", - "parentId": "676d24ae798491c5260f4e88", + "parentId": "6808babf364a85cccb04af16", "slotId": "mod_sight_front" }, { - "_id": "676d24ae798491c5260f4e8b", + "_id": "6808babf364a85cccb04af19", "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "676d24ae798491c5260f4e84", + "parentId": "6808babf364a85cccb04af12", "slotId": "mod_magazine" }, { - "_id": "676d24ae798491c5260f4e8e", - "_tpl": "5d440b9fa4b93601354d480c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e91", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e94", - "_tpl": "5d3eb59ea4b9361c284bb4b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e97", + "_id": "6808babf364a85cccb04af1c", "_tpl": "5dfa3d7ac41b2312ea33362a", "parentId": "hideout", "slotId": "hideout", @@ -5224,173 +3701,8 @@ } }, { - "_id": "676d24ae798491c5260f4e99", - "_tpl": "5df8ce05b11454561e39243b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4e9a", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "676d24ae798491c5260f4e99", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24ae798491c5260f4e9b", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "676d24ae798491c5260f4e99", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ae798491c5260f4e9c", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "676d24ae798491c5260f4e99", - "slotId": "mod_stock" - }, - { - "_id": "676d24ae798491c5260f4e9d", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "676d24ae798491c5260f4e9c", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24ae798491c5260f4e9e", - "_tpl": "5df8e4080b92095fd441e594", - "parentId": "676d24ae798491c5260f4e99", - "slotId": "mod_reciever" - }, - { - "_id": "676d24ae798491c5260f4e9f", - "_tpl": "5df917564a9f347bc92edca3", - "parentId": "676d24ae798491c5260f4e9e", - "slotId": "mod_barrel" - }, - { - "_id": "676d24ae798491c5260f4ea0", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "676d24ae798491c5260f4e9f", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24ae798491c5260f4ea1", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "676d24ae798491c5260f4e9f", - "slotId": "mod_gas_block" - }, - { - "_id": "676d24ae798491c5260f4ea2", - "_tpl": "5df916dfbb49d91fb446d6b9", - "parentId": "676d24ae798491c5260f4e9e", - "slotId": "mod_handguard" - }, - { - "_id": "676d24ae798491c5260f4ea3", - "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "676d24ae798491c5260f4ea2", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24ae798491c5260f4ea4", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "676d24ae798491c5260f4e9e", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24ae798491c5260f4ea5", - "_tpl": "5df8e053bb49d91fb446d6a6", - "parentId": "676d24ae798491c5260f4e99", - "slotId": "mod_charge" - }, - { - "_id": "676d24ae798491c5260f4ea8", - "_tpl": "5b7d37845acfc400170e2f87", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4eaa", - "_tpl": "5bd70322209c4d00d7167b8f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4eab", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "676d24ae798491c5260f4eaa", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ae798491c5260f4eac", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "676d24ae798491c5260f4eaa", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24ae798491c5260f4ead", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "676d24ae798491c5260f4eaa", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24ae798491c5260f4eae", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "676d24ae798491c5260f4eaa", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24ae798491c5260f4eaf", - "_tpl": "5bd704e7209c4d00d7167c31", - "parentId": "676d24ae798491c5260f4eaa", - "slotId": "mod_stock" - }, - { - "_id": "676d24ae798491c5260f4eb2", - "_tpl": "5c5db6b32e221600102611a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4eb5", - "_tpl": "5c6d450c2e221600114c997d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4eb8", - "_tpl": "5c87ca002e221600114cb150", + "_id": "6808bac0364a85cccb04af1f", + "_tpl": "5c7955c22e221644f31bfd5e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5401,157 +3713,7 @@ } }, { - "_id": "676d24ae798491c5260f4eba", - "_tpl": "5c488a752e221602b412af63", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4ebb", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "676d24ae798491c5260f4eba", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24ae798491c5260f4ebc", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "676d24ae798491c5260f4eba", - "slotId": "mod_magazine" - }, - { - "_id": "676d24ae798491c5260f4ebd", - "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "676d24ae798491c5260f4eba", - "slotId": "mod_handguard" - }, - { - "_id": "676d24ae798491c5260f4ebe", - "_tpl": "5c48a2852e221602b21d5923", - "parentId": "676d24ae798491c5260f4eba", - "slotId": "mod_barrel" - }, - { - "_id": "676d24ae798491c5260f4ebf", - "_tpl": "5c48a2a42e221602b66d1e07", - "parentId": "676d24ae798491c5260f4ebe", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24ae798491c5260f4ec2", - "_tpl": "5c920e902e221644f31c3c99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4ec5", - "_tpl": "5d124c0ed7ad1a10d168dd9b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ae798491c5260f4ec8", - "_tpl": "5d123b7dd7ad1a004f01b262", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ecb", - "_tpl": "5d443f8fa4b93678dd4a01aa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ecd", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ece", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "676d24af798491c5260f4ecd", - "slotId": "mod_barrel" - }, - { - "_id": "676d24af798491c5260f4ecf", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "676d24af798491c5260f4ecd", - "slotId": "mod_reciever" - }, - { - "_id": "676d24af798491c5260f4ed0", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "676d24af798491c5260f4ecf", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24af798491c5260f4ed1", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "676d24af798491c5260f4ecf", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24af798491c5260f4ed2", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "676d24af798491c5260f4ecd", - "slotId": "mod_magazine" - }, - { - "_id": "676d24af798491c5260f4ed5", - "_tpl": "5d2f213448f0355009199284", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ed7", + "_id": "6808bac0364a85cccb04af21", "_tpl": "5e00903ae9dc277128008b87", "parentId": "hideout", "slotId": "hideout", @@ -5569,43 +3731,562 @@ } }, { - "_id": "676d24af798491c5260f4ed8", + "_id": "6808bac0364a85cccb04af22", "_tpl": "5de8eac42a78646d96665d91", - "parentId": "676d24af798491c5260f4ed7", + "parentId": "6808bac0364a85cccb04af21", "slotId": "mod_magazine" }, { - "_id": "676d24af798491c5260f4ed9", + "_id": "6808bac0364a85cccb04af23", "_tpl": "5de910da8b6c4240ba2651b5", - "parentId": "676d24af798491c5260f4ed7", + "parentId": "6808bac0364a85cccb04af21", "slotId": "mod_stock" }, { - "_id": "676d24af798491c5260f4eda", + "_id": "6808bac0364a85cccb04af24", "_tpl": "5e0090f7e9dc277128008b93", - "parentId": "676d24af798491c5260f4ed7", + "parentId": "6808bac0364a85cccb04af21", "slotId": "mod_reciever" }, { - "_id": "676d24af798491c5260f4edb", + "_id": "6808bac0364a85cccb04af25", "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "676d24af798491c5260f4eda", + "parentId": "6808bac0364a85cccb04af24", "slotId": "mod_sight_rear" }, { - "_id": "676d24af798491c5260f4edc", + "_id": "6808bac0364a85cccb04af26", "_tpl": "5de922d4b11454561e39239f", - "parentId": "676d24af798491c5260f4ed7", + "parentId": "6808bac0364a85cccb04af21", "slotId": "mod_charge" }, { - "_id": "676d24af798491c5260f4edd", + "_id": "6808bac0364a85cccb04af27", "_tpl": "5de8fbf2b74cd90030650c79", - "parentId": "676d24af798491c5260f4ed7", + "parentId": "6808bac0364a85cccb04af21", "slotId": "mod_mount_000" }, { - "_id": "676d24af798491c5260f4ee0", + "_id": "6808bac0364a85cccb04af29", + "_tpl": "5cc82d76e24e8d00134b4b83", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af2a", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "6808bac0364a85cccb04af29", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac0364a85cccb04af2b", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "6808bac0364a85cccb04af29", + "slotId": "mod_stock" + }, + { + "_id": "6808bac0364a85cccb04af2c", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "6808bac0364a85cccb04af2b", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bac0364a85cccb04af2d", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "6808bac0364a85cccb04af29", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac0364a85cccb04af2e", + "_tpl": "5cc7015ae4a949001152b4c6", + "parentId": "6808bac0364a85cccb04af2d", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac0364a85cccb04af2f", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "6808bac0364a85cccb04af2d", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac0364a85cccb04af30", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "6808bac0364a85cccb04af2d", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bac0364a85cccb04af31", + "_tpl": "5cc701d7e4a94900100ac4e7", + "parentId": "6808bac0364a85cccb04af29", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac0364a85cccb04af32", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "6808bac0364a85cccb04af29", + "slotId": "mod_charge" + }, + { + "_id": "6808bac0364a85cccb04af35", + "_tpl": "5df8f535bb49d91fb446d6b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af38", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af3b", + "_tpl": "5d123102d7ad1a004e475fe5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af3e", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af41", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 180, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af44", + "_tpl": "5c6d450c2e221600114c997d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af47", + "_tpl": "5c6175362e221600133e3b94", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af4a", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af4d", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af50", + "_tpl": "5c9a25172e2216000f20314e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af52", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af53", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6808bac0364a85cccb04af52", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac0364a85cccb04af54", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "6808bac0364a85cccb04af52", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac0364a85cccb04af55", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "6808bac0364a85cccb04af54", + "slotId": "mod_handguard" + }, + { + "_id": "6808bac0364a85cccb04af56", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6808bac0364a85cccb04af54", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac0364a85cccb04af57", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "6808bac0364a85cccb04af54", + "slotId": "mod_stock" + }, + { + "_id": "6808bac0364a85cccb04af58", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "6808bac0364a85cccb04af52", + "slotId": "mod_charge" + }, + { + "_id": "6808bac0364a85cccb04af5b", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 180, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af60", + "_tpl": "5c17a7ed2e2216152142459c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af61", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "6808bac0364a85cccb04af60", + "slotId": "Helmet_top" + }, + { + "_id": "6808bac0364a85cccb04af62", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "6808bac0364a85cccb04af60", + "slotId": "Helmet_back" + }, + { + "_id": "6808bac0364a85cccb04af65", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af68", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af6b", + "_tpl": "5e9dcf5986f7746c417435b3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af6e", + "_tpl": "5c5db6b32e221600102611a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af71", + "_tpl": "5c920e902e221644f31c3c99", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af74", + "_tpl": "5cf6935bd7f00c06585fb791", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af77", + "_tpl": "5c5db6f82e2216003a0fe914", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac0364a85cccb04af7a", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af7d", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af80", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af83", + "_tpl": "59fafc9386f774067d462453", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af86", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af89", + "_tpl": "5d123a3cd7ad1a004e476058", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af8b", + "_tpl": "5df8ce05b11454561e39243b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04af8c", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808bac1364a85cccb04af8b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac1364a85cccb04af8d", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "6808bac1364a85cccb04af8b", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac1364a85cccb04af8e", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808bac1364a85cccb04af8b", + "slotId": "mod_stock" + }, + { + "_id": "6808bac1364a85cccb04af8f", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "6808bac1364a85cccb04af8e", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bac1364a85cccb04af90", + "_tpl": "5df8e4080b92095fd441e594", + "parentId": "6808bac1364a85cccb04af8b", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac1364a85cccb04af91", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "6808bac1364a85cccb04af90", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac1364a85cccb04af92", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "6808bac1364a85cccb04af91", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac1364a85cccb04af93", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "6808bac1364a85cccb04af91", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bac1364a85cccb04af94", + "_tpl": "5df916dfbb49d91fb446d6b9", + "parentId": "6808bac1364a85cccb04af90", + "slotId": "mod_handguard" + }, + { + "_id": "6808bac1364a85cccb04af95", + "_tpl": "5dfa3d950dee1b22f862eae0", + "parentId": "6808bac1364a85cccb04af94", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac1364a85cccb04af96", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "6808bac1364a85cccb04af90", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac1364a85cccb04af97", + "_tpl": "5df8e053bb49d91fb446d6a6", + "parentId": "6808bac1364a85cccb04af8b", + "slotId": "mod_charge" + }, + { + "_id": "6808bac1364a85cccb04af9a", "_tpl": "5dfa3d950dee1b22f862eae0", "parentId": "hideout", "slotId": "hideout", @@ -5617,8 +4298,8 @@ } }, { - "_id": "676d24af798491c5260f4ee3", - "_tpl": "5dfa3d45dfc58d14537c20b0", + "_id": "6808bac1364a85cccb04af9d", + "_tpl": "5c17804b2e2216152006c02f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5629,8 +4310,32 @@ } }, { - "_id": "676d24af798491c5260f4ee5", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "_id": "6808bac1364a85cccb04afa0", + "_tpl": "5d123b7dd7ad1a004f01b262", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afa3", + "_tpl": "5de8e8dafd6b4e6e2276dc32", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afa5", + "_tpl": "5c488a752e221602b412af63", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5644,38 +4349,38 @@ } }, { - "_id": "676d24af798491c5260f4ee6", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "676d24af798491c5260f4ee5", + "_id": "6808bac1364a85cccb04afa6", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "6808bac1364a85cccb04afa5", "slotId": "mod_pistol_grip" }, { - "_id": "676d24af798491c5260f4ee7", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "676d24af798491c5260f4ee5", + "_id": "6808bac1364a85cccb04afa7", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "6808bac1364a85cccb04afa5", "slotId": "mod_magazine" }, { - "_id": "676d24af798491c5260f4ee8", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "676d24af798491c5260f4ee5", + "_id": "6808bac1364a85cccb04afa8", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "6808bac1364a85cccb04afa5", "slotId": "mod_handguard" }, { - "_id": "676d24af798491c5260f4ee9", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "676d24af798491c5260f4ee5", + "_id": "6808bac1364a85cccb04afa9", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "6808bac1364a85cccb04afa5", "slotId": "mod_barrel" }, { - "_id": "676d24af798491c5260f4eea", - "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "676d24af798491c5260f4ee9", + "_id": "6808bac1364a85cccb04afaa", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "6808bac1364a85cccb04afa9", "slotId": "mod_muzzle" }, { - "_id": "676d24af798491c5260f4eed", - "_tpl": "616554fe50224f204c1da2aa", + "_id": "6808bac1364a85cccb04afad", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5686,218 +4391,8 @@ } }, { - "_id": "676d24af798491c5260f4ef0", - "_tpl": "615d8d878004cc50514c3233", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ef3", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ef6", - "_tpl": "5fce0cf655375d18a253eff0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4ef9", - "_tpl": "5fbe760793164a5b6278efc8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4efc", - "_tpl": "630f2872911356c17d06abc5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4eff", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f02", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f05", - "_tpl": "615d8df08004cc50514c3236", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f0a", - "_tpl": "5f60b34a41e30a4ab12a6947", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f0b", - "_tpl": "657bbad7a1c61ee0c3036323", - "parentId": "676d24af798491c5260f4f0a", - "slotId": "Helmet_top" - }, - { - "_id": "676d24af798491c5260f4f0c", - "_tpl": "657bbb31b30eca9763051183", - "parentId": "676d24af798491c5260f4f0a", - "slotId": "Helmet_back" - }, - { - "_id": "676d24af798491c5260f4f0f", - "_tpl": "622b3d5cf9cfc87d675d2de9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f11", - "_tpl": "5fc3e272f8b6a877a729eac5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f12", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_magazine" - }, - { - "_id": "676d24af798491c5260f4f13", - "_tpl": "5fc3e4ee7283c4046c5814af", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_stock" - }, - { - "_id": "676d24af798491c5260f4f14", - "_tpl": "5fc3e4a27283c4046c5814ab", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_barrel" - }, - { - "_id": "676d24af798491c5260f4f15", - "_tpl": "5fc53954f8b6a877a729eaeb", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24af798491c5260f4f16", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24af798491c5260f4f17", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "676d24af798491c5260f4f11", - "slotId": "mod_mount_002" - }, - { - "_id": "676d24af798491c5260f4f1a", - "_tpl": "61963a852d2c397d660036ad", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f1d", - "_tpl": "619621a4de3cdf1d2614a7a7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f1f", - "_tpl": "6193a720f8ee7e52e42109ed", + "_id": "6808bac1364a85cccb04afaf", + "_tpl": "5d3eb3b0a4b93615055e84d2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5906,84 +4401,42 @@ }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24af798491c5260f4f20", - "_tpl": "6194efe07c6c7b169525f11b", - "parentId": "676d24af798491c5260f4f1f", + "_id": "6808bac1364a85cccb04afb0", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "6808bac1364a85cccb04afaf", "slotId": "mod_barrel" }, { - "_id": "676d24af798491c5260f4f21", - "_tpl": "6194f1f918a3974e5e7421e4", - "parentId": "676d24af798491c5260f4f20", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24af798491c5260f4f22", - "_tpl": "6194f41f9fb0c665d5490e75", - "parentId": "676d24af798491c5260f4f1f", + "_id": "6808bac1364a85cccb04afb1", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "6808bac1364a85cccb04afaf", "slotId": "mod_reciever" }, { - "_id": "676d24af798491c5260f4f23", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "676d24af798491c5260f4f22", + "_id": "6808bac1364a85cccb04afb2", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "6808bac1364a85cccb04afb1", "slotId": "mod_sight_rear" }, { - "_id": "676d24af798491c5260f4f24", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "676d24af798491c5260f4f22", + "_id": "6808bac1364a85cccb04afb3", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "6808bac1364a85cccb04afb1", "slotId": "mod_sight_front" }, { - "_id": "676d24af798491c5260f4f25", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "676d24af798491c5260f4f1f", + "_id": "6808bac1364a85cccb04afb4", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "6808bac1364a85cccb04afaf", "slotId": "mod_magazine" }, { - "_id": "676d24af798491c5260f4f26", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "676d24af798491c5260f4f1f", - "slotId": "mod_trigger" - }, - { - "_id": "676d24af798491c5260f4f27", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "676d24af798491c5260f4f1f", - "slotId": "mod_hammer" - }, - { - "_id": "676d24af798491c5260f4f28", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "676d24af798491c5260f4f1f", - "slotId": "mod_catch" - }, - { - "_id": "676d24af798491c5260f4f29", - "_tpl": "6196255558ef8c428c287d1c", - "parentId": "676d24af798491c5260f4f1f", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24af798491c5260f4f2c", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f2f", + "_id": "6808bac1364a85cccb04afb7", "_tpl": "5c0558060db834001b735271", "parentId": "hideout", "slotId": "hideout", @@ -5995,32 +4448,8 @@ } }, { - "_id": "676d24af798491c5260f4f32", - "_tpl": "5f6340d3ca442212f4047eb2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f35", - "_tpl": "6333f05d1bc0e6217a0e9d34", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24af798491c5260f4f38", - "_tpl": "619624b26db0f2477964e6b0", + "_id": "6808bac1364a85cccb04afba", + "_tpl": "5dfa3cd1b33c0951220c079b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6031,8 +4460,72 @@ } }, { - "_id": "676d24b0798491c5260f4f3a", - "_tpl": "5e81c3cbac2bb513793cdc75", + "_id": "6808bac1364a85cccb04afbd", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afbf", + "_tpl": "5d67abc1a4b93614ec50137f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bac1364a85cccb04afc0", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "parentId": "6808bac1364a85cccb04afbf", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac1364a85cccb04afc1", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "6808bac1364a85cccb04afc0", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac1364a85cccb04afc2", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "6808bac1364a85cccb04afbf", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac1364a85cccb04afc3", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "6808bac1364a85cccb04afc2", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac1364a85cccb04afc4", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "6808bac1364a85cccb04afc2", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac1364a85cccb04afc5", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "6808bac1364a85cccb04afbf", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac1364a85cccb04afc7", + "_tpl": "5cc82d76e24e8d00134b4b83", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6046,62 +4539,128 @@ } }, { - "_id": "676d24b0798491c5260f4f3b", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b0798491c5260f4f3c", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b0798491c5260f4f3d", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b0798491c5260f4f3e", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "676d24b0798491c5260f4f3d", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b0798491c5260f4f3f", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "676d24b0798491c5260f4f3d", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b0798491c5260f4f40", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "676d24b0798491c5260f4f3a", + "_id": "6808bac1364a85cccb04afc8", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "6808bac1364a85cccb04afc7", "slotId": "mod_magazine" }, { - "_id": "676d24b0798491c5260f4f41", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_trigger" + "_id": "6808bac1364a85cccb04afc9", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "6808bac1364a85cccb04afc7", + "slotId": "mod_stock" }, { - "_id": "676d24b0798491c5260f4f42", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_hammer" + "_id": "6808bac1364a85cccb04afca", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "6808bac1364a85cccb04afc9", + "slotId": "mod_stock_000" }, { - "_id": "676d24b0798491c5260f4f43", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "676d24b0798491c5260f4f3a", - "slotId": "mod_catch" + "_id": "6808bac1364a85cccb04afcb", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "6808bac1364a85cccb04afc7", + "slotId": "mod_reciever" }, { - "_id": "676d24b0798491c5260f4f46", - "_tpl": "5fbe7618d6fa9c00c571bb6c", + "_id": "6808bac1364a85cccb04afcc", + "_tpl": "5cebec38d7f00c00110a652a", + "parentId": "6808bac1364a85cccb04afcb", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac1364a85cccb04afcd", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "6808bac1364a85cccb04afcb", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac1364a85cccb04afce", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "6808bac1364a85cccb04afcb", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bac1364a85cccb04afcf", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "6808bac1364a85cccb04afc7", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac1364a85cccb04afd0", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "6808bac1364a85cccb04afcf", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac1364a85cccb04afd1", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "6808bac1364a85cccb04afc7", + "slotId": "mod_charge" + }, + { + "_id": "6808bac1364a85cccb04afd4", + "_tpl": "5d1340bdd7ad1a0e8d245aab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afd7", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afda", + "_tpl": "5c5db6552e2216001026119d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afdd", + "_tpl": "5c6d7b3d2e221600114c9b7d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac1364a85cccb04afe0", + "_tpl": "5cf78496d7f00c065703d6ca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04afe3", + "_tpl": "5d3ef698a4b9361182109872", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6112,8 +4671,8 @@ } }, { - "_id": "676d24b0798491c5260f4f49", - "_tpl": "5f3e77f59103d430b93f94c1", + "_id": "6808bac2364a85cccb04afe6", + "_tpl": "5d2369418abbc306c62e0c80", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6124,56 +4683,8 @@ } }, { - "_id": "676d24b0798491c5260f4f4c", - "_tpl": "609269c3b0e443224b421cc1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f4f", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f52", - "_tpl": "6130c4d51cb55961fa0fd49f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f55", - "_tpl": "5ef1ba28c64c5d0dfc0571a5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f58", - "_tpl": "616584766ef05c2ce828ef57", + "_id": "6808bac2364a85cccb04afe9", + "_tpl": "5c87ca002e221600114cb150", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6184,20 +4695,56 @@ } }, { - "_id": "676d24b0798491c5260f4f5b", - "_tpl": "5ede475b549eed7c6d5c18fb", + "_id": "6808bac2364a85cccb04afec", + "_tpl": "5e9dcf5986f7746c417435b3", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b0798491c5260f4f5e", - "_tpl": "5f6372e2865db925d54f3869", + "_id": "6808bac2364a85cccb04aff0", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04aff3", + "_tpl": "5e00cfa786f77469dc6e5685", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04aff6", + "_tpl": "5d440625a4b9361eec4ae6c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04aff9", + "_tpl": "5d10b49bd7ad1a1a560708b0", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6208,7 +4755,1007 @@ } }, { - "_id": "676d24b0798491c5260f4f61", + "_id": "6808bac2364a85cccb04affc", + "_tpl": "5d2da1e948f035477b1ce2ba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04afff", + "_tpl": "5c878e9d2e2216000f201903", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b002", + "_tpl": "5de8eaadbbaf010b10528a6d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b005", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b008", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b00b", + "_tpl": "5d124c1ad7ad1a12227c53a7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b00e", + "_tpl": "5b7d37845acfc400170e2f87", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b011", + "_tpl": "5df8e085bb49d91fb446d6a8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b016", + "_tpl": "5d5e7d28a4b936645d161203", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b017", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "6808bac2364a85cccb04b016", + "slotId": "Helmet_top" + }, + { + "_id": "6808bac2364a85cccb04b018", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "6808bac2364a85cccb04b016", + "slotId": "Helmet_back" + }, + { + "_id": "6808bac2364a85cccb04b01b", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b01e", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b021", + "_tpl": "5c7d560b2e22160bc12c6139", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b024", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b026", + "_tpl": "5bd70322209c4d00d7167b8f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b027", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "6808bac2364a85cccb04b026", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac2364a85cccb04b028", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "6808bac2364a85cccb04b026", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac2364a85cccb04b029", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "6808bac2364a85cccb04b026", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac2364a85cccb04b02a", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "6808bac2364a85cccb04b026", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac2364a85cccb04b02b", + "_tpl": "5bd704e7209c4d00d7167c31", + "parentId": "6808bac2364a85cccb04b026", + "slotId": "mod_stock" + }, + { + "_id": "6808bac2364a85cccb04b02e", + "_tpl": "5c6d42cb2e2216000e69d7d1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b031", + "_tpl": "5cde77a9d7f00c000f261009", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b034", + "_tpl": "5c6165902e22160010261b28", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b037", + "_tpl": "5cf508bfd7f00c056e24104e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac2364a85cccb04b03a", + "_tpl": "5c7954d52e221600106f4cc7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b03d", + "_tpl": "5d123b70d7ad1a0ee35e0754", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b040", + "_tpl": "5cdd7685d7f00c000f260ed2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b043", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b046", + "_tpl": "5c6d10fa2e221600106f3f23", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b049", + "_tpl": "5c052a900db834001a66acbd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b04c", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b04f", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b054", + "_tpl": "5e01ef6886f77445f643baa4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b055", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6808bac3364a85cccb04b054", + "slotId": "helmet_top" + }, + { + "_id": "6808bac3364a85cccb04b056", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6808bac3364a85cccb04b054", + "slotId": "helmet_back" + }, + { + "_id": "6808bac3364a85cccb04b058", + "_tpl": "5a367e5dc4a282000e49738f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bac3364a85cccb04b059", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6808bac3364a85cccb04b058", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac3364a85cccb04b05a", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "6808bac3364a85cccb04b058", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac3364a85cccb04b05b", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "6808bac3364a85cccb04b058", + "slotId": "mod_stock" + }, + { + "_id": "6808bac3364a85cccb04b05c", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "6808bac3364a85cccb04b05b", + "slotId": "mod_stock" + }, + { + "_id": "6808bac3364a85cccb04b05d", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "6808bac3364a85cccb04b058", + "slotId": "mod_handguard" + }, + { + "_id": "6808bac3364a85cccb04b05e", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "6808bac3364a85cccb04b058", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac3364a85cccb04b05f", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6808bac3364a85cccb04b05e", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac3364a85cccb04b060", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "6808bac3364a85cccb04b05e", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bac3364a85cccb04b063", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b066", + "_tpl": "5d124c01d7ad1a115c7d59fb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b069", + "_tpl": "5e00cdd986f7747473332240", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b06c", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b06f", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b072", + "_tpl": "5d5d8ca986f7742798716522", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b076", + "_tpl": "5c5970672e221602b21d7855", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b079", + "_tpl": "5e01f31d86f77465cf261343", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b07c", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b07f", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b082", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 100, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b085", + "_tpl": "5d133067d7ad1a33013f95b4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b088", + "_tpl": "5e01f37686f774773c6f6c15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b08b", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b08e", + "_tpl": "5d440b9fa4b93601354d480c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b091", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b096", + "_tpl": "5e00c1ad86f774747333222c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac3364a85cccb04b097", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6808bac3364a85cccb04b096", + "slotId": "helmet_top" + }, + { + "_id": "6808bac3364a85cccb04b098", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6808bac3364a85cccb04b096", + "slotId": "helmet_back" + }, + { + "_id": "6808bac4364a85cccb04b09b", + "_tpl": "5c1793902e221602b21d3de2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b09e", + "_tpl": "5dfa397fb11454561e39246c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0a1", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0a4", + "_tpl": "5cdd7693d7f00c0010373aa5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0a7", + "_tpl": "5de8ea8ffd6b4e6e2276dc35", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0aa", + "_tpl": "5d124c0ed7ad1a10d168dd9b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0ad", + "_tpl": "5c6d11072e2216000e69d2e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0b0", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0b3", + "_tpl": "5c9a26332e2216001219ea70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0b6", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0b9", + "_tpl": "5c7e5f112e221600106f4ede", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0bc", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0bf", + "_tpl": "5d443f8fa4b93678dd4a01aa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0c2", + "_tpl": "5c87a07c2e2216001219d4a2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0c5", + "_tpl": "5d44069ca4b9361ebd26fc37", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0c8", + "_tpl": "5d122e7bd7ad1a07102d6d7f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0cb", + "_tpl": "5cf78720d7f00c06595bc93e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0ce", + "_tpl": "5d2f213448f0355009199284", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0d0", + "_tpl": "6184055050224f204c1da540", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0d1", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808bac4364a85cccb04b0d0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac4364a85cccb04b0d2", + "_tpl": "61840bedd92c473c77021635", + "parentId": "6808bac4364a85cccb04b0d0", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac4364a85cccb04b0d3", + "_tpl": "618405198004cc50514c3594", + "parentId": "6808bac4364a85cccb04b0d0", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac4364a85cccb04b0d4", + "_tpl": "6183fd9e8004cc50514c358f", + "parentId": "6808bac4364a85cccb04b0d3", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac4364a85cccb04b0d5", + "_tpl": "618407a850224f204c1da549", + "parentId": "6808bac4364a85cccb04b0d4", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac4364a85cccb04b0d6", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6808bac4364a85cccb04b0d4", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac4364a85cccb04b0d7", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6808bac4364a85cccb04b0d3", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac4364a85cccb04b0d8", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6808bac4364a85cccb04b0d3", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac4364a85cccb04b0d9", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6808bac4364a85cccb04b0d3", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac4364a85cccb04b0da", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "6808bac4364a85cccb04b0d0", + "slotId": "mod_stock" + }, + { + "_id": "6808bac4364a85cccb04b0db", + "_tpl": "618167528004cc50514c34f9", + "parentId": "6808bac4364a85cccb04b0da", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bac4364a85cccb04b0dc", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6808bac4364a85cccb04b0db", + "slotId": "mod_stock" + }, + { + "_id": "6808bac4364a85cccb04b0dd", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "6808bac4364a85cccb04b0da", + "slotId": "mod_stock_002" + }, + { + "_id": "6808bac4364a85cccb04b0de", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6808bac4364a85cccb04b0d0", + "slotId": "mod_charge" + }, + { + "_id": "6808bac4364a85cccb04b0e1", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0e4", + "_tpl": "6196255558ef8c428c287d1c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0e7", "_tpl": "5fbbaa86f9986c4cff3fe5f6", "parentId": "hideout", "slotId": "hideout", @@ -6220,8 +5767,44 @@ } }, { - "_id": "676d24b0798491c5260f4f64", - "_tpl": "5fc53954f8b6a877a729eaeb", + "_id": "6808bac4364a85cccb04b0ea", + "_tpl": "615d8df08004cc50514c3236", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac4364a85cccb04b0ed", + "_tpl": "61713308d92c473c770214a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b0f0", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b0f3", + "_tpl": "62e7c7f3c34ea971710c32fc", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6232,7 +5815,187 @@ } }, { - "_id": "676d24b0798491c5260f4f66", + "_id": "6808bac5364a85cccb04b0f5", + "_tpl": "5aafa857e5b5b00018480968", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b0f6", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "6808bac5364a85cccb04b0f5", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac5364a85cccb04b0f7", + "_tpl": "5addc7005acfc4001669f275", + "parentId": "6808bac5364a85cccb04b0f5", + "slotId": "mod_stock" + }, + { + "_id": "6808bac5364a85cccb04b0f8", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "6808bac5364a85cccb04b0f7", + "slotId": "mod_stock" + }, + { + "_id": "6808bac5364a85cccb04b0f9", + "_tpl": "5addc7db5acfc4001669f279", + "parentId": "6808bac5364a85cccb04b0f8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac5364a85cccb04b0fa", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "6808bac5364a85cccb04b0f5", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac5364a85cccb04b0fb", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "6808bac5364a85cccb04b0fa", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac5364a85cccb04b0fc", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "6808bac5364a85cccb04b0fb", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac5364a85cccb04b0fd", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "6808bac5364a85cccb04b0f5", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac5364a85cccb04b100", + "_tpl": "616584766ef05c2ce828ef57", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b103", + "_tpl": "61963a852d2c397d660036ad", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b106", + "_tpl": "6130c3dffaa1272e43151c7d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b109", + "_tpl": "5fce16961f152d4312622bc9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b10c", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b115", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b116", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bac5364a85cccb04b117", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bac5364a85cccb04b118", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bac5364a85cccb04b119", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bac5364a85cccb04b11a", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "Front_plate" + }, + { + "_id": "6808bac5364a85cccb04b11b", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bac5364a85cccb04b115", + "slotId": "Back_plate" + }, + { + "_id": "6808bac5364a85cccb04b11f", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b121", "_tpl": "62e7c4fba689e8c9c50dfc38", "parentId": "hideout", "slotId": "hideout", @@ -6251,67 +6014,43 @@ } }, { - "_id": "676d24b0798491c5260f4f67", + "_id": "6808bac5364a85cccb04b122", "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "676d24b0798491c5260f4f66", + "parentId": "6808bac5364a85cccb04b121", "slotId": "mod_magazine" }, { - "_id": "676d24b0798491c5260f4f68", + "_id": "6808bac5364a85cccb04b123", "_tpl": "62e7c880f68e7a0676050c7c", - "parentId": "676d24b0798491c5260f4f66", + "parentId": "6808bac5364a85cccb04b121", "slotId": "mod_charge" }, { - "_id": "676d24b0798491c5260f4f69", + "_id": "6808bac5364a85cccb04b124", "_tpl": "62ea7c793043d74a0306e19f", - "parentId": "676d24b0798491c5260f4f66", + "parentId": "6808bac5364a85cccb04b121", "slotId": "mod_reciever" }, { - "_id": "676d24b0798491c5260f4f6a", + "_id": "6808bac5364a85cccb04b125", "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "676d24b0798491c5260f4f69", + "parentId": "6808bac5364a85cccb04b124", "slotId": "mod_barrel" }, { - "_id": "676d24b0798491c5260f4f6b", + "_id": "6808bac5364a85cccb04b126", "_tpl": "630f2872911356c17d06abc5", - "parentId": "676d24b0798491c5260f4f6a", + "parentId": "6808bac5364a85cccb04b125", "slotId": "mod_muzzle_000" }, { - "_id": "676d24b0798491c5260f4f6c", + "_id": "6808bac5364a85cccb04b127", "_tpl": "634e61b0767cb15c4601a877", - "parentId": "676d24b0798491c5260f4f6a", + "parentId": "6808bac5364a85cccb04b125", "slotId": "mod_foregrip" }, { - "_id": "676d24b0798491c5260f4f6f", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f72", - "_tpl": "62e7c880f68e7a0676050c7c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f75", + "_id": "6808bac5364a85cccb04b12a", "_tpl": "61840d85568c120fdd2962a5", "parentId": "hideout", "slotId": "hideout", @@ -6323,307 +6062,19 @@ } }, { - "_id": "676d24b0798491c5260f4f77", - "_tpl": "6184055050224f204c1da540", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f78", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "676d24b0798491c5260f4f77", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b0798491c5260f4f79", - "_tpl": "61840bedd92c473c77021635", - "parentId": "676d24b0798491c5260f4f77", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b0798491c5260f4f7a", - "_tpl": "618405198004cc50514c3594", - "parentId": "676d24b0798491c5260f4f77", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b0798491c5260f4f7b", - "_tpl": "6183fd9e8004cc50514c358f", - "parentId": "676d24b0798491c5260f4f7a", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b0798491c5260f4f7c", - "_tpl": "618407a850224f204c1da549", - "parentId": "676d24b0798491c5260f4f7b", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b0798491c5260f4f7d", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b0798491c5260f4f7b", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b0798491c5260f4f7e", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b0798491c5260f4f7a", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b0798491c5260f4f7f", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "676d24b0798491c5260f4f7a", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24b0798491c5260f4f80", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "676d24b0798491c5260f4f7a", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24b0798491c5260f4f81", - "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "676d24b0798491c5260f4f77", - "slotId": "mod_stock" - }, - { - "_id": "676d24b0798491c5260f4f82", - "_tpl": "618167528004cc50514c34f9", - "parentId": "676d24b0798491c5260f4f81", - "slotId": "mod_stock_001" - }, - { - "_id": "676d24b0798491c5260f4f83", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b0798491c5260f4f82", - "slotId": "mod_stock" - }, - { - "_id": "676d24b0798491c5260f4f84", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "676d24b0798491c5260f4f81", - "slotId": "mod_stock_002" - }, - { - "_id": "676d24b0798491c5260f4f85", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b0798491c5260f4f77", - "slotId": "mod_charge" - }, - { - "_id": "676d24b0798491c5260f4f88", - "_tpl": "64785e7c19d732620e045e15", + "_id": "6808bac5364a85cccb04b12d", + "_tpl": "60098ad7c2240c0fe85c570a", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b0798491c5260f4f8b", - "_tpl": "618407a850224f204c1da549", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f8e", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f91", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f94", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f97", - "_tpl": "6130c3dffaa1272e43151c7d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f9a", - "_tpl": "61659f79d92c473c770213ee", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4f9d", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 90, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4fa0", - "_tpl": "61840bedd92c473c77021635", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b0798491c5260f4fa3", - "_tpl": "6183b084a112697a4b3a6e6c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fb1", - "_tpl": "60a3c68c37ea821725773ef5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fb2", - "_tpl": "65733312ca0ca984940a2d53", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Soft_armor_front" - }, - { - "_id": "676d24b1798491c5260f4fb3", - "_tpl": "657333232cc8dfad2c0a3d97", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Soft_armor_back" - }, - { - "_id": "676d24b1798491c5260f4fb4", - "_tpl": "657333302cc8dfad2c0a3d9b", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Soft_armor_left" - }, - { - "_id": "676d24b1798491c5260f4fb5", - "_tpl": "6573333eca0ca984940a2d57", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "soft_armor_right" - }, - { - "_id": "676d24b1798491c5260f4fb6", - "_tpl": "6573334aca0ca984940a2d5b", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Collar" - }, - { - "_id": "676d24b1798491c5260f4fb7", - "_tpl": "65733375b7a8d286530e3dd7", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Shoulder_l" - }, - { - "_id": "676d24b1798491c5260f4fb8", - "_tpl": "6573337f2cc8dfad2c0a3da7", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Shoulder_r" - }, - { - "_id": "676d24b1798491c5260f4fb9", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Front_plate" - }, - { - "_id": "676d24b1798491c5260f4fba", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Back_plate" - }, - { - "_id": "676d24b1798491c5260f4fbb", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Left_side_plate" - }, - { - "_id": "676d24b1798491c5260f4fbc", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "676d24b1798491c5260f4fb1", - "slotId": "Right_side_plate" - }, - { - "_id": "676d24b1798491c5260f4fbf", + "_id": "6808bac5364a85cccb04b131", "_tpl": "5f60bf4558eff926626a60f2", "parentId": "hideout", "slotId": "hideout", @@ -6635,7 +6086,97 @@ } }, { - "_id": "676d24b1798491c5260f4fc2", + "_id": "6808bac5364a85cccb04b134", + "_tpl": "619621a4de3cdf1d2614a7a7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b142", + "_tpl": "60a3c68c37ea821725773ef5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b143", + "_tpl": "65733312ca0ca984940a2d53", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bac5364a85cccb04b144", + "_tpl": "657333232cc8dfad2c0a3d97", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bac5364a85cccb04b145", + "_tpl": "657333302cc8dfad2c0a3d9b", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bac5364a85cccb04b146", + "_tpl": "6573333eca0ca984940a2d57", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bac5364a85cccb04b147", + "_tpl": "6573334aca0ca984940a2d5b", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Collar" + }, + { + "_id": "6808bac5364a85cccb04b148", + "_tpl": "65733375b7a8d286530e3dd7", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Shoulder_l" + }, + { + "_id": "6808bac5364a85cccb04b149", + "_tpl": "6573337f2cc8dfad2c0a3da7", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Shoulder_r" + }, + { + "_id": "6808bac5364a85cccb04b14a", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Front_plate" + }, + { + "_id": "6808bac5364a85cccb04b14b", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Back_plate" + }, + { + "_id": "6808bac5364a85cccb04b14c", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Left_side_plate" + }, + { + "_id": "6808bac5364a85cccb04b14d", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808bac5364a85cccb04b142", + "slotId": "Right_side_plate" + }, + { + "_id": "6808bac5364a85cccb04b150", "_tpl": "5fbcbcf593164a5b6278efb2", "parentId": "hideout", "slotId": "hideout", @@ -6647,20 +6188,8 @@ } }, { - "_id": "676d24b1798491c5260f4fc5", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fc9", - "_tpl": "6183b0711cb55961fa0fdcad", + "_id": "6808bac5364a85cccb04b153", + "_tpl": "6183fd9e8004cc50514c358f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6671,31 +6200,67 @@ } }, { - "_id": "676d24b1798491c5260f4fcc", - "_tpl": "6183d53f1cb55961fa0fdcda", + "_id": "6808bac5364a85cccb04b156", + "_tpl": "630e1adbbd357927e4007c09", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b1798491c5260f4fcf", - "_tpl": "618168dc8004cc50514c34fc", + "_id": "6808bac5364a85cccb04b159", + "_tpl": "62ea7c793043d74a0306e19f", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b1798491c5260f4fd1", + "_id": "6808bac5364a85cccb04b15c", + "_tpl": "5fc0f9cbd6fa9c00c571bb90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b15f", + "_tpl": "5f3e77f59103d430b93f94c1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac5364a85cccb04b162", + "_tpl": "618407a850224f204c1da549", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b164", "_tpl": "6176aca650224f204c1da3fb", "parentId": "hideout", "slotId": "hideout", @@ -6710,224 +6275,86 @@ } }, { - "_id": "676d24b1798491c5260f4fd2", + "_id": "6808bac6364a85cccb04b165", "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "676d24b1798491c5260f4fd1", + "parentId": "6808bac6364a85cccb04b164", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b1798491c5260f4fd3", + "_id": "6808bac6364a85cccb04b166", "_tpl": "617131a4568c120fdd29482d", - "parentId": "676d24b1798491c5260f4fd1", + "parentId": "6808bac6364a85cccb04b164", "slotId": "mod_magazine" }, { - "_id": "676d24b1798491c5260f4fd4", + "_id": "6808bac6364a85cccb04b167", "_tpl": "617153016c780c1e710c9a2f", - "parentId": "676d24b1798491c5260f4fd1", + "parentId": "6808bac6364a85cccb04b164", "slotId": "mod_stock" }, { - "_id": "676d24b1798491c5260f4fd5", + "_id": "6808bac6364a85cccb04b168", "_tpl": "617154aa1cb55961fa0fdb3b", - "parentId": "676d24b1798491c5260f4fd4", + "parentId": "6808bac6364a85cccb04b167", "slotId": "mod_stock_000" }, { - "_id": "676d24b1798491c5260f4fd6", + "_id": "6808bac6364a85cccb04b169", "_tpl": "61713a8fd92c473c770214a4", - "parentId": "676d24b1798491c5260f4fd1", + "parentId": "6808bac6364a85cccb04b164", "slotId": "mod_reciever" }, { - "_id": "676d24b1798491c5260f4fd7", + "_id": "6808bac6364a85cccb04b16a", "_tpl": "6171407e50224f204c1da3c5", - "parentId": "676d24b1798491c5260f4fd6", + "parentId": "6808bac6364a85cccb04b169", "slotId": "mod_scope" }, { - "_id": "676d24b1798491c5260f4fd8", + "_id": "6808bac6364a85cccb04b16b", "_tpl": "617151c1d92c473c770214ab", - "parentId": "676d24b1798491c5260f4fd7", + "parentId": "6808bac6364a85cccb04b16a", "slotId": "mod_scope_000" }, { - "_id": "676d24b1798491c5260f4fd9", + "_id": "6808bac6364a85cccb04b16c", "_tpl": "61702be9faa1272e431522c3", - "parentId": "676d24b1798491c5260f4fd6", + "parentId": "6808bac6364a85cccb04b169", "slotId": "mod_barrel" }, { - "_id": "676d24b1798491c5260f4fda", + "_id": "6808bac6364a85cccb04b16d", "_tpl": "61713308d92c473c770214a0", - "parentId": "676d24b1798491c5260f4fd9", + "parentId": "6808bac6364a85cccb04b16c", "slotId": "mod_muzzle" }, { - "_id": "676d24b1798491c5260f4fdb", + "_id": "6808bac6364a85cccb04b16e", "_tpl": "61702f1b67085e45ef140b26", - "parentId": "676d24b1798491c5260f4fd9", + "parentId": "6808bac6364a85cccb04b16c", "slotId": "mod_gas_block" }, { - "_id": "676d24b1798491c5260f4fdc", + "_id": "6808bac6364a85cccb04b16f", "_tpl": "61712eae6c780c1e710c9a1d", - "parentId": "676d24b1798491c5260f4fd6", + "parentId": "6808bac6364a85cccb04b169", "slotId": "mod_handguard" }, { - "_id": "676d24b1798491c5260f4fdd", + "_id": "6808bac6364a85cccb04b170", "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "676d24b1798491c5260f4fd6", + "parentId": "6808bac6364a85cccb04b169", "slotId": "mod_sight_rear" }, { - "_id": "676d24b1798491c5260f4fde", + "_id": "6808bac6364a85cccb04b171", "_tpl": "61702d8a67085e45ef140b24", - "parentId": "676d24b1798491c5260f4fd1", + "parentId": "6808bac6364a85cccb04b164", "slotId": "mod_charge" }, { - "_id": "676d24b1798491c5260f4fe1", - "_tpl": "630e1adbbd357927e4007c09", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fe4", - "_tpl": "5fce16961f152d4312622bc9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fe7", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fe9", - "_tpl": "6183afd850224f204c1da514", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fea", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "676d24b1798491c5260f4fe9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b1798491c5260f4feb", - "_tpl": "618168dc8004cc50514c34fc", - "parentId": "676d24b1798491c5260f4fe9", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b1798491c5260f4fec", - "_tpl": "6165adcdd3a39d50044c120f", - "parentId": "676d24b1798491c5260f4fe9", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b1798491c5260f4fed", - "_tpl": "6183b084a112697a4b3a6e6c", - "parentId": "676d24b1798491c5260f4fec", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b1798491c5260f4fee", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "676d24b1798491c5260f4fed", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b1798491c5260f4fef", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b1798491c5260f4fed", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b1798491c5260f4ff0", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b1798491c5260f4fec", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b1798491c5260f4ff1", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "676d24b1798491c5260f4fec", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24b1798491c5260f4ff2", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "676d24b1798491c5260f4fec", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24b1798491c5260f4ff3", - "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "676d24b1798491c5260f4fe9", - "slotId": "mod_stock" - }, - { - "_id": "676d24b1798491c5260f4ff4", - "_tpl": "618167528004cc50514c34f9", - "parentId": "676d24b1798491c5260f4ff3", - "slotId": "mod_stock_001" - }, - { - "_id": "676d24b1798491c5260f4ff5", + "_id": "6808bac6364a85cccb04b174", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b1798491c5260f4ff4", - "slotId": "mod_stock" - }, - { - "_id": "676d24b1798491c5260f4ff6", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "676d24b1798491c5260f4ff3", - "slotId": "mod_stock_002" - }, - { - "_id": "676d24b1798491c5260f4ff7", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b1798491c5260f4fe9", - "slotId": "mod_charge" - }, - { - "_id": "676d24b1798491c5260f4ffa", - "_tpl": "5addbfef5acfc400185c2857", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6938,19 +6365,7 @@ } }, { - "_id": "676d24b1798491c5260f4ffd", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f4fff", + "_id": "6808bac6364a85cccb04b176", "_tpl": "5fc3e272f8b6a877a729eac5", "parentId": "hideout", "slotId": "hideout", @@ -6963,60 +6378,72 @@ }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b1798491c5260f5000", + "_id": "6808bac6364a85cccb04b177", "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_magazine" }, { - "_id": "676d24b1798491c5260f5001", + "_id": "6808bac6364a85cccb04b178", "_tpl": "5fc3e4ee7283c4046c5814af", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_stock" }, { - "_id": "676d24b1798491c5260f5002", + "_id": "6808bac6364a85cccb04b179", "_tpl": "5fc3e4a27283c4046c5814ab", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_barrel" }, { - "_id": "676d24b1798491c5260f5003", + "_id": "6808bac6364a85cccb04b17a", "_tpl": "5fc53954f8b6a877a729eaeb", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_mount_000" }, { - "_id": "676d24b1798491c5260f5004", + "_id": "6808bac6364a85cccb04b17b", "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_mount_001" }, { - "_id": "676d24b1798491c5260f5005", + "_id": "6808bac6364a85cccb04b17c", "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "676d24b1798491c5260f4fff", + "parentId": "6808bac6364a85cccb04b176", "slotId": "mod_mount_002" }, { - "_id": "676d24b1798491c5260f5008", - "_tpl": "5fc3e466187fea44d52eda90", + "_id": "6808bac6364a85cccb04b17f", + "_tpl": "5de8eac42a78646d96665d91", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b1798491c5260f500b", + "_id": "6808bac6364a85cccb04b182", + "_tpl": "619624b26db0f2477964e6b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b185", "_tpl": "618405198004cc50514c3594", "parentId": "hideout", "slotId": "hideout", @@ -7028,80 +6455,95 @@ } }, { - "_id": "676d24b1798491c5260f500e", - "_tpl": "6183fd9e8004cc50514c358f", + "_id": "6808bac6364a85cccb04b187", + "_tpl": "6193a720f8ee7e52e42109ed", "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5011", - "_tpl": "618168b350224f204c1da4d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5014", - "_tpl": "6171367e1cb55961fa0fdb36", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5017", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5019", - "_tpl": "5e81ebcd8e146c7080625e15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, "FireMode": { "FireMode": "single" }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b1798491c5260f501a", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "676d24b1798491c5260f5019", - "slotId": "mod_pistol_grip" + "_id": "6808bac6364a85cccb04b188", + "_tpl": "6194efe07c6c7b169525f11b", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_barrel" }, { - "_id": "676d24b1798491c5260f501d", - "_tpl": "5f6336bbda967c74a42e9932", + "_id": "6808bac6364a85cccb04b189", + "_tpl": "6194f1f918a3974e5e7421e4", + "parentId": "6808bac6364a85cccb04b188", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac6364a85cccb04b18a", + "_tpl": "6194f41f9fb0c665d5490e75", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac6364a85cccb04b18b", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "6808bac6364a85cccb04b18a", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac6364a85cccb04b18c", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "6808bac6364a85cccb04b18a", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac6364a85cccb04b18d", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac6364a85cccb04b18e", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_trigger" + }, + { + "_id": "6808bac6364a85cccb04b18f", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_hammer" + }, + { + "_id": "6808bac6364a85cccb04b190", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_catch" + }, + { + "_id": "6808bac6364a85cccb04b191", + "_tpl": "6196255558ef8c428c287d1c", + "parentId": "6808bac6364a85cccb04b187", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac6364a85cccb04b194", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b197", + "_tpl": "5f6372e2865db925d54f3869", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7112,8 +6554,92 @@ } }, { - "_id": "676d24b1798491c5260f5020", - "_tpl": "5f60c076f2bcbb675b00dac2", + "_id": "6808bac6364a85cccb04b19a", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 300, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b19d", + "_tpl": "5f6340d3ca442212f4047eb2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1a0", + "_tpl": "5f633ff5c444ce7e3c30a006", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1a3", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1a6", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1a9", + "_tpl": "60926df0132d4d12c81fd9df", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1ac", + "_tpl": "5c0558060db834001b735271", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac6364a85cccb04b1af", + "_tpl": "5fc2369685fd526b824a5713", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7124,55 +6650,7 @@ } }, { - "_id": "676d24b1798491c5260f5023", - "_tpl": "5f60b85bbdb8e27dee3dc985", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5026", - "_tpl": "5fc0f9cbd6fa9c00c571bb90", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5029", - "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f502c", - "_tpl": "62ea7c793043d74a0306e19f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f502e", + "_id": "6808bac6364a85cccb04b1b1", "_tpl": "6165ac306ef05c2ce828ef74", "parentId": "hideout", "slotId": "hideout", @@ -7190,532 +6668,91 @@ } }, { - "_id": "676d24b1798491c5260f502f", + "_id": "6808bac6364a85cccb04b1b2", "_tpl": "571659bb2459771fb2755a12", - "parentId": "676d24b1798491c5260f502e", + "parentId": "6808bac6364a85cccb04b1b1", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b1798491c5260f5030", + "_id": "6808bac6364a85cccb04b1b3", "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "676d24b1798491c5260f502e", + "parentId": "6808bac6364a85cccb04b1b1", "slotId": "mod_magazine" }, { - "_id": "676d24b1798491c5260f5031", + "_id": "6808bac6364a85cccb04b1b4", "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "676d24b1798491c5260f502e", + "parentId": "6808bac6364a85cccb04b1b1", "slotId": "mod_reciever" }, { - "_id": "676d24b1798491c5260f5032", + "_id": "6808bac6364a85cccb04b1b5", "_tpl": "6183b0711cb55961fa0fdcad", - "parentId": "676d24b1798491c5260f5031", + "parentId": "6808bac6364a85cccb04b1b4", "slotId": "mod_barrel" }, { - "_id": "676d24b1798491c5260f5033", + "_id": "6808bac6364a85cccb04b1b6", "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "676d24b1798491c5260f5032", + "parentId": "6808bac6364a85cccb04b1b5", "slotId": "mod_muzzle" }, { - "_id": "676d24b1798491c5260f5034", + "_id": "6808bac6364a85cccb04b1b7", "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b1798491c5260f5032", + "parentId": "6808bac6364a85cccb04b1b5", "slotId": "mod_sight_front" }, { - "_id": "676d24b1798491c5260f5035", + "_id": "6808bac6364a85cccb04b1b8", "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b1798491c5260f5031", + "parentId": "6808bac6364a85cccb04b1b4", "slotId": "mod_sight_rear" }, { - "_id": "676d24b1798491c5260f5036", + "_id": "6808bac6364a85cccb04b1b9", "_tpl": "61816df1d3a39d50044c139e", - "parentId": "676d24b1798491c5260f5031", + "parentId": "6808bac6364a85cccb04b1b4", "slotId": "mod_mount_000" }, { - "_id": "676d24b1798491c5260f5037", + "_id": "6808bac6364a85cccb04b1ba", "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "676d24b1798491c5260f5031", + "parentId": "6808bac6364a85cccb04b1b4", "slotId": "mod_mount_001" }, { - "_id": "676d24b1798491c5260f5038", + "_id": "6808bac6364a85cccb04b1bb", "_tpl": "61825d06d92c473c770215de", - "parentId": "676d24b1798491c5260f502e", + "parentId": "6808bac6364a85cccb04b1b1", "slotId": "mod_stock" }, { - "_id": "676d24b1798491c5260f5039", + "_id": "6808bac6364a85cccb04b1bc", "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "676d24b1798491c5260f5038", + "parentId": "6808bac6364a85cccb04b1bb", "slotId": "mod_stock_001" }, { - "_id": "676d24b1798491c5260f503a", + "_id": "6808bac6364a85cccb04b1bd", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b1798491c5260f5039", + "parentId": "6808bac6364a85cccb04b1bc", "slotId": "mod_stock" }, { - "_id": "676d24b1798491c5260f503b", + "_id": "6808bac6364a85cccb04b1be", "_tpl": "61825d24d3a39d50044c13af", - "parentId": "676d24b1798491c5260f5038", + "parentId": "6808bac6364a85cccb04b1bb", "slotId": "mod_stock_002" }, { - "_id": "676d24b1798491c5260f503c", + "_id": "6808bac6364a85cccb04b1bf", "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b1798491c5260f502e", + "parentId": "6808bac6364a85cccb04b1b1", "slotId": "mod_charge" }, { - "_id": "676d24b1798491c5260f503f", - "_tpl": "61713308d92c473c770214a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b1798491c5260f5042", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f504b", - "_tpl": "61bc85697113f767765c7fe7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f504c", - "_tpl": "6572fc809a866b80ab07eb59", - "parentId": "676d24b2798491c5260f504b", - "slotId": "Soft_armor_front" - }, - { - "_id": "676d24b2798491c5260f504d", - "_tpl": "6572fc8c9a866b80ab07eb5d", - "parentId": "676d24b2798491c5260f504b", - "slotId": "Soft_armor_back" - }, - { - "_id": "676d24b2798491c5260f504e", - "_tpl": "6572fc989a866b80ab07eb61", - "parentId": "676d24b2798491c5260f504b", - "slotId": "Soft_armor_left" - }, - { - "_id": "676d24b2798491c5260f504f", - "_tpl": "6572fca39a866b80ab07eb65", - "parentId": "676d24b2798491c5260f504b", - "slotId": "soft_armor_right" - }, - { - "_id": "676d24b2798491c5260f5050", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "676d24b2798491c5260f504b", - "slotId": "Front_plate" - }, - { - "_id": "676d24b2798491c5260f5051", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "676d24b2798491c5260f504b", - "slotId": "Back_plate" - }, - { - "_id": "676d24b2798491c5260f5055", - "_tpl": "61657230d92c473c770213d7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5057", - "_tpl": "5aafa857e5b5b00018480968", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5058", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "676d24b2798491c5260f5057", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b2798491c5260f5059", - "_tpl": "5addc7005acfc4001669f275", - "parentId": "676d24b2798491c5260f5057", - "slotId": "mod_stock" - }, - { - "_id": "676d24b2798491c5260f505a", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "676d24b2798491c5260f5059", - "slotId": "mod_stock" - }, - { - "_id": "676d24b2798491c5260f505b", - "_tpl": "5addc7db5acfc4001669f279", - "parentId": "676d24b2798491c5260f505a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b2798491c5260f505c", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "676d24b2798491c5260f5057", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b2798491c5260f505d", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "676d24b2798491c5260f505c", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b2798491c5260f505e", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "676d24b2798491c5260f505d", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b2798491c5260f505f", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "676d24b2798491c5260f5057", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b2798491c5260f5061", - "_tpl": "5e870397991fd70db46995c8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5062", - "_tpl": "5e87071478f43e51ca2de5e1", - "parentId": "676d24b2798491c5260f5061", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b2798491c5260f5063", - "_tpl": "5e8708d4ae379e67d22e0102", - "parentId": "676d24b2798491c5260f5062", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b2798491c5260f5064", - "_tpl": "5e87076ce2db31558c75a11d", - "parentId": "676d24b2798491c5260f5061", - "slotId": "mod_handguard" - }, - { - "_id": "676d24b2798491c5260f5065", - "_tpl": "5e87080c81c4ed43e83cefda", - "parentId": "676d24b2798491c5260f5061", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b2798491c5260f5066", - "_tpl": "5e87116b81c4ed43e83cefdd", - "parentId": "676d24b2798491c5260f5061", - "slotId": "mod_stock" - }, - { - "_id": "676d24b2798491c5260f5067", - "_tpl": "5e87114fe2db31558c75a120", - "parentId": "676d24b2798491c5260f5061", - "slotId": "mod_mount" - }, - { - "_id": "676d24b2798491c5260f506a", - "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f506c", - "_tpl": "618428466ef05c2ce828f218", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f506d", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "676d24b2798491c5260f506c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b2798491c5260f506e", - "_tpl": "61840d85568c120fdd2962a5", - "parentId": "676d24b2798491c5260f506c", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b2798491c5260f506f", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "676d24b2798491c5260f506c", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b2798491c5260f5070", - "_tpl": "6183fd911cb55961fa0fdce9", - "parentId": "676d24b2798491c5260f506f", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b2798491c5260f5071", - "_tpl": "618407a850224f204c1da549", - "parentId": "676d24b2798491c5260f5070", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b2798491c5260f5072", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b2798491c5260f5070", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b2798491c5260f5073", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b2798491c5260f506f", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b2798491c5260f5074", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "676d24b2798491c5260f506f", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24b2798491c5260f5075", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "676d24b2798491c5260f506f", - "slotId": "mod_mount_001" - }, - { - "_id": "676d24b2798491c5260f5076", - "_tpl": "61825d06d92c473c770215de", - "parentId": "676d24b2798491c5260f506c", - "slotId": "mod_stock" - }, - { - "_id": "676d24b2798491c5260f5077", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "676d24b2798491c5260f5076", - "slotId": "mod_stock_001" - }, - { - "_id": "676d24b2798491c5260f5078", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b2798491c5260f5077", - "slotId": "mod_stock" - }, - { - "_id": "676d24b2798491c5260f5079", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "676d24b2798491c5260f5076", - "slotId": "mod_stock_002" - }, - { - "_id": "676d24b2798491c5260f507a", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b2798491c5260f506c", - "slotId": "mod_charge" - }, - { - "_id": "676d24b2798491c5260f507d", - "_tpl": "6183fc15d3a39d50044c13e9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5080", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5083", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5086", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5089", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f508d", - "_tpl": "60926df0132d4d12c81fd9df", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5090", - "_tpl": "6193d338de3cdf1d2614a6fc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5093", - "_tpl": "55f84c3c4bdc2d5f408b4576", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f5096", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f509a", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f509d", - "_tpl": "6183fd911cb55961fa0fdce9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f50a0", + "_id": "6808bac6364a85cccb04b1c2", "_tpl": "616442e4faa1272e43152193", "parentId": "hideout", "slotId": "hideout", @@ -7727,19 +6764,7 @@ } }, { - "_id": "676d24b2798491c5260f50a3", - "_tpl": "5f6339d53ada5942720e2dc3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f50a6", + "_id": "6808bac6364a85cccb04b1c5", "_tpl": "5ef3448ab37dfd6af863525c", "parentId": "hideout", "slotId": "hideout", @@ -7751,31 +6776,67 @@ } }, { - "_id": "676d24b2798491c5260f50a9", - "_tpl": "5f633ff5c444ce7e3c30a006", + "_id": "6808bac6364a85cccb04b1c8", + "_tpl": "55802f5d4bdc2dac148b458f", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b2798491c5260f50ac", - "_tpl": "634e61b0767cb15c4601a877", + "_id": "6808bac6364a85cccb04b1cb", + "_tpl": "61840bedd92c473c77021635", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b2798491c5260f50af", + "_id": "6808bac6364a85cccb04b1ce", + "_tpl": "55f84c3c4bdc2d5f408b4576", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1d1", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1d4", + "_tpl": "6183fc15d3a39d50044c13e9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1d7", "_tpl": "64b7bbb74b75259c590fa897", "parentId": "hideout", "slotId": "hideout", @@ -7787,7 +6848,229 @@ } }, { - "_id": "676d24b2798491c5260f50b1", + "_id": "6808bac7364a85cccb04b1da", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1dd", + "_tpl": "617131a4568c120fdd29482d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1df", + "_tpl": "5fc3e272f8b6a877a729eac5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1e0", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac7364a85cccb04b1e1", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_stock" + }, + { + "_id": "6808bac7364a85cccb04b1e2", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac7364a85cccb04b1e3", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac7364a85cccb04b1e4", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac7364a85cccb04b1e5", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "6808bac7364a85cccb04b1df", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bac7364a85cccb04b1e8", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1eb", + "_tpl": "5f6339d53ada5942720e2dc3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1ee", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1f1", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1f4", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1f9", + "_tpl": "5f60b34a41e30a4ab12a6947", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b1fa", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6808bac7364a85cccb04b1f9", + "slotId": "Helmet_top" + }, + { + "_id": "6808bac7364a85cccb04b1fb", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6808bac7364a85cccb04b1f9", + "slotId": "Helmet_back" + }, + { + "_id": "6808bac7364a85cccb04b1fe", + "_tpl": "618168b350224f204c1da4d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b201", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b204", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b208", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b20c", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b20e", "_tpl": "6193a720f8ee7e52e42109ed", "parentId": "hideout", "slotId": "hideout", @@ -7802,56 +7085,56 @@ } }, { - "_id": "676d24b2798491c5260f50b2", + "_id": "6808bac7364a85cccb04b20f", "_tpl": "6194ef39de3cdf1d2614a768", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_barrel" }, { - "_id": "676d24b2798491c5260f50b3", + "_id": "6808bac7364a85cccb04b210", "_tpl": "6193d382ed0429009f543e65", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_reciever" }, { - "_id": "676d24b2798491c5260f50b4", + "_id": "6808bac7364a85cccb04b211", "_tpl": "6194f2912d2c397d6600348d", - "parentId": "676d24b2798491c5260f50b3", + "parentId": "6808bac7364a85cccb04b210", "slotId": "mod_sight_rear" }, { - "_id": "676d24b2798491c5260f50b5", + "_id": "6808bac7364a85cccb04b212", "_tpl": "6194f35c18a3974e5e7421e6", - "parentId": "676d24b2798491c5260f50b3", + "parentId": "6808bac7364a85cccb04b210", "slotId": "mod_sight_front" }, { - "_id": "676d24b2798491c5260f50b6", + "_id": "6808bac7364a85cccb04b213", "_tpl": "6193d338de3cdf1d2614a6fc", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_magazine" }, { - "_id": "676d24b2798491c5260f50b7", + "_id": "6808bac7364a85cccb04b214", "_tpl": "6193d3cded0429009f543e6a", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_trigger" }, { - "_id": "676d24b2798491c5260f50b8", + "_id": "6808bac7364a85cccb04b215", "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_hammer" }, { - "_id": "676d24b2798491c5260f50b9", + "_id": "6808bac7364a85cccb04b216", "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "676d24b2798491c5260f50b1", + "parentId": "6808bac7364a85cccb04b20e", "slotId": "mod_catch" }, { - "_id": "676d24b2798491c5260f50bc", - "_tpl": "6196255558ef8c428c287d1c", + "_id": "6808bac7364a85cccb04b219", + "_tpl": "6183b084a112697a4b3a6e6c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7862,7 +7145,19 @@ } }, { - "_id": "676d24b2798491c5260f50be", + "_id": "6808bac7364a85cccb04b21c", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 90, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac7364a85cccb04b21e", "_tpl": "618428466ef05c2ce828f218", "parentId": "hideout", "slotId": "hideout", @@ -7880,200 +7175,104 @@ } }, { - "_id": "676d24b2798491c5260f50bf", + "_id": "6808bac7364a85cccb04b21f", "_tpl": "571659bb2459771fb2755a12", - "parentId": "676d24b2798491c5260f50be", + "parentId": "6808bac7364a85cccb04b21e", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b2798491c5260f50c0", + "_id": "6808bac7364a85cccb04b220", "_tpl": "61840d85568c120fdd2962a5", - "parentId": "676d24b2798491c5260f50be", + "parentId": "6808bac7364a85cccb04b21e", "slotId": "mod_magazine" }, { - "_id": "676d24b2798491c5260f50c1", + "_id": "6808bac7364a85cccb04b221", "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "676d24b2798491c5260f50be", + "parentId": "6808bac7364a85cccb04b21e", "slotId": "mod_reciever" }, { - "_id": "676d24b2798491c5260f50c2", + "_id": "6808bac7364a85cccb04b222", "_tpl": "6183fc15d3a39d50044c13e9", - "parentId": "676d24b2798491c5260f50c1", + "parentId": "6808bac7364a85cccb04b221", "slotId": "mod_barrel" }, { - "_id": "676d24b2798491c5260f50c3", + "_id": "6808bac7364a85cccb04b223", "_tpl": "618407a850224f204c1da549", - "parentId": "676d24b2798491c5260f50c2", + "parentId": "6808bac7364a85cccb04b222", "slotId": "mod_muzzle" }, { - "_id": "676d24b2798491c5260f50c4", + "_id": "6808bac7364a85cccb04b224", "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b2798491c5260f50c2", + "parentId": "6808bac7364a85cccb04b222", "slotId": "mod_sight_front" }, { - "_id": "676d24b2798491c5260f50c5", + "_id": "6808bac7364a85cccb04b225", "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b2798491c5260f50c1", + "parentId": "6808bac7364a85cccb04b221", "slotId": "mod_sight_rear" }, { - "_id": "676d24b2798491c5260f50c6", + "_id": "6808bac7364a85cccb04b226", "_tpl": "61816df1d3a39d50044c139e", - "parentId": "676d24b2798491c5260f50c1", + "parentId": "6808bac7364a85cccb04b221", "slotId": "mod_mount_000" }, { - "_id": "676d24b2798491c5260f50c7", + "_id": "6808bac7364a85cccb04b227", "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "676d24b2798491c5260f50c1", + "parentId": "6808bac7364a85cccb04b221", "slotId": "mod_mount_001" }, { - "_id": "676d24b2798491c5260f50c8", + "_id": "6808bac7364a85cccb04b228", "_tpl": "61825d06d92c473c770215de", - "parentId": "676d24b2798491c5260f50be", + "parentId": "6808bac7364a85cccb04b21e", "slotId": "mod_stock" }, { - "_id": "676d24b2798491c5260f50c9", + "_id": "6808bac7364a85cccb04b229", "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "676d24b2798491c5260f50c8", + "parentId": "6808bac7364a85cccb04b228", "slotId": "mod_stock_001" }, { - "_id": "676d24b2798491c5260f50ca", + "_id": "6808bac7364a85cccb04b22a", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b2798491c5260f50c9", + "parentId": "6808bac7364a85cccb04b229", "slotId": "mod_stock" }, { - "_id": "676d24b2798491c5260f50cb", + "_id": "6808bac7364a85cccb04b22b", "_tpl": "61825d24d3a39d50044c13af", - "parentId": "676d24b2798491c5260f50c8", + "parentId": "6808bac7364a85cccb04b228", "slotId": "mod_stock_002" }, { - "_id": "676d24b2798491c5260f50cc", + "_id": "6808bac7364a85cccb04b22c", "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b2798491c5260f50be", + "parentId": "6808bac7364a85cccb04b21e", "slotId": "mod_charge" }, { - "_id": "676d24b2798491c5260f50cf", - "_tpl": "61817865d3a39d50044c13a4", + "_id": "6808bac7364a85cccb04b22f", + "_tpl": "6193d338de3cdf1d2614a6fc", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b2798491c5260f50d2", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b2798491c5260f50d6", - "_tpl": "617131a4568c120fdd29482d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50d9", - "_tpl": "628a85ee6b1d481ff772e9d5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50dc", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50df", - "_tpl": "622b379bf9cfc87d675d2de5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50e2", - "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50e5", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50e8", - "_tpl": "651bf5617b3b552ef6712cb7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f50eb", - "_tpl": "655f13e0a246670fb0373245", + "_id": "6808bac7364a85cccb04b232", + "_tpl": "619256e5f8af2c1a4e1f5d92", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8084,110 +7283,113 @@ } }, { - "_id": "676d24b3798491c5260f50ee", - "_tpl": "5d3eb44aa4b93650d64e4979", + "_id": "6808bac8364a85cccb04b236", + "_tpl": "5f60b85bbdb8e27dee3dc985", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b3798491c5260f50f0", - "_tpl": "623063e994fc3f7b302a9696", + "_id": "6808bac8364a85cccb04b238", + "_tpl": "5e81c3cbac2bb513793cdc75", "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, "FireMode": { "FireMode": "single" }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b3798491c5260f50f1", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "676d24b3798491c5260f50f0", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b3798491c5260f50f2", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "676d24b3798491c5260f50f0", - "slotId": "mod_stock" - }, - { - "_id": "676d24b3798491c5260f50f3", - "_tpl": "622b379bf9cfc87d675d2de5", - "parentId": "676d24b3798491c5260f50f0", + "_id": "6808bac8364a85cccb04b239", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "6808bac8364a85cccb04b238", "slotId": "mod_barrel" }, { - "_id": "676d24b3798491c5260f50f4", - "_tpl": "622f0ee47762f55aaa68ac87", - "parentId": "676d24b3798491c5260f50f3", - "slotId": "mod_muzzle" + "_id": "6808bac8364a85cccb04b23a", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_pistol_grip" }, { - "_id": "676d24b3798491c5260f50f5", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "676d24b3798491c5260f50f3", - "slotId": "mod_gas_block" + "_id": "6808bac8364a85cccb04b23b", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_reciever" }, { - "_id": "676d24b3798491c5260f50f6", - "_tpl": "62386b2adf47d66e835094b2", - "parentId": "676d24b3798491c5260f50f0", - "slotId": "mod_handguard" - }, - { - "_id": "676d24b3798491c5260f50f7", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "676d24b3798491c5260f50f6", - "slotId": "mod_mount_000" - }, - { - "_id": "676d24b3798491c5260f50f8", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "676d24b3798491c5260f50f6", - "slotId": "mod_tactical" - }, - { - "_id": "676d24b3798491c5260f50f9", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "676d24b3798491c5260f50f0", - "slotId": "mod_mount" - }, - { - "_id": "676d24b3798491c5260f50fa", - "_tpl": "622b3c081b89c677a33bcda6", - "parentId": "676d24b3798491c5260f50f0", - "slotId": "mod_scope" - }, - { - "_id": "676d24b3798491c5260f50fb", - "_tpl": "623166e08c43374ca1567195", - "parentId": "676d24b3798491c5260f50fa", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b3798491c5260f50fc", - "_tpl": "6231670f0b8aa5472d060095", - "parentId": "676d24b3798491c5260f50fa", + "_id": "6808bac8364a85cccb04b23c", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "6808bac8364a85cccb04b23b", "slotId": "mod_sight_rear" }, { - "_id": "676d24b3798491c5260f50fe", - "_tpl": "623063e994fc3f7b302a9696", + "_id": "6808bac8364a85cccb04b23d", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "6808bac8364a85cccb04b23b", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac8364a85cccb04b23e", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac8364a85cccb04b23f", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_trigger" + }, + { + "_id": "6808bac8364a85cccb04b240", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_hammer" + }, + { + "_id": "6808bac8364a85cccb04b241", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "6808bac8364a85cccb04b238", + "slotId": "mod_catch" + }, + { + "_id": "6808bac8364a85cccb04b244", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b247", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b249", + "_tpl": "6183afd850224f204c1da514", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8199,67 +7401,166 @@ }, "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b3798491c5260f50ff", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "676d24b3798491c5260f50fe", + "_id": "6808bac8364a85cccb04b24a", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808bac8364a85cccb04b249", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac8364a85cccb04b24b", + "_tpl": "618168dc8004cc50514c34fc", + "parentId": "6808bac8364a85cccb04b249", "slotId": "mod_magazine" }, { - "_id": "676d24b3798491c5260f5100", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "676d24b3798491c5260f50fe", - "slotId": "mod_stock" + "_id": "6808bac8364a85cccb04b24c", + "_tpl": "6165adcdd3a39d50044c120f", + "parentId": "6808bac8364a85cccb04b249", + "slotId": "mod_reciever" }, { - "_id": "676d24b3798491c5260f5101", - "_tpl": "622b3858034a3e17ad0b81f5", - "parentId": "676d24b3798491c5260f50fe", + "_id": "6808bac8364a85cccb04b24d", + "_tpl": "6183b084a112697a4b3a6e6c", + "parentId": "6808bac8364a85cccb04b24c", "slotId": "mod_barrel" }, { - "_id": "676d24b3798491c5260f5102", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "676d24b3798491c5260f5101", + "_id": "6808bac8364a85cccb04b24e", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "6808bac8364a85cccb04b24d", "slotId": "mod_muzzle" }, { - "_id": "676d24b3798491c5260f5103", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "676d24b3798491c5260f5101", - "slotId": "mod_gas_block" + "_id": "6808bac8364a85cccb04b24f", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6808bac8364a85cccb04b24d", + "slotId": "mod_sight_front" }, { - "_id": "676d24b3798491c5260f5104", - "_tpl": "62386b7153757417e93a4e9f", - "parentId": "676d24b3798491c5260f50fe", + "_id": "6808bac8364a85cccb04b250", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6808bac8364a85cccb04b24c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac8364a85cccb04b251", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6808bac8364a85cccb04b24c", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac8364a85cccb04b252", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6808bac8364a85cccb04b24c", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac8364a85cccb04b253", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "6808bac8364a85cccb04b249", + "slotId": "mod_stock" + }, + { + "_id": "6808bac8364a85cccb04b254", + "_tpl": "618167528004cc50514c34f9", + "parentId": "6808bac8364a85cccb04b253", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bac8364a85cccb04b255", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6808bac8364a85cccb04b254", + "slotId": "mod_stock" + }, + { + "_id": "6808bac8364a85cccb04b256", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "6808bac8364a85cccb04b253", + "slotId": "mod_stock_002" + }, + { + "_id": "6808bac8364a85cccb04b257", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6808bac8364a85cccb04b249", + "slotId": "mod_charge" + }, + { + "_id": "6808bac8364a85cccb04b259", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b25a", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "6808bac8364a85cccb04b259", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac8364a85cccb04b25b", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "6808bac8364a85cccb04b259", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac8364a85cccb04b25c", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "6808bac8364a85cccb04b259", "slotId": "mod_handguard" }, { - "_id": "676d24b3798491c5260f5105", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "676d24b3798491c5260f5104", - "slotId": "mod_tactical" + "_id": "6808bac8364a85cccb04b25d", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "6808bac8364a85cccb04b259", + "slotId": "mod_barrel" }, { - "_id": "676d24b3798491c5260f5106", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "676d24b3798491c5260f50fe", - "slotId": "mod_mount" + "_id": "6808bac8364a85cccb04b25e", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "6808bac8364a85cccb04b25d", + "slotId": "mod_muzzle" }, { - "_id": "676d24b3798491c5260f5107", - "_tpl": "622b3d5cf9cfc87d675d2de9", - "parentId": "676d24b3798491c5260f50fe", - "slotId": "mod_scope" + "_id": "6808bac8364a85cccb04b261", + "_tpl": "609269c3b0e443224b421cc1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b3798491c5260f510a", - "_tpl": "622b327b267a1b13a44abea3", + "_id": "6808bac8364a85cccb04b264", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b267", + "_tpl": "62e7c880f68e7a0676050c7c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8270,7 +7571,532 @@ } }, { - "_id": "676d24b3798491c5260f510d", + "_id": "6808bac8364a85cccb04b26a", + "_tpl": "5addbfef5acfc400185c2857", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b26d", + "_tpl": "5ef1ba28c64c5d0dfc0571a5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b270", + "_tpl": "61657230d92c473c770213d7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b273", + "_tpl": "5f6336bbda967c74a42e9932", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b276", + "_tpl": "61659f79d92c473c770213ee", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b278", + "_tpl": "5e81ebcd8e146c7080625e15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b279", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808bac8364a85cccb04b278", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac8364a85cccb04b27c", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b27f", + "_tpl": "6171367e1cb55961fa0fdb36", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b282", + "_tpl": "6333f05d1bc0e6217a0e9d34", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b285", + "_tpl": "618168dc8004cc50514c34fc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b288", + "_tpl": "5fbe760793164a5b6278efc8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b28b", + "_tpl": "5ede475b549eed7c6d5c18fb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b28e", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac8364a85cccb04b291", + "_tpl": "630f2872911356c17d06abc5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b294", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b296", + "_tpl": "5e870397991fd70db46995c8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b297", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "6808bac9364a85cccb04b296", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac9364a85cccb04b298", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "6808bac9364a85cccb04b297", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac9364a85cccb04b299", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "6808bac9364a85cccb04b296", + "slotId": "mod_handguard" + }, + { + "_id": "6808bac9364a85cccb04b29a", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "6808bac9364a85cccb04b296", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac9364a85cccb04b29b", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "6808bac9364a85cccb04b296", + "slotId": "mod_stock" + }, + { + "_id": "6808bac9364a85cccb04b29c", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "6808bac9364a85cccb04b296", + "slotId": "mod_mount" + }, + { + "_id": "6808bac9364a85cccb04b29f", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2a2", + "_tpl": "6183b0711cb55961fa0fdcad", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2a4", + "_tpl": "618428466ef05c2ce828f218", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2a5", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808bac9364a85cccb04b2a4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bac9364a85cccb04b2a6", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "6808bac9364a85cccb04b2a4", + "slotId": "mod_magazine" + }, + { + "_id": "6808bac9364a85cccb04b2a7", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "6808bac9364a85cccb04b2a4", + "slotId": "mod_reciever" + }, + { + "_id": "6808bac9364a85cccb04b2a8", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "6808bac9364a85cccb04b2a7", + "slotId": "mod_barrel" + }, + { + "_id": "6808bac9364a85cccb04b2a9", + "_tpl": "618407a850224f204c1da549", + "parentId": "6808bac9364a85cccb04b2a8", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bac9364a85cccb04b2aa", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6808bac9364a85cccb04b2a8", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bac9364a85cccb04b2ab", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6808bac9364a85cccb04b2a7", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bac9364a85cccb04b2ac", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6808bac9364a85cccb04b2a7", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bac9364a85cccb04b2ad", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6808bac9364a85cccb04b2a7", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bac9364a85cccb04b2ae", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6808bac9364a85cccb04b2a4", + "slotId": "mod_stock" + }, + { + "_id": "6808bac9364a85cccb04b2af", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6808bac9364a85cccb04b2ae", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bac9364a85cccb04b2b0", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6808bac9364a85cccb04b2af", + "slotId": "mod_stock" + }, + { + "_id": "6808bac9364a85cccb04b2b1", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6808bac9364a85cccb04b2ae", + "slotId": "mod_stock_002" + }, + { + "_id": "6808bac9364a85cccb04b2b2", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6808bac9364a85cccb04b2a4", + "slotId": "mod_charge" + }, + { + "_id": "6808bac9364a85cccb04b2b5", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2b8", + "_tpl": "6130c4d51cb55961fa0fd49f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2bb", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2be", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2c1", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2c4", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2c7", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2ca", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2cd", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2d0", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2d3", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2d6", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2d9", + "_tpl": "626673016f1edc06f30cf6d5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bac9364a85cccb04b2dc", "_tpl": "62ebd290c427473eff0baafb", "parentId": "hideout", "slotId": "hideout", @@ -8282,8 +8108,8 @@ } }, { - "_id": "676d24b3798491c5260f5110", - "_tpl": "618167441cb55961fa0fdc71", + "_id": "6808bac9364a85cccb04b2df", + "_tpl": "5aafa1c2e5b5b00015042a56", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8294,8 +8120,8 @@ } }, { - "_id": "676d24b3798491c5260f5113", - "_tpl": "6567e751a715f85433025998", + "_id": "6808bac9364a85cccb04b2e2", + "_tpl": "630f2982cdb9e392db0cbcc7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8306,20 +8132,8 @@ } }, { - "_id": "676d24b3798491c5260f5116", - "_tpl": "6516e9d7e239bd0c487e3766", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5119", - "_tpl": "5d3eb4aba4b93650d64e497d", + "_id": "6808bac9364a85cccb04b2e5", + "_tpl": "628a85ee6b1d481ff772e9d5", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8330,139 +8144,7 @@ } }, { - "_id": "676d24b3798491c5260f511c", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f511f", - "_tpl": "622b4d7df9cfc87d675d2ded", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5122", - "_tpl": "62ebba1fb658e07ef9082b5a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5128", - "_tpl": "65293c7a17e14363030ad308", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f512b", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f512e", - "_tpl": "622b397c9a3d4327e41843b6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5131", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5134", - "_tpl": "622efbcb99f4ea1a4d6c9a15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f5137", - "_tpl": "637f57d2f5ef8c33840d36c4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f513a", - "_tpl": "6529302b8c26af6326029fb7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f513d", - "_tpl": "628a66b41d5e41750e314f34", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b3798491c5260f513f", + "_id": "6808bac9364a85cccb04b2e7", "_tpl": "623063e994fc3f7b302a9696", "parentId": "hideout", "slotId": "hideout", @@ -8480,125 +8162,235 @@ } }, { - "_id": "676d24b3798491c5260f5140", + "_id": "6808bac9364a85cccb04b2e8", "_tpl": "62307b7b10d2321fa8741921", - "parentId": "676d24b3798491c5260f513f", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_magazine" }, { - "_id": "676d24b3798491c5260f5141", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "676d24b3798491c5260f513f", + "_id": "6808bac9364a85cccb04b2e9", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_stock" }, { - "_id": "676d24b3798491c5260f5142", - "_tpl": "622b38c56762c718e457e246", - "parentId": "676d24b3798491c5260f513f", + "_id": "6808bac9364a85cccb04b2ea", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_barrel" }, { - "_id": "676d24b3798491c5260f5143", + "_id": "6808bac9364a85cccb04b2eb", "_tpl": "622f128cec80d870d349b4e8", - "parentId": "676d24b3798491c5260f5142", + "parentId": "6808bac9364a85cccb04b2ea", "slotId": "mod_muzzle" }, { - "_id": "676d24b3798491c5260f5144", + "_id": "6808bac9364a85cccb04b2ec", "_tpl": "622b327b267a1b13a44abea3", - "parentId": "676d24b3798491c5260f5142", + "parentId": "6808bac9364a85cccb04b2ea", "slotId": "mod_gas_block" }, { - "_id": "676d24b3798491c5260f5145", - "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "676d24b3798491c5260f513f", + "_id": "6808bac9364a85cccb04b2ed", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_handguard" }, { - "_id": "676d24b3798491c5260f5146", + "_id": "6808bac9364a85cccb04b2ee", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "6808bac9364a85cccb04b2ed", + "slotId": "mod_tactical" + }, + { + "_id": "6808bac9364a85cccb04b2ef", "_tpl": "622f02437762f55aaa68ac85", - "parentId": "676d24b3798491c5260f513f", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_mount" }, { - "_id": "676d24b3798491c5260f5147", - "_tpl": "622b3c081b89c677a33bcda6", - "parentId": "676d24b3798491c5260f513f", + "_id": "6808bac9364a85cccb04b2f0", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "parentId": "6808bac9364a85cccb04b2e7", "slotId": "mod_scope" }, { - "_id": "676d24b3798491c5260f5148", - "_tpl": "623166e08c43374ca1567195", - "parentId": "676d24b3798491c5260f5147", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b3798491c5260f5149", - "_tpl": "6231670f0b8aa5472d060095", - "parentId": "676d24b3798491c5260f5147", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b3798491c5260f514c", - "_tpl": "62307b7b10d2321fa8741921", + "_id": "6808baca364a85cccb04b2f3", + "_tpl": "5d3eb44aa4b93650d64e4979", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b3798491c5260f514e", - "_tpl": "5d67abc1a4b93614ec50137f", + "_id": "6808baca364a85cccb04b2f5", + "_tpl": "623063e994fc3f7b302a9696", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b2f6", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_magazine" + }, + { + "_id": "6808baca364a85cccb04b2f7", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_stock" + }, + { + "_id": "6808baca364a85cccb04b2f8", + "_tpl": "622b38c56762c718e457e246", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_barrel" + }, + { + "_id": "6808baca364a85cccb04b2f9", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "6808baca364a85cccb04b2f8", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baca364a85cccb04b2fa", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "6808baca364a85cccb04b2f8", + "slotId": "mod_gas_block" + }, + { + "_id": "6808baca364a85cccb04b2fb", + "_tpl": "6231654c71b5bc3baa1078e5", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_handguard" + }, + { + "_id": "6808baca364a85cccb04b2fc", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_mount" + }, + { + "_id": "6808baca364a85cccb04b2fd", + "_tpl": "622b4f54dc8dcc0ba8742f85", + "parentId": "6808baca364a85cccb04b2f5", + "slotId": "mod_scope" + }, + { + "_id": "6808baca364a85cccb04b300", + "_tpl": "6231670f0b8aa5472d060095", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b303", + "_tpl": "62ebba1fb658e07ef9082b5a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b308", + "_tpl": "5e4bfc1586f774264f7582d3", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b3798491c5260f514f", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "676d24b3798491c5260f514e", - "slotId": "mod_barrel" + "_id": "6808baca364a85cccb04b309", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "6808baca364a85cccb04b308", + "slotId": "Helmet_top" }, { - "_id": "676d24b3798491c5260f5150", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "676d24b3798491c5260f514e", - "slotId": "mod_reciever" + "_id": "6808baca364a85cccb04b30a", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "6808baca364a85cccb04b308", + "slotId": "Helmet_back" }, { - "_id": "676d24b3798491c5260f5151", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "676d24b3798491c5260f5150", - "slotId": "mod_sight_rear" + "_id": "6808baca364a85cccb04b30d", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b3798491c5260f5152", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "676d24b3798491c5260f5150", - "slotId": "mod_sight_front" + "_id": "6808baca364a85cccb04b310", + "_tpl": "622b397c9a3d4327e41843b6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b3798491c5260f5153", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "676d24b3798491c5260f514e", - "slotId": "mod_magazine" + "_id": "6808baca364a85cccb04b313", + "_tpl": "6516e971a3d4c6497930b450", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b4798491c5260f5156", + "_id": "6808baca364a85cccb04b316", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b319", "_tpl": "622efdf8ec80d870d349b4e5", "parentId": "hideout", "slotId": "hideout", @@ -8610,8 +8402,8 @@ } }, { - "_id": "676d24b4798491c5260f5159", - "_tpl": "6396aaa9a52ace83df0840ab", + "_id": "6808baca364a85cccb04b31c", + "_tpl": "622b4f54dc8dcc0ba8742f85", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8622,8 +8414,44 @@ } }, { - "_id": "676d24b4798491c5260f515c", - "_tpl": "638f1ff84822287cad04be9d", + "_id": "6808baca364a85cccb04b322", + "_tpl": "6529302b8c26af6326029fb7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b325", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b328", + "_tpl": "655f13e0a246670fb0373245", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b32b", + "_tpl": "630f291b9f66a28b37094bb8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8634,8 +8462,8 @@ } }, { - "_id": "676d24b4798491c5260f515f", - "_tpl": "618167528004cc50514c34f9", + "_id": "6808baca364a85cccb04b32e", + "_tpl": "6357c98711fb55120211f7e1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8646,7 +8474,103 @@ } }, { - "_id": "676d24b4798491c5260f5162", + "_id": "6808baca364a85cccb04b331", + "_tpl": "630e295c984633f1fb0e7c30", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b334", + "_tpl": "622b379bf9cfc87d675d2de5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b337", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b33a", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b33d", + "_tpl": "637f57d2f5ef8c33840d36c4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b340", + "_tpl": "6567e751a715f85433025998", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b343", + "_tpl": "623166e08c43374ca1567195", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b346", + "_tpl": "637f57c532b66e7e320a6676", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baca364a85cccb04b349", "_tpl": "61816734d8e3106d9806c1f3", "parentId": "hideout", "slotId": "hideout", @@ -8658,20 +8582,8 @@ } }, { - "_id": "676d24b4798491c5260f5165", - "_tpl": "652911e650dc782999054b9d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f5168", - "_tpl": "5bb20d9cd4351e00334c9d8a", + "_id": "6808bacb364a85cccb04b34c", + "_tpl": "652910ef50dc782999054b97", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8682,7 +8594,19 @@ } }, { - "_id": "676d24b4798491c5260f516b", + "_id": "6808bacb364a85cccb04b34f", + "_tpl": "61825d06d92c473c770215de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b352", "_tpl": "6516e9bc5901745209404287", "parentId": "hideout", "slotId": "hideout", @@ -8694,8 +8618,8 @@ } }, { - "_id": "676d24b4798491c5260f516e", - "_tpl": "6529370c405a5f51dd023db8", + "_id": "6808bacb364a85cccb04b355", + "_tpl": "62e7c8f91cd3fde4d503d690", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8706,8 +8630,8 @@ } }, { - "_id": "676d24b4798491c5260f5171", - "_tpl": "653931da5db71d30ab1d6296", + "_id": "6808bacb364a85cccb04b358", + "_tpl": "622f0ee47762f55aaa68ac87", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8718,8 +8642,32 @@ } }, { - "_id": "676d24b4798491c5260f5174", - "_tpl": "64943b74e9998d641b0412ed", + "_id": "6808bacb364a85cccb04b35b", + "_tpl": "5c5db63a2e2216000f1b284a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b35e", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b361", + "_tpl": "634eba08f69c710e0108d386", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8730,7 +8678,55 @@ } }, { - "_id": "676d24b4798491c5260f5176", + "_id": "6808bacb364a85cccb04b364", + "_tpl": "651a8e529829226ceb67c319", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b367", + "_tpl": "6194efe07c6c7b169525f11b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b36a", + "_tpl": "65293c7a17e14363030ad308", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b36d", + "_tpl": "6529243824cbe3c74a05e5c1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 100, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b36f", "_tpl": "65290f395ae2ae97b80fdf2d", "parentId": "hideout", "slotId": "hideout", @@ -8749,92 +8745,92 @@ } }, { - "_id": "676d24b4798491c5260f5177", + "_id": "6808bacb364a85cccb04b370", "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "676d24b4798491c5260f5176", + "parentId": "6808bacb364a85cccb04b36f", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b4798491c5260f5178", + "_id": "6808bacb364a85cccb04b371", "_tpl": "65293c38fc460e50a509cb25", - "parentId": "676d24b4798491c5260f5176", + "parentId": "6808bacb364a85cccb04b36f", "slotId": "mod_magazine" }, { - "_id": "676d24b4798491c5260f5179", + "_id": "6808bacb364a85cccb04b372", "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "676d24b4798491c5260f5176", + "parentId": "6808bacb364a85cccb04b36f", "slotId": "mod_reciever" }, { - "_id": "676d24b4798491c5260f517a", + "_id": "6808bacb364a85cccb04b373", "_tpl": "6567e751a715f85433025998", - "parentId": "676d24b4798491c5260f5179", + "parentId": "6808bacb364a85cccb04b372", "slotId": "mod_scope" }, { - "_id": "676d24b4798491c5260f517b", + "_id": "6808bacb364a85cccb04b374", "_tpl": "6567e7681265c8a131069b0f", - "parentId": "676d24b4798491c5260f517a", + "parentId": "6808bacb364a85cccb04b373", "slotId": "mod_scope" }, { - "_id": "676d24b4798491c5260f517c", + "_id": "6808bacb364a85cccb04b375", "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "676d24b4798491c5260f5179", + "parentId": "6808bacb364a85cccb04b372", "slotId": "mod_barrel" }, { - "_id": "676d24b4798491c5260f517d", + "_id": "6808bacb364a85cccb04b376", "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "676d24b4798491c5260f517c", + "parentId": "6808bacb364a85cccb04b375", "slotId": "mod_muzzle" }, { - "_id": "676d24b4798491c5260f517e", + "_id": "6808bacb364a85cccb04b377", "_tpl": "652911e650dc782999054b9d", - "parentId": "676d24b4798491c5260f517d", + "parentId": "6808bacb364a85cccb04b376", "slotId": "mod_muzzle" }, { - "_id": "676d24b4798491c5260f517f", + "_id": "6808bacb364a85cccb04b378", "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "676d24b4798491c5260f517c", + "parentId": "6808bacb364a85cccb04b375", "slotId": "mod_gas_block" }, { - "_id": "676d24b4798491c5260f5180", + "_id": "6808bacb364a85cccb04b379", "_tpl": "652910ef50dc782999054b97", - "parentId": "676d24b4798491c5260f5179", + "parentId": "6808bacb364a85cccb04b372", "slotId": "mod_handguard" }, { - "_id": "676d24b4798491c5260f5181", + "_id": "6808bacb364a85cccb04b37a", "_tpl": "6529348224cbe3c74a05e5c4", - "parentId": "676d24b4798491c5260f5176", + "parentId": "6808bacb364a85cccb04b36f", "slotId": "mod_stock_000" }, { - "_id": "676d24b4798491c5260f5182", + "_id": "6808bacb364a85cccb04b37b", "_tpl": "6529366450dc782999054ba0", - "parentId": "676d24b4798491c5260f5181", + "parentId": "6808bacb364a85cccb04b37a", "slotId": "mod_stock" }, { - "_id": "676d24b4798491c5260f5183", + "_id": "6808bacb364a85cccb04b37c", "_tpl": "6529370c405a5f51dd023db8", - "parentId": "676d24b4798491c5260f5182", + "parentId": "6808bacb364a85cccb04b37b", "slotId": "mod_stock_000" }, { - "_id": "676d24b4798491c5260f5184", + "_id": "6808bacb364a85cccb04b37d", "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "676d24b4798491c5260f5176", + "parentId": "6808bacb364a85cccb04b36f", "slotId": "mod_charge" }, { - "_id": "676d24b4798491c5260f5187", - "_tpl": "6194efe07c6c7b169525f11b", + "_id": "6808bacb364a85cccb04b380", + "_tpl": "5bd704e7209c4d00d7167c31", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8845,8 +8841,8 @@ } }, { - "_id": "676d24b4798491c5260f518a", - "_tpl": "626667e87379c44d557b7550", + "_id": "6808bacb364a85cccb04b383", + "_tpl": "61825d24d3a39d50044c13af", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8857,8 +8853,8 @@ } }, { - "_id": "676d24b4798491c5260f518d", - "_tpl": "62444cd3674028188b052799", + "_id": "6808bacb364a85cccb04b386", + "_tpl": "5aafa49ae5b5b00015042a58", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8869,7 +8865,7 @@ } }, { - "_id": "676d24b4798491c5260f5190", + "_id": "6808bacb364a85cccb04b389", "_tpl": "5d15cf3bd7ad1a67e71518b2", "parentId": "hideout", "slotId": "hideout", @@ -8881,8 +8877,8 @@ } }, { - "_id": "676d24b4798491c5260f5193", - "_tpl": "651a8bf3a8520e48047bf708", + "_id": "6808bacb364a85cccb04b38c", + "_tpl": "5abcbb20d8ce87001773e258", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8893,19 +8889,340 @@ } }, { - "_id": "676d24b4798491c5260f5196", - "_tpl": "65293c38fc460e50a509cb25", + "_id": "6808bacb364a85cccb04b38f", + "_tpl": "5e0090f7e9dc277128008b93", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b4798491c5260f5198", + "_id": "6808bacb364a85cccb04b392", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b395", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b398", + "_tpl": "652911e650dc782999054b9d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b39b", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b39e", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b3a1", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacb364a85cccb04b3a4", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3a7", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3aa", + "_tpl": "626667e87379c44d557b7550", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3ad", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3b0", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3b3", + "_tpl": "638f2003bbd47aeb9e0ff637", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3b6", + "_tpl": "622b3c081b89c677a33bcda6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3b9", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3bc", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3bf", + "_tpl": "6516e9d7e239bd0c487e3766", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3c2", + "_tpl": "6529366450dc782999054ba0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3c5", + "_tpl": "622b38c56762c718e457e246", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3c8", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3ca", + "_tpl": "5f36a0e5fbf956000b716b65", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3cb", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_barrel" + }, + { + "_id": "6808bacc364a85cccb04b3cc", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bacc364a85cccb04b3cd", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_reciever" + }, + { + "_id": "6808bacc364a85cccb04b3ce", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "6808bacc364a85cccb04b3cd", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bacc364a85cccb04b3cf", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "6808bacc364a85cccb04b3cd", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bacc364a85cccb04b3d0", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_magazine" + }, + { + "_id": "6808bacc364a85cccb04b3d1", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_trigger" + }, + { + "_id": "6808bacc364a85cccb04b3d2", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_hammer" + }, + { + "_id": "6808bacc364a85cccb04b3d3", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "6808bacc364a85cccb04b3ca", + "slotId": "mod_catch" + }, + { + "_id": "6808bacc364a85cccb04b3d6", + "_tpl": "6284bd5f95250a29bc628a30", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3d9", + "_tpl": "5c0a840b86f7742ffa4f2482", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacc364a85cccb04b3db", "_tpl": "623063e994fc3f7b302a9696", "parentId": "hideout", "slotId": "hideout", @@ -8923,74 +9240,62 @@ } }, { - "_id": "676d24b4798491c5260f5199", + "_id": "6808bacc364a85cccb04b3dc", "_tpl": "62307b7b10d2321fa8741921", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_magazine" }, { - "_id": "676d24b4798491c5260f519a", + "_id": "6808bacc364a85cccb04b3dd", "_tpl": "622f140da5958f63c67f1735", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_stock" }, { - "_id": "676d24b4798491c5260f519b", + "_id": "6808bacc364a85cccb04b3de", "_tpl": "622b38c56762c718e457e246", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_barrel" }, { - "_id": "676d24b4798491c5260f519c", + "_id": "6808bacc364a85cccb04b3df", "_tpl": "622f128cec80d870d349b4e8", - "parentId": "676d24b4798491c5260f519b", + "parentId": "6808bacc364a85cccb04b3de", "slotId": "mod_muzzle" }, { - "_id": "676d24b4798491c5260f519d", + "_id": "6808bacc364a85cccb04b3e0", "_tpl": "622b327b267a1b13a44abea3", - "parentId": "676d24b4798491c5260f519b", + "parentId": "6808bacc364a85cccb04b3de", "slotId": "mod_gas_block" }, { - "_id": "676d24b4798491c5260f519e", + "_id": "6808bacc364a85cccb04b3e1", "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_handguard" }, { - "_id": "676d24b4798491c5260f519f", + "_id": "6808bacc364a85cccb04b3e2", "_tpl": "622f02437762f55aaa68ac85", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_mount" }, { - "_id": "676d24b4798491c5260f51a0", + "_id": "6808bacc364a85cccb04b3e3", "_tpl": "622b4d7df9cfc87d675d2ded", - "parentId": "676d24b4798491c5260f5198", + "parentId": "6808bacc364a85cccb04b3db", "slotId": "mod_scope" }, { - "_id": "676d24b4798491c5260f51a1", + "_id": "6808bacc364a85cccb04b3e4", "_tpl": "622efbcb99f4ea1a4d6c9a15", - "parentId": "676d24b4798491c5260f51a0", + "parentId": "6808bacc364a85cccb04b3e3", "slotId": "mod_scope" }, { - "_id": "676d24b4798491c5260f51a4", - "_tpl": "62a61c988ec41a51b34758d5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51a7", - "_tpl": "622b3c081b89c677a33bcda6", + "_id": "6808bacc364a85cccb04b3e7", + "_tpl": "622f02437762f55aaa68ac85", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9001,115 +9306,7 @@ } }, { - "_id": "676d24b4798491c5260f51aa", - "_tpl": "622f0ee47762f55aaa68ac87", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51ad", - "_tpl": "62386b7153757417e93a4e9f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51b0", - "_tpl": "62386b2adf47d66e835094b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51b3", - "_tpl": "630f2982cdb9e392db0cbcc7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51b6", - "_tpl": "6529366450dc782999054ba0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51b9", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51bc", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b4798491c5260f51bf", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51c2", - "_tpl": "5c0a840b86f7742ffa4f2482", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51c5", + "_id": "6808bacc364a85cccb04b3ea", "_tpl": "65392f611406374f82152ba5", "parentId": "hideout", "slotId": "hideout", @@ -9121,292 +9318,7 @@ } }, { - "_id": "676d24b5798491c5260f51c8", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51cb", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51ce", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51d1", - "_tpl": "622b3858034a3e17ad0b81f5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51d4", - "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51d7", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51da", - "_tpl": "5e0090f7e9dc277128008b93", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51dd", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51e0", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51e3", - "_tpl": "638f2003bbd47aeb9e0ff637", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51e6", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51e9", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51ec", - "_tpl": "622b4f54dc8dcc0ba8742f85", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51ef", - "_tpl": "634eba08f69c710e0108d386", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51f2", - "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51f5", - "_tpl": "630f28f0cadb1fe05e06f004", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51f8", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51fa", - "_tpl": "5f36a0e5fbf956000b716b65", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f51fb", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b5798491c5260f51fc", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b5798491c5260f51fd", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b5798491c5260f51fe", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "676d24b5798491c5260f51fd", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b5798491c5260f51ff", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "676d24b5798491c5260f51fd", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b5798491c5260f5200", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b5798491c5260f5201", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_trigger" - }, - { - "_id": "676d24b5798491c5260f5202", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_hammer" - }, - { - "_id": "676d24b5798491c5260f5203", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "676d24b5798491c5260f51fa", - "slotId": "mod_catch" - }, - { - "_id": "676d24b5798491c5260f5206", - "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f5209", + "_id": "6808bacc364a85cccb04b3ed", "_tpl": "5de910da8b6c4240ba2651b5", "parentId": "hideout", "slotId": "hideout", @@ -9418,79 +9330,7 @@ } }, { - "_id": "676d24b5798491c5260f520c", - "_tpl": "5c5db63a2e2216000f1b284a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f520f", - "_tpl": "630e39c3bd357927e4007c15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f5212", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f5215", - "_tpl": "6357c98711fb55120211f7e1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f5218", - "_tpl": "652910ef50dc782999054b97", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f521b", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b5798491c5260f521e", + "_id": "6808bacc364a85cccb04b3f0", "_tpl": "6529348224cbe3c74a05e5c4", "parentId": "hideout", "slotId": "hideout", @@ -9502,8 +9342,8 @@ } }, { - "_id": "676d24b5798491c5260f5221", - "_tpl": "651a8e529829226ceb67c319", + "_id": "6808bacd364a85cccb04b3f3", + "_tpl": "6231654c71b5bc3baa1078e5", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9514,20 +9354,102 @@ } }, { - "_id": "676d24b5798491c5260f5224", - "_tpl": "656fb21fa0dce000a2020f7c", + "_id": "6808bacd364a85cccb04b3f9", + "_tpl": "622b4d7df9cfc87d675d2ded", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b6798491c5260f5229", - "_tpl": "5e4bfc1586f774264f7582d3", + "_id": "6808bacd364a85cccb04b3fc", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b3fe", + "_tpl": "5d67abc1a4b93614ec50137f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bacd364a85cccb04b3ff", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "6808bacd364a85cccb04b3fe", + "slotId": "mod_barrel" + }, + { + "_id": "6808bacd364a85cccb04b400", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "6808bacd364a85cccb04b3fe", + "slotId": "mod_reciever" + }, + { + "_id": "6808bacd364a85cccb04b401", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "6808bacd364a85cccb04b400", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bacd364a85cccb04b402", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "6808bacd364a85cccb04b400", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bacd364a85cccb04b403", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "6808bacd364a85cccb04b3fe", + "slotId": "mod_magazine" + }, + { + "_id": "6808bacd364a85cccb04b406", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b409", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 20, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b40c", + "_tpl": "62a61c988ec41a51b34758d5", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9538,19 +9460,181 @@ } }, { - "_id": "676d24b6798491c5260f522a", - "_tpl": "657f9c78ada5fadd1f07a58d", - "parentId": "676d24b6798491c5260f5229", - "slotId": "Helmet_top" + "_id": "6808bacd364a85cccb04b40f", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b6798491c5260f522b", - "_tpl": "657f9cb587e11c61f70bfaca", - "parentId": "676d24b6798491c5260f5229", - "slotId": "Helmet_back" + "_id": "6808bacd364a85cccb04b412", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "676d24b6798491c5260f522d", + "_id": "6808bacd364a85cccb04b415", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b417", + "_tpl": "623063e994fc3f7b302a9696", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b418", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_magazine" + }, + { + "_id": "6808bacd364a85cccb04b419", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_stock" + }, + { + "_id": "6808bacd364a85cccb04b41a", + "_tpl": "622b379bf9cfc87d675d2de5", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_barrel" + }, + { + "_id": "6808bacd364a85cccb04b41b", + "_tpl": "622f0ee47762f55aaa68ac87", + "parentId": "6808bacd364a85cccb04b41a", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bacd364a85cccb04b41c", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "6808bacd364a85cccb04b41a", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bacd364a85cccb04b41d", + "_tpl": "62386b2adf47d66e835094b2", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_handguard" + }, + { + "_id": "6808bacd364a85cccb04b41e", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "6808bacd364a85cccb04b41d", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bacd364a85cccb04b41f", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "6808bacd364a85cccb04b41d", + "slotId": "mod_tactical" + }, + { + "_id": "6808bacd364a85cccb04b420", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_mount" + }, + { + "_id": "6808bacd364a85cccb04b421", + "_tpl": "622b3c081b89c677a33bcda6", + "parentId": "6808bacd364a85cccb04b417", + "slotId": "mod_scope" + }, + { + "_id": "6808bacd364a85cccb04b422", + "_tpl": "623166e08c43374ca1567195", + "parentId": "6808bacd364a85cccb04b421", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bacd364a85cccb04b423", + "_tpl": "6231670f0b8aa5472d060095", + "parentId": "6808bacd364a85cccb04b421", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bacd364a85cccb04b426", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b429", + "_tpl": "630f28f0cadb1fe05e06f004", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b42c", + "_tpl": "62444cd3674028188b052799", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b42f", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b431", "_tpl": "63171672192e68c5460cebc5", "parentId": "hideout", "slotId": "hideout", @@ -9569,98 +9653,50 @@ } }, { - "_id": "676d24b6798491c5260f522e", + "_id": "6808bacd364a85cccb04b432", "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "676d24b6798491c5260f522d", + "parentId": "6808bacd364a85cccb04b431", "slotId": "mod_magazine" }, { - "_id": "676d24b6798491c5260f522f", + "_id": "6808bacd364a85cccb04b433", "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "676d24b6798491c5260f522d", + "parentId": "6808bacd364a85cccb04b431", "slotId": "mod_charge" }, { - "_id": "676d24b6798491c5260f5230", + "_id": "6808bacd364a85cccb04b434", "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "676d24b6798491c5260f522d", + "parentId": "6808bacd364a85cccb04b431", "slotId": "mod_reciever" }, { - "_id": "676d24b6798491c5260f5231", + "_id": "6808bacd364a85cccb04b435", "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "676d24b6798491c5260f5230", + "parentId": "6808bacd364a85cccb04b434", "slotId": "mod_barrel" }, { - "_id": "676d24b6798491c5260f5232", + "_id": "6808bacd364a85cccb04b436", "_tpl": "630f28f0cadb1fe05e06f004", - "parentId": "676d24b6798491c5260f5231", + "parentId": "6808bacd364a85cccb04b435", "slotId": "mod_muzzle_000" }, { - "_id": "676d24b6798491c5260f5233", + "_id": "6808bacd364a85cccb04b437", "_tpl": "634e61b0767cb15c4601a877", - "parentId": "676d24b6798491c5260f5231", + "parentId": "6808bacd364a85cccb04b435", "slotId": "mod_foregrip" }, { - "_id": "676d24b6798491c5260f5234", + "_id": "6808bacd364a85cccb04b438", "_tpl": "62ebd290c427473eff0baafb", - "parentId": "676d24b6798491c5260f5230", + "parentId": "6808bacd364a85cccb04b434", "slotId": "mod_mount" }, { - "_id": "676d24b6798491c5260f5237", - "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f523a", - "_tpl": "637f57c532b66e7e320a6676", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f523d", - "_tpl": "6529243824cbe3c74a05e5c1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5240", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5243", - "_tpl": "6516e971a3d4c6497930b450", + "_id": "6808bacd364a85cccb04b43b", + "_tpl": "5a398b75c4a282000a51a266", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9671,8 +9707,56 @@ } }, { - "_id": "676d24b6798491c5260f5246", - "_tpl": "656fad8c498d1b7e3e071da0", + "_id": "6808bacd364a85cccb04b43e", + "_tpl": "630e39c3bd357927e4007c15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacd364a85cccb04b441", + "_tpl": "638f1ff84822287cad04be9d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b444", + "_tpl": "62386b2adf47d66e835094b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b447", + "_tpl": "618167528004cc50514c34f9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b44a", + "_tpl": "5a398ab9c4a282000c5a9842", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9683,8 +9767,8 @@ } }, { - "_id": "676d24b6798491c5260f5249", - "_tpl": "626673016f1edc06f30cf6d5", + "_id": "6808bace364a85cccb04b44d", + "_tpl": "622b327b267a1b13a44abea3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9695,8 +9779,8 @@ } }, { - "_id": "676d24b6798491c5260f524c", - "_tpl": "623166e08c43374ca1567195", + "_id": "6808bace364a85cccb04b450", + "_tpl": "6396aaa9a52ace83df0840ab", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9707,7 +9791,91 @@ } }, { - "_id": "676d24b6798491c5260f524e", + "_id": "6808bace364a85cccb04b453", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b456", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b459", + "_tpl": "655746010177119f4a097ff7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b45c", + "_tpl": "628a66b41d5e41750e314f34", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b45f", + "_tpl": "653931da5db71d30ab1d6296", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b462", + "_tpl": "64943b74e9998d641b0412ed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b465", + "_tpl": "6516e91f609aaf354b34b3e2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bace364a85cccb04b467", "_tpl": "623063e994fc3f7b302a9696", "parentId": "hideout", "slotId": "hideout", @@ -9725,56 +9893,68 @@ } }, { - "_id": "676d24b6798491c5260f524f", + "_id": "6808bace364a85cccb04b468", "_tpl": "62307b7b10d2321fa8741921", - "parentId": "676d24b6798491c5260f524e", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_magazine" }, { - "_id": "676d24b6798491c5260f5250", + "_id": "6808bace364a85cccb04b469", "_tpl": "622f140da5958f63c67f1735", - "parentId": "676d24b6798491c5260f524e", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_stock" }, { - "_id": "676d24b6798491c5260f5251", + "_id": "6808bace364a85cccb04b46a", "_tpl": "622b38c56762c718e457e246", - "parentId": "676d24b6798491c5260f524e", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_barrel" }, { - "_id": "676d24b6798491c5260f5252", + "_id": "6808bace364a85cccb04b46b", "_tpl": "622f128cec80d870d349b4e8", - "parentId": "676d24b6798491c5260f5251", + "parentId": "6808bace364a85cccb04b46a", "slotId": "mod_muzzle" }, { - "_id": "676d24b6798491c5260f5253", + "_id": "6808bace364a85cccb04b46c", "_tpl": "622b327b267a1b13a44abea3", - "parentId": "676d24b6798491c5260f5251", + "parentId": "6808bace364a85cccb04b46a", "slotId": "mod_gas_block" }, { - "_id": "676d24b6798491c5260f5254", + "_id": "6808bace364a85cccb04b46d", "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "676d24b6798491c5260f524e", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_handguard" }, { - "_id": "676d24b6798491c5260f5255", + "_id": "6808bace364a85cccb04b46e", "_tpl": "622f02437762f55aaa68ac85", - "parentId": "676d24b6798491c5260f524e", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_mount" }, { - "_id": "676d24b6798491c5260f5256", - "_tpl": "622b4f54dc8dcc0ba8742f85", - "parentId": "676d24b6798491c5260f524e", + "_id": "6808bace364a85cccb04b46f", + "_tpl": "622b3c081b89c677a33bcda6", + "parentId": "6808bace364a85cccb04b467", "slotId": "mod_scope" }, { - "_id": "676d24b6798491c5260f5259", - "_tpl": "6284bd5f95250a29bc628a30", + "_id": "6808bace364a85cccb04b470", + "_tpl": "623166e08c43374ca1567195", + "parentId": "6808bace364a85cccb04b46f", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bace364a85cccb04b471", + "_tpl": "6231670f0b8aa5472d060095", + "parentId": "6808bace364a85cccb04b46f", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bace364a85cccb04b474", + "_tpl": "6529370c405a5f51dd023db8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9785,55 +9965,43 @@ } }, { - "_id": "676d24b6798491c5260f525c", - "_tpl": "630f291b9f66a28b37094bb8", + "_id": "6808bace364a85cccb04b477", + "_tpl": "62307b7b10d2321fa8741921", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 12, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b6798491c5260f525f", - "_tpl": "622b38c56762c718e457e246", + "_id": "6808bace364a85cccb04b47a", + "_tpl": "651bf5617b3b552ef6712cb7", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b6798491c5260f5262", - "_tpl": "5ae30db85acfc408fb139a05", + "_id": "6808bace364a85cccb04b47d", + "_tpl": "62e7c98b550c8218d602cbb4", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b6798491c5260f5265", - "_tpl": "61825d06d92c473c770215de", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f526b", + "_id": "6808bace364a85cccb04b480", "_tpl": "5ae30e795acfc408fb139a0b", "parentId": "hideout", "slotId": "hideout", @@ -9845,175 +10013,7 @@ } }, { - "_id": "676d24b6798491c5260f526e", - "_tpl": "6516e91f609aaf354b34b3e2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5271", - "_tpl": "655746010177119f4a097ff7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5274", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5277", - "_tpl": "5de8e67c4a9f347bc92edbd7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f527a", - "_tpl": "5de922d4b11454561e39239f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f527d", - "_tpl": "5bd704e7209c4d00d7167c31", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5280", - "_tpl": "630e295c984633f1fb0e7c30", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5283", - "_tpl": "6231670f0b8aa5472d060095", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5286", - "_tpl": "62e7c8f91cd3fde4d503d690", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f5289", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f528c", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b6798491c5260f528f", - "_tpl": "5a398b75c4a282000a51a266", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f5292", - "_tpl": "5a398ab9c4a282000c5a9842", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f5295", - "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f5297", + "_id": "6808bace364a85cccb04b482", "_tpl": "5a154d5cfcdbcb001a3b00da", "parentId": "hideout", "slotId": "hideout", @@ -10029,31 +10029,124 @@ } }, { - "_id": "676d24b7798491c5260f5298", + "_id": "6808bace364a85cccb04b483", "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "676d24b7798491c5260f5297", + "parentId": "6808bace364a85cccb04b482", "slotId": "Helmet_top" }, { - "_id": "676d24b7798491c5260f5299", + "_id": "6808bace364a85cccb04b484", "_tpl": "657f8f10f4c82973640b2350", - "parentId": "676d24b7798491c5260f5297", + "parentId": "6808bace364a85cccb04b482", "slotId": "Helmet_back" }, { - "_id": "676d24b7798491c5260f529a", + "_id": "6808bace364a85cccb04b485", "_tpl": "5a16b7e1fcdbcb00165aa6c9", - "parentId": "676d24b7798491c5260f5297", + "parentId": "6808bace364a85cccb04b482", "slotId": "mod_equipment_000" }, { - "_id": "676d24b7798491c5260f529b", + "_id": "6808bace364a85cccb04b486", "_tpl": "5a16b9fffcdbcb0176308b34", - "parentId": "676d24b7798491c5260f5297", + "parentId": "6808bace364a85cccb04b482", "slotId": "mod_equipment_001" }, { - "_id": "676d24b7798491c5260f529e", + "_id": "6808bace364a85cccb04b489", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bacf364a85cccb04b48b", + "_tpl": "6680304edadb7aa61d00cef0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bacf364a85cccb04b48c", + "_tpl": "66866f4ec3d473265104f381", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_magazine" + }, + { + "_id": "6808bacf364a85cccb04b48d", + "_tpl": "668670e3fb75ee4a5e02eb16", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_muzzle_000" + }, + { + "_id": "6808bacf364a85cccb04b48e", + "_tpl": "668672b8c99550c6fd0f0b29", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6808bacf364a85cccb04b48f", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "6808bacf364a85cccb04b48e", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bacf364a85cccb04b490", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "6808bacf364a85cccb04b48f", + "slotId": "mod_stock" + }, + { + "_id": "6808bacf364a85cccb04b491", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6808bacf364a85cccb04b490", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bacf364a85cccb04b492", + "_tpl": "6680326874b8f2050c0b9178", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_reciever" + }, + { + "_id": "6808bacf364a85cccb04b493", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "6808bacf364a85cccb04b492", + "slotId": "mod_scope" + }, + { + "_id": "6808bacf364a85cccb04b494", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bacf364a85cccb04b495", + "_tpl": "668670432b934a68630a7fe8", + "parentId": "6808bacf364a85cccb04b48b", + "slotId": "mod_barrel" + }, + { + "_id": "6808bacf364a85cccb04b498", "_tpl": "5c6d10fa2e221600106f3f23", "parentId": "hideout", "slotId": "hideout", @@ -10065,78 +10158,7 @@ } }, { - "_id": "676d24b7798491c5260f52a1", - "_tpl": "66152060a031cbb5570e3466", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52a4", - "_tpl": "66b5f6a28ca68c6461709ed8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52a8", - "_tpl": "676149a3e2cf1419500357eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52ab", - "_tpl": "6761492dc53ebe8c0f0a5efe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52ae", - "_tpl": "5894a73486f77426d259076c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52b1", - "_tpl": "676176b762e0497044079f49", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52b3", + "_id": "6808bacf364a85cccb04b49a", "_tpl": "6183afd850224f204c1da514", "parentId": "hideout", "slotId": "hideout", @@ -10152,163 +10174,151 @@ } }, { - "_id": "676d24b7798491c5260f52b4", + "_id": "6808bacf364a85cccb04b49b", "_tpl": "5d15cf3bd7ad1a67e71518b2", - "parentId": "676d24b7798491c5260f52b3", + "parentId": "6808bacf364a85cccb04b49a", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b7798491c5260f52b5", + "_id": "6808bacf364a85cccb04b49c", "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "676d24b7798491c5260f52b3", + "parentId": "6808bacf364a85cccb04b49a", "slotId": "mod_magazine" }, { - "_id": "676d24b7798491c5260f52b6", + "_id": "6808bacf364a85cccb04b49d", "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "676d24b7798491c5260f52b3", + "parentId": "6808bacf364a85cccb04b49a", "slotId": "mod_reciever" }, { - "_id": "676d24b7798491c5260f52b7", + "_id": "6808bacf364a85cccb04b49e", "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_scope" }, { - "_id": "676d24b7798491c5260f52b8", + "_id": "6808bacf364a85cccb04b49f", "_tpl": "6183b0711cb55961fa0fdcad", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_barrel" }, { - "_id": "676d24b7798491c5260f52b9", + "_id": "6808bacf364a85cccb04b4a0", "_tpl": "612e0e3c290d254f5e6b291d", - "parentId": "676d24b7798491c5260f52b8", + "parentId": "6808bacf364a85cccb04b49f", "slotId": "mod_muzzle" }, { - "_id": "676d24b7798491c5260f52ba", + "_id": "6808bacf364a85cccb04b4a1", "_tpl": "61816fcad92c473c770215cc", - "parentId": "676d24b7798491c5260f52b8", + "parentId": "6808bacf364a85cccb04b49f", "slotId": "mod_sight_front" }, { - "_id": "676d24b7798491c5260f52bb", + "_id": "6808bacf364a85cccb04b4a2", "_tpl": "61817865d3a39d50044c13a4", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_sight_rear" }, { - "_id": "676d24b7798491c5260f52bc", + "_id": "6808bacf364a85cccb04b4a3", "_tpl": "619666f4af1f5202c57a952d", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_mount_000" }, { - "_id": "676d24b7798491c5260f52bd", + "_id": "6808bacf364a85cccb04b4a4", "_tpl": "57cffcd624597763133760c5", - "parentId": "676d24b7798491c5260f52bc", + "parentId": "6808bacf364a85cccb04b4a3", "slotId": "mod_foregrip" }, { - "_id": "676d24b7798491c5260f52be", + "_id": "6808bacf364a85cccb04b4a5", "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "676d24b7798491c5260f52bc", + "parentId": "6808bacf364a85cccb04b4a3", "slotId": "mod_mount_002" }, { - "_id": "676d24b7798491c5260f52bf", + "_id": "6808bacf364a85cccb04b4a6", "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "676d24b7798491c5260f52bc", + "parentId": "6808bacf364a85cccb04b4a3", "slotId": "mod_mount_000" }, { - "_id": "676d24b7798491c5260f52c0", + "_id": "6808bacf364a85cccb04b4a7", "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "676d24b7798491c5260f52bc", + "parentId": "6808bacf364a85cccb04b4a3", "slotId": "mod_mount_001" }, { - "_id": "676d24b7798491c5260f52c1", + "_id": "6808bacf364a85cccb04b4a8", "_tpl": "6267c6396b642f77f56f5c1c", - "parentId": "676d24b7798491c5260f52c0", + "parentId": "6808bacf364a85cccb04b4a7", "slotId": "mod_tactical" }, { - "_id": "676d24b7798491c5260f52c2", + "_id": "6808bacf364a85cccb04b4a9", "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "676d24b7798491c5260f52c1", + "parentId": "6808bacf364a85cccb04b4a8", "slotId": "mod_flashlight" }, { - "_id": "676d24b7798491c5260f52c3", + "_id": "6808bacf364a85cccb04b4aa", "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_tactical_000" }, { - "_id": "676d24b7798491c5260f52c4", + "_id": "6808bacf364a85cccb04b4ab", "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "676d24b7798491c5260f52b6", + "parentId": "6808bacf364a85cccb04b49d", "slotId": "mod_mount_002" }, { - "_id": "676d24b7798491c5260f52c5", + "_id": "6808bacf364a85cccb04b4ac", "_tpl": "615d8d878004cc50514c3233", - "parentId": "676d24b7798491c5260f52c4", + "parentId": "6808bacf364a85cccb04b4ab", "slotId": "mod_scope" }, { - "_id": "676d24b7798491c5260f52c6", + "_id": "6808bacf364a85cccb04b4ad", "_tpl": "616442e4faa1272e43152193", - "parentId": "676d24b7798491c5260f52c5", + "parentId": "6808bacf364a85cccb04b4ac", "slotId": "mod_scope" }, { - "_id": "676d24b7798491c5260f52c7", + "_id": "6808bacf364a85cccb04b4ae", "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "676d24b7798491c5260f52b3", + "parentId": "6808bacf364a85cccb04b49a", "slotId": "mod_stock" }, { - "_id": "676d24b7798491c5260f52c8", + "_id": "6808bacf364a85cccb04b4af", "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "676d24b7798491c5260f52c7", + "parentId": "6808bacf364a85cccb04b4ae", "slotId": "mod_stock_001" }, { - "_id": "676d24b7798491c5260f52c9", + "_id": "6808bacf364a85cccb04b4b0", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "676d24b7798491c5260f52c8", + "parentId": "6808bacf364a85cccb04b4af", "slotId": "mod_stock" }, { - "_id": "676d24b7798491c5260f52ca", + "_id": "6808bacf364a85cccb04b4b1", "_tpl": "61825d24d3a39d50044c13af", - "parentId": "676d24b7798491c5260f52c7", + "parentId": "6808bacf364a85cccb04b4ae", "slotId": "mod_stock_002" }, { - "_id": "676d24b7798491c5260f52cb", + "_id": "6808bacf364a85cccb04b4b2", "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "676d24b7798491c5260f52b3", + "parentId": "6808bacf364a85cccb04b49a", "slotId": "mod_charge" }, { - "_id": "676d24b7798491c5260f52ce", - "_tpl": "6698c8c736ba38d29101770b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52d1", + "_id": "6808bacf364a85cccb04b4b5", "_tpl": "66867023c3d473265104f384", "parentId": "hideout", "slotId": "hideout", @@ -10320,8 +10330,8 @@ } }, { - "_id": "676d24b7798491c5260f52d4", - "_tpl": "676149fbe2cf1419500357ee", + "_id": "6808bacf364a85cccb04b4b8", + "_tpl": "660ea4453786cc0af808a1be", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10332,8 +10342,8 @@ } }, { - "_id": "676d24b7798491c5260f52d7", - "_tpl": "58a56f8d86f774651579314c", + "_id": "6808bacf364a85cccb04b4bb", + "_tpl": "66ffe6916f11538c7d0581e1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10344,31 +10354,7 @@ } }, { - "_id": "676d24b7798491c5260f52da", - "_tpl": "5f6339d53ada5942720e2dc3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52dd", - "_tpl": "66881008f23233ee9a0742e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52e0", + "_id": "6808bacf364a85cccb04b4be", "_tpl": "660126f7c752a02bbe05e688", "parentId": "hideout", "slotId": "hideout", @@ -10380,7 +10366,7 @@ } }, { - "_id": "676d24b7798491c5260f52e3", + "_id": "6808bacf364a85cccb04b4c1", "_tpl": "6601268bc752a02bbe05e686", "parentId": "hideout", "slotId": "hideout", @@ -10392,8 +10378,8 @@ } }, { - "_id": "676d24b7798491c5260f52e6", - "_tpl": "66ffe7bab8da88805e07a03e", + "_id": "6808bacf364a85cccb04b4c4", + "_tpl": "58949edd86f77409483e16a9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10404,225 +10390,8 @@ } }, { - "_id": "676d24b7798491c5260f52e9", - "_tpl": "67069d3bb29a2cd338033390", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52ec", - "_tpl": "67069d66af4890b09f0006ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52ef", - "_tpl": "5bb20d92d4351e00853263eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52f2", - "_tpl": "5c5db5c62e22160012542255", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52f4", - "_tpl": "66992b349950f5f4cd06029f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24b7798491c5260f52f5", - "_tpl": "669927203c4fda6471005cbe", - "parentId": "676d24b7798491c5260f52f4", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b7798491c5260f52f6", - "_tpl": "6698c8ab29e062525d0ad8ab", - "parentId": "676d24b7798491c5260f52f4", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b7798491c5260f52f7", - "_tpl": "6698c9aa36ba38d29101770f", - "parentId": "676d24b7798491c5260f52f6", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b7798491c5260f52f8", - "_tpl": "6698c8c736ba38d29101770b", - "parentId": "676d24b7798491c5260f52f4", - "slotId": "mod_handguard" - }, - { - "_id": "676d24b7798491c5260f52f9", - "_tpl": "669946c157df3e2b4e0a0dc5", - "parentId": "676d24b7798491c5260f52f4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b7798491c5260f52fa", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "676d24b7798491c5260f52f4", - "slotId": "mod_stock" - }, - { - "_id": "676d24b7798491c5260f52fd", - "_tpl": "6698c9aa36ba38d29101770f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b7798491c5260f52ff", - "_tpl": "6680304edadb7aa61d00cef0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24b7798491c5260f5300", - "_tpl": "66866f4ec3d473265104f381", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b7798491c5260f5301", - "_tpl": "668670e3fb75ee4a5e02eb16", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_muzzle_000" - }, - { - "_id": "676d24b7798491c5260f5302", - "_tpl": "668672b8c99550c6fd0f0b29", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "676d24b7798491c5260f5303", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "676d24b7798491c5260f5302", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24b7798491c5260f5304", - "_tpl": "5c793fb92e221644f31bfb64", - "parentId": "676d24b7798491c5260f5303", - "slotId": "mod_stock" - }, - { - "_id": "676d24b7798491c5260f5305", - "_tpl": "58d2946386f774496974c37e", - "parentId": "676d24b7798491c5260f5304", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24b7798491c5260f5306", - "_tpl": "6680326874b8f2050c0b9178", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b7798491c5260f5307", - "_tpl": "558022b54bdc2dac148b458d", - "parentId": "676d24b7798491c5260f5306", - "slotId": "mod_scope" - }, - { - "_id": "676d24b7798491c5260f5308", - "_tpl": "5fce0cf655375d18a253eff0", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_foregrip" - }, - { - "_id": "676d24b7798491c5260f5309", - "_tpl": "668670432b934a68630a7fe8", - "parentId": "676d24b7798491c5260f52ff", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b8798491c5260f530c", - "_tpl": "66ffc2bd132225f0fe0611d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f530f", - "_tpl": "6698c8ab29e062525d0ad8ab", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5312", - "_tpl": "66992713ae08c5c29e0c4f97", + "_id": "6808bacf364a85cccb04b4c7", + "_tpl": "6699271b9950f5f4cd060299", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10633,8 +10402,8 @@ } }, { - "_id": "676d24b8798491c5260f5315", - "_tpl": "66ffc72082d36dec82030c1f", + "_id": "6808bacf364a85cccb04b4ca", + "_tpl": "661e53149c8b4dadef008579", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10645,31 +10414,19 @@ } }, { - "_id": "676d24b8798491c5260f5318", - "_tpl": "66ffc20ba73a7bce3d0b45ab", + "_id": "6808bacf364a85cccb04b4cd", + "_tpl": "669927203c4fda6471005cbe", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "676d24b8798491c5260f531b", - "_tpl": "67110d6fa71d1f123d021cd3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f531e", + "_id": "6808bacf364a85cccb04b4d0", "_tpl": "67614a0be889e1972605d6c0", "parentId": "hideout", "slotId": "hideout", @@ -10681,8 +10438,8 @@ } }, { - "_id": "676d24b8798491c5260f5321", - "_tpl": "5fbcbd6c187fea44d52eda14", + "_id": "6808bacf364a85cccb04b4d3", + "_tpl": "6601265f98a610c1aa0ea637", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10693,8 +10450,8 @@ } }, { - "_id": "676d24b8798491c5260f5324", - "_tpl": "5894a2c386f77427140b8342", + "_id": "6808bacf364a85cccb04b4d6", + "_tpl": "660125bf1d087a96c60a54db", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10705,8 +10462,8 @@ } }, { - "_id": "676d24b8798491c5260f5327", - "_tpl": "669946c157df3e2b4e0a0dc5", + "_id": "6808bacf364a85cccb04b4d9", + "_tpl": "6698c9ed36ba38d291017713", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10717,8 +10474,8 @@ } }, { - "_id": "676d24b8798491c5260f532a", - "_tpl": "66866f4ec3d473265104f381", + "_id": "6808bacf364a85cccb04b4dc", + "_tpl": "58a5c12e86f7745d585a2b9e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10729,8 +10486,8 @@ } }, { - "_id": "676d24b8798491c5260f532d", - "_tpl": "5894a42086f77426d2590762", + "_id": "6808bad0364a85cccb04b4df", + "_tpl": "660126a98f2b23af220b27e7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10741,31 +10498,7 @@ } }, { - "_id": "676d24b8798491c5260f5330", - "_tpl": "5c0548ae0db834001966a3c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5333", - "_tpl": "5f6372e2865db925d54f3869", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5335", + "_id": "6808bad0364a85cccb04b4e1", "_tpl": "5c488a752e221602b412af63", "parentId": "hideout", "slotId": "hideout", @@ -10781,98 +10514,86 @@ } }, { - "_id": "676d24b8798491c5260f5336", + "_id": "6808bad0364a85cccb04b4e2", "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_pistol_grip" }, { - "_id": "676d24b8798491c5260f5337", + "_id": "6808bad0364a85cccb04b4e3", "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_magazine" }, { - "_id": "676d24b8798491c5260f5338", + "_id": "6808bad0364a85cccb04b4e4", "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_handguard" }, { - "_id": "676d24b8798491c5260f5339", + "_id": "6808bad0364a85cccb04b4e5", "_tpl": "651a8e529829226ceb67c319", - "parentId": "676d24b8798491c5260f5338", + "parentId": "6808bad0364a85cccb04b4e4", "slotId": "mod_mount_000" }, { - "_id": "676d24b8798491c5260f533a", + "_id": "6808bad0364a85cccb04b4e6", "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "676d24b8798491c5260f5338", + "parentId": "6808bad0364a85cccb04b4e4", "slotId": "mod_tactical" }, { - "_id": "676d24b8798491c5260f533b", + "_id": "6808bad0364a85cccb04b4e7", "_tpl": "5c18b90d2e2216152142466b", - "parentId": "676d24b8798491c5260f5338", + "parentId": "6808bad0364a85cccb04b4e4", "slotId": "mod_sight_front" }, { - "_id": "676d24b8798491c5260f533c", + "_id": "6808bad0364a85cccb04b4e8", "_tpl": "6269545d0e57f218e4548ca2", - "parentId": "676d24b8798491c5260f5338", + "parentId": "6808bad0364a85cccb04b4e4", "slotId": "mod_mount_002" }, { - "_id": "676d24b8798491c5260f533d", + "_id": "6808bad0364a85cccb04b4e9", "_tpl": "626becf9582c3e319310b837", - "parentId": "676d24b8798491c5260f533c", + "parentId": "6808bad0364a85cccb04b4e8", "slotId": "mod_tactical" }, { - "_id": "676d24b8798491c5260f533e", + "_id": "6808bad0364a85cccb04b4ea", "_tpl": "5c48a2852e221602b21d5923", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_barrel" }, { - "_id": "676d24b8798491c5260f533f", + "_id": "6808bad0364a85cccb04b4eb", "_tpl": "5ea172e498dacb342978818e", - "parentId": "676d24b8798491c5260f533e", + "parentId": "6808bad0364a85cccb04b4ea", "slotId": "mod_muzzle" }, { - "_id": "676d24b8798491c5260f5340", + "_id": "6808bad0364a85cccb04b4ec", "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "676d24b8798491c5260f533f", + "parentId": "6808bad0364a85cccb04b4eb", "slotId": "mod_muzzle" }, { - "_id": "676d24b8798491c5260f5341", + "_id": "6808bad0364a85cccb04b4ed", "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_scope" }, { - "_id": "676d24b8798491c5260f5342", + "_id": "6808bad0364a85cccb04b4ee", "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "676d24b8798491c5260f5335", + "parentId": "6808bad0364a85cccb04b4e1", "slotId": "mod_sight_rear" }, { - "_id": "676d24b8798491c5260f5345", - "_tpl": "5c5db5b82e2216003a0fe71d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5348", - "_tpl": "6601281fc752a02bbe05e696", + "_id": "6808bad0364a85cccb04b4f1", + "_tpl": "66866f4ec3d473265104f381", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10883,482 +10604,7 @@ } }, { - "_id": "676d24b8798491c5260f534b", - "_tpl": "66b5f69ea7f72d197e70bcdb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f534f", - "_tpl": "67069d8dad91f3a63c0bc2b4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5352", - "_tpl": "67110d5ed1758189fc0bd221", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5355", - "_tpl": "67614a225152c0eaed08ec86", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5357", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24b8798491c5260f5358", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "676d24b8798491c5260f5357", - "slotId": "mod_pistol_grip" - }, - { - "_id": "676d24b8798491c5260f5359", - "_tpl": "59bfe68886f7746004266202", - "parentId": "676d24b8798491c5260f5357", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b8798491c5260f535a", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "676d24b8798491c5260f5359", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b8798491c5260f535b", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "676d24b8798491c5260f535a", - "slotId": "mod_gas_block" - }, - { - "_id": "676d24b8798491c5260f535c", - "_tpl": "64943b74e9998d641b0412ed", - "parentId": "676d24b8798491c5260f535a", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b8798491c5260f535d", - "_tpl": "588b56d02459771481110ae2", - "parentId": "676d24b8798491c5260f5359", - "slotId": "mod_handguard" - }, - { - "_id": "676d24b8798491c5260f535e", - "_tpl": "6396aaa9a52ace83df0840ab", - "parentId": "676d24b8798491c5260f535d", - "slotId": "mod_handguard" - }, - { - "_id": "676d24b8798491c5260f535f", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "676d24b8798491c5260f535e", - "slotId": "mod_foregrip" - }, - { - "_id": "676d24b8798491c5260f5360", - "_tpl": "644a3df63b0b6f03e101e065", - "parentId": "676d24b8798491c5260f535d", - "slotId": "mod_tactical" - }, - { - "_id": "676d24b8798491c5260f5361", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "676d24b8798491c5260f535d", - "slotId": "mod_sight_front" - }, - { - "_id": "676d24b8798491c5260f5362", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "676d24b8798491c5260f5359", - "slotId": "mod_sight_rear" - }, - { - "_id": "676d24b8798491c5260f5363", - "_tpl": "5a1ead28fcdbcb001912fa9f", - "parentId": "676d24b8798491c5260f5359", - "slotId": "mod_scope" - }, - { - "_id": "676d24b8798491c5260f5364", - "_tpl": "5a1eaa87fcdbcb001865f75e", - "parentId": "676d24b8798491c5260f5363", - "slotId": "mod_scope" - }, - { - "_id": "676d24b8798491c5260f5365", - "_tpl": "5a1eacb3fcdbcb09800872be", - "parentId": "676d24b8798491c5260f5364", - "slotId": "mod_tactical" - }, - { - "_id": "676d24b8798491c5260f5366", - "_tpl": "5c793fb92e221644f31bfb64", - "parentId": "676d24b8798491c5260f5357", - "slotId": "mod_stock" - }, - { - "_id": "676d24b8798491c5260f5367", - "_tpl": "6516e91f609aaf354b34b3e2", - "parentId": "676d24b8798491c5260f5366", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24b8798491c5260f5368", - "_tpl": "6516e9d7e239bd0c487e3766", - "parentId": "676d24b8798491c5260f5367", - "slotId": "mod_stock_000" - }, - { - "_id": "676d24b8798491c5260f5369", - "_tpl": "5ea16d4d5aad6446a939753d", - "parentId": "676d24b8798491c5260f5357", - "slotId": "mod_charge" - }, - { - "_id": "676d24b8798491c5260f536a", - "_tpl": "544a37c44bdc2d25388b4567", - "parentId": "676d24b8798491c5260f5357", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b8798491c5260f536d", - "_tpl": "6686700a2b934a68630a7fe6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b8798491c5260f5370", - "_tpl": "660126a98f2b23af220b27e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5373", - "_tpl": "66ffe6c36f11538c7d0581e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5376", - "_tpl": "671883292e2eeb98d406f3b8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5379", - "_tpl": "67614a3ce2cf1419500357f4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f537c", - "_tpl": "5c5db5852e2216003a0fe71a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f537f", - "_tpl": "668031ffe3e7eb26e8004cdd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5382", - "_tpl": "66012d003dff5074ed002e2c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5385", - "_tpl": "661e53149c8b4dadef008579", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5388", - "_tpl": "6621455e3aceea9e2b0b01e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f538b", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f538e", - "_tpl": "66866f622a2296a8d9099639", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5391", - "_tpl": "660ea4453786cc0af808a1be", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5394", - "_tpl": "66012a1d3dff5074ed002e2a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5397", - "_tpl": "660125bf1d087a96c60a54db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f5399", - "_tpl": "6718817435e3cfd9550d2c27", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "676d24b9798491c5260f539a", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "676d24b9798491c5260f5399", - "slotId": "mod_magazine" - }, - { - "_id": "676d24b9798491c5260f539b", - "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "676d24b9798491c5260f5399", - "slotId": "mod_charge" - }, - { - "_id": "676d24b9798491c5260f539c", - "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "676d24b9798491c5260f5399", - "slotId": "mod_reciever" - }, - { - "_id": "676d24b9798491c5260f539d", - "_tpl": "630e39c3bd357927e4007c15", - "parentId": "676d24b9798491c5260f539c", - "slotId": "mod_barrel" - }, - { - "_id": "676d24b9798491c5260f539e", - "_tpl": "630f28f0cadb1fe05e06f004", - "parentId": "676d24b9798491c5260f539d", - "slotId": "mod_muzzle" - }, - { - "_id": "676d24b9798491c5260f539f", - "_tpl": "671883292e2eeb98d406f3b8", - "parentId": "676d24b9798491c5260f539d", - "slotId": "mod_foregrip" - }, - { - "_id": "676d24b9798491c5260f53a0", - "_tpl": "62ebd290c427473eff0baafb", - "parentId": "676d24b9798491c5260f539c", - "slotId": "mod_mount" - }, - { - "_id": "676d24b9798491c5260f53a3", - "_tpl": "66ffc6ceb7ff397142017c3a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53a6", - "_tpl": "66ffbfb1a73a7bce3d0b45a8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53a9", - "_tpl": "676149c5062e6212f5058c36", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53ac", - "_tpl": "5894a13e86f7742405482982", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53af", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53b1", + "_id": "6808bad0364a85cccb04b4f3", "_tpl": "6680304edadb7aa61d00cef0", "parentId": "hideout", "slotId": "hideout", @@ -11374,98 +10620,38 @@ } }, { - "_id": "676d24b9798491c5260f53b2", + "_id": "6808bad0364a85cccb04b4f4", "_tpl": "668031ffe3e7eb26e8004cdd", - "parentId": "676d24b9798491c5260f53b1", + "parentId": "6808bad0364a85cccb04b4f3", "slotId": "mod_magazine" }, { - "_id": "676d24b9798491c5260f53b3", + "_id": "6808bad0364a85cccb04b4f5", "_tpl": "668670e3fb75ee4a5e02eb16", - "parentId": "676d24b9798491c5260f53b1", + "parentId": "6808bad0364a85cccb04b4f3", "slotId": "mod_muzzle_000" }, { - "_id": "676d24b9798491c5260f53b4", + "_id": "6808bad0364a85cccb04b4f6", "_tpl": "66881008f23233ee9a0742e7", - "parentId": "676d24b9798491c5260f53b1", + "parentId": "6808bad0364a85cccb04b4f3", "slotId": "mod_stock" }, { - "_id": "676d24b9798491c5260f53b5", + "_id": "6808bad0364a85cccb04b4f7", "_tpl": "6680326874b8f2050c0b9178", - "parentId": "676d24b9798491c5260f53b1", + "parentId": "6808bad0364a85cccb04b4f3", "slotId": "mod_reciever" }, { - "_id": "676d24b9798491c5260f53b6", + "_id": "6808bad0364a85cccb04b4f8", "_tpl": "66866fe776d1a87cd80fd388", - "parentId": "676d24b9798491c5260f53b1", + "parentId": "6808bad0364a85cccb04b4f3", "slotId": "mod_barrel" }, { - "_id": "676d24b9798491c5260f53b9", - "_tpl": "669927203c4fda6471005cbe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53bc", - "_tpl": "6615208aa031cbb5570e346a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53bf", - "_tpl": "6615202b96461aa8360271eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53c2", - "_tpl": "6601265f98a610c1aa0ea637", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24b9798491c5260f53c5", - "_tpl": "67614a31062e6212f5058c38", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53c8", - "_tpl": "6761496fe2cf1419500357e9", + "_id": "6808bad0364a85cccb04b4fb", + "_tpl": "676149a3e2cf1419500357eb", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -11475,7 +10661,119 @@ } }, { - "_id": "676d24ba798491c5260f53cb", + "_id": "6808bad0364a85cccb04b4fe", + "_tpl": "67614a225152c0eaed08ec86", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad0364a85cccb04b501", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad0364a85cccb04b503", + "_tpl": "66992b349950f5f4cd06029f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bad0364a85cccb04b504", + "_tpl": "669927203c4fda6471005cbe", + "parentId": "6808bad0364a85cccb04b503", + "slotId": "mod_magazine" + }, + { + "_id": "6808bad0364a85cccb04b505", + "_tpl": "6698c8ab29e062525d0ad8ab", + "parentId": "6808bad0364a85cccb04b503", + "slotId": "mod_barrel" + }, + { + "_id": "6808bad0364a85cccb04b506", + "_tpl": "6698c9aa36ba38d29101770f", + "parentId": "6808bad0364a85cccb04b505", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bad0364a85cccb04b507", + "_tpl": "6698c8c736ba38d29101770b", + "parentId": "6808bad0364a85cccb04b503", + "slotId": "mod_handguard" + }, + { + "_id": "6808bad0364a85cccb04b508", + "_tpl": "669946c157df3e2b4e0a0dc5", + "parentId": "6808bad0364a85cccb04b503", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bad0364a85cccb04b509", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "6808bad0364a85cccb04b503", + "slotId": "mod_stock" + }, + { + "_id": "6808bad0364a85cccb04b50c", + "_tpl": "66ffc72082d36dec82030c1f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad0364a85cccb04b50f", + "_tpl": "66ffe6c36f11538c7d0581e3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad0364a85cccb04b512", + "_tpl": "676149fbe2cf1419500357ee", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad0364a85cccb04b515", "_tpl": "58949dea86f77409483e16a8", "parentId": "hideout", "slotId": "hideout", @@ -11487,8 +10785,8 @@ } }, { - "_id": "676d24ba798491c5260f53ce", - "_tpl": "6699271b9950f5f4cd060299", + "_id": "6808bad0364a85cccb04b518", + "_tpl": "66992713ae08c5c29e0c4f97", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -11499,235 +10797,7 @@ } }, { - "_id": "676d24ba798491c5260f53d1", - "_tpl": "6698c9ba29e062525d0ad8b1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53d4", - "_tpl": "66ffe66a20771d839f0fb4a9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53d7", - "_tpl": "6706a159c67236b2f703bb95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53da", - "_tpl": "66ffe2fbab3336cc0106382b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53dd", - "_tpl": "66ffe6916f11538c7d0581e1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53e0", - "_tpl": "6698c9ed36ba38d291017713", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53e3", - "_tpl": "668670432b934a68630a7fe8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53e6", - "_tpl": "66012d9a3dff5074ed002e33", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53e9", - "_tpl": "6601257f1347bc1a5f0f4db6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53ec", - "_tpl": "5894a81786f77427140b8347", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53ef", - "_tpl": "5c5db5962e2216000e5e46eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53f2", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53f5", - "_tpl": "668670e3fb75ee4a5e02eb16", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53f8", - "_tpl": "66012d64c752a02bbe05e69b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53fb", - "_tpl": "660126161347bc1a5f0f4dba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f53fe", - "_tpl": "661e52b5b099f32c28003586", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f5401", - "_tpl": "66ffc903fe9b382596065304", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f5404", - "_tpl": "66ffc2ecfe9b3825960652f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f5407", - "_tpl": "67110d06723c2733410161e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "676d24ba798491c5260f540a", + "_id": "6808bad0364a85cccb04b51b", "_tpl": "676149d8e889e1972605d6be", "parentId": "hideout", "slotId": "hideout", @@ -11739,8 +10809,8 @@ } }, { - "_id": "676d24ba798491c5260f540d", - "_tpl": "67614994e889e1972605d6bb", + "_id": "6808bad0364a85cccb04b51e", + "_tpl": "67069d66af4890b09f0006ec", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -11751,8 +10821,8 @@ } }, { - "_id": "676d24ba798491c5260f5410", - "_tpl": "6680326874b8f2050c0b9178", + "_id": "6808bad0364a85cccb04b521", + "_tpl": "5894a81786f77427140b8347", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -11763,8 +10833,8 @@ } }, { - "_id": "676d24ba798491c5260f5413", - "_tpl": "66866fe776d1a87cd80fd388", + "_id": "6808bad0364a85cccb04b524", + "_tpl": "6761492dc53ebe8c0f0a5efe", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -11775,7 +10845,184 @@ } }, { - "_id": "676d24bb798491c5260f5416", + "_id": "6808bad0364a85cccb04b527", + "_tpl": "66012d003dff5074ed002e2c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b52a", + "_tpl": "66b5f6a28ca68c6461709ed8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b52e", + "_tpl": "66012a1d3dff5074ed002e2a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b531", + "_tpl": "5c5db5962e2216000e5e46eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b533", + "_tpl": "6718817435e3cfd9550d2c27", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bad1364a85cccb04b534", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "6808bad1364a85cccb04b533", + "slotId": "mod_magazine" + }, + { + "_id": "6808bad1364a85cccb04b535", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "6808bad1364a85cccb04b533", + "slotId": "mod_charge" + }, + { + "_id": "6808bad1364a85cccb04b536", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "6808bad1364a85cccb04b533", + "slotId": "mod_reciever" + }, + { + "_id": "6808bad1364a85cccb04b537", + "_tpl": "630e39c3bd357927e4007c15", + "parentId": "6808bad1364a85cccb04b536", + "slotId": "mod_barrel" + }, + { + "_id": "6808bad1364a85cccb04b538", + "_tpl": "630f28f0cadb1fe05e06f004", + "parentId": "6808bad1364a85cccb04b537", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bad1364a85cccb04b539", + "_tpl": "671883292e2eeb98d406f3b8", + "parentId": "6808bad1364a85cccb04b537", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bad1364a85cccb04b53a", + "_tpl": "62ebd290c427473eff0baafb", + "parentId": "6808bad1364a85cccb04b536", + "slotId": "mod_mount" + }, + { + "_id": "6808bad1364a85cccb04b53d", + "_tpl": "66012d64c752a02bbe05e69b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b540", + "_tpl": "5894a73486f77426d259076c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b543", + "_tpl": "5c5db5b82e2216003a0fe71d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b546", + "_tpl": "67069d8dad91f3a63c0bc2b4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b549", + "_tpl": "6615202b96461aa8360271eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b54c", + "_tpl": "6761496fe2cf1419500357e9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 20000, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b54f", "_tpl": "6601279cc752a02bbe05e692", "parentId": "hideout", "slotId": "hideout", @@ -11787,7 +11034,306 @@ } }, { - "_id": "676d24bb798491c5260f5419", + "_id": "6808bad1364a85cccb04b552", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b555", + "_tpl": "676176b762e0497044079f49", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b558", + "_tpl": "676149c5062e6212f5058c36", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 20000, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b55b", + "_tpl": "661e52b5b099f32c28003586", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b55e", + "_tpl": "6680326874b8f2050c0b9178", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad1364a85cccb04b561", + "_tpl": "6621455e3aceea9e2b0b01e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b564", + "_tpl": "6698c8c736ba38d29101770b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b567", + "_tpl": "66881008f23233ee9a0742e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b56a", + "_tpl": "668031ffe3e7eb26e8004cdd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b56d", + "_tpl": "66152060a031cbb5570e3466", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b570", + "_tpl": "67069d3bb29a2cd338033390", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b573", + "_tpl": "6686700a2b934a68630a7fe6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b576", + "_tpl": "66ffc20ba73a7bce3d0b45ab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b579", + "_tpl": "668670432b934a68630a7fe8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b57c", + "_tpl": "668670e3fb75ee4a5e02eb16", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b57f", + "_tpl": "66012d9a3dff5074ed002e33", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b582", + "_tpl": "6698c9ba29e062525d0ad8b1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b585", + "_tpl": "66b5f69ea7f72d197e70bcdb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b589", + "_tpl": "67614a31062e6212f5058c38", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b58c", + "_tpl": "5894a42086f77426d2590762", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b58f", + "_tpl": "66866fe776d1a87cd80fd388", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b592", + "_tpl": "66ffc6ceb7ff397142017c3a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b595", + "_tpl": "67110d6fa71d1f123d021cd3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b598", + "_tpl": "5f6372e2865db925d54f3869", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b59b", + "_tpl": "5bb20d92d4351e00853263eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b59e", "_tpl": "66ffe5edfe9b38259606530d", "parentId": "hideout", "slotId": "hideout", @@ -11798,6 +11344,460 @@ "BuyRestrictionCurrent": 0 } }, + { + "_id": "6808bad2364a85cccb04b5a1", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad2364a85cccb04b5a4", + "_tpl": "6601257f1347bc1a5f0f4db6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5a7", + "_tpl": "67110d06723c2733410161e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5aa", + "_tpl": "6615208aa031cbb5570e346a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5ad", + "_tpl": "66ffc2ecfe9b3825960652f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5b0", + "_tpl": "67614994e889e1972605d6bb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5b2", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bad3364a85cccb04b5b3", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "6808bad3364a85cccb04b5b2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bad3364a85cccb04b5b4", + "_tpl": "59bfe68886f7746004266202", + "parentId": "6808bad3364a85cccb04b5b2", + "slotId": "mod_reciever" + }, + { + "_id": "6808bad3364a85cccb04b5b5", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "6808bad3364a85cccb04b5b4", + "slotId": "mod_barrel" + }, + { + "_id": "6808bad3364a85cccb04b5b6", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6808bad3364a85cccb04b5b5", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bad3364a85cccb04b5b7", + "_tpl": "64943b74e9998d641b0412ed", + "parentId": "6808bad3364a85cccb04b5b5", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bad3364a85cccb04b5b8", + "_tpl": "588b56d02459771481110ae2", + "parentId": "6808bad3364a85cccb04b5b4", + "slotId": "mod_handguard" + }, + { + "_id": "6808bad3364a85cccb04b5b9", + "_tpl": "6396aaa9a52ace83df0840ab", + "parentId": "6808bad3364a85cccb04b5b8", + "slotId": "mod_handguard" + }, + { + "_id": "6808bad3364a85cccb04b5ba", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "6808bad3364a85cccb04b5b9", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bad3364a85cccb04b5bb", + "_tpl": "644a3df63b0b6f03e101e065", + "parentId": "6808bad3364a85cccb04b5b8", + "slotId": "mod_tactical" + }, + { + "_id": "6808bad3364a85cccb04b5bc", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "6808bad3364a85cccb04b5b8", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bad3364a85cccb04b5bd", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "6808bad3364a85cccb04b5b4", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bad3364a85cccb04b5be", + "_tpl": "5a1ead28fcdbcb001912fa9f", + "parentId": "6808bad3364a85cccb04b5b4", + "slotId": "mod_scope" + }, + { + "_id": "6808bad3364a85cccb04b5bf", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "parentId": "6808bad3364a85cccb04b5be", + "slotId": "mod_scope" + }, + { + "_id": "6808bad3364a85cccb04b5c0", + "_tpl": "5a1eacb3fcdbcb09800872be", + "parentId": "6808bad3364a85cccb04b5bf", + "slotId": "mod_tactical" + }, + { + "_id": "6808bad3364a85cccb04b5c1", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "6808bad3364a85cccb04b5b2", + "slotId": "mod_stock" + }, + { + "_id": "6808bad3364a85cccb04b5c2", + "_tpl": "6516e91f609aaf354b34b3e2", + "parentId": "6808bad3364a85cccb04b5c1", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bad3364a85cccb04b5c3", + "_tpl": "6516e9d7e239bd0c487e3766", + "parentId": "6808bad3364a85cccb04b5c2", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bad3364a85cccb04b5c4", + "_tpl": "5ea16d4d5aad6446a939753d", + "parentId": "6808bad3364a85cccb04b5b2", + "slotId": "mod_charge" + }, + { + "_id": "6808bad3364a85cccb04b5c5", + "_tpl": "544a37c44bdc2d25388b4567", + "parentId": "6808bad3364a85cccb04b5b2", + "slotId": "mod_magazine" + }, + { + "_id": "6808bad3364a85cccb04b5c8", + "_tpl": "66866f622a2296a8d9099639", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5cb", + "_tpl": "66ffbfb1a73a7bce3d0b45a8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5ce", + "_tpl": "5c5db5852e2216003a0fe71a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5d1", + "_tpl": "66ffe66a20771d839f0fb4a9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5d4", + "_tpl": "6706a159c67236b2f703bb95", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5d7", + "_tpl": "660126161347bc1a5f0f4dba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5da", + "_tpl": "66ffe7bab8da88805e07a03e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5dd", + "_tpl": "6698c9aa36ba38d29101770f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5e0", + "_tpl": "671883292e2eeb98d406f3b8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5e3", + "_tpl": "67110d5ed1758189fc0bd221", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5e6", + "_tpl": "6698c8ab29e062525d0ad8ab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5e9", + "_tpl": "66ffc2bd132225f0fe0611d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5ec", + "_tpl": "5c0548ae0db834001966a3c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5ef", + "_tpl": "5894a13e86f7742405482982", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5f2", + "_tpl": "5f6339d53ada5942720e2dc3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5f5", + "_tpl": "669946c157df3e2b4e0a0dc5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5f8", + "_tpl": "66ffc903fe9b382596065304", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5fb", + "_tpl": "66ffe2fbab3336cc0106382b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad3364a85cccb04b5fe", + "_tpl": "5c5db5c62e22160012542255", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad4364a85cccb04b601", + "_tpl": "6601281fc752a02bbe05e696", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bad4364a85cccb04b604", + "_tpl": "67614a3ce2cf1419500357f4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, { "_id": "656629d07cac3c3b160e63fb", "_tpl": "61962b617c6c7b169525f168", @@ -11860,103 +11860,549 @@ } ], "barter_scheme": { - "676d24a3798491c5260f4a14": [ + "6808bab7364a85cccb04ac00": [ [ { - "count": 120.48, + "count": 163.71, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a1c": [ + "6808bab7364a85cccb04ac03": [ [ { - "count": 463.02, + "count": 38.49, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a2d": [ + "6808bab7364a85cccb04ac06": [ [ { - "count": 18.24, + "count": 32.46, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a30": [ + "6808bab7364a85cccb04ac09": [ [ { - "count": 212.01, + "count": 22.41, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a33": [ + "6808bab7364a85cccb04ac0c": [ [ { - "count": 377.54, + "count": 92.41, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a36": [ + "6808bab7364a85cccb04ac0f": [ [ { - "count": 41.69, + "count": 32.72, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a39": [ + "6808bab7364a85cccb04ac12": [ [ { - "count": 37.56, + "count": 65.42, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a3c": [ + "6808bab7364a85cccb04ac15": [ [ { - "count": 31.28, + "count": 22.1, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a3798491c5260f4a3f": [ + "6808bab7364a85cccb04ac18": [ [ { - "count": 118.38, + "count": 2, + "_tpl": "590a3b0486f7743954552bdb" + }, + { + "count": 1, + "_tpl": "5672cb724bdc2dc2088b456b" + } + ] + ], + "6808bab7364a85cccb04ac1b": [ + [ + { + "count": 42.72, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4a42": [ + "6808bab7364a85cccb04ac1e": [ [ { - "count": 82.06, + "count": 71.91, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4a45": [ + "6808bab7364a85cccb04ac21": [ [ { - "count": 40.48, + "count": 55.69, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4a48": [ + "6808bab7364a85cccb04ac24": [ [ { - "count": 121.01, + "count": 18.69, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4a4b": [ + "6808bab7364a85cccb04ac27": [ + [ + { + "count": 49.09, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac2a": [ + [ + { + "count": 366.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac2d": [ + [ + { + "count": 33.36, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac30": [ + [ + { + "count": 358.33, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac32": [ + [ + { + "count": 3, + "_tpl": "573477e124597737dd42e191" + }, + { + "count": 1, + "_tpl": "5734779624597737e04bf329" + } + ] + ], + "6808bab7364a85cccb04ac41": [ + [ + { + "count": 32.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac43": [ + [ + { + "count": 464.61, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac4d": [ + [ + { + "count": 84.08, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac50": [ + [ + { + "count": 154.13, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab7364a85cccb04ac53": [ + [ + { + "count": 71.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac56": [ + [ + { + "count": 18.9, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac59": [ + [ + { + "count": 18.14, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac5c": [ + [ + { + "count": 19.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac62": [ + [ + { + "count": 255.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac68": [ + [ + { + "count": 3.84, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac6b": [ + [ + { + "count": 68.52, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac6e": [ + [ + { + "count": 324.35, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac71": [ + [ + { + "count": 55.74, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac73": [ + [ + { + "count": 5, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 8, + "side": "Any" + } + ] + ], + "6808bab8364a85cccb04ac83": [ + [ + { + "count": 76.57, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac86": [ + [ + { + "count": 67.6, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac89": [ + [ + { + "count": 135, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab8364a85cccb04ac8d": [ + [ + { + "count": 151.88, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac90": [ + [ + { + "count": 7627.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac94": [ + [ + { + "count": 27.1, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac97": [ + [ + { + "count": 71.45, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac9a": [ + [ + { + "count": 36.16, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04ac9d": [ + [ + { + "count": 100.26, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04aca0": [ + [ + { + "count": 186.76, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04aca3": [ + [ + { + "count": 784.43, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04aca8": [ + [ + { + "count": 857.47, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04acad": [ + [ + { + "count": 63.24, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab8364a85cccb04acb0": [ + [ + { + "count": 32.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acb2": [ + [ + { + "count": 1, + "_tpl": "54491bb74bdc2d09088b4567" + }, + { + "count": 2, + "_tpl": "57e26fc7245977162a14b800" + } + ] + ], + "6808bab9364a85cccb04acbc": [ + [ + { + "count": 49.17, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acbf": [ + [ + { + "count": 14.65, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acc2": [ + [ + { + "count": 14.08, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acc5": [ + [ + { + "count": 528.2, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acc9": [ + [ + { + "count": 106.85, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04accc": [ + [ + { + "count": 70.65, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04accf": [ + [ + { + "count": 32.71, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acd2": [ + [ + { + "count": 41.48, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acd5": [ + [ + { + "count": 430.19, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acd8": [ + [ + { + "count": 51.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acda": [ + [ + { + "count": 314, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04ace9": [ + [ + { + "count": 474.41, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acfa": [ + [ + { + "count": 8.19, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04acfd": [ + [ + { + "count": 1, + "_tpl": "590a386e86f77429692b27ab" + } + ] + ], + "6808bab9364a85cccb04ad00": [ + [ + { + "count": 123.98, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04ad03": [ + [ + { + "count": 3.79, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04ad05": [ + [ + { + "count": 280.96, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04ad0e": [ + [ + { + "count": 4, + "_tpl": "57e26ea924597715ca604a09" + } + ] + ], + "6808bab9364a85cccb04ad17": [ + [ + { + "count": 0.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bab9364a85cccb04ad1a": [ [ { "count": 1, @@ -11976,161 +12422,15 @@ } ] ], - "676d24a4798491c5260f4a4e": [ + "6808baba364a85cccb04ad1c": [ [ { - "count": 120.76, + "count": 1262.56, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4a51": [ - [ - { - "count": 287.58, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a54": [ - [ - { - "count": 765.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a57": [ - [ - { - "count": 50.22, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a5a": [ - [ - { - "count": 31.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a5d": [ - [ - { - "count": 14.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a60": [ - [ - { - "count": 35.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a62": [ - [ - { - "count": 306.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a72": [ - [ - { - "count": 17.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a75": [ - [ - { - "count": 74.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a78": [ - [ - { - "count": 90.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a7b": [ - [ - { - "count": 63.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a7e": [ - [ - { - "count": 290.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a81": [ - [ - { - "count": 31.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a84": [ - [ - { - "count": 351.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a87": [ - [ - { - "count": 54.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a8a": [ - [ - { - "count": 65.97, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4a8c": [ - [ - { - "count": 5, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 8, - "side": "Any" - } - ] - ], - "676d24a4798491c5260f4a9b": [ - [ - { - "count": 453.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a4798491c5260f4aa5": [ + "6808baba364a85cccb04ad27": [ [ { "count": 3, @@ -12138,291 +12438,615 @@ } ] ], - "676d24a4798491c5260f4aa8": [ + "6808baba364a85cccb04ad2a": [ [ { - "count": 70.26, + "count": 34.24, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4aab": [ + "6808baba364a85cccb04ad2d": [ [ { - "count": 334.4, + "count": 68.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4aae": [ + "6808baba364a85cccb04ad30": [ [ { - "count": 38.61, + "count": 201.88, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4ab1": [ + "6808baba364a85cccb04ad33": [ [ { - "count": 349.73, + "count": 14.36, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a4798491c5260f4ab4": [ + "6808baba364a85cccb04ad36": [ [ { - "count": 257.82, + "count": 261.37, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ab7": [ + "6808baba364a85cccb04ad39": [ [ { - "count": 28.67, + "count": 0.99, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4aba": [ + "6808baba364a85cccb04ad3c": [ [ { - "count": 1.58, + "count": 342.62, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4abd": [ + "6808baba364a85cccb04ad3f": [ [ { - "count": 0.49, + "count": 94.21, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ac0": [ + "6808baba364a85cccb04ad42": [ [ { - "count": 24.34, + "count": 148.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ac3": [ + "6808baba364a85cccb04ad45": [ [ { - "count": 35.29, + "count": 192.41, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ac6": [ + "6808baba364a85cccb04ad48": [ [ { - "count": 46.27, + "count": 352.87, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ac9": [ + "6808baba364a85cccb04ad4b": [ [ { - "count": 148.24, + "count": 33.36, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4acc": [ + "6808baba364a85cccb04ad4e": [ [ { - "count": 54.4, + "count": 75.44, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ad2": [ + "6808baba364a85cccb04ad51": [ [ { - "count": 249.33, + "count": 108.11, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ad8": [ + "6808baba364a85cccb04ad54": [ [ { - "count": 18.44, + "count": 39.55, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4adb": [ + "6808baba364a85cccb04ad57": [ [ { - "count": 33.41, + "count": 240.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ade": [ + "6808baba364a85cccb04ad5a": [ [ { - "count": 70.58, + "count": 360.3, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ae2": [ + "6808baba364a85cccb04ad5d": [ [ { - "count": 316.56, + "count": 264.16, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4ae4": [ + "6808baba364a85cccb04ad60": [ [ { - "count": 4, - "_tpl": "57e26ea924597715ca604a09" - } - ] - ], - "676d24a5798491c5260f4aed": [ - [ - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - } - ] - ], - "676d24a5798491c5260f4af0": [ - [ - { - "count": 0.97, + "count": 123.73, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4af3": [ + "6808baba364a85cccb04ad63": [ [ { - "count": 32.36, + "count": 18.93, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4af6": [ + "6808baba364a85cccb04ad66": [ [ { - "count": 2, - "_tpl": "590a3b0486f7743954552bdb" - }, - { - "count": 1, - "_tpl": "5672cb724bdc2dc2088b456b" - } - ] - ], - "676d24a5798491c5260f4af9": [ - [ - { - "count": 57.45, + "count": 0.5, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4afb": [ + "6808babb364a85cccb04ad69": [ [ { - "count": 1035.58, + "count": 95.92, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b01": [ + "6808babb364a85cccb04ad6c": [ [ { - "count": 138, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "676d24a5798491c5260f4b04": [ - [ - { - "count": 274.22, + "count": 1.62, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b0e": [ + "6808babb364a85cccb04ad6f": [ [ { - "count": 10.97, + "count": 386.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b11": [ + "6808babb364a85cccb04ad72": [ [ { - "count": 97.86, + "count": 16.02, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b14": [ + "6808babb364a85cccb04ad75": [ [ { - "count": 47.91, + "count": 33.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b17": [ + "6808babb364a85cccb04ad78": [ [ { - "count": 66.88, + "count": 17.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b1a": [ + "6808babb364a85cccb04ad7b": [ [ { - "count": 197.03, + "count": 121.29, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a5798491c5260f4b1f": [ + "6808babb364a85cccb04ad7e": [ [ { - "count": 836.89, + "count": 68.52, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b24": [ + "6808babb364a85cccb04ad81": [ [ { - "count": 32.56, + "count": 146.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b27": [ + "6808babb364a85cccb04ad84": [ [ { - "count": 21.57, + "count": 29.38, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b29": [ + "6808babb364a85cccb04ad87": [ + [ + { + "count": 125.19, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad8a": [ + [ + { + "count": 607.03, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad8d": [ + [ + { + "count": 59.09, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad8f": [ + [ + { + "count": 1061.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad95": [ + [ + { + "count": 11.24, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad98": [ + [ + { + "count": 231.37, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad9b": [ + [ + { + "count": 28.4, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ad9e": [ + [ + { + "count": 34.43, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ada1": [ + [ + { + "count": 49.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ada4": [ + [ + { + "count": 103.17, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04ada7": [ + [ + { + "count": 24.94, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babb364a85cccb04adaa": [ + [ + { + "count": 58.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adad": [ + [ + { + "count": 10.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adb0": [ + [ + { + "count": 211.67, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adb3": [ + [ + { + "count": 297.21, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adb6": [ + [ + { + "count": 100.98, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adb8": [ + [ + { + "count": 123.44, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adc1": [ + [ + { + "count": 38.48, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adc4": [ + [ + { + "count": 32.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adc7": [ + [ + { + "count": 47.41, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adca": [ + [ + { + "count": 172.55, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adcd": [ + [ + { + "count": 29.48, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04add0": [ + [ + { + "count": 217.22, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04add3": [ + [ + { + "count": 221.51, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04add6": [ + [ + { + "count": 32.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04add9": [ + [ + { + "count": 385.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04addc": [ + [ + { + "count": 294.65, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04addf": [ + [ + { + "count": 40.38, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04ade2": [ + [ + { + "count": 220.32, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04ade5": [ + [ + { + "count": 22.13, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04ade8": [ + [ + { + "count": 172.38, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adeb": [ + [ + { + "count": 36.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adee": [ + [ + { + "count": 72.31, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adf2": [ + [ + { + "count": 213.72, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adf5": [ + [ + { + "count": 14.88, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babc364a85cccb04adf8": [ + [ + { + "count": 113.42, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04adfb": [ + [ + { + "count": 14.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04adfe": [ + [ + { + "count": 73.01, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae01": [ + [ + { + "count": 27.42, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae04": [ + [ + { + "count": 32.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae07": [ + [ + { + "count": 14.26, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae0a": [ + [ + { + "count": 33.83, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae0d": [ + [ + { + "count": 73.02, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae10": [ + [ + { + "count": 314.47, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae13": [ + [ + { + "count": 66.62, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babd364a85cccb04ae15": [ [ { "count": 3, @@ -12434,927 +13058,111 @@ } ] ], - "676d24a6798491c5260f4b42": [ + "6808babd364a85cccb04ae2e": [ [ { - "count": 31.68, + "count": 392.39, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b45": [ + "6808babd364a85cccb04ae31": [ [ { - "count": 66.88, + "count": 2.43, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b48": [ + "6808babd364a85cccb04ae34": [ [ { - "count": 15.64, + "count": 172.21, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b4a": [ + "6808babd364a85cccb04ae37": [ [ { - "count": 1232.26, + "count": 674.43, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b55": [ + "6808babd364a85cccb04ae3a": [ [ { - "count": 150.43, + "count": 22.25, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b58": [ + "6808babd364a85cccb04ae3d": [ [ { - "count": 225.82, + "count": 1503.52, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b5b": [ + "6808babd364a85cccb04ae40": [ [ { - "count": 187.79, + "count": 226.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b5e": [ + "6808babd364a85cccb04ae47": [ [ { - "count": 419.87, + "count": 308.59, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b61": [ + "6808babd364a85cccb04ae4e": [ [ { - "count": 67.17, + "count": 36.3, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b64": [ + "6808babd364a85cccb04ae51": [ [ { - "count": 32.56, + "count": 23.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b67": [ + "6808babd364a85cccb04ae54": [ [ { - "count": 168.41, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b6a": [ + "6808babd364a85cccb04ae57": [ [ { - "count": 68.96, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b6d": [ + "6808babd364a85cccb04ae5a": [ [ { - "count": 14.52, + "count": 538.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24a6798491c5260f4b70": [ - [ - { - "count": 105.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b73": [ - [ - { - "count": 71.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b76": [ - [ - { - "count": 7444.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b7a": [ - [ - { - "count": 26.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b7d": [ - [ - { - "count": 14.3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b80": [ - [ - { - "count": 206.59, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b83": [ - [ - { - "count": 21.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b86": [ - [ - { - "count": 31.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b89": [ - [ - { - "count": 592.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b8c": [ - [ - { - "count": 306.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b8f": [ - [ - { - "count": 71.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a6798491c5260f4b92": [ - [ - { - "count": 145.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4b95": [ - [ - { - "count": 376.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4b98": [ - [ - { - "count": 235.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4b9b": [ - [ - { - "count": 33.61, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4b9e": [ - [ - { - "count": 69.74, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4ba1": [ - [ - { - "count": 182.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4ba4": [ - [ - { - "count": 344.41, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4ba7": [ - [ - { - "count": 70.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4baa": [ - [ - { - "count": 73.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bad": [ - [ - { - "count": 110.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bb0": [ - [ - { - "count": 31.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bb3": [ - [ - { - "count": 122.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bb6": [ - [ - { - "count": 91.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bb9": [ - [ - { - "count": 93.61, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bbc": [ - [ - { - "count": 33.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bbf": [ - [ - { - "count": 208.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bc2": [ - [ - { - "count": 100.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bc5": [ - [ - { - "count": 7.99, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bc7": [ - [ - { - "count": 3, - "_tpl": "573477e124597737dd42e191" - }, - { - "count": 1, - "_tpl": "5734779624597737e04bf329" - } - ] - ], - "676d24a7798491c5260f4bd6": [ - [ - { - "count": 31.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bd9": [ - [ - { - "count": 48.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bdc": [ - [ - { - "count": 98.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bdf": [ - [ - { - "count": 47.99, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4be2": [ - [ - { - "count": 28.78, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4be5": [ - [ - { - "count": 104.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4be8": [ - [ - { - "count": 10.34, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4beb": [ - [ - { - "count": 159.78, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bee": [ - [ - { - "count": 61.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bf1": [ - [ - { - "count": 357.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a7798491c5260f4bf4": [ - [ - { - "count": 215.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4bf7": [ - [ - { - "count": 27.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4bfa": [ - [ - { - "count": 21.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4bfd": [ - [ - { - "count": 26.45, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c00": [ - [ - { - "count": 65.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c03": [ - [ - { - "count": 168.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c06": [ - [ - { - "count": 13.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c08": [ - [ - { - "count": 1, - "_tpl": "54491bb74bdc2d09088b4567" - }, - { - "count": 2, - "_tpl": "57e26fc7245977162a14b800" - } - ] - ], - "676d24a8798491c5260f4c12": [ - [ - { - "count": 18.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c15": [ - [ - { - "count": 13.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c18": [ - [ - { - "count": 216.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c1b": [ - [ - { - "count": 19.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c1e": [ - [ - { - "count": 3.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c21": [ - [ - { - "count": 255.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c24": [ - [ - { - "count": 57.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c27": [ - [ - { - "count": 0.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c2a": [ - [ - { - "count": 31.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c2d": [ - [ - { - "count": 142.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c30": [ - [ - { - "count": 17.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c33": [ - [ - { - "count": 39.42, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c36": [ - [ - { - "count": 3.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c39": [ - [ - { - "count": 14.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c3c": [ - [ - { - "count": 515.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c40": [ - [ - { - "count": 37.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c43": [ - [ - { - "count": 51.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c45": [ - [ - { - "count": 556.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c4d": [ - [ - { - "count": 47.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c50": [ - [ - { - "count": 21.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a8798491c5260f4c53": [ - [ - { - "count": 24.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c56": [ - [ - { - "count": 69.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c59": [ - [ - { - "count": 31.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c5c": [ - [ - { - "count": 2.38, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c5f": [ - [ - { - "count": 142.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c62": [ - [ - { - "count": 243.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c65": [ - [ - { - "count": 1.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c67": [ - [ - { - "count": 724.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c71": [ - [ - { - "count": 56.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c73": [ - [ - { - "count": 355.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c7a": [ - [ - { - "count": 525.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c7d": [ - [ - { - "count": 382.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c80": [ - [ - { - "count": 15.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c82": [ - [ - { - "count": 711.74, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4c90": [ - [ - { - "count": 10, - "_tpl": "5909e99886f7740c983b9984" - } - ] - ], - "676d24a9798491c5260f4c99": [ - [ - { - "count": 972, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4ca4": [ - [ - { - "count": 0.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4ca7": [ - [ - { - "count": 163.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4caa": [ - [ - { - "count": 35.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cad": [ - [ - { - "count": 1, - "_tpl": "5b43575a86f77424f443fe62" - } - ] - ], - "676d24a9798491c5260f4cb0": [ - [ - { - "count": 4.05, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cb3": [ - [ - { - "count": 16.38, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cb6": [ - [ - { - "count": 1, - "_tpl": "56742c2e4bdc2d95058b456d" - } - ] - ], - "676d24a9798491c5260f4cb9": [ - [ - { - "count": 168.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cbc": [ - [ - { - "count": 658.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cbe": [ - [ - { - "count": 814.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4ccc": [ - [ - { - "count": 2.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4ccf": [ - [ - { - "count": 21.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24a9798491c5260f4cd2": [ - [ - { - "count": 187.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24aa798491c5260f4cd5": [ - [ - { - "count": 24.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24aa798491c5260f4cd8": [ - [ - { - "count": 21.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24aa798491c5260f4cda": [ - [ - { - "count": 1031.91, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24aa798491c5260f4ce8": [ - [ - { - "count": 518.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24aa798491c5260f4ceb": [ + "6808babe364a85cccb04ae5c": [ [ { "count": 3, @@ -13366,111 +13174,991 @@ } ] ], - "676d24aa798491c5260f4cf6": [ + "6808babe364a85cccb04ae66": [ [ { - "count": 884.07, + "count": 729.25, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4cf9": [ + "6808babe364a85cccb04ae75": [ [ { - "count": 23.39, + "count": 2.8, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4cfc": [ + "6808babe364a85cccb04ae77": [ [ { - "count": 78.22, + "count": 742.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4cff": [ + "6808babe364a85cccb04ae80": [ [ { - "count": 447, + "count": 1057.29, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d02": [ + "6808babe364a85cccb04ae8e": [ [ { - "count": 221.41, + "count": 1.89, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d05": [ + "6808babe364a85cccb04ae91": [ [ { - "count": 1467.44, + "count": 32.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d0c": [ + "6808babe364a85cccb04ae93": [ [ { - "count": 301.18, + "count": 995.91, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d13": [ + "6808babe364a85cccb04ae9e": [ [ { - "count": 45.93, + "count": 249.42, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d16": [ + "6808babe364a85cccb04aea1": [ [ { - "count": 17.95, + "count": 905.8, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d19": [ + "6808babe364a85cccb04aea4": [ [ { - "count": 1.85, + "count": 1.35, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d1c": [ + "6808babe364a85cccb04aea7": [ [ { - "count": 359.97, + "count": 80.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d1f": [ + "6808babe364a85cccb04aeaa": [ [ { - "count": 19.65, + "count": 49.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d22": [ + "6808babe364a85cccb04aead": [ [ { - "count": 12.76, + "count": 167.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d24": [ + "6808babe364a85cccb04aeb0": [ + [ + { + "count": 16.78, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aeb3": [ + [ + { + "count": 458, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aeb6": [ + [ + { + "count": 47.06, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aeb9": [ + [ + { + "count": 16.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aebc": [ + [ + { + "count": 146.04, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aebf": [ + [ + { + "count": 1, + "_tpl": "56742c2e4bdc2d95058b456d" + } + ] + ], + "6808babe364a85cccb04aec2": [ + [ + { + "count": 4.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babe364a85cccb04aec4": [ + [ + { + "count": 364.62, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aecb": [ + [ + { + "count": 192.09, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aece": [ + [ + { + "count": 58.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aed1": [ + [ + { + "count": 1, + "_tpl": "5b43575a86f77424f443fe62" + } + ] + ], + "6808babf364a85cccb04aed4": [ + [ + { + "count": 0.72, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aed6": [ + [ + { + "count": 834.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aee4": [ + [ + { + "count": 25.24, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aee6": [ + [ + { + "count": 10, + "_tpl": "5909e99886f7740c983b9984" + } + ] + ], + "6808babf364a85cccb04aef0": [ + [ + { + "count": 71.27, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aef3": [ + [ + { + "count": 531.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aef7": [ + [ + { + "count": 25.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aefa": [ + [ + { + "count": 18.39, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aefd": [ + [ + { + "count": 52.31, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04aeff": [ + [ + { + "count": 570.64, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af07": [ + [ + { + "count": 91.97, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af0a": [ + [ + { + "count": 22.09, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af0d": [ + [ + { + "count": 37.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af10": [ + [ + { + "count": 33.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af12": [ + [ + { + "count": 114.28, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808babf364a85cccb04af1c": [ + [ + { + "count": 31.78, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af1f": [ + [ + { + "count": 437.48, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af21": [ + [ + { + "count": 230.2, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af29": [ + [ + { + "count": 2, + "_tpl": "5d0375ff86f774186372f685" + } + ] + ], + "6808bac0364a85cccb04af35": [ + [ + { + "count": 16.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af38": [ + [ + { + "count": 7.42, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af3b": [ + [ + { + "count": 105.4, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af3e": [ + [ + { + "count": 58.61, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af41": [ + [ + { + "count": 1.35, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af44": [ + [ + { + "count": 30.88, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af47": [ + [ + { + "count": 375.08, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af4a": [ + [ + { + "count": 89.26, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af4d": [ + [ + { + "count": 66.27, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af50": [ + [ + { + "count": 109.82, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af52": [ + [ + { + "count": 173.49, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af5b": [ + [ + { + "count": 2.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af60": [ + [ + { + "count": 788.55, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af65": [ + [ + { + "count": 0.85, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af68": [ + [ + { + "count": 73.03, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af6b": [ + [ + { + "count": 1, + "_tpl": "590a386e86f77429692b27ab" + }, + { + "count": 1, + "_tpl": "5734781f24597737e04bf32a" + } + ] + ], + "6808bac0364a85cccb04af6e": [ + [ + { + "count": 16.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af71": [ + [ + { + "count": 26.51, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af74": [ + [ + { + "count": 97.83, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af77": [ + [ + { + "count": 56.17, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac0364a85cccb04af7a": [ + [ + { + "count": 33, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af7d": [ + [ + { + "count": 0.69, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af80": [ + [ + { + "count": 35.16, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af83": [ + [ + { + "count": 42.38, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af86": [ + [ + { + "count": 94.67, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af89": [ + [ + { + "count": 10.82, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af8b": [ + [ + { + "count": 939.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af9a": [ + [ + { + "count": 25.22, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04af9d": [ + [ + { + "count": 20.13, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afa0": [ + [ + { + "count": 25.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afa3": [ + [ + { + "count": 15.33, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afa5": [ + [ + { + "count": 970.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afad": [ + [ + { + "count": 28.12, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afaf": [ + [ + { + "count": 250.55, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afb7": [ + [ + { + "count": 1, + "_tpl": "5d1b376e86f774252519444e" + } + ] + ], + "6808bac1364a85cccb04afba": [ + [ + { + "count": 55.44, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afbd": [ + [ + { + "count": 28.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afbf": [ + [ + { + "count": 594.61, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afc7": [ + [ + { + "count": 939.06, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afd4": [ + [ + { + "count": 55.69, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afd7": [ + [ + { + "count": 258.77, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afda": [ + [ + { + "count": 13.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afdd": [ + [ + { + "count": 27.95, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac1364a85cccb04afe0": [ + [ + { + "count": 30.57, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04afe3": [ + [ + { + "count": 342.08, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04afe6": [ + [ + { + "count": 121.72, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04afe9": [ + [ + { + "count": 28.82, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04afec": [ + [ + { + "count": 203.77, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04aff0": [ + [ + { + "count": 462.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04aff3": [ + [ + { + "count": 441.8, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04aff6": [ + [ + { + "count": 64.74, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04aff9": [ + [ + { + "count": 92.49, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04affc": [ + [ + { + "count": 206.48, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04afff": [ + [ + { + "count": 205.57, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b002": [ + [ + { + "count": 22.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b005": [ + [ + { + "count": 26.3, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b008": [ + [ + { + "count": 134.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b00b": [ + [ + { + "count": 25.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b00e": [ + [ + { + "count": 41.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b011": [ + [ + { + "count": 9.47, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b016": [ + [ + { + "count": 470.11, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b01b": [ + [ + { + "count": 1, + "_tpl": "5d403f9186f7743cac3f229b" + } + ] + ], + "6808bac2364a85cccb04b01e": [ + [ + { + "count": 10.94, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b021": [ + [ + { + "count": 19.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b024": [ + [ + { + "count": 16.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b026": [ + [ + { + "count": 1, + "_tpl": "5c1265fc86f7743f896a21c2" + }, + { + "count": 1, + "_tpl": "5af0561e86f7745f5f3ad6ac" + } + ] + ], + "6808bac2364a85cccb04b02e": [ + [ + { + "count": 36.11, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b031": [ + [ + { + "count": 23.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b034": [ + [ + { + "count": 257.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b037": [ + [ + { + "count": 35.16, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac2364a85cccb04b03a": [ + [ + { + "count": 35.8, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b03d": [ + [ + { + "count": 15.78, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b040": [ + [ + { + "count": 99.18, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b043": [ + [ + { + "count": 45.53, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b046": [ + [ + { + "count": 109.1, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b049": [ + [ + { + "count": 242.41, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b04c": [ + [ + { + "count": 20.29, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b04f": [ + [ + { + "count": 12.08, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b054": [ + [ + { + "count": 913.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac3364a85cccb04b058": [ [ { "count": 8, @@ -13486,747 +14174,199 @@ } ] ], - "676d24aa798491c5260f4d2f": [ + "6808bac3364a85cccb04b063": [ [ { - "count": 15.84, + "count": 23.8, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d32": [ + "6808bac3364a85cccb04b066": [ [ { - "count": 9.24, + "count": 10.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d35": [ + "6808bac3364a85cccb04b069": [ [ { - "count": 41.36, + "count": 440.23, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d38": [ + "6808bac3364a85cccb04b06c": [ [ { - "count": 366.08, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d3b": [ + "6808bac3364a85cccb04b06f": [ [ { - "count": 63.31, + "count": 35.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d3e": [ + "6808bac3364a85cccb04b072": [ [ { - "count": 34.32, + "count": 86.56, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d41": [ + "6808bac3364a85cccb04b076": [ [ { - "count": 0.67, + "count": 150.48, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24aa798491c5260f4d43": [ + "6808bac3364a85cccb04b079": [ [ { - "count": 916.52, + "count": 441.8, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d50": [ + "6808bac3364a85cccb04b07c": [ [ { - "count": 5.9, + "count": 36.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d53": [ + "6808bac3364a85cccb04b07f": [ [ { - "count": 84.48, + "count": 28.07, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d59": [ + "6808bac3364a85cccb04b082": [ [ { - "count": 995.86, + "count": 6.04, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d5e": [ + "6808bac3364a85cccb04b085": [ [ { - "count": 22.44, + "count": 14.18, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d61": [ + "6808bac3364a85cccb04b088": [ [ { - "count": 19.39, + "count": 440.23, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ab798491c5260f4d64": [ + "6808bac3364a85cccb04b08b": [ [ { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - }, - { - "count": 1, - "_tpl": "5734781f24597737e04bf32a" - } - ] - ], - "676d24ab798491c5260f4d67": [ - [ - { - "count": 25.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d6a": [ - [ - { - "count": 15.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d6d": [ - [ - { - "count": 17.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d70": [ - [ - { - "count": 11.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d73": [ - [ - { - "count": 97.15, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d76": [ - [ - { - "count": 54.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d79": [ - [ - { - "count": 27.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d7c": [ - [ - { - "count": 13.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d7f": [ - [ - { - "count": 102.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d82": [ - [ - { - "count": 90.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d85": [ - [ - { - "count": 29.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d88": [ - [ - { - "count": 96.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d8a": [ - [ - { - "count": 2, - "_tpl": "5d0375ff86f774186372f685" - } - ] - ], - "676d24ab798491c5260f4d96": [ - [ - { - "count": 7.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d99": [ - [ - { - "count": 36.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d9c": [ - [ - { - "count": 27.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4d9f": [ - [ - { - "count": 27.45, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4da2": [ - [ - { - "count": 23.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4da5": [ - [ - { - "count": 22.9, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4da8": [ - [ - { - "count": 190.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4daa": [ - [ - { - "count": 580.34, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ab798491c5260f4db3": [ - [ - { - "count": 54.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4db8": [ - [ - { - "count": 458.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dbd": [ - [ - { - "count": 34.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dc0": [ - [ - { - "count": 25.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dc3": [ - [ - { - "count": 10.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dc6": [ - [ - { - "count": 15.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dc9": [ - [ - { - "count": 82.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dcc": [ - [ - { - "count": 21.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dcf": [ - [ - { - "count": 29.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dd2": [ - [ - { - "count": 10.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dd5": [ - [ - { - "count": 54.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dd8": [ - [ - { - "count": 107.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4ddb": [ - [ - { - "count": 10.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dde": [ - [ - { - "count": 86.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4de1": [ - [ - { - "count": 131.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4de4": [ - [ - { - "count": 1.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4de7": [ - [ - { - "count": 451.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dea": [ - [ - { - "count": 7.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4ded": [ - [ - { - "count": 146.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4df0": [ - [ - { - "count": 429.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4df3": [ - [ - { - "count": 313.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4df8": [ - [ - { - "count": 891.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4dfd": [ - [ - { - "count": 33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e00": [ - [ - { - "count": 64.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e03": [ - [ - { - "count": 106.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e06": [ - [ - { - "count": 426.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e09": [ - [ - { - "count": 35.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e0c": [ - [ - { - "count": 139.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e0f": [ - [ - { - "count": 33.41, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ac798491c5260f4e12": [ - [ - { - "count": 2.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e15": [ - [ - { - "count": 0.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e18": [ - [ - { - "count": 21.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e1b": [ - [ - { - "count": 31.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e1e": [ - [ - { - "count": 333.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e20": [ - [ - { - "count": 169.33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e29": [ - [ - { - "count": 431.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e2c": [ - [ - { - "count": 1, - "_tpl": "5d1b376e86f774252519444e" - } - ] - ], - "676d24ad798491c5260f4e2f": [ - [ - { - "count": 27.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e32": [ - [ - { - "count": 34.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e35": [ - [ - { - "count": 251.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e38": [ - [ - { - "count": 89.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e3b": [ - [ - { - "count": 201.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e3e": [ - [ - { - "count": 63.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e41": [ - [ - { - "count": 1, - "_tpl": "5d403f9186f7743cac3f229b" - } - ] - ], - "676d24ad798491c5260f4e44": [ - [ - { - "count": 57.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e47": [ - [ - { - "count": 431.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ad798491c5260f4e4a": [ - [ - { - "count": 30.8, + "count": 34.24, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e4d": [ + "6808bac3364a85cccb04b08e": [ [ { - "count": 118.8, + "count": 329.7, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e50": [ + "6808bac3364a85cccb04b091": [ [ { - "count": 252.56, + "count": 32.46, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e53": [ + "6808bac3364a85cccb04b096": [ [ { - "count": 14.96, + "count": 1020.35, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e58": [ + "6808bac4364a85cccb04b09b": [ [ { - "count": 769.62, + "count": 368.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e5d": [ + "6808bac4364a85cccb04b09e": [ [ { - "count": 236.59, + "count": 320.98, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e60": [ + "6808bac4364a85cccb04b0a1": [ [ { - "count": 200.64, + "count": 7.21, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ad798491c5260f4e63": [ + "6808bac4364a85cccb04b0a4": [ [ { - "count": 95.48, + "count": 84.3, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e66": [ + "6808bac4364a85cccb04b0a7": [ [ { - "count": 92.4, + "count": 17.58, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e69": [ + "6808bac4364a85cccb04b0aa": [ [ { - "count": 198.88, + "count": 15.78, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e6d": [ + "6808bac4364a85cccb04b0ad": [ [ { - "count": 71.28, + "count": 129.84, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e70": [ + "6808bac4364a85cccb04b0b0": [ [ { "count": 4, @@ -14242,323 +14382,335 @@ } ] ], - "676d24ae798491c5260f4e73": [ + "6808bac4364a85cccb04b0b3": [ [ { - "count": 429.66, + "count": 142.46, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e76": [ + "6808bac4364a85cccb04b0b6": [ [ { - "count": 126.72, + "count": 31.56, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e79": [ + "6808bac4364a85cccb04b0b9": [ [ { - "count": 115.81, + "count": 64.86, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e7c": [ + "6808bac4364a85cccb04b0bc": [ [ { - "count": 34.32, + "count": 29.98, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e7f": [ + "6808bac4364a85cccb04b0bf": [ [ { - "count": 87.12, + "count": 91.9, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e82": [ + "6808bac4364a85cccb04b0c2": [ [ { - "count": 19.8, + "count": 99.54, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e84": [ + "6808bac4364a85cccb04b0c5": [ [ { - "count": 111.54, + "count": 194.93, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e8e": [ + "6808bac4364a85cccb04b0c8": [ [ { - "count": 321.79, + "count": 118.66, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e91": [ + "6808bac4364a85cccb04b0cb": [ [ { - "count": 32.21, + "count": 88.81, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e94": [ + "6808bac4364a85cccb04b0ce": [ [ { - "count": 36.96, + "count": 27.95, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e97": [ + "6808bac4364a85cccb04b0d0": [ [ { - "count": 31.02, + "count": 839.99, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4e99": [ + "6808bac4364a85cccb04b0e1": [ [ { - "count": 916.51, + "count": 18.03, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4ea8": [ + "6808bac4364a85cccb04b0e4": [ [ { - "count": 40.56, + "count": 13.52, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4eaa": [ + "6808bac4364a85cccb04b0e7": [ + [ + { + "count": 71.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac4364a85cccb04b0ea": [ + [ + { + "count": 49.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac4364a85cccb04b0ed": [ + [ + { + "count": 33.81, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b0f0": [ + [ + { + "count": 9.92, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b0f3": [ + [ + { + "count": 230.52, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b0f5": [ + [ + { + "count": 883.9, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b100": [ + [ + { + "count": 21.46, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b103": [ + [ + { + "count": 25.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b106": [ + [ + { + "count": 68.52, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b109": [ + [ + { + "count": 71.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b10c": [ + [ + { + "count": 9.31, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b115": [ + [ + { + "count": 615.83, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b11f": [ + [ + { + "count": 23.44, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b121": [ + [ + { + "count": 610.38, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b12a": [ + [ + { + "count": 22.54, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b12d": [ + [ + { + "count": 457.6, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b131": [ + [ + { + "count": 202.3, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b134": [ + [ + { + "count": 31.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b142": [ + [ + { + "count": 3, + "_tpl": "590c37d286f77443be3d7827" + } + ] + ], + "6808bac5364a85cccb04b150": [ + [ + { + "count": 16.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b153": [ + [ + { + "count": 288.52, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b156": [ + [ + { + "count": 13.52, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b159": [ + [ + { + "count": 58.61, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b15c": [ + [ + { + "count": 48.69, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b15f": [ + [ + { + "count": 28.85, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac5364a85cccb04b162": [ + [ + { + "count": 31.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b164": [ [ { "count": 1, - "_tpl": "5c1265fc86f7743f896a21c2" - }, - { - "count": 1, - "_tpl": "5af0561e86f7745f5f3ad6ac" + "_tpl": "5c94bbff86f7747ee735c08f" } ] ], - "676d24ae798491c5260f4eb2": [ + "6808bac6364a85cccb04b174": [ [ { - "count": 15.66, + "count": 22.54, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24ae798491c5260f4eb5": [ - [ - { - "count": 30.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ae798491c5260f4eb8": [ - [ - { - "count": 28.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ae798491c5260f4eba": [ - [ - { - "count": 946.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ae798491c5260f4ec2": [ - [ - { - "count": 25.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ae798491c5260f4ec5": [ - [ - { - "count": 15.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ae798491c5260f4ec8": [ - [ - { - "count": 25.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ecb": [ - [ - { - "count": 89.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ecd": [ - [ - { - "count": 244.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ed5": [ - [ - { - "count": 27.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ed7": [ - [ - { - "count": 224.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ee0": [ - [ - { - "count": 24.61, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ee3": [ - [ - { - "count": 44.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ee5": [ - [ - { - "count": 1334.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4eed": [ - [ - { - "count": 19.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ef0": [ - [ - { - "count": 22.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ef3": [ - [ - { - "count": 9.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ef6": [ - [ - { - "count": 71.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4ef9": [ - [ - { - "count": 479.78, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4efc": [ - [ - { - "count": 26.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4eff": [ - [ - { - "count": 57.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4f02": [ - [ - { - "count": 22, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4f05": [ - [ - { - "count": 48.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4f0a": [ - [ - { - "count": 451.62, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4f0f": [ - [ - { - "count": 26.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24af798491c5260f4f11": [ + "6808bac6364a85cccb04b176": [ [ { "count": 4, @@ -14570,39 +14722,103 @@ } ] ], - "676d24af798491c5260f4f1a": [ + "6808bac6364a85cccb04b17f": [ [ { - "count": 24.64, + "count": 1, + "_tpl": "590a3efd86f77437d351a25b" + } + ] + ], + "6808bac6364a85cccb04b182": [ + [ + { + "count": 55.9, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f1d": [ + "6808bac6364a85cccb04b185": [ [ { - "count": 30.8, + "count": 55.9, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f1f": [ + "6808bac6364a85cccb04b187": [ [ { - "count": 217.8, + "count": 223.16, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f2c": [ + "6808bac6364a85cccb04b194": [ [ { - "count": 12.5, + "count": 19.11, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f2f": [ + "6808bac6364a85cccb04b197": [ + [ + { + "count": 75.74, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b19a": [ + [ + { + "count": 1.17, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b19d": [ + [ + { + "count": 67.62, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b1a0": [ + [ + { + "count": 67.39, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b1a3": [ + [ + { + "count": 12.8, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b1a6": [ + [ + { + "count": 19.54, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b1a9": [ + [ + { + "count": 561.95, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac6364a85cccb04b1ac": [ [ { "count": 9, @@ -14612,327 +14828,167 @@ } ] ], - "676d24af798491c5260f4f32": [ + "6808bac6364a85cccb04b1af": [ [ { - "count": 66, + "count": 166.8, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f35": [ + "6808bac6364a85cccb04b1b1": [ [ { - "count": 250.8, + "count": 1225.07, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24af798491c5260f4f38": [ + "6808bac6364a85cccb04b1c2": [ [ { - "count": 54.56, + "count": 146.38, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f3a": [ + "6808bac6364a85cccb04b1c5": [ [ { - "count": 100.83, + "count": 18.93, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f46": [ + "6808bac6364a85cccb04b1c8": [ [ { - "count": 457.78, + "count": 45.98, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f49": [ + "6808bac6364a85cccb04b1cb": [ [ { - "count": 28.16, + "count": 18.93, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f4c": [ - [ - { - "count": 91.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f4f": [ - [ - { - "count": 27.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f52": [ - [ - { - "count": 367.33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f55": [ - [ - { - "count": 187.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f58": [ - [ - { - "count": 20.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f5b": [ - [ - { - "count": 369.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f5e": [ - [ - { - "count": 73.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f61": [ - [ - { - "count": 69.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f64": [ - [ - { - "count": 13.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f66": [ - [ - { - "count": 595.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b0798491c5260f4f6f": [ + "6808bac6364a85cccb04b1ce": [ [ { "count": 1, - "_tpl": "590a3efd86f77437d351a25b" + "_tpl": "60098b1705871270cd5352a1" } ] ], - "676d24b0798491c5260f4f72": [ + "6808bac7364a85cccb04b1d1": [ [ { - "count": 8.8, + "count": 216.39, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f75": [ + "6808bac7364a85cccb04b1d4": [ [ { - "count": 22, + "count": 275, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f77": [ + "6808bac7364a85cccb04b1d7": [ [ { - "count": 819.83, + "count": 1.08, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f88": [ + "6808bac7364a85cccb04b1da": [ [ { - "count": 221.56, + "count": 35.16, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f8b": [ + "6808bac7364a85cccb04b1dd": [ [ { - "count": 30.8, + "count": 31.11, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f8e": [ + "6808bac7364a85cccb04b1df": [ [ { - "count": 36.96, + "count": 256.25, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f91": [ + "6808bac7364a85cccb04b1e8": [ [ { - "count": 21.12, + "count": 52.3, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f94": [ + "6808bac7364a85cccb04b1eb": [ [ { - "count": 1.14, + "count": 87.01, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f97": [ + "6808bac7364a85cccb04b1ee": [ [ { - "count": 66.88, + "count": 27.95, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f9a": [ + "6808bac7364a85cccb04b1f1": [ [ { - "count": 187, + "count": 14.18, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4f9d": [ + "6808bac7364a85cccb04b1f4": [ [ { - "count": 4.84, + "count": 1.17, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4fa0": [ + "6808bac7364a85cccb04b1f9": [ [ { - "count": 18.48, + "count": 462.72, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b0798491c5260f4fa3": [ + "6808bac7364a85cccb04b1fe": [ [ { - "count": 391.6, + "count": 380.49, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f4fb1": [ - [ - { - "count": 3, - "_tpl": "590c37d286f77443be3d7827" - } - ] - ], - "676d24b1798491c5260f4fbf": [ - [ - { - "count": 197.45, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fc2": [ - [ - { - "count": 16.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fc5": [ - [ - { - "count": 56.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fc9": [ - [ - { - "count": 334.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fcc": [ - [ - { - "count": 39.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fcf": [ - [ - { - "count": 35.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fd1": [ - [ - { - "count": 1, - "_tpl": "5c94bbff86f7747ee735c08f" - } - ] - ], - "676d24b1798491c5260f4fe1": [ - [ - { - "count": 13.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fe4": [ - [ - { - "count": 69.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f4fe7": [ + "6808bac7364a85cccb04b201": [ [ { "count": 2, @@ -14944,15 +15000,151 @@ } ] ], - "676d24b1798491c5260f4fe9": [ + "6808bac7364a85cccb04b204": [ [ { - "count": 1245.69, + "count": 31.56, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f4ffa": [ + "6808bac7364a85cccb04b208": [ + [ + { + "count": 57.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b20c": [ + [ + { + "count": 2, + "_tpl": "5d1b309586f77425227d1676" + } + ] + ], + "6808bac7364a85cccb04b20e": [ + [ + { + "count": 182.58, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b219": [ + [ + { + "count": 401.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b21c": [ + [ + { + "count": 4.96, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b21e": [ + [ + { + "count": 983.47, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b22f": [ + [ + { + "count": 19.84, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac7364a85cccb04b232": [ + [ + { + "count": 80.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b236": [ + [ + { + "count": 598.06, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b238": [ + [ + { + "count": 103.31, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b244": [ + [ + { + "count": 227.01, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b247": [ + [ + { + "count": 11.09, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b249": [ + [ + { + "count": 1276.32, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b259": [ + [ + { + "count": 1366.97, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b261": [ + [ + { + "count": 93.77, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b264": [ + [ + { + "count": 469.03, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b267": [ + [ + { + "count": 9.02, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac8364a85cccb04b26a": [ [ { "count": 1, @@ -14964,71 +15156,39 @@ } ] ], - "676d24b1798491c5260f4ffd": [ + "6808bac8364a85cccb04b26d": [ [ { - "count": 162.8, + "count": 192.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f4fff": [ + "6808bac8364a85cccb04b270": [ [ { - "count": 250.1, + "count": 169.37, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5008": [ + "6808bac8364a85cccb04b273": [ [ { - "count": 20.24, + "count": 191.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f500b": [ + "6808bac8364a85cccb04b276": [ [ { - "count": 54.56, + "count": 191.6, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f500e": [ - [ - { - "count": 281.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f5011": [ - [ - { - "count": 371.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f5014": [ - [ - { - "count": 519.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f5017": [ - [ - { - "count": 9.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b1798491c5260f5019": [ + "6808bac8364a85cccb04b278": [ [ { "count": 1, @@ -15044,783 +15204,783 @@ } ] ], - "676d24b1798491c5260f501d": [ + "6808bac8364a85cccb04b27c": [ [ { - "count": 186.56, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5020": [ + "6808bac8364a85cccb04b27f": [ [ { - "count": 215.6, + "count": 531.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5023": [ + "6808bac8364a85cccb04b282": [ [ { - "count": 583.7, + "count": 256.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5026": [ + "6808bac8364a85cccb04b285": [ [ { - "count": 47.52, + "count": 36.07, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5029": [ + "6808bac8364a85cccb04b288": [ [ { - "count": 224.99, + "count": 491.57, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f502c": [ + "6808bac8364a85cccb04b28b": [ [ { - "count": 57.2, + "count": 378.69, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f502e": [ + "6808bac8364a85cccb04b28e": [ [ { - "count": 1195.66, + "count": 40.57, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f503f": [ + "6808bac8364a85cccb04b291": [ [ { - "count": 33, + "count": 27.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b1798491c5260f5042": [ + "6808bac9364a85cccb04b294": [ [ { - "count": 2, - "_tpl": "5d1b309586f77425227d1676" - } - ] - ], - "676d24b2798491c5260f504b": [ - [ - { - "count": 601.05, + "count": 73.11, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5055": [ + "6808bac9364a85cccb04b296": [ [ { - "count": 165.31, + "count": 271.43, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5057": [ + "6808bac9364a85cccb04b29f": [ [ { - "count": 862.69, + "count": 27.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5061": [ + "6808bac9364a85cccb04b2a2": [ [ { - "count": 264.92, + "count": 342.62, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f506a": [ + "6808bac9364a85cccb04b2a4": [ [ { - "count": 51.04, + "count": 836.41, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f506c": [ + "6808bac9364a85cccb04b2b5": [ [ { - "count": 816.34, + "count": 37.87, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f507d": [ + "6808bac9364a85cccb04b2b8": [ [ { - "count": 268.4, + "count": 376.36, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5080": [ + "6808bac9364a85cccb04b2bb": [ [ { - "count": 1.14, + "count": 20.74, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5083": [ + "6808bac9364a85cccb04b2be": [ [ { - "count": 44.88, + "count": 58.61, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5086": [ + "6808bac9364a85cccb04b2c1": [ [ { - "count": 18.65, + "count": 220.9, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5089": [ + "6808bac9364a85cccb04b2c4": [ [ { - "count": 446.62, + "count": 79.38, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f508d": [ + "6808bac9364a85cccb04b2c7": [ [ { - "count": 548.46, + "count": 36.07, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5090": [ + "6808bac9364a85cccb04b2ca": [ [ { - "count": 19.36, + "count": 218.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f5093": [ + "6808bac9364a85cccb04b2cd": [ + [ + { + "count": 7.21, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2d0": [ + [ + { + "count": 174.63, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2d3": [ + [ + { + "count": 43.55, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2d6": [ + [ + { + "count": 54.1, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2d9": [ + [ + { + "count": 640.16, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2dc": [ + [ + { + "count": 81.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2df": [ + [ + { + "count": 19.31, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2e2": [ + [ + { + "count": 387.39, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2e5": [ + [ + { + "count": 77.54, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bac9364a85cccb04b2e7": [ + [ + { + "count": 480.91, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808baca364a85cccb04b2f3": [ + [ + { + "count": 37.96, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808baca364a85cccb04b2f5": [ + [ + { + "count": 529.49, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808baca364a85cccb04b300": [ + [ + { + "count": 11.27, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808baca364a85cccb04b303": [ + [ + { + "count": 34.26, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808baca364a85cccb04b308": [ [ { "count": 1, - "_tpl": "60098b1705871270cd5352a1" + "_tpl": "62a0a124de7ac81993580542" + }, + { + "count": 1, + "_tpl": "590a386e86f77429692b27ab" } ] ], - "676d24b2798491c5260f5096": [ + "6808baca364a85cccb04b30d": [ [ { - "count": 78.32, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f509a": [ + "6808baca364a85cccb04b310": [ [ { - "count": 10.82, + "count": 38.49, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f509d": [ + "6808baca364a85cccb04b313": [ [ { - "count": 211.2, + "count": 55.68, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f50a0": [ + "6808baca364a85cccb04b316": [ [ { - "count": 142.87, + "count": 33.5, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f50a3": [ + "6808baca364a85cccb04b319": [ [ { - "count": 84.92, + "count": 12.62, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f50a6": [ + "6808baca364a85cccb04b31c": [ [ { - "count": 18.48, + "count": 76.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f50a9": [ + "6808baca364a85cccb04b322": [ [ { - "count": 65.77, + "count": 4.77, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b2798491c5260f50ac": [ - [ - { - "count": 17.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50af": [ - [ - { - "count": 1.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50b1": [ - [ - { - "count": 178.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50bc": [ - [ - { - "count": 13.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50be": [ - [ - { - "count": 959.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50cf": [ - [ - { - "count": 34.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50d2": [ - [ - { - "count": 30.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b2798491c5260f50d6": [ - [ - { - "count": 30.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50d9": [ - [ - { - "count": 75.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50dc": [ - [ - { - "count": 52.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50df": [ - [ - { - "count": 123.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50e2": [ - [ - { - "count": 10.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50e5": [ - [ - { - "count": 43.96, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50e8": [ - [ - { - "count": 38.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50eb": [ - [ - { - "count": 498.97, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50ee": [ - [ - { - "count": 37.05, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50f0": [ - [ - { - "count": 501.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f50fe": [ - [ - { - "count": 469.37, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f510a": [ - [ - { - "count": 26.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f510d": [ - [ - { - "count": 79.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5110": [ - [ - { - "count": 18.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5113": [ - [ - { - "count": 50.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5116": [ - [ - { - "count": 65.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5119": [ - [ - { - "count": 7.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f511c": [ - [ - { - "count": 35.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f511f": [ - [ - { - "count": 83.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5122": [ - [ - { - "count": 33.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5128": [ - [ - { - "count": 46.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f512b": [ - [ - { - "count": 179.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f512e": [ - [ - { - "count": 37.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5131": [ - [ - { - "count": 60.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5134": [ - [ - { - "count": 70.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f5137": [ - [ - { - "count": 44.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f513a": [ - [ - { - "count": 4.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f513d": [ - [ - { - "count": 79.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f513f": [ - [ - { - "count": 566.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f514c": [ - [ - { - "count": 20.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b3798491c5260f514e": [ + "6808baca364a85cccb04b325": [ [ { "count": 1, - "_tpl": "5e54f79686f7744022011103" + "_tpl": "62a09cb7a04c0c5c6e0a84f8" } ] ], - "676d24b4798491c5260f5156": [ + "6808baca364a85cccb04b328": [ [ { - "count": 12.32, + "count": 511.24, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5159": [ + "6808baca364a85cccb04b32b": [ [ { - "count": 38.65, + "count": 67.62, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f515c": [ + "6808baca364a85cccb04b32e": [ [ { - "count": 39.41, + "count": 1, + "_tpl": "5c12613b86f7743bbe2c3f76" + }, + { + "count": 4, + "_tpl": "6389c70ca33d8c4cdf4932c6" + } + ] + ], + "6808baca364a85cccb04b331": [ + [ + { + "count": 73.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f515f": [ + "6808baca364a85cccb04b334": [ [ { - "count": 74.8, + "count": 126.23, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5162": [ + "6808baca364a85cccb04b337": [ [ { - "count": 52.8, + "count": 45.04, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5165": [ + "6808baca364a85cccb04b33a": [ [ { - "count": 440.22, + "count": 35.89, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5168": [ + "6808baca364a85cccb04b33d": [ [ { - "count": 241.12, + "count": 45.17, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f516b": [ + "6808baca364a85cccb04b340": [ [ { - "count": 48.38, + "count": 51.24, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f516e": [ + "6808baca364a85cccb04b343": [ [ { - "count": 84.6, + "count": 21.19, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5171": [ + "6808baca364a85cccb04b346": [ [ { - "count": 38.34, + "count": 50.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5174": [ + "6808baca364a85cccb04b349": [ [ { - "count": 114.86, + "count": 54.1, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5176": [ + "6808bacb364a85cccb04b34c": [ [ { - "count": 1933.66, + "count": 105.27, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5187": [ + "6808bacb364a85cccb04b34f": [ [ { - "count": 25.52, + "count": 58.61, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f518a": [ + "6808bacb364a85cccb04b352": [ [ { - "count": 62.48, + "count": 49.57, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f518d": [ + "6808bacb364a85cccb04b355": [ [ { - "count": 9.09, + "count": 36.07, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5190": [ + "6808bacb364a85cccb04b358": [ [ { - "count": 44.88, + "count": 49.59, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5193": [ + "6808bacb364a85cccb04b35b": [ [ { - "count": 59.44, + "count": 100.98, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5196": [ + "6808bacb364a85cccb04b35e": [ [ { - "count": 32.7, + "count": 14.18, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f5198": [ + "6808bacb364a85cccb04b361": [ [ { - "count": 588.06, + "count": 531.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51a4": [ + "6808bacb364a85cccb04b364": [ [ { - "count": 154.84, + "count": 57.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51a7": [ + "6808bacb364a85cccb04b367": [ [ { - "count": 35.2, + "count": 26.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51aa": [ + "6808bacb364a85cccb04b36a": [ [ { - "count": 48.4, + "count": 48.08, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51ad": [ + "6808bacb364a85cccb04b36d": [ [ { - "count": 35.2, + "count": 13.17, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51b0": [ + "6808bacb364a85cccb04b36f": [ [ { - "count": 22, + "count": 1981.21, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51b3": [ + "6808bacb364a85cccb04b380": [ [ { - "count": 378.09, + "count": 19.02, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51b6": [ + "6808bacb364a85cccb04b383": [ [ { - "count": 11.58, + "count": 19.84, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51b9": [ + "6808bacb364a85cccb04b386": [ [ { - "count": 8.35, + "count": 14.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51bc": [ + "6808bacb364a85cccb04b389": [ [ { - "count": 17.89, + "count": 45.98, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b4798491c5260f51bf": [ + "6808bacb364a85cccb04b38c": [ [ { - "count": 19.36, + "count": 4.25, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51c2": [ + "6808bacb364a85cccb04b38f": [ + [ + { + "count": 44, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b392": [ + [ + { + "count": 62.21, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b395": [ + [ + { + "count": 47.43, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b398": [ + [ + { + "count": 451.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b39b": [ + [ + { + "count": 8.11, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b39e": [ + [ + { + "count": 5.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b3a1": [ + [ + { + "count": 117.72, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacb364a85cccb04b3a4": [ + [ + { + "count": 81.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3a7": [ + [ + { + "count": 8.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3aa": [ + [ + { + "count": 64.02, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3ad": [ + [ + { + "count": 8.11, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3b0": [ + [ + { + "count": 34.26, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3b3": [ + [ + { + "count": 47.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3b6": [ + [ + { + "count": 36.07, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3b9": [ + [ + { + "count": 15.33, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3bc": [ + [ + { + "count": 183.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3bf": [ + [ + { + "count": 66.92, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3c2": [ + [ + { + "count": 11.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3c5": [ + [ + { + "count": 167.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3c8": [ + [ + { + "count": 18.93, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3ca": [ + [ + { + "count": 190.32, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3d6": [ + [ + { + "count": 189.34, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacc364a85cccb04b3d9": [ [ { "count": 20, @@ -15836,399 +15996,255 @@ } ] ], - "676d24b5798491c5260f51c5": [ + "6808bacc364a85cccb04b3db": [ [ { - "count": 40.37, + "count": 602.52, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51c8": [ + "6808bacc364a85cccb04b3e7": [ [ { - "count": 77.48, + "count": 9.02, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51cb": [ + "6808bacc364a85cccb04b3ea": [ [ { - "count": 14.29, + "count": 41.36, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51ce": [ + "6808bacc364a85cccb04b3ed": [ [ { - "count": 8.8, + "count": 21.19, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51d1": [ + "6808bacc364a85cccb04b3f0": [ [ { - "count": 145.2, + "count": 32.89, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51d4": [ + "6808bacd364a85cccb04b3f3": [ [ { - "count": 51.92, + "count": 53.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51d7": [ + "6808bacd364a85cccb04b3f9": [ [ { - "count": 13.89, + "count": 85.66, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51da": [ + "6808bacd364a85cccb04b3fc": [ [ { - "count": 42.94, + "count": 4.51, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f51dd": [ - [ - { - "count": 29.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51e0": [ - [ - { - "count": 4.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51e3": [ - [ - { - "count": 45.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51e6": [ - [ - { - "count": 18.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51e9": [ - [ - { - "count": 13.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51ec": [ - [ - { - "count": 74.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51ef": [ - [ - { - "count": 519.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51f2": [ - [ - { - "count": 33.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51f5": [ - [ - { - "count": 36.96, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51f8": [ - [ - { - "count": 213.59, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f51fa": [ - [ - { - "count": 185.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f5206": [ - [ - { - "count": 114.89, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f5209": [ - [ - { - "count": 20.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f520c": [ - [ - { - "count": 98.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f520f": [ - [ - { - "count": 290.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f5212": [ - [ - { - "count": 79.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b5798491c5260f5215": [ + "6808bacd364a85cccb04b3fe": [ [ { "count": 1, - "_tpl": "5c12613b86f7743bbe2c3f76" - }, - { - "count": 4, - "_tpl": "6389c70ca33d8c4cdf4932c6" + "_tpl": "5e54f79686f7744022011103" } ] ], - "676d24b5798491c5260f5218": [ + "6808bacd364a85cccb04b406": [ [ { - "count": 102.74, + "count": 18.33, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f521b": [ + "6808bacd364a85cccb04b409": [ [ { - "count": 42.5, + "count": 11.13, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f521e": [ + "6808bacd364a85cccb04b40c": [ [ { - "count": 32.1, + "count": 158.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f5221": [ + "6808bacd364a85cccb04b40f": [ [ { - "count": 56.46, + "count": 72.13, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b5798491c5260f5224": [ + "6808bacd364a85cccb04b412": [ [ { - "count": 170.44, + "count": 14.23, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5229": [ + "6808bacd364a85cccb04b415": [ [ { - "count": 1, - "_tpl": "62a0a124de7ac81993580542" - }, - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - } - ] - ], - "676d24b6798491c5260f522d": [ - [ - { - "count": 610.48, + "count": 54.83, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5237": [ + "6808bacd364a85cccb04b417": [ [ { - "count": 14.96, + "count": 514.14, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f523a": [ + "6808bacd364a85cccb04b426": [ [ { - "count": 49.63, + "count": 148.77, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f523d": [ + "6808bacd364a85cccb04b429": [ [ { - "count": 12.86, + "count": 37.87, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5240": [ + "6808bacd364a85cccb04b42c": [ [ { - "count": 4.14, + "count": 9.31, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5243": [ + "6808bacd364a85cccb04b42f": [ [ { - "count": 54.34, + "count": 12.84, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5246": [ + "6808bacd364a85cccb04b431": [ [ { - "count": 1, - "_tpl": "62a09cb7a04c0c5c6e0a84f8" - } - ] - ], - "676d24b6798491c5260f5249": [ - [ - { - "count": 624.8, + "count": 625.49, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f524c": [ + "6808bacd364a85cccb04b43b": [ [ { - "count": 20.68, + "count": 72.13, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f524e": [ + "6808bacd364a85cccb04b43e": [ [ { - "count": 516.78, + "count": 297.54, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5259": [ + "6808bacd364a85cccb04b441": [ [ { - "count": 184.8, + "count": 40.38, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f525c": [ + "6808bace364a85cccb04b444": [ [ { - "count": 66, + "count": 22.54, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f525f": [ + "6808bace364a85cccb04b447": [ [ { - "count": 163.68, + "count": 76.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5262": [ + "6808bace364a85cccb04b44a": [ [ { - "count": 12.53, + "count": 55.9, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5265": [ + "6808bace364a85cccb04b44d": [ [ { - "count": 57.2, + "count": 27.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f526b": [ + "6808bace364a85cccb04b450": [ [ { - "count": 22.62, + "count": 39.6, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f526e": [ + "6808bace364a85cccb04b453": [ [ { - "count": 76.73, + "count": 247.05, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5271": [ + "6808bace364a85cccb04b456": [ + [ + { + "count": 60.9, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bace364a85cccb04b459": [ [ { "count": 1, @@ -16236,103 +16252,87 @@ } ] ], - "676d24b6798491c5260f5274": [ + "6808bace364a85cccb04b45c": [ [ { - "count": 7.04, + "count": 81.15, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5277": [ + "6808bace364a85cccb04b45f": [ [ { - "count": 46.29, + "count": 39.28, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f527a": [ + "6808bace364a85cccb04b462": [ [ { - "count": 5.72, + "count": 117.68, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f527d": [ + "6808bace364a85cccb04b465": [ [ { - "count": 18.57, + "count": 78.61, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5280": [ + "6808bace364a85cccb04b467": [ [ { - "count": 71.39, + "count": 580.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5283": [ + "6808bace364a85cccb04b474": [ [ { - "count": 11, + "count": 86.68, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5286": [ + "6808bace364a85cccb04b477": [ [ { - "count": 35.2, + "count": 21.19, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f5289": [ + "6808bace364a85cccb04b47a": [ [ { - "count": 21.12, + "count": 39.74, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f528c": [ + "6808bace364a85cccb04b47d": [ [ { - "count": 53.51, + "count": 30.66, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b6798491c5260f528f": [ + "6808bace364a85cccb04b480": [ [ { - "count": 70.4, + "count": 23.17, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f5292": [ - [ - { - "count": 54.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f5295": [ - [ - { - "count": 7.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f5297": [ + "6808bace364a85cccb04b482": [ [ { "count": 1, @@ -16344,7 +16344,23 @@ } ] ], - "676d24b7798491c5260f529e": [ + "6808bace364a85cccb04b489": [ + [ + { + "count": 59.27, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bacf364a85cccb04b48b": [ + [ + { + "count": 1, + "_tpl": "62a09e73af34e73a266d932a" + } + ] + ], + "6808bacf364a85cccb04b498": [ [ { "count": 1, @@ -16352,55 +16368,7 @@ } ] ], - "676d24b7798491c5260f52a1": [ - [ - { - "count": 42.81, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52a4": [ - [ - { - "count": 471.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52a8": [ - [ - { - "count": 44.15, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52ab": [ - [ - { - "count": 12.58, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52ae": [ - [ - { - "count": 5.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52b1": [ - [ - { - "count": 32.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b7798491c5260f52b3": [ + "6808bacf364a85cccb04b49a": [ [ { "count": 3, @@ -16412,247 +16380,127 @@ } ] ], - "676d24b7798491c5260f52ce": [ + "6808bacf364a85cccb04b4b5": [ [ { - "count": 30.05, + "count": 59.26, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52d1": [ + "6808bacf364a85cccb04b4b8": [ [ { - "count": 57.84, + "count": 150.88, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52d4": [ + "6808bacf364a85cccb04b4bb": [ [ { - "count": 50.95, + "count": 22.18, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52d7": [ + "6808bacf364a85cccb04b4be": [ [ { - "count": 16.35, + "count": 281.77, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52da": [ + "6808bacf364a85cccb04b4c1": [ [ { - "count": 1, - "_tpl": "590c5c9f86f77477c91c36e7" - } - ] - ], - "676d24b7798491c5260f52dd": [ - [ - { - "count": 6.64, + "count": 3.82, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52e0": [ + "6808bacf364a85cccb04b4c4": [ [ { - "count": 275.01, + "count": 6.58, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52e3": [ + "6808bacf364a85cccb04b4c7": [ [ { - "count": 3.73, + "count": 10.4, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52e6": [ + "6808bacf364a85cccb04b4ca": [ [ { - "count": 10.63, + "count": 37.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52e9": [ + "6808bacf364a85cccb04b4cd": [ [ { - "count": 9.27, + "count": 12.85, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52ec": [ + "6808bacf364a85cccb04b4d0": [ [ { - "count": 83.8, + "count": 78.89, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52ef": [ + "6808bacf364a85cccb04b4d3": [ [ { - "count": 1, - "_tpl": "59e35cbb86f7741778269d83" - } - ] - ], - "676d24b7798491c5260f52f2": [ - [ - { - "count": 81.71, + "count": 5.7, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52f4": [ + "6808bacf364a85cccb04b4d6": [ [ { - "count": 259.58, + "count": 38.27, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52fd": [ + "6808bacf364a85cccb04b4d9": [ [ { - "count": 3.09, + "count": 16.65, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b7798491c5260f52ff": [ + "6808bacf364a85cccb04b4dc": [ [ { - "count": 1, - "_tpl": "62a09e73af34e73a266d932a" - } - ] - ], - "676d24b8798491c5260f530c": [ - [ - { - "count": 98.6, + "count": 21.52, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f530f": [ + "6808bad0364a85cccb04b4df": [ [ { - "count": 45.35, + "count": 4.72, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5312": [ - [ - { - "count": 8.77, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5315": [ - [ - { - "count": 12.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5318": [ - [ - { - "count": 61.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f531b": [ - [ - { - "count": 21.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f531e": [ - [ - { - "count": 77, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5321": [ - [ - { - "count": 21.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5324": [ - [ - { - "count": 57.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5327": [ - [ - { - "count": 8.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f532a": [ - [ - { - "count": 10.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f532d": [ - [ - { - "count": 37.94, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b8798491c5260f5330": [ - [ - { - "count": 1, - "_tpl": "59faf98186f774067b6be103" - } - ] - ], - "676d24b8798491c5260f5333": [ - [ - { - "count": 1, - "_tpl": "590c5bbd86f774785762df04" - } - ] - ], - "676d24b8798491c5260f5335": [ + "6808bad0364a85cccb04b4e1": [ [ { "count": 2, @@ -16664,55 +16512,479 @@ } ] ], - "676d24b8798491c5260f5345": [ + "6808bad0364a85cccb04b4f1": [ [ { - "count": 53.94, + "count": 11.21, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5348": [ + "6808bad0364a85cccb04b4f3": [ [ { - "count": 46.07, + "count": 282.13, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f534b": [ + "6808bad0364a85cccb04b4fb": [ [ { - "count": 539.51, + "count": 45.24, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f534f": [ + "6808bad0364a85cccb04b4fe": [ [ { - "count": 63.76, + "count": 53.92, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5352": [ + "6808bad0364a85cccb04b501": [ [ { - "count": 35.13, + "count": 21.64, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5355": [ + "6808bad0364a85cccb04b503": [ [ { - "count": 52.62, + "count": 265.97, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5357": [ + "6808bad0364a85cccb04b50c": [ + [ + { + "count": 12.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b50f": [ + [ + { + "count": 11.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b512": [ + [ + { + "count": 52.2, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b515": [ + [ + { + "count": 8.14, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b518": [ + [ + { + "count": 8.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b51b": [ + [ + { + "count": 207.3, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b51e": [ + [ + { + "count": 85.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b521": [ + [ + { + "count": 7.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b524": [ + [ + { + "count": 12.89, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad0364a85cccb04b527": [ + [ + { + "count": 77.24, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b52a": [ + [ + { + "count": 483.56, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b52e": [ + [ + { + "count": 68.01, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b531": [ + [ + { + "count": 34.98, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b533": [ + [ + { + "count": 716, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b53d": [ + [ + { + "count": 58.18, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b540": [ + [ + { + "count": 5.41, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b543": [ + [ + { + "count": 55.27, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b546": [ + [ + { + "count": 65.32, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b549": [ + [ + { + "count": 67.29, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b54c": [ + [ + { + "count": 43.93, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b54f": [ + [ + { + "count": 331.39, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b552": [ + [ + { + "count": 16.65, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b555": [ + [ + { + "count": 33.12, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b558": [ + [ + { + "count": 172.64, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b55b": [ + [ + { + "count": 34.23, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b55e": [ + [ + { + "count": 47.43, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad1364a85cccb04b561": [ + [ + { + "count": 51.71, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b564": [ + [ + { + "count": 30.79, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b567": [ + [ + { + "count": 6.8, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b56a": [ + [ + { + "count": 9.5, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b56d": [ + [ + { + "count": 43.86, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b570": [ + [ + { + "count": 9.49, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b573": [ + [ + { + "count": 51.15, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b576": [ + [ + { + "count": 63.28, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b579": [ + [ + { + "count": 61.96, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b57c": [ + [ + { + "count": 3.38, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b57f": [ + [ + { + "count": 22.91, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b582": [ + [ + { + "count": 4.02, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b585": [ + [ + { + "count": 552.78, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b589": [ + [ + { + "count": 80.82, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b58c": [ + [ + { + "count": 38.87, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b58f": [ + [ + { + "count": 39, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b592": [ + [ + { + "count": 89.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b595": [ + [ + { + "count": 21.59, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b598": [ + [ + { + "count": 1, + "_tpl": "590c5bbd86f774785762df04" + } + ] + ], + "6808bad2364a85cccb04b59b": [ + [ + { + "count": 1, + "_tpl": "59e35cbb86f7741778269d83" + } + ] + ], + "6808bad2364a85cccb04b59e": [ + [ + { + "count": 46.99, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b5a1": [ + [ + { + "count": 16.75, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad2364a85cccb04b5a4": [ + [ + { + "count": 68.04, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5a7": [ + [ + { + "count": 78.25, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5aa": [ + [ + { + "count": 75.34, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5ad": [ + [ + { + "count": 99.06, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5b0": [ + [ + { + "count": 38.96, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5b2": [ [ { "count": 1, @@ -16720,23 +16992,55 @@ } ] ], - "676d24b8798491c5260f536d": [ + "6808bad3364a85cccb04b5c8": [ [ { - "count": 49.92, + "count": 14.08, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b8798491c5260f5370": [ + "6808bad3364a85cccb04b5cb": [ [ { - "count": 4.6, + "count": 65.27, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5373": [ + "6808bad3364a85cccb04b5ce": [ + [ + { + "count": 25.7, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5d1": [ + [ + { + "count": 22.72, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5d4": [ + [ + { + "count": 48.05, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5d7": [ + [ + { + "count": 47.18, + "_tpl": "5696686a4bdc2da3298b456a" + } + ] + ], + "6808bad3364a85cccb04b5da": [ [ { "count": 10.89, @@ -16744,418 +17048,114 @@ } ] ], - "676d24b9798491c5260f5376": [ + "6808bad3364a85cccb04b5dd": [ [ { - "count": 18.79, + "count": 3.16, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5379": [ + "6808bad3364a85cccb04b5e0": [ [ { - "count": 66.11, + "count": 19.25, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f537c": [ + "6808bad3364a85cccb04b5e3": [ [ { - "count": 25.08, + "count": 35.99, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f537f": [ + "6808bad3364a85cccb04b5e6": [ [ { - "count": 9.28, + "count": 46.46, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5382": [ + "6808bad3364a85cccb04b5e9": [ [ { - "count": 75.39, + "count": 101.03, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5385": [ + "6808bad3364a85cccb04b5ec": [ [ { - "count": 36.31, + "count": 1, + "_tpl": "59faf98186f774067b6be103" + } + ] + ], + "6808bad3364a85cccb04b5ef": [ + [ + { + "count": 25.6, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5388": [ + "6808bad3364a85cccb04b5f2": [ [ { - "count": 50.47, + "count": 1, + "_tpl": "590c5c9f86f77477c91c36e7" + } + ] + ], + "6808bad3364a85cccb04b5f5": [ + [ + { + "count": 8.88, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f538b": [ + "6808bad3364a85cccb04b5f8": [ [ { - "count": 21.01, + "count": 12.58, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f538e": [ + "6808bad3364a85cccb04b5fb": [ [ { - "count": 13.75, + "count": 49.27, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5391": [ + "6808bad3364a85cccb04b5fe": [ [ { - "count": 147.26, + "count": 83.72, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5394": [ + "6808bad4364a85cccb04b601": [ [ { - "count": 66.38, + "count": 47.2, "_tpl": "5696686a4bdc2da3298b456a" } ] ], - "676d24b9798491c5260f5397": [ + "6808bad4364a85cccb04b604": [ [ { - "count": 37.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f5399": [ - [ - { - "count": 698.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53a3": [ - [ - { - "count": 87.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53a6": [ - [ - { - "count": 63.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53a9": [ - [ - { - "count": 168.49, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53ac": [ - [ - { - "count": 24.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53af": [ - [ - { - "count": 6.42, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53b1": [ - [ - { - "count": 275.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53b9": [ - [ - { - "count": 12.54, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53bc": [ - [ - { - "count": 73.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53bf": [ - [ - { - "count": 65.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53c2": [ - [ - { - "count": 5.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24b9798491c5260f53c5": [ - [ - { - "count": 78.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53c8": [ - [ - { - "count": 42.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53cb": [ - [ - { - "count": 7.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53ce": [ - [ - { - "count": 10.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53d1": [ - [ - { - "count": 3.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53d4": [ - [ - { - "count": 22.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53d7": [ - [ - { - "count": 46.9, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53da": [ - [ - { - "count": 48.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53dd": [ - [ - { - "count": 21.65, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53e0": [ - [ - { - "count": 16.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53e3": [ - [ - { - "count": 60.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53e6": [ - [ - { - "count": 22.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53e9": [ - [ - { - "count": 66.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53ec": [ - [ - { - "count": 7.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53ef": [ - [ - { - "count": 34.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53f2": [ - [ - { - "count": 16.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53f5": [ - [ - { - "count": 3.3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53f8": [ - [ - { - "count": 56.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53fb": [ - [ - { - "count": 46.05, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f53fe": [ - [ - { - "count": 33.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f5401": [ - [ - { - "count": 12.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f5404": [ - [ - { - "count": 96.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f5407": [ - [ - { - "count": 76.38, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f540a": [ - [ - { - "count": 202.33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f540d": [ - [ - { - "count": 38.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f5410": [ - [ - { - "count": 46.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24ba798491c5260f5413": [ - [ - { - "count": 38.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24bb798491c5260f5416": [ - [ - { - "count": 323.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "676d24bb798491c5260f5419": [ - [ - { - "count": 45.87, + "count": 67.73, "_tpl": "5696686a4bdc2da3298b456a" } ] @@ -17210,657 +17210,657 @@ ] }, "loyal_level_items": { - "676d24a3798491c5260f4a14": 1, - "676d24a3798491c5260f4a1c": 2, - "676d24a3798491c5260f4a2d": 1, - "676d24a3798491c5260f4a30": 2, - "676d24a3798491c5260f4a33": 3, - "676d24a3798491c5260f4a36": 2, - "676d24a3798491c5260f4a39": 2, - "676d24a3798491c5260f4a3c": 4, - "676d24a3798491c5260f4a3f": 3, - "676d24a4798491c5260f4a42": 3, - "676d24a4798491c5260f4a45": 4, - "676d24a4798491c5260f4a48": 3, - "676d24a4798491c5260f4a4b": 2, - "676d24a4798491c5260f4a4e": 1, - "676d24a4798491c5260f4a51": 4, - "676d24a4798491c5260f4a54": 2, - "676d24a4798491c5260f4a57": 2, - "676d24a4798491c5260f4a5a": 3, - "676d24a4798491c5260f4a5d": 2, - "676d24a4798491c5260f4a60": 2, - "676d24a4798491c5260f4a62": 2, - "676d24a4798491c5260f4a72": 2, - "676d24a4798491c5260f4a75": 3, - "676d24a4798491c5260f4a78": 3, - "676d24a4798491c5260f4a7b": 2, - "676d24a4798491c5260f4a7e": 3, - "676d24a4798491c5260f4a81": 3, - "676d24a4798491c5260f4a84": 4, - "676d24a4798491c5260f4a87": 3, - "676d24a4798491c5260f4a8a": 3, - "676d24a4798491c5260f4a8c": 1, - "676d24a4798491c5260f4a9b": 2, - "676d24a4798491c5260f4aa5": 4, - "676d24a4798491c5260f4aa8": 3, - "676d24a4798491c5260f4aab": 4, - "676d24a4798491c5260f4aae": 3, - "676d24a4798491c5260f4ab1": 3, - "676d24a4798491c5260f4ab4": 3, - "676d24a5798491c5260f4ab7": 3, - "676d24a5798491c5260f4aba": 3, - "676d24a5798491c5260f4abd": 1, - "676d24a5798491c5260f4ac0": 2, - "676d24a5798491c5260f4ac3": 1, - "676d24a5798491c5260f4ac6": 3, - "676d24a5798491c5260f4ac9": 3, - "676d24a5798491c5260f4acc": 3, - "676d24a5798491c5260f4ad2": 1, - "676d24a5798491c5260f4ad8": 1, - "676d24a5798491c5260f4adb": 2, - "676d24a5798491c5260f4ade": 3, - "676d24a5798491c5260f4ae2": 4, - "676d24a5798491c5260f4ae4": 1, - "676d24a5798491c5260f4aed": 1, - "676d24a5798491c5260f4af0": 2, - "676d24a5798491c5260f4af3": 2, - "676d24a5798491c5260f4af6": 3, - "676d24a5798491c5260f4af9": 3, - "676d24a5798491c5260f4afb": 2, - "676d24a5798491c5260f4b01": 1, - "676d24a5798491c5260f4b04": 1, - "676d24a5798491c5260f4b0e": 1, - "676d24a5798491c5260f4b11": 3, - "676d24a5798491c5260f4b14": 3, - "676d24a5798491c5260f4b17": 3, - "676d24a5798491c5260f4b1a": 4, - "676d24a5798491c5260f4b1f": 4, - "676d24a6798491c5260f4b24": 2, - "676d24a6798491c5260f4b27": 1, - "676d24a6798491c5260f4b29": 4, - "676d24a6798491c5260f4b42": 3, - "676d24a6798491c5260f4b45": 3, - "676d24a6798491c5260f4b48": 2, - "676d24a6798491c5260f4b4a": 4, - "676d24a6798491c5260f4b55": 4, - "676d24a6798491c5260f4b58": 2, - "676d24a6798491c5260f4b5b": 3, - "676d24a6798491c5260f4b5e": 3, - "676d24a6798491c5260f4b61": 3, - "676d24a6798491c5260f4b64": 2, - "676d24a6798491c5260f4b67": 3, - "676d24a6798491c5260f4b6a": 2, - "676d24a6798491c5260f4b6d": 1, - "676d24a6798491c5260f4b70": 4, - "676d24a6798491c5260f4b73": 3, - "676d24a6798491c5260f4b76": 2, - "676d24a6798491c5260f4b7a": 2, - "676d24a6798491c5260f4b7d": 1, - "676d24a6798491c5260f4b80": 2, - "676d24a6798491c5260f4b83": 2, - "676d24a6798491c5260f4b86": 2, - "676d24a6798491c5260f4b89": 4, - "676d24a6798491c5260f4b8c": 3, - "676d24a6798491c5260f4b8f": 3, - "676d24a6798491c5260f4b92": 1, - "676d24a7798491c5260f4b95": 4, - "676d24a7798491c5260f4b98": 2, - "676d24a7798491c5260f4b9b": 1, - "676d24a7798491c5260f4b9e": 3, - "676d24a7798491c5260f4ba1": 4, - "676d24a7798491c5260f4ba4": 4, - "676d24a7798491c5260f4ba7": 1, - "676d24a7798491c5260f4baa": 1, - "676d24a7798491c5260f4bad": 2, - "676d24a7798491c5260f4bb0": 3, - "676d24a7798491c5260f4bb3": 2, - "676d24a7798491c5260f4bb6": 4, - "676d24a7798491c5260f4bb9": 2, - "676d24a7798491c5260f4bbc": 1, - "676d24a7798491c5260f4bbf": 3, - "676d24a7798491c5260f4bc2": 3, - "676d24a7798491c5260f4bc5": 1, - "676d24a7798491c5260f4bc7": 1, - "676d24a7798491c5260f4bd6": 3, - "676d24a7798491c5260f4bd9": 2, - "676d24a7798491c5260f4bdc": 2, - "676d24a7798491c5260f4bdf": 2, - "676d24a7798491c5260f4be2": 1, - "676d24a7798491c5260f4be5": 4, - "676d24a7798491c5260f4be8": 2, - "676d24a7798491c5260f4beb": 2, - "676d24a7798491c5260f4bee": 3, - "676d24a7798491c5260f4bf1": 4, - "676d24a7798491c5260f4bf4": 2, - "676d24a8798491c5260f4bf7": 2, - "676d24a8798491c5260f4bfa": 2, - "676d24a8798491c5260f4bfd": 1, - "676d24a8798491c5260f4c00": 3, - "676d24a8798491c5260f4c03": 3, - "676d24a8798491c5260f4c06": 1, - "676d24a8798491c5260f4c08": 1, - "676d24a8798491c5260f4c12": 1, - "676d24a8798491c5260f4c15": 1, - "676d24a8798491c5260f4c18": 3, - "676d24a8798491c5260f4c1b": 1, - "676d24a8798491c5260f4c1e": 4, - "676d24a8798491c5260f4c21": 4, - "676d24a8798491c5260f4c24": 3, - "676d24a8798491c5260f4c27": 1, - "676d24a8798491c5260f4c2a": 2, - "676d24a8798491c5260f4c2d": 4, - "676d24a8798491c5260f4c30": 2, - "676d24a8798491c5260f4c33": 1, - "676d24a8798491c5260f4c36": 4, - "676d24a8798491c5260f4c39": 2, - "676d24a8798491c5260f4c3c": 3, - "676d24a8798491c5260f4c40": 2, - "676d24a8798491c5260f4c43": 4, - "676d24a8798491c5260f4c45": 3, - "676d24a8798491c5260f4c4d": 2, - "676d24a8798491c5260f4c50": 3, - "676d24a8798491c5260f4c53": 1, - "676d24a9798491c5260f4c56": 3, - "676d24a9798491c5260f4c59": 3, - "676d24a9798491c5260f4c5c": 3, - "676d24a9798491c5260f4c5f": 3, - "676d24a9798491c5260f4c62": 3, - "676d24a9798491c5260f4c65": 2, - "676d24a9798491c5260f4c67": 3, - "676d24a9798491c5260f4c71": 2, - "676d24a9798491c5260f4c73": 3, - "676d24a9798491c5260f4c7a": 4, - "676d24a9798491c5260f4c7d": 4, - "676d24a9798491c5260f4c80": 1, - "676d24a9798491c5260f4c82": 2, - "676d24a9798491c5260f4c90": 2, - "676d24a9798491c5260f4c99": 3, - "676d24a9798491c5260f4ca4": 1, - "676d24a9798491c5260f4ca7": 4, - "676d24a9798491c5260f4caa": 3, - "676d24a9798491c5260f4cad": 2, - "676d24a9798491c5260f4cb0": 4, - "676d24a9798491c5260f4cb3": 1, - "676d24a9798491c5260f4cb6": 2, - "676d24a9798491c5260f4cb9": 3, - "676d24a9798491c5260f4cbc": 3, - "676d24a9798491c5260f4cbe": 3, - "676d24a9798491c5260f4ccc": 3, - "676d24a9798491c5260f4ccf": 2, - "676d24a9798491c5260f4cd2": 2, - "676d24aa798491c5260f4cd5": 2, - "676d24aa798491c5260f4cd8": 3, - "676d24aa798491c5260f4cda": 4, - "676d24aa798491c5260f4ce8": 4, - "676d24aa798491c5260f4ceb": 2, - "676d24aa798491c5260f4cf6": 4, - "676d24aa798491c5260f4cf9": 2, - "676d24aa798491c5260f4cfc": 3, - "676d24aa798491c5260f4cff": 3, - "676d24aa798491c5260f4d02": 2, - "676d24aa798491c5260f4d05": 4, - "676d24aa798491c5260f4d0c": 2, - "676d24aa798491c5260f4d13": 1, - "676d24aa798491c5260f4d16": 2, - "676d24aa798491c5260f4d19": 3, - "676d24aa798491c5260f4d1c": 4, - "676d24aa798491c5260f4d1f": 2, - "676d24aa798491c5260f4d22": 1, - "676d24aa798491c5260f4d24": 3, - "676d24aa798491c5260f4d2f": 1, - "676d24aa798491c5260f4d32": 3, - "676d24aa798491c5260f4d35": 3, - "676d24aa798491c5260f4d38": 4, - "676d24aa798491c5260f4d3b": 3, - "676d24aa798491c5260f4d3e": 2, - "676d24aa798491c5260f4d41": 1, - "676d24aa798491c5260f4d43": 3, - "676d24ab798491c5260f4d50": 4, - "676d24ab798491c5260f4d53": 2, - "676d24ab798491c5260f4d59": 4, - "676d24ab798491c5260f4d5e": 2, - "676d24ab798491c5260f4d61": 3, - "676d24ab798491c5260f4d64": 2, - "676d24ab798491c5260f4d67": 2, - "676d24ab798491c5260f4d6a": 2, - "676d24ab798491c5260f4d6d": 1, - "676d24ab798491c5260f4d70": 1, - "676d24ab798491c5260f4d73": 4, - "676d24ab798491c5260f4d76": 3, - "676d24ab798491c5260f4d79": 3, - "676d24ab798491c5260f4d7c": 3, - "676d24ab798491c5260f4d7f": 3, - "676d24ab798491c5260f4d82": 2, - "676d24ab798491c5260f4d85": 4, - "676d24ab798491c5260f4d88": 4, - "676d24ab798491c5260f4d8a": 2, - "676d24ab798491c5260f4d96": 2, - "676d24ab798491c5260f4d99": 2, - "676d24ab798491c5260f4d9c": 3, - "676d24ab798491c5260f4d9f": 1, - "676d24ab798491c5260f4da2": 4, - "676d24ab798491c5260f4da5": 4, - "676d24ab798491c5260f4da8": 3, - "676d24ab798491c5260f4daa": 2, - "676d24ab798491c5260f4db3": 2, - "676d24ac798491c5260f4db8": 2, - "676d24ac798491c5260f4dbd": 3, - "676d24ac798491c5260f4dc0": 3, - "676d24ac798491c5260f4dc3": 3, - "676d24ac798491c5260f4dc6": 3, - "676d24ac798491c5260f4dc9": 3, - "676d24ac798491c5260f4dcc": 3, - "676d24ac798491c5260f4dcf": 2, - "676d24ac798491c5260f4dd2": 1, - "676d24ac798491c5260f4dd5": 3, - "676d24ac798491c5260f4dd8": 4, - "676d24ac798491c5260f4ddb": 3, - "676d24ac798491c5260f4dde": 4, - "676d24ac798491c5260f4de1": 4, - "676d24ac798491c5260f4de4": 3, - "676d24ac798491c5260f4de7": 3, - "676d24ac798491c5260f4dea": 1, - "676d24ac798491c5260f4ded": 3, - "676d24ac798491c5260f4df0": 4, - "676d24ac798491c5260f4df3": 3, - "676d24ac798491c5260f4df8": 4, - "676d24ac798491c5260f4dfd": 3, - "676d24ac798491c5260f4e00": 4, - "676d24ac798491c5260f4e03": 3, - "676d24ac798491c5260f4e06": 4, - "676d24ac798491c5260f4e09": 3, - "676d24ac798491c5260f4e0c": 3, - "676d24ac798491c5260f4e0f": 2, - "676d24ac798491c5260f4e12": 4, - "676d24ad798491c5260f4e15": 2, - "676d24ad798491c5260f4e18": 3, - "676d24ad798491c5260f4e1b": 1, - "676d24ad798491c5260f4e1e": 3, - "676d24ad798491c5260f4e20": 1, - "676d24ad798491c5260f4e29": 4, - "676d24ad798491c5260f4e2c": 3, - "676d24ad798491c5260f4e2f": 3, - "676d24ad798491c5260f4e32": 3, - "676d24ad798491c5260f4e35": 2, - "676d24ad798491c5260f4e38": 2, - "676d24ad798491c5260f4e3b": 3, - "676d24ad798491c5260f4e3e": 3, - "676d24ad798491c5260f4e41": 2, - "676d24ad798491c5260f4e44": 3, - "676d24ad798491c5260f4e47": 4, - "676d24ad798491c5260f4e4a": 3, - "676d24ad798491c5260f4e4d": 3, - "676d24ad798491c5260f4e50": 4, - "676d24ad798491c5260f4e53": 1, - "676d24ad798491c5260f4e58": 4, - "676d24ad798491c5260f4e5d": 3, - "676d24ad798491c5260f4e60": 4, - "676d24ad798491c5260f4e63": 3, - "676d24ae798491c5260f4e66": 2, - "676d24ae798491c5260f4e69": 2, - "676d24ae798491c5260f4e6d": 2, - "676d24ae798491c5260f4e70": 3, - "676d24ae798491c5260f4e73": 4, - "676d24ae798491c5260f4e76": 4, - "676d24ae798491c5260f4e79": 4, - "676d24ae798491c5260f4e7c": 2, - "676d24ae798491c5260f4e7f": 4, - "676d24ae798491c5260f4e82": 3, - "676d24ae798491c5260f4e84": 1, - "676d24ae798491c5260f4e8e": 4, - "676d24ae798491c5260f4e91": 2, - "676d24ae798491c5260f4e94": 3, - "676d24ae798491c5260f4e97": 3, - "676d24ae798491c5260f4e99": 3, - "676d24ae798491c5260f4ea8": 4, - "676d24ae798491c5260f4eaa": 4, - "676d24ae798491c5260f4eb2": 3, - "676d24ae798491c5260f4eb5": 2, - "676d24ae798491c5260f4eb8": 1, - "676d24ae798491c5260f4eba": 3, - "676d24ae798491c5260f4ec2": 1, - "676d24ae798491c5260f4ec5": 3, - "676d24ae798491c5260f4ec8": 3, - "676d24af798491c5260f4ecb": 3, - "676d24af798491c5260f4ecd": 3, - "676d24af798491c5260f4ed5": 1, - "676d24af798491c5260f4ed7": 1, - "676d24af798491c5260f4ee0": 3, - "676d24af798491c5260f4ee3": 3, - "676d24af798491c5260f4ee5": 4, - "676d24af798491c5260f4eed": 1, - "676d24af798491c5260f4ef0": 1, - "676d24af798491c5260f4ef3": 2, - "676d24af798491c5260f4ef6": 3, - "676d24af798491c5260f4ef9": 4, - "676d24af798491c5260f4efc": 1, - "676d24af798491c5260f4eff": 2, - "676d24af798491c5260f4f02": 2, - "676d24af798491c5260f4f05": 2, - "676d24af798491c5260f4f0a": 2, - "676d24af798491c5260f4f0f": 3, - "676d24af798491c5260f4f11": 1, - "676d24af798491c5260f4f1a": 2, - "676d24af798491c5260f4f1d": 2, - "676d24af798491c5260f4f1f": 2, - "676d24af798491c5260f4f2c": 2, - "676d24af798491c5260f4f2f": 3, - "676d24af798491c5260f4f32": 3, - "676d24af798491c5260f4f35": 1, - "676d24af798491c5260f4f38": 3, - "676d24b0798491c5260f4f3a": 1, - "676d24b0798491c5260f4f46": 3, - "676d24b0798491c5260f4f49": 1, - "676d24b0798491c5260f4f4c": 3, - "676d24b0798491c5260f4f4f": 2, - "676d24b0798491c5260f4f52": 2, - "676d24b0798491c5260f4f55": 4, - "676d24b0798491c5260f4f58": 1, - "676d24b0798491c5260f4f5b": 3, - "676d24b0798491c5260f4f5e": 3, - "676d24b0798491c5260f4f61": 2, - "676d24b0798491c5260f4f64": 2, - "676d24b0798491c5260f4f66": 1, - "676d24b0798491c5260f4f6f": 1, - "676d24b0798491c5260f4f72": 1, - "676d24b0798491c5260f4f75": 2, - "676d24b0798491c5260f4f77": 3, - "676d24b0798491c5260f4f88": 4, - "676d24b0798491c5260f4f8b": 2, - "676d24b0798491c5260f4f8e": 3, - "676d24b0798491c5260f4f91": 2, - "676d24b0798491c5260f4f94": 2, - "676d24b0798491c5260f4f97": 2, - "676d24b0798491c5260f4f9a": 2, - "676d24b0798491c5260f4f9d": 4, - "676d24b0798491c5260f4fa0": 2, - "676d24b0798491c5260f4fa3": 4, - "676d24b1798491c5260f4fb1": 4, - "676d24b1798491c5260f4fbf": 3, - "676d24b1798491c5260f4fc2": 3, - "676d24b1798491c5260f4fc5": 1, - "676d24b1798491c5260f4fc9": 4, - "676d24b1798491c5260f4fcc": 4, - "676d24b1798491c5260f4fcf": 3, - "676d24b1798491c5260f4fd1": 3, - "676d24b1798491c5260f4fe1": 1, - "676d24b1798491c5260f4fe4": 2, - "676d24b1798491c5260f4fe7": 2, - "676d24b1798491c5260f4fe9": 4, - "676d24b1798491c5260f4ffa": 2, - "676d24b1798491c5260f4ffd": 4, - "676d24b1798491c5260f4fff": 2, - "676d24b1798491c5260f5008": 1, - "676d24b1798491c5260f500b": 3, - "676d24b1798491c5260f500e": 3, - "676d24b1798491c5260f5011": 4, - "676d24b1798491c5260f5014": 4, - "676d24b1798491c5260f5017": 1, - "676d24b1798491c5260f5019": 4, - "676d24b1798491c5260f501d": 4, - "676d24b1798491c5260f5020": 3, - "676d24b1798491c5260f5023": 4, - "676d24b1798491c5260f5026": 3, - "676d24b1798491c5260f5029": 1, - "676d24b1798491c5260f502c": 1, - "676d24b1798491c5260f502e": 4, - "676d24b1798491c5260f503f": 3, - "676d24b1798491c5260f5042": 2, - "676d24b2798491c5260f504b": 3, - "676d24b2798491c5260f5055": 1, - "676d24b2798491c5260f5057": 4, - "676d24b2798491c5260f5061": 1, - "676d24b2798491c5260f506a": 3, - "676d24b2798491c5260f506c": 3, - "676d24b2798491c5260f507d": 2, - "676d24b2798491c5260f5080": 2, - "676d24b2798491c5260f5083": 3, - "676d24b2798491c5260f5086": 2, - "676d24b2798491c5260f5089": 4, - "676d24b2798491c5260f508d": 4, - "676d24b2798491c5260f5090": 2, - "676d24b2798491c5260f5093": 1, - "676d24b2798491c5260f5096": 3, - "676d24b2798491c5260f509a": 2, - "676d24b2798491c5260f509d": 3, - "676d24b2798491c5260f50a0": 1, - "676d24b2798491c5260f50a3": 4, - "676d24b2798491c5260f50a6": 1, - "676d24b2798491c5260f50a9": 4, - "676d24b2798491c5260f50ac": 1, - "676d24b2798491c5260f50af": 2, - "676d24b2798491c5260f50b1": 2, - "676d24b2798491c5260f50bc": 2, - "676d24b2798491c5260f50be": 2, - "676d24b2798491c5260f50cf": 2, - "676d24b2798491c5260f50d2": 2, - "676d24b2798491c5260f50d6": 4, - "676d24b3798491c5260f50d9": 2, - "676d24b3798491c5260f50dc": 2, - "676d24b3798491c5260f50df": 2, - "676d24b3798491c5260f50e2": 1, - "676d24b3798491c5260f50e5": 4, - "676d24b3798491c5260f50e8": 3, - "676d24b3798491c5260f50eb": 4, - "676d24b3798491c5260f50ee": 2, - "676d24b3798491c5260f50f0": 2, - "676d24b3798491c5260f50fe": 4, - "676d24b3798491c5260f510a": 2, - "676d24b3798491c5260f510d": 3, - "676d24b3798491c5260f5110": 3, - "676d24b3798491c5260f5113": 4, - "676d24b3798491c5260f5116": 4, - "676d24b3798491c5260f5119": 2, - "676d24b3798491c5260f511c": 2, - "676d24b3798491c5260f511f": 2, - "676d24b3798491c5260f5122": 3, - "676d24b3798491c5260f5125": 1, - "676d24b3798491c5260f5128": 4, - "676d24b3798491c5260f512b": 3, - "676d24b3798491c5260f512e": 3, - "676d24b3798491c5260f5131": 2, - "676d24b3798491c5260f5134": 2, - "676d24b3798491c5260f5137": 3, - "676d24b3798491c5260f513a": 3, - "676d24b3798491c5260f513d": 3, - "676d24b3798491c5260f513f": 3, - "676d24b3798491c5260f514c": 2, - "676d24b3798491c5260f514e": 2, - "676d24b4798491c5260f5156": 2, - "676d24b4798491c5260f5159": 1, - "676d24b4798491c5260f515c": 1, - "676d24b4798491c5260f515f": 3, - "676d24b4798491c5260f5162": 3, - "676d24b4798491c5260f5165": 4, - "676d24b4798491c5260f5168": 2, - "676d24b4798491c5260f516b": 3, - "676d24b4798491c5260f516e": 4, - "676d24b4798491c5260f5171": 3, - "676d24b4798491c5260f5174": 4, - "676d24b4798491c5260f5176": 4, - "676d24b4798491c5260f5187": 2, - "676d24b4798491c5260f518a": 3, - "676d24b4798491c5260f518d": 2, - "676d24b4798491c5260f5190": 3, - "676d24b4798491c5260f5193": 2, - "676d24b4798491c5260f5196": 4, - "676d24b4798491c5260f5198": 3, - "676d24b4798491c5260f51a4": 4, - "676d24b4798491c5260f51a7": 2, - "676d24b4798491c5260f51aa": 2, - "676d24b4798491c5260f51ad": 4, - "676d24b4798491c5260f51b0": 2, - "676d24b4798491c5260f51b3": 3, - "676d24b4798491c5260f51b6": 4, - "676d24b4798491c5260f51b9": 1, - "676d24b4798491c5260f51bc": 1, - "676d24b4798491c5260f51bf": 2, - "676d24b5798491c5260f51c2": 4, - "676d24b5798491c5260f51c5": 3, - "676d24b5798491c5260f51c8": 3, - "676d24b5798491c5260f51cb": 2, - "676d24b5798491c5260f51ce": 2, - "676d24b5798491c5260f51d1": 4, - "676d24b5798491c5260f51d4": 3, - "676d24b5798491c5260f51d7": 4, - "676d24b5798491c5260f51da": 2, - "676d24b5798491c5260f51dd": 2, - "676d24b5798491c5260f51e0": 3, - "676d24b5798491c5260f51e3": 4, - "676d24b5798491c5260f51e6": 2, - "676d24b5798491c5260f51e9": 2, - "676d24b5798491c5260f51ec": 2, - "676d24b5798491c5260f51ef": 4, - "676d24b5798491c5260f51f2": 3, - "676d24b5798491c5260f51f5": 3, - "676d24b5798491c5260f51f8": 4, - "676d24b5798491c5260f51fa": 2, - "676d24b5798491c5260f5206": 2, - "676d24b5798491c5260f5209": 2, - "676d24b5798491c5260f520c": 3, - "676d24b5798491c5260f520f": 3, - "676d24b5798491c5260f5212": 2, - "676d24b5798491c5260f5215": 3, - "676d24b5798491c5260f5218": 4, - "676d24b5798491c5260f521b": 4, - "676d24b5798491c5260f521e": 4, - "676d24b5798491c5260f5221": 2, - "676d24b5798491c5260f5224": 3, - "676d24b6798491c5260f5229": 2, - "676d24b6798491c5260f522d": 3, - "676d24b6798491c5260f5237": 3, - "676d24b6798491c5260f523a": 4, - "676d24b6798491c5260f523d": 4, - "676d24b6798491c5260f5240": 2, - "676d24b6798491c5260f5243": 3, - "676d24b6798491c5260f5246": 3, - "676d24b6798491c5260f5249": 4, - "676d24b6798491c5260f524c": 2, - "676d24b6798491c5260f524e": 3, - "676d24b6798491c5260f5259": 4, - "676d24b6798491c5260f525c": 3, - "676d24b6798491c5260f525f": 3, - "676d24b6798491c5260f5262": 1, - "676d24b6798491c5260f5265": 2, - "676d24b6798491c5260f5268": 1, - "676d24b6798491c5260f526b": 1, - "676d24b6798491c5260f526e": 3, - "676d24b6798491c5260f5271": 4, - "676d24b6798491c5260f5274": 2, - "676d24b6798491c5260f5277": 2, - "676d24b6798491c5260f527a": 2, - "676d24b6798491c5260f527d": 4, - "676d24b6798491c5260f5280": 3, - "676d24b6798491c5260f5283": 2, - "676d24b6798491c5260f5286": 3, - "676d24b6798491c5260f5289": 4, - "676d24b6798491c5260f528c": 4, - "676d24b6798491c5260f528f": 2, - "676d24b7798491c5260f5292": 2, - "676d24b7798491c5260f5295": 2, - "676d24b7798491c5260f5297": 4, - "676d24b7798491c5260f529e": 2, - "676d24b7798491c5260f52a1": 4, - "676d24b7798491c5260f52a4": 4, - "676d24b7798491c5260f52a8": 2, - "676d24b7798491c5260f52ab": 2, - "676d24b7798491c5260f52ae": 1, - "676d24b7798491c5260f52b1": 1, - "676d24b7798491c5260f52b3": 4, - "676d24b7798491c5260f52ce": 1, - "676d24b7798491c5260f52d1": 2, - "676d24b7798491c5260f52d4": 1, - "676d24b7798491c5260f52d7": 1, - "676d24b7798491c5260f52da": 3, - "676d24b7798491c5260f52dd": 2, - "676d24b7798491c5260f52e0": 4, - "676d24b7798491c5260f52e3": 4, - "676d24b7798491c5260f52e6": 3, - "676d24b7798491c5260f52e9": 1, - "676d24b7798491c5260f52ec": 3, - "676d24b7798491c5260f52ef": 2, - "676d24b7798491c5260f52f2": 2, - "676d24b7798491c5260f52f4": 1, - "676d24b7798491c5260f52fd": 1, - "676d24b7798491c5260f52ff": 3, - "676d24b8798491c5260f530c": 3, - "676d24b8798491c5260f530f": 1, - "676d24b8798491c5260f5312": 1, - "676d24b8798491c5260f5315": 3, - "676d24b8798491c5260f5318": 4, - "676d24b8798491c5260f531b": 4, - "676d24b8798491c5260f531e": 1, - "676d24b8798491c5260f5321": 1, - "676d24b8798491c5260f5324": 1, - "676d24b8798491c5260f5327": 1, - "676d24b8798491c5260f532a": 1, - "676d24b8798491c5260f532d": 1, - "676d24b8798491c5260f5330": 2, - "676d24b8798491c5260f5333": 3, - "676d24b8798491c5260f5335": 4, - "676d24b8798491c5260f5345": 1, - "676d24b8798491c5260f5348": 4, - "676d24b8798491c5260f534b": 4, - "676d24b8798491c5260f534f": 3, - "676d24b8798491c5260f5352": 4, - "676d24b8798491c5260f5355": 2, - "676d24b8798491c5260f5357": 4, - "676d24b8798491c5260f536d": 2, - "676d24b8798491c5260f5370": 4, - "676d24b9798491c5260f5373": 3, - "676d24b9798491c5260f5376": 3, - "676d24b9798491c5260f5379": 2, - "676d24b9798491c5260f537c": 1, - "676d24b9798491c5260f537f": 2, - "676d24b9798491c5260f5382": 4, - "676d24b9798491c5260f5385": 2, - "676d24b9798491c5260f5388": 2, - "676d24b9798491c5260f538b": 1, - "676d24b9798491c5260f538e": 2, - "676d24b9798491c5260f5391": 4, - "676d24b9798491c5260f5394": 4, - "676d24b9798491c5260f5397": 4, - "676d24b9798491c5260f5399": 3, - "676d24b9798491c5260f53a3": 3, - "676d24b9798491c5260f53a6": 4, - "676d24b9798491c5260f53a9": 2, - "676d24b9798491c5260f53ac": 1, - "676d24b9798491c5260f53af": 1, - "676d24b9798491c5260f53b1": 2, - "676d24b9798491c5260f53b9": 2, - "676d24b9798491c5260f53bc": 4, - "676d24b9798491c5260f53bf": 4, - "676d24b9798491c5260f53c2": 4, - "676d24b9798491c5260f53c5": 2, - "676d24ba798491c5260f53c8": 2, - "676d24ba798491c5260f53cb": 1, - "676d24ba798491c5260f53ce": 1, - "676d24ba798491c5260f53d1": 2, - "676d24ba798491c5260f53d4": 2, - "676d24ba798491c5260f53d7": 3, - "676d24ba798491c5260f53da": 3, - "676d24ba798491c5260f53dd": 2, - "676d24ba798491c5260f53e0": 1, - "676d24ba798491c5260f53e3": 2, - "676d24ba798491c5260f53e6": 4, - "676d24ba798491c5260f53e9": 4, - "676d24ba798491c5260f53ec": 1, - "676d24ba798491c5260f53ef": 1, - "676d24ba798491c5260f53f2": 1, - "676d24ba798491c5260f53f5": 2, - "676d24ba798491c5260f53f8": 4, - "676d24ba798491c5260f53fb": 4, - "676d24ba798491c5260f53fe": 2, - "676d24ba798491c5260f5401": 3, - "676d24ba798491c5260f5404": 3, - "676d24ba798491c5260f5407": 3, - "676d24ba798491c5260f540a": 2, - "676d24ba798491c5260f540d": 2, - "676d24ba798491c5260f5410": 2, - "676d24ba798491c5260f5413": 2, - "676d24bb798491c5260f5416": 4, - "676d24bb798491c5260f5419": 3, + "6808bab7364a85cccb04ac00": 2, + "6808bab7364a85cccb04ac03": 2, + "6808bab7364a85cccb04ac06": 3, + "6808bab7364a85cccb04ac09": 2, + "6808bab7364a85cccb04ac0c": 3, + "6808bab7364a85cccb04ac0f": 2, + "6808bab7364a85cccb04ac12": 2, + "6808bab7364a85cccb04ac15": 1, + "6808bab7364a85cccb04ac18": 3, + "6808bab7364a85cccb04ac1b": 2, + "6808bab7364a85cccb04ac1e": 1, + "6808bab7364a85cccb04ac21": 3, + "6808bab7364a85cccb04ac24": 1, + "6808bab7364a85cccb04ac27": 3, + "6808bab7364a85cccb04ac2a": 4, + "6808bab7364a85cccb04ac2d": 2, + "6808bab7364a85cccb04ac30": 3, + "6808bab7364a85cccb04ac32": 1, + "6808bab7364a85cccb04ac41": 3, + "6808bab7364a85cccb04ac43": 2, + "6808bab7364a85cccb04ac4d": 3, + "6808bab7364a85cccb04ac50": 4, + "6808bab7364a85cccb04ac53": 3, + "6808bab8364a85cccb04ac56": 1, + "6808bab8364a85cccb04ac59": 2, + "6808bab8364a85cccb04ac5c": 1, + "6808bab8364a85cccb04ac62": 1, + "6808bab8364a85cccb04ac68": 4, + "6808bab8364a85cccb04ac6b": 3, + "6808bab8364a85cccb04ac6e": 4, + "6808bab8364a85cccb04ac71": 3, + "6808bab8364a85cccb04ac73": 1, + "6808bab8364a85cccb04ac83": 3, + "6808bab8364a85cccb04ac86": 3, + "6808bab8364a85cccb04ac89": 1, + "6808bab8364a85cccb04ac8d": 3, + "6808bab8364a85cccb04ac90": 2, + "6808bab8364a85cccb04ac94": 1, + "6808bab8364a85cccb04ac97": 3, + "6808bab8364a85cccb04ac9a": 1, + "6808bab8364a85cccb04ac9d": 3, + "6808bab8364a85cccb04aca0": 4, + "6808bab8364a85cccb04aca3": 2, + "6808bab8364a85cccb04aca8": 4, + "6808bab8364a85cccb04acad": 3, + "6808bab8364a85cccb04acb0": 3, + "6808bab9364a85cccb04acb2": 1, + "6808bab9364a85cccb04acbc": 2, + "6808bab9364a85cccb04acbf": 1, + "6808bab9364a85cccb04acc2": 1, + "6808bab9364a85cccb04acc5": 3, + "6808bab9364a85cccb04acc9": 4, + "6808bab9364a85cccb04accc": 2, + "6808bab9364a85cccb04accf": 2, + "6808bab9364a85cccb04acd2": 4, + "6808bab9364a85cccb04acd5": 3, + "6808bab9364a85cccb04acd8": 2, + "6808bab9364a85cccb04acda": 2, + "6808bab9364a85cccb04ace9": 2, + "6808bab9364a85cccb04acfa": 1, + "6808bab9364a85cccb04acfd": 1, + "6808bab9364a85cccb04ad00": 3, + "6808bab9364a85cccb04ad03": 4, + "6808bab9364a85cccb04ad05": 1, + "6808bab9364a85cccb04ad0e": 1, + "6808bab9364a85cccb04ad17": 1, + "6808bab9364a85cccb04ad1a": 2, + "6808baba364a85cccb04ad1c": 4, + "6808baba364a85cccb04ad27": 4, + "6808baba364a85cccb04ad2a": 2, + "6808baba364a85cccb04ad2d": 3, + "6808baba364a85cccb04ad30": 4, + "6808baba364a85cccb04ad33": 2, + "6808baba364a85cccb04ad36": 4, + "6808baba364a85cccb04ad39": 2, + "6808baba364a85cccb04ad3c": 4, + "6808baba364a85cccb04ad3f": 4, + "6808baba364a85cccb04ad42": 1, + "6808baba364a85cccb04ad45": 3, + "6808baba364a85cccb04ad48": 4, + "6808baba364a85cccb04ad4b": 2, + "6808baba364a85cccb04ad4e": 1, + "6808baba364a85cccb04ad51": 4, + "6808baba364a85cccb04ad54": 3, + "6808baba364a85cccb04ad57": 2, + "6808baba364a85cccb04ad5a": 4, + "6808baba364a85cccb04ad5d": 3, + "6808baba364a85cccb04ad60": 1, + "6808baba364a85cccb04ad63": 1, + "6808baba364a85cccb04ad66": 1, + "6808babb364a85cccb04ad69": 2, + "6808babb364a85cccb04ad6c": 3, + "6808babb364a85cccb04ad6f": 3, + "6808babb364a85cccb04ad72": 2, + "6808babb364a85cccb04ad75": 2, + "6808babb364a85cccb04ad78": 2, + "6808babb364a85cccb04ad7b": 3, + "6808babb364a85cccb04ad7e": 3, + "6808babb364a85cccb04ad81": 4, + "6808babb364a85cccb04ad84": 3, + "6808babb364a85cccb04ad87": 2, + "6808babb364a85cccb04ad8a": 4, + "6808babb364a85cccb04ad8d": 3, + "6808babb364a85cccb04ad8f": 2, + "6808babb364a85cccb04ad95": 1, + "6808babb364a85cccb04ad98": 2, + "6808babb364a85cccb04ad9b": 2, + "6808babb364a85cccb04ad9e": 1, + "6808babb364a85cccb04ada1": 2, + "6808babb364a85cccb04ada4": 3, + "6808babb364a85cccb04ada7": 2, + "6808babb364a85cccb04adaa": 3, + "6808babc364a85cccb04adad": 2, + "6808babc364a85cccb04adb0": 2, + "6808babc364a85cccb04adb3": 3, + "6808babc364a85cccb04adb6": 2, + "6808babc364a85cccb04adb8": 1, + "6808babc364a85cccb04adc1": 2, + "6808babc364a85cccb04adc4": 3, + "6808babc364a85cccb04adc7": 3, + "6808babc364a85cccb04adca": 3, + "6808babc364a85cccb04adcd": 1, + "6808babc364a85cccb04add0": 2, + "6808babc364a85cccb04add3": 3, + "6808babc364a85cccb04add6": 4, + "6808babc364a85cccb04add9": 4, + "6808babc364a85cccb04addc": 4, + "6808babc364a85cccb04addf": 1, + "6808babc364a85cccb04ade2": 2, + "6808babc364a85cccb04ade5": 2, + "6808babc364a85cccb04ade8": 3, + "6808babc364a85cccb04adeb": 2, + "6808babc364a85cccb04adee": 3, + "6808babc364a85cccb04adf2": 3, + "6808babc364a85cccb04adf5": 1, + "6808babc364a85cccb04adf8": 2, + "6808babd364a85cccb04adfb": 2, + "6808babd364a85cccb04adfe": 3, + "6808babd364a85cccb04ae01": 2, + "6808babd364a85cccb04ae04": 3, + "6808babd364a85cccb04ae07": 1, + "6808babd364a85cccb04ae0a": 1, + "6808babd364a85cccb04ae0d": 3, + "6808babd364a85cccb04ae10": 3, + "6808babd364a85cccb04ae13": 3, + "6808babd364a85cccb04ae15": 4, + "6808babd364a85cccb04ae2e": 4, + "6808babd364a85cccb04ae31": 3, + "6808babd364a85cccb04ae34": 3, + "6808babd364a85cccb04ae37": 3, + "6808babd364a85cccb04ae3a": 2, + "6808babd364a85cccb04ae3d": 4, + "6808babd364a85cccb04ae40": 2, + "6808babd364a85cccb04ae47": 2, + "6808babd364a85cccb04ae4e": 3, + "6808babd364a85cccb04ae51": 2, + "6808babd364a85cccb04ae54": 3, + "6808babd364a85cccb04ae57": 3, + "6808babd364a85cccb04ae5a": 4, + "6808babe364a85cccb04ae5c": 2, + "6808babe364a85cccb04ae66": 2, + "6808babe364a85cccb04ae75": 3, + "6808babe364a85cccb04ae77": 3, + "6808babe364a85cccb04ae80": 4, + "6808babe364a85cccb04ae8e": 3, + "6808babe364a85cccb04ae91": 3, + "6808babe364a85cccb04ae93": 3, + "6808babe364a85cccb04ae9e": 3, + "6808babe364a85cccb04aea1": 4, + "6808babe364a85cccb04aea4": 2, + "6808babe364a85cccb04aea7": 3, + "6808babe364a85cccb04aeaa": 2, + "6808babe364a85cccb04aead": 4, + "6808babe364a85cccb04aeb0": 1, + "6808babe364a85cccb04aeb3": 3, + "6808babe364a85cccb04aeb6": 1, + "6808babe364a85cccb04aeb9": 1, + "6808babe364a85cccb04aebc": 3, + "6808babe364a85cccb04aebf": 2, + "6808babe364a85cccb04aec2": 4, + "6808babe364a85cccb04aec4": 3, + "6808babf364a85cccb04aecb": 2, + "6808babf364a85cccb04aece": 2, + "6808babf364a85cccb04aed1": 2, + "6808babf364a85cccb04aed4": 1, + "6808babf364a85cccb04aed6": 3, + "6808babf364a85cccb04aee4": 1, + "6808babf364a85cccb04aee6": 2, + "6808babf364a85cccb04aef0": 3, + "6808babf364a85cccb04aef3": 4, + "6808babf364a85cccb04aef7": 2, + "6808babf364a85cccb04aefa": 2, + "6808babf364a85cccb04aefd": 4, + "6808babf364a85cccb04aeff": 3, + "6808babf364a85cccb04af07": 2, + "6808babf364a85cccb04af0a": 3, + "6808babf364a85cccb04af0d": 3, + "6808babf364a85cccb04af10": 3, + "6808babf364a85cccb04af12": 1, + "6808babf364a85cccb04af1c": 3, + "6808bac0364a85cccb04af1f": 4, + "6808bac0364a85cccb04af21": 1, + "6808bac0364a85cccb04af29": 2, + "6808bac0364a85cccb04af35": 2, + "6808bac0364a85cccb04af38": 1, + "6808bac0364a85cccb04af3b": 3, + "6808bac0364a85cccb04af3e": 3, + "6808bac0364a85cccb04af41": 3, + "6808bac0364a85cccb04af44": 2, + "6808bac0364a85cccb04af47": 4, + "6808bac0364a85cccb04af4a": 4, + "6808bac0364a85cccb04af4d": 4, + "6808bac0364a85cccb04af50": 4, + "6808bac0364a85cccb04af52": 1, + "6808bac0364a85cccb04af5b": 4, + "6808bac0364a85cccb04af60": 4, + "6808bac0364a85cccb04af65": 2, + "6808bac0364a85cccb04af68": 2, + "6808bac0364a85cccb04af6b": 2, + "6808bac0364a85cccb04af6e": 3, + "6808bac0364a85cccb04af71": 1, + "6808bac0364a85cccb04af74": 3, + "6808bac0364a85cccb04af77": 3, + "6808bac0364a85cccb04af7a": 2, + "6808bac1364a85cccb04af7d": 1, + "6808bac1364a85cccb04af80": 2, + "6808bac1364a85cccb04af83": 3, + "6808bac1364a85cccb04af86": 2, + "6808bac1364a85cccb04af89": 3, + "6808bac1364a85cccb04af8b": 3, + "6808bac1364a85cccb04af9a": 3, + "6808bac1364a85cccb04af9d": 2, + "6808bac1364a85cccb04afa0": 3, + "6808bac1364a85cccb04afa3": 1, + "6808bac1364a85cccb04afa5": 3, + "6808bac1364a85cccb04afad": 1, + "6808bac1364a85cccb04afaf": 3, + "6808bac1364a85cccb04afb7": 3, + "6808bac1364a85cccb04afba": 2, + "6808bac1364a85cccb04afbd": 3, + "6808bac1364a85cccb04afbf": 2, + "6808bac1364a85cccb04afc7": 3, + "6808bac1364a85cccb04afd4": 3, + "6808bac1364a85cccb04afd7": 4, + "6808bac1364a85cccb04afda": 1, + "6808bac1364a85cccb04afdd": 3, + "6808bac1364a85cccb04afe0": 4, + "6808bac2364a85cccb04afe3": 3, + "6808bac2364a85cccb04afe6": 3, + "6808bac2364a85cccb04afe9": 1, + "6808bac2364a85cccb04afec": 2, + "6808bac2364a85cccb04aff0": 3, + "6808bac2364a85cccb04aff3": 4, + "6808bac2364a85cccb04aff6": 3, + "6808bac2364a85cccb04aff9": 2, + "6808bac2364a85cccb04affc": 3, + "6808bac2364a85cccb04afff": 4, + "6808bac2364a85cccb04b002": 2, + "6808bac2364a85cccb04b005": 2, + "6808bac2364a85cccb04b008": 4, + "6808bac2364a85cccb04b00b": 3, + "6808bac2364a85cccb04b00e": 4, + "6808bac2364a85cccb04b011": 3, + "6808bac2364a85cccb04b016": 2, + "6808bac2364a85cccb04b01b": 2, + "6808bac2364a85cccb04b01e": 1, + "6808bac2364a85cccb04b021": 3, + "6808bac2364a85cccb04b024": 1, + "6808bac2364a85cccb04b026": 4, + "6808bac2364a85cccb04b02e": 3, + "6808bac2364a85cccb04b031": 4, + "6808bac2364a85cccb04b034": 2, + "6808bac2364a85cccb04b037": 2, + "6808bac2364a85cccb04b03a": 3, + "6808bac3364a85cccb04b03d": 3, + "6808bac3364a85cccb04b040": 4, + "6808bac3364a85cccb04b043": 3, + "6808bac3364a85cccb04b046": 3, + "6808bac3364a85cccb04b049": 3, + "6808bac3364a85cccb04b04c": 3, + "6808bac3364a85cccb04b04f": 1, + "6808bac3364a85cccb04b054": 4, + "6808bac3364a85cccb04b058": 3, + "6808bac3364a85cccb04b063": 4, + "6808bac3364a85cccb04b066": 3, + "6808bac3364a85cccb04b069": 4, + "6808bac3364a85cccb04b06c": 3, + "6808bac3364a85cccb04b06f": 3, + "6808bac3364a85cccb04b072": 2, + "6808bac3364a85cccb04b076": 3, + "6808bac3364a85cccb04b079": 4, + "6808bac3364a85cccb04b07c": 2, + "6808bac3364a85cccb04b07f": 3, + "6808bac3364a85cccb04b082": 4, + "6808bac3364a85cccb04b085": 3, + "6808bac3364a85cccb04b088": 4, + "6808bac3364a85cccb04b08b": 2, + "6808bac3364a85cccb04b08e": 4, + "6808bac3364a85cccb04b091": 1, + "6808bac3364a85cccb04b096": 4, + "6808bac4364a85cccb04b09b": 4, + "6808bac4364a85cccb04b09e": 3, + "6808bac4364a85cccb04b0a1": 2, + "6808bac4364a85cccb04b0a4": 3, + "6808bac4364a85cccb04b0a7": 1, + "6808bac4364a85cccb04b0aa": 3, + "6808bac4364a85cccb04b0ad": 4, + "6808bac4364a85cccb04b0b0": 3, + "6808bac4364a85cccb04b0b3": 3, + "6808bac4364a85cccb04b0b6": 3, + "6808bac4364a85cccb04b0b9": 3, + "6808bac4364a85cccb04b0bc": 2, + "6808bac4364a85cccb04b0bf": 3, + "6808bac4364a85cccb04b0c2": 4, + "6808bac4364a85cccb04b0c5": 3, + "6808bac4364a85cccb04b0c8": 4, + "6808bac4364a85cccb04b0cb": 4, + "6808bac4364a85cccb04b0ce": 1, + "6808bac4364a85cccb04b0d0": 3, + "6808bac4364a85cccb04b0e1": 1, + "6808bac4364a85cccb04b0e4": 2, + "6808bac4364a85cccb04b0e7": 2, + "6808bac4364a85cccb04b0ea": 2, + "6808bac4364a85cccb04b0ed": 3, + "6808bac5364a85cccb04b0f0": 1, + "6808bac5364a85cccb04b0f3": 1, + "6808bac5364a85cccb04b0f5": 4, + "6808bac5364a85cccb04b100": 1, + "6808bac5364a85cccb04b103": 2, + "6808bac5364a85cccb04b106": 2, + "6808bac5364a85cccb04b109": 2, + "6808bac5364a85cccb04b10c": 2, + "6808bac5364a85cccb04b115": 3, + "6808bac5364a85cccb04b11f": 1, + "6808bac5364a85cccb04b121": 1, + "6808bac5364a85cccb04b12a": 2, + "6808bac5364a85cccb04b12d": 4, + "6808bac5364a85cccb04b131": 3, + "6808bac5364a85cccb04b134": 2, + "6808bac5364a85cccb04b142": 4, + "6808bac5364a85cccb04b150": 3, + "6808bac5364a85cccb04b153": 3, + "6808bac5364a85cccb04b156": 1, + "6808bac5364a85cccb04b159": 1, + "6808bac5364a85cccb04b15c": 3, + "6808bac5364a85cccb04b15f": 1, + "6808bac5364a85cccb04b162": 2, + "6808bac6364a85cccb04b164": 3, + "6808bac6364a85cccb04b174": 2, + "6808bac6364a85cccb04b176": 1, + "6808bac6364a85cccb04b17f": 1, + "6808bac6364a85cccb04b182": 3, + "6808bac6364a85cccb04b185": 3, + "6808bac6364a85cccb04b187": 2, + "6808bac6364a85cccb04b194": 2, + "6808bac6364a85cccb04b197": 3, + "6808bac6364a85cccb04b19a": 2, + "6808bac6364a85cccb04b19d": 3, + "6808bac6364a85cccb04b1a0": 4, + "6808bac6364a85cccb04b1a3": 2, + "6808bac6364a85cccb04b1a6": 1, + "6808bac6364a85cccb04b1a9": 4, + "6808bac6364a85cccb04b1ac": 3, + "6808bac6364a85cccb04b1af": 4, + "6808bac6364a85cccb04b1b1": 4, + "6808bac6364a85cccb04b1c2": 1, + "6808bac6364a85cccb04b1c5": 1, + "6808bac6364a85cccb04b1c8": 3, + "6808bac6364a85cccb04b1cb": 2, + "6808bac6364a85cccb04b1ce": 1, + "6808bac7364a85cccb04b1d1": 3, + "6808bac7364a85cccb04b1d4": 2, + "6808bac7364a85cccb04b1d7": 2, + "6808bac7364a85cccb04b1da": 2, + "6808bac7364a85cccb04b1dd": 4, + "6808bac7364a85cccb04b1df": 2, + "6808bac7364a85cccb04b1e8": 3, + "6808bac7364a85cccb04b1eb": 4, + "6808bac7364a85cccb04b1ee": 2, + "6808bac7364a85cccb04b1f1": 2, + "6808bac7364a85cccb04b1f4": 2, + "6808bac7364a85cccb04b1f9": 2, + "6808bac7364a85cccb04b1fe": 4, + "6808bac7364a85cccb04b201": 2, + "6808bac7364a85cccb04b204": 2, + "6808bac7364a85cccb04b208": 1, + "6808bac7364a85cccb04b20c": 2, + "6808bac7364a85cccb04b20e": 2, + "6808bac7364a85cccb04b219": 4, + "6808bac7364a85cccb04b21c": 4, + "6808bac7364a85cccb04b21e": 2, + "6808bac7364a85cccb04b22f": 2, + "6808bac7364a85cccb04b232": 3, + "6808bac8364a85cccb04b236": 4, + "6808bac8364a85cccb04b238": 1, + "6808bac8364a85cccb04b244": 4, + "6808bac8364a85cccb04b247": 2, + "6808bac8364a85cccb04b249": 4, + "6808bac8364a85cccb04b259": 4, + "6808bac8364a85cccb04b261": 3, + "6808bac8364a85cccb04b264": 3, + "6808bac8364a85cccb04b267": 1, + "6808bac8364a85cccb04b26a": 2, + "6808bac8364a85cccb04b26d": 4, + "6808bac8364a85cccb04b270": 1, + "6808bac8364a85cccb04b273": 4, + "6808bac8364a85cccb04b276": 2, + "6808bac8364a85cccb04b278": 4, + "6808bac8364a85cccb04b27c": 2, + "6808bac8364a85cccb04b27f": 4, + "6808bac8364a85cccb04b282": 1, + "6808bac8364a85cccb04b285": 3, + "6808bac8364a85cccb04b288": 4, + "6808bac8364a85cccb04b28b": 3, + "6808bac8364a85cccb04b28e": 4, + "6808bac8364a85cccb04b291": 1, + "6808bac9364a85cccb04b294": 3, + "6808bac9364a85cccb04b296": 1, + "6808bac9364a85cccb04b29f": 3, + "6808bac9364a85cccb04b2a2": 4, + "6808bac9364a85cccb04b2a4": 3, + "6808bac9364a85cccb04b2b5": 3, + "6808bac9364a85cccb04b2b8": 2, + "6808bac9364a85cccb04b2bb": 1, + "6808bac9364a85cccb04b2be": 2, + "6808bac9364a85cccb04b2c1": 3, + "6808bac9364a85cccb04b2c4": 3, + "6808bac9364a85cccb04b2c7": 4, + "6808bac9364a85cccb04b2ca": 4, + "6808bac9364a85cccb04b2cd": 2, + "6808bac9364a85cccb04b2d0": 3, + "6808bac9364a85cccb04b2d3": 4, + "6808bac9364a85cccb04b2d6": 2, + "6808bac9364a85cccb04b2d9": 4, + "6808bac9364a85cccb04b2dc": 3, + "6808bac9364a85cccb04b2df": 2, + "6808bac9364a85cccb04b2e2": 3, + "6808bac9364a85cccb04b2e5": 2, + "6808bac9364a85cccb04b2e7": 4, + "6808baca364a85cccb04b2f3": 2, + "6808baca364a85cccb04b2f5": 3, + "6808baca364a85cccb04b300": 2, + "6808baca364a85cccb04b303": 3, + "6808baca364a85cccb04b308": 2, + "6808baca364a85cccb04b30d": 4, + "6808baca364a85cccb04b310": 3, + "6808baca364a85cccb04b313": 3, + "6808baca364a85cccb04b316": 4, + "6808baca364a85cccb04b319": 2, + "6808baca364a85cccb04b31c": 2, + "6808baca364a85cccb04b31f": 1, + "6808baca364a85cccb04b322": 3, + "6808baca364a85cccb04b325": 3, + "6808baca364a85cccb04b328": 4, + "6808baca364a85cccb04b32b": 3, + "6808baca364a85cccb04b32e": 3, + "6808baca364a85cccb04b331": 3, + "6808baca364a85cccb04b334": 2, + "6808baca364a85cccb04b337": 4, + "6808baca364a85cccb04b33a": 2, + "6808baca364a85cccb04b33d": 3, + "6808baca364a85cccb04b340": 4, + "6808baca364a85cccb04b343": 2, + "6808baca364a85cccb04b346": 4, + "6808baca364a85cccb04b349": 3, + "6808bacb364a85cccb04b34c": 4, + "6808bacb364a85cccb04b34f": 2, + "6808bacb364a85cccb04b352": 3, + "6808bacb364a85cccb04b355": 3, + "6808bacb364a85cccb04b358": 2, + "6808bacb364a85cccb04b35b": 3, + "6808bacb364a85cccb04b35e": 2, + "6808bacb364a85cccb04b361": 4, + "6808bacb364a85cccb04b364": 2, + "6808bacb364a85cccb04b367": 2, + "6808bacb364a85cccb04b36a": 4, + "6808bacb364a85cccb04b36d": 4, + "6808bacb364a85cccb04b36f": 4, + "6808bacb364a85cccb04b380": 4, + "6808bacb364a85cccb04b383": 2, + "6808bacb364a85cccb04b386": 2, + "6808bacb364a85cccb04b389": 3, + "6808bacb364a85cccb04b38c": 2, + "6808bacb364a85cccb04b38f": 2, + "6808bacb364a85cccb04b392": 2, + "6808bacb364a85cccb04b395": 2, + "6808bacb364a85cccb04b398": 4, + "6808bacb364a85cccb04b39b": 2, + "6808bacb364a85cccb04b39e": 2, + "6808bacb364a85cccb04b3a1": 2, + "6808bacb364a85cccb04b3a4": 2, + "6808bacc364a85cccb04b3a7": 1, + "6808bacc364a85cccb04b3aa": 3, + "6808bacc364a85cccb04b3ad": 2, + "6808bacc364a85cccb04b3b0": 3, + "6808bacc364a85cccb04b3b3": 4, + "6808bacc364a85cccb04b3b6": 2, + "6808bacc364a85cccb04b3b9": 3, + "6808bacc364a85cccb04b3bc": 3, + "6808bacc364a85cccb04b3bf": 4, + "6808bacc364a85cccb04b3c2": 4, + "6808bacc364a85cccb04b3c5": 3, + "6808bacc364a85cccb04b3c8": 3, + "6808bacc364a85cccb04b3ca": 2, + "6808bacc364a85cccb04b3d6": 4, + "6808bacc364a85cccb04b3d9": 4, + "6808bacc364a85cccb04b3db": 3, + "6808bacc364a85cccb04b3e7": 2, + "6808bacc364a85cccb04b3ea": 3, + "6808bacc364a85cccb04b3ed": 2, + "6808bacc364a85cccb04b3f0": 4, + "6808bacd364a85cccb04b3f3": 3, + "6808bacd364a85cccb04b3f6": 1, + "6808bacd364a85cccb04b3f9": 2, + "6808bacd364a85cccb04b3fc": 3, + "6808bacd364a85cccb04b3fe": 2, + "6808bacd364a85cccb04b406": 1, + "6808bacd364a85cccb04b409": 1, + "6808bacd364a85cccb04b40c": 4, + "6808bacd364a85cccb04b40f": 2, + "6808bacd364a85cccb04b412": 4, + "6808bacd364a85cccb04b415": 4, + "6808bacd364a85cccb04b417": 2, + "6808bacd364a85cccb04b426": 4, + "6808bacd364a85cccb04b429": 3, + "6808bacd364a85cccb04b42c": 2, + "6808bacd364a85cccb04b42f": 1, + "6808bacd364a85cccb04b431": 3, + "6808bacd364a85cccb04b43b": 2, + "6808bacd364a85cccb04b43e": 3, + "6808bacd364a85cccb04b441": 1, + "6808bace364a85cccb04b444": 2, + "6808bace364a85cccb04b447": 3, + "6808bace364a85cccb04b44a": 2, + "6808bace364a85cccb04b44d": 2, + "6808bace364a85cccb04b450": 1, + "6808bace364a85cccb04b453": 2, + "6808bace364a85cccb04b456": 2, + "6808bace364a85cccb04b459": 4, + "6808bace364a85cccb04b45c": 3, + "6808bace364a85cccb04b45f": 3, + "6808bace364a85cccb04b462": 4, + "6808bace364a85cccb04b465": 3, + "6808bace364a85cccb04b467": 3, + "6808bace364a85cccb04b474": 4, + "6808bace364a85cccb04b477": 2, + "6808bace364a85cccb04b47a": 3, + "6808bace364a85cccb04b47d": 2, + "6808bace364a85cccb04b480": 1, + "6808bace364a85cccb04b482": 4, + "6808bace364a85cccb04b489": 1, + "6808bacf364a85cccb04b48b": 3, + "6808bacf364a85cccb04b498": 2, + "6808bacf364a85cccb04b49a": 4, + "6808bacf364a85cccb04b4b5": 2, + "6808bacf364a85cccb04b4b8": 4, + "6808bacf364a85cccb04b4bb": 2, + "6808bacf364a85cccb04b4be": 4, + "6808bacf364a85cccb04b4c1": 4, + "6808bacf364a85cccb04b4c4": 1, + "6808bacf364a85cccb04b4c7": 1, + "6808bacf364a85cccb04b4ca": 2, + "6808bacf364a85cccb04b4cd": 2, + "6808bacf364a85cccb04b4d0": 1, + "6808bacf364a85cccb04b4d3": 4, + "6808bacf364a85cccb04b4d6": 4, + "6808bacf364a85cccb04b4d9": 1, + "6808bacf364a85cccb04b4dc": 1, + "6808bad0364a85cccb04b4df": 4, + "6808bad0364a85cccb04b4e1": 4, + "6808bad0364a85cccb04b4f1": 1, + "6808bad0364a85cccb04b4f3": 2, + "6808bad0364a85cccb04b4fb": 2, + "6808bad0364a85cccb04b4fe": 2, + "6808bad0364a85cccb04b501": 1, + "6808bad0364a85cccb04b503": 1, + "6808bad0364a85cccb04b50c": 3, + "6808bad0364a85cccb04b50f": 3, + "6808bad0364a85cccb04b512": 1, + "6808bad0364a85cccb04b515": 1, + "6808bad0364a85cccb04b518": 1, + "6808bad0364a85cccb04b51b": 2, + "6808bad0364a85cccb04b51e": 3, + "6808bad0364a85cccb04b521": 1, + "6808bad0364a85cccb04b524": 2, + "6808bad0364a85cccb04b527": 4, + "6808bad1364a85cccb04b52a": 4, + "6808bad1364a85cccb04b52e": 4, + "6808bad1364a85cccb04b531": 1, + "6808bad1364a85cccb04b533": 3, + "6808bad1364a85cccb04b53d": 4, + "6808bad1364a85cccb04b540": 1, + "6808bad1364a85cccb04b543": 1, + "6808bad1364a85cccb04b546": 3, + "6808bad1364a85cccb04b549": 4, + "6808bad1364a85cccb04b54c": 2, + "6808bad1364a85cccb04b54f": 4, + "6808bad1364a85cccb04b552": 1, + "6808bad1364a85cccb04b555": 1, + "6808bad1364a85cccb04b558": 2, + "6808bad1364a85cccb04b55b": 2, + "6808bad1364a85cccb04b55e": 2, + "6808bad1364a85cccb04b561": 2, + "6808bad2364a85cccb04b564": 1, + "6808bad2364a85cccb04b567": 2, + "6808bad2364a85cccb04b56a": 2, + "6808bad2364a85cccb04b56d": 4, + "6808bad2364a85cccb04b570": 1, + "6808bad2364a85cccb04b573": 2, + "6808bad2364a85cccb04b576": 4, + "6808bad2364a85cccb04b579": 2, + "6808bad2364a85cccb04b57c": 2, + "6808bad2364a85cccb04b57f": 4, + "6808bad2364a85cccb04b582": 2, + "6808bad2364a85cccb04b585": 4, + "6808bad2364a85cccb04b589": 2, + "6808bad2364a85cccb04b58c": 1, + "6808bad2364a85cccb04b58f": 2, + "6808bad2364a85cccb04b592": 3, + "6808bad2364a85cccb04b595": 4, + "6808bad2364a85cccb04b598": 3, + "6808bad2364a85cccb04b59b": 2, + "6808bad2364a85cccb04b59e": 3, + "6808bad2364a85cccb04b5a1": 1, + "6808bad2364a85cccb04b5a4": 4, + "6808bad3364a85cccb04b5a7": 3, + "6808bad3364a85cccb04b5aa": 4, + "6808bad3364a85cccb04b5ad": 3, + "6808bad3364a85cccb04b5b0": 2, + "6808bad3364a85cccb04b5b2": 4, + "6808bad3364a85cccb04b5c8": 2, + "6808bad3364a85cccb04b5cb": 4, + "6808bad3364a85cccb04b5ce": 1, + "6808bad3364a85cccb04b5d1": 2, + "6808bad3364a85cccb04b5d4": 3, + "6808bad3364a85cccb04b5d7": 4, + "6808bad3364a85cccb04b5da": 3, + "6808bad3364a85cccb04b5dd": 1, + "6808bad3364a85cccb04b5e0": 3, + "6808bad3364a85cccb04b5e3": 4, + "6808bad3364a85cccb04b5e6": 1, + "6808bad3364a85cccb04b5e9": 3, + "6808bad3364a85cccb04b5ec": 2, + "6808bad3364a85cccb04b5ef": 1, + "6808bad3364a85cccb04b5f2": 3, + "6808bad3364a85cccb04b5f5": 1, + "6808bad3364a85cccb04b5f8": 3, + "6808bad3364a85cccb04b5fb": 3, + "6808bad3364a85cccb04b5fe": 2, + "6808bad4364a85cccb04b601": 4, + "6808bad4364a85cccb04b604": 2, "656629d07cac3c3b160e63fb": 1, "656629d07cac3c3b160e63fc": 1, "656629d07cac3c3b160e63fd": 1, diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json index f252540b..6144a06a 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json @@ -1,47 +1,47 @@ { "started": {}, "success": { - "676d24b2798491c5260f5080": "5a27b87686f77460de0252a8", - "676d24a3798491c5260f4a1c": "5a27b80086f774429a5d7e20", - "676d24ad798491c5260f4e58": "5a27bafb86f7741c73584017", - "676d24a4798491c5260f4aa5": "5a27bbf886f774333a418eeb", - "676d24ac798491c5260f4db8": "5a27bbf886f774333a418eeb", - "676d24af798491c5260f4ee5": "5a27bc3686f7741c73584026", - "676d24ac798491c5260f4de7": "5ac244c486f77413e12cf945", - "676d24a6798491c5260f4b4a": "5a27bc6986f7741c7358402b", - "676d24b2798491c5260f5089": "5a27bc6986f7741c7358402b", - "676d24a4798491c5260f4a9b": "5a27b7d686f77460d847e6a6", - "676d24a9798491c5260f4c65": "5a27b7d686f77460d847e6a6", - "676d24b1798491c5260f5019": "5a27bc8586f7741b543d8ea4", - "676d24a4798491c5260f4a84": "5edac020218d181e29451446", - "676d24ab798491c5260f4d59": "5edac020218d181e29451446", - "676d24b5798491c5260f51c2": "60e71ce009d7c801eb0c0ec6", - "676d24aa798491c5260f4cff": "5c0d4e61d09282029f53920e", - "676d24aa798491c5260f4cf6": "5c0d4e61d09282029f53920e", - "676d24a4798491c5260f4a51": "5c0d4e61d09282029f53920e", - "676d24a9798491c5260f4cd2": "5a27b75b86f7742e97191958", - "676d24a9798491c5260f4c90": "5a27b75b86f7742e97191958", - "676d24a6798491c5260f4b5e": "5a27bb3d86f77411ea361a21", - "676d24a8798491c5260f4c36": "6179b4d1bca27a099552e04e", - "676d24ab798491c5260f4daa": "6179b4d1bca27a099552e04e", - "676d24a9798491c5260f4cbe": "5a27bc1586f7741f6d40fa2f", - "676d24ab798491c5260f4da8": "639872fe8871e1272b10ccf6", - "676d24b0798491c5260f4f55": "5edac63b930f5454f51e128b", - "676d24b0798491c5260f4f94": "5a27b7a786f774579c3eb376", - "676d24af798491c5260f4ed7": "5a27b7a786f774579c3eb376", - "676d24a5798491c5260f4ade": "5a03173786f77451cb427172", - "676d24a5798491c5260f4b1f": "61958c366726521dd96828ec", - "676d24a7798491c5260f4be5": "5b477f7686f7744d1b23c4d2", - "676d24b2798491c5260f508d": "5b47825886f77468074618d3", - "676d24b4798491c5260f5176": "63967028c4a91c5cb76abd81", - "676d24b3798491c5260f5128": "63967028c4a91c5cb76abd81", - "676d24b6798491c5260f523d": "63967028c4a91c5cb76abd81", - "676d24aa798491c5260f4ceb": "6179aff8f57fb279792c60a1", - "676d24b5798491c5260f5215": "63a9b229813bba58a50c9ee5", - "676d24b0798491c5260f4f5b": "63a9b229813bba58a50c9ee5", - "676d24b6798491c5260f5271": "5c0bd01e86f7747cdd799e56", - "676d24b2798491c5260f50be": "639135f286e646067c176a87", - "676d24af798491c5260f4f0a": "639135f286e646067c176a87", + "6808babc364a85cccb04adee": "5a03173786f77451cb427172", + "6808babf364a85cccb04aecb": "5a27b75b86f7742e97191958", + "6808babf364a85cccb04aee6": "5a27b75b86f7742e97191958", + "6808bac6364a85cccb04b19a": "5a27b7a786f774579c3eb376", + "6808bac0364a85cccb04af21": "5a27b7a786f774579c3eb376", + "6808bab7364a85cccb04ac43": "5a27b7d686f77460d847e6a6", + "6808babe364a85cccb04aea4": "5a27b7d686f77460d847e6a6", + "6808bab9364a85cccb04ace9": "5a27b80086f774429a5d7e20", + "6808bac7364a85cccb04b1f4": "5a27b87686f77460de0252a8", + "6808bac0364a85cccb04af60": "5a27bafb86f7741c73584017", + "6808bab9364a85cccb04acd5": "5a27bb3d86f77411ea361a21", + "6808baba364a85cccb04ad27": "5a27bbf886f774333a418eeb", + "6808bac2364a85cccb04b016": "5a27bbf886f774333a418eeb", + "6808babf364a85cccb04aed6": "5a27bc1586f7741f6d40fa2f", + "6808bac8364a85cccb04b259": "5a27bc3686f7741c73584026", + "6808baba364a85cccb04ad1c": "5a27bc6986f7741c7358402b", + "6808bac5364a85cccb04b12d": "5a27bc6986f7741c7358402b", + "6808bac8364a85cccb04b278": "5a27bc8586f7741b543d8ea4", + "6808bac2364a85cccb04aff0": "5ac244c486f77413e12cf945", + "6808bab9364a85cccb04acc9": "5b477f7686f7744d1b23c4d2", + "6808bac6364a85cccb04b1a9": "5b47825886f77468074618d3", + "6808bace364a85cccb04b459": "5c0bd01e86f7747cdd799e56", + "6808babe364a85cccb04aeb3": "5c0d4e61d09282029f53920e", + "6808babe364a85cccb04aea1": "5c0d4e61d09282029f53920e", + "6808babc364a85cccb04addc": "5c0d4e61d09282029f53920e", + "6808baba364a85cccb04ad5a": "5edac020218d181e29451446", + "6808bac3364a85cccb04b096": "5edac020218d181e29451446", + "6808bac8364a85cccb04b26d": "5edac63b930f5454f51e128b", + "6808bacc364a85cccb04b3d9": "60e71ce009d7c801eb0c0ec6", + "6808babe364a85cccb04ae5c": "6179aff8f57fb279792c60a1", + "6808bab9364a85cccb04ad03": "6179b4d1bca27a099552e04e", + "6808bac1364a85cccb04afbf": "6179b4d1bca27a099552e04e", + "6808bab8364a85cccb04aca8": "61958c366726521dd96828ec", + "6808bac7364a85cccb04b21e": "639135f286e646067c176a87", + "6808bac7364a85cccb04b1f9": "639135f286e646067c176a87", + "6808bacb364a85cccb04b36f": "63967028c4a91c5cb76abd81", + "6808bacb364a85cccb04b36a": "63967028c4a91c5cb76abd81", + "6808bacb364a85cccb04b36d": "63967028c4a91c5cb76abd81", + "6808bac4364a85cccb04b0c5": "639872fe8871e1272b10ccf6", + "6808baca364a85cccb04b32e": "63a9b229813bba58a50c9ee5", + "6808bac8364a85cccb04b28b": "63a9b229813bba58a50c9ee5", "656629d07cac3c3b160e63fb": "655e427b64d09b4122018228", "656629d07cac3c3b160e63fc": "655e427b64d09b4122018228", "656629d07cac3c3b160e63fd": "655e427b64d09b4122018228", diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json index 163815a2..50d977ca 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json @@ -1,235 +1,7 @@ { "items": [ { - "_id": "677536c8b06e57fd5c0e09a1", - "_tpl": "5947fa2486f77425b47c1a9b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09a4", - "_tpl": "571a28e524597720b4066567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09a7", - "_tpl": "5a7d90eb159bd400165484f1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09aa", - "_tpl": "5a6f5f078dc32e00094b97dd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09ad", - "_tpl": "5a71e4f48dc32e001207fb26", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09b0", - "_tpl": "5a7b4900e899ef197b331a2a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09b3", - "_tpl": "5a7d912f159bd400165484f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09b6", - "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09b9", - "_tpl": "5a69a2ed8dc32e000d46d1f1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09bc", - "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09bf", - "_tpl": "5a70366c8dc32e001207fb06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09c1", - "_tpl": "5aafa857e5b5b00018480968", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09c2", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "677536c8b06e57fd5c0e09c1", - "slotId": "mod_magazine" - }, - { - "_id": "677536c8b06e57fd5c0e09c3", - "_tpl": "5addc7005acfc4001669f275", - "parentId": "677536c8b06e57fd5c0e09c1", - "slotId": "mod_stock" - }, - { - "_id": "677536c8b06e57fd5c0e09c4", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "677536c8b06e57fd5c0e09c3", - "slotId": "mod_stock" - }, - { - "_id": "677536c8b06e57fd5c0e09c5", - "_tpl": "5addc7db5acfc4001669f279", - "parentId": "677536c8b06e57fd5c0e09c4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536c8b06e57fd5c0e09c6", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "677536c8b06e57fd5c0e09c1", - "slotId": "mod_barrel" - }, - { - "_id": "677536c8b06e57fd5c0e09c7", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "677536c8b06e57fd5c0e09c6", - "slotId": "mod_muzzle" - }, - { - "_id": "677536c8b06e57fd5c0e09c8", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "677536c8b06e57fd5c0e09c7", - "slotId": "mod_sight_front" - }, - { - "_id": "677536c8b06e57fd5c0e09c9", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "677536c8b06e57fd5c0e09c1", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536c8b06e57fd5c0e09cc", - "_tpl": "5a33e75ac4a2826c6e06d759", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09cf", - "_tpl": "5a7ad74e51dfba0015068f45", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09d2", - "_tpl": "5a71e22f8dc32e00094b97f4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c8b06e57fd5c0e09d5", + "_id": "6808baec364a85cccb04bce5", "_tpl": "5a7037338dc32e000d46d257", "parentId": "hideout", "slotId": "hideout", @@ -241,8 +13,8 @@ } }, { - "_id": "677536c8b06e57fd5c0e09d8", - "_tpl": "5a7b32a2e899ef00135e345a", + "_id": "6808baec364a85cccb04bce8", + "_tpl": "5947fa2486f77425b47c1a9b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -253,31 +25,7 @@ } }, { - "_id": "677536c8b06e57fd5c0e09db", - "_tpl": "571a279b24597720b4066566", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09de", - "_tpl": "5a7c147ce899ef00150bd8b8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09e1", + "_id": "6808baec364a85cccb04bceb", "_tpl": "5a702d198dc32e000b452fc3", "parentId": "hideout", "slotId": "hideout", @@ -289,91 +37,7 @@ } }, { - "_id": "677536c9b06e57fd5c0e09e4", - "_tpl": "544fb5454bdc2df8738b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09e7", - "_tpl": "5a7afa25e899ef00135e31b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09ea", - "_tpl": "5a7ad1fb51dfba0013379715", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09ed", - "_tpl": "5a7d9122159bd4001438dbf4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09f0", - "_tpl": "5a351711c4a282000b1521a4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09f3", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09f6", - "_tpl": "5a01ad4786f77450561fda02", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e09f9", + "_id": "6808baec364a85cccb04bcee", "_tpl": "5a71e0fb8dc32e00094b97f2", "parentId": "hideout", "slotId": "hideout", @@ -385,7 +49,7 @@ } }, { - "_id": "677536c9b06e57fd5c0e09fc", + "_id": "6808baec364a85cccb04bcf1", "_tpl": "5a7ad2e851dfba0016153692", "parentId": "hideout", "slotId": "hideout", @@ -397,31 +61,31 @@ } }, { - "_id": "677536c9b06e57fd5c0e09ff", - "_tpl": "57d17e212459775a1179a0f5", + "_id": "6808baec364a85cccb04bcf4", + "_tpl": "5a01ad4786f77450561fda02", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 6, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c9b06e57fd5c0e0a02", - "_tpl": "55d4af3a4bdc2d972f8b456f", + "_id": "6808baec364a85cccb04bcf7", + "_tpl": "571a28e524597720b4066567", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c9b06e57fd5c0e0a05", + "_id": "6808baec364a85cccb04bcfa", "_tpl": "5a7b483fe899ef0016170d15", "parentId": "hideout", "slotId": "hideout", @@ -433,815 +97,7 @@ } }, { - "_id": "677536c9b06e57fd5c0e0a08", - "_tpl": "5a7d9104159bd400134c8c21", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e0a0b", - "_tpl": "5a718da68dc32e000d46d264", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e0a0e", - "_tpl": "5a705e128dc32e000d46d258", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e0a11", - "_tpl": "5a7033908dc32e000a311392", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c9b06e57fd5c0e0a14", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a17", - "_tpl": "588226ef24597767af46e39c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a1a", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a1d", - "_tpl": "5a7dbfc1159bd40016548fde", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a20", - "_tpl": "5a7ad55551dfba0015068f42", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a23", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a26", - "_tpl": "5a6b5ed88dc32e000c52ec86", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a29", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a2c", - "_tpl": "5a800961159bd4315e3a1657", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a2f", - "_tpl": "5a7ad4af51dfba0013379717", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a32", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a34", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a35", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "677536cab06e57fd5c0e0a34", - "slotId": "mod_barrel" - }, - { - "_id": "677536cab06e57fd5c0e0a36", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "677536cab06e57fd5c0e0a35", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cab06e57fd5c0e0a37", - "_tpl": "5a6f5f078dc32e00094b97dd", - "parentId": "677536cab06e57fd5c0e0a34", - "slotId": "mod_reciever" - }, - { - "_id": "677536cab06e57fd5c0e0a38", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "677536cab06e57fd5c0e0a34", - "slotId": "mod_magazine" - }, - { - "_id": "677536cab06e57fd5c0e0a39", - "_tpl": "5a7b4900e899ef197b331a2a", - "parentId": "677536cab06e57fd5c0e0a34", - "slotId": "mod_tactical" - }, - { - "_id": "677536cab06e57fd5c0e0a3a", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "677536cab06e57fd5c0e0a39", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a3b", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "677536cab06e57fd5c0e0a3a", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a3e", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a41", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a43", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a44", - "_tpl": "5a6b5ed88dc32e000c52ec86", - "parentId": "677536cab06e57fd5c0e0a43", - "slotId": "mod_barrel" - }, - { - "_id": "677536cab06e57fd5c0e0a45", - "_tpl": "5a6b59a08dc32e000b452fb7", - "parentId": "677536cab06e57fd5c0e0a44", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cab06e57fd5c0e0a46", - "_tpl": "5a71e4f48dc32e001207fb26", - "parentId": "677536cab06e57fd5c0e0a43", - "slotId": "mod_reciever" - }, - { - "_id": "677536cab06e57fd5c0e0a47", - "_tpl": "5a7d912f159bd400165484f3", - "parentId": "677536cab06e57fd5c0e0a46", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536cab06e57fd5c0e0a48", - "_tpl": "5a7d9104159bd400134c8c21", - "parentId": "677536cab06e57fd5c0e0a46", - "slotId": "mod_sight_front" - }, - { - "_id": "677536cab06e57fd5c0e0a49", - "_tpl": "5a71e1868dc32e00094b97f3", - "parentId": "677536cab06e57fd5c0e0a46", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a4a", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536cab06e57fd5c0e0a43", - "slotId": "mod_magazine" - }, - { - "_id": "677536cab06e57fd5c0e0a4d", - "_tpl": "59fb023c86f7746d0d4b423c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a50", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a53", - "_tpl": "5a6b59a08dc32e000b452fb7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cab06e57fd5c0e0a55", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536cab06e57fd5c0e0a56", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "677536cab06e57fd5c0e0a55", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536cab06e57fd5c0e0a57", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "677536cab06e57fd5c0e0a55", - "slotId": "mod_magazine" - }, - { - "_id": "677536cab06e57fd5c0e0a58", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "677536cab06e57fd5c0e0a55", - "slotId": "mod_reciever" - }, - { - "_id": "677536cab06e57fd5c0e0a59", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "677536cab06e57fd5c0e0a58", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a5a", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "677536cab06e57fd5c0e0a58", - "slotId": "mod_barrel" - }, - { - "_id": "677536cab06e57fd5c0e0a5b", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "677536cab06e57fd5c0e0a5a", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cab06e57fd5c0e0a5c", - "_tpl": "57da93632459771cb65bf83f", - "parentId": "677536cab06e57fd5c0e0a5b", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cab06e57fd5c0e0a5d", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "677536cab06e57fd5c0e0a5a", - "slotId": "mod_gas_block" - }, - { - "_id": "677536cab06e57fd5c0e0a5e", - "_tpl": "55f84c3c4bdc2d5f408b4576", - "parentId": "677536cab06e57fd5c0e0a58", - "slotId": "mod_handguard" - }, - { - "_id": "677536cab06e57fd5c0e0a5f", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "677536cab06e57fd5c0e0a5e", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a60", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "677536cab06e57fd5c0e0a5f", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a61", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "677536cab06e57fd5c0e0a60", - "slotId": "mod_scope" - }, - { - "_id": "677536cab06e57fd5c0e0a62", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "677536cab06e57fd5c0e0a5e", - "slotId": "mod_tactical" - }, - { - "_id": "677536cab06e57fd5c0e0a63", - "_tpl": "638f1ff84822287cad04be9d", - "parentId": "677536cab06e57fd5c0e0a5e", - "slotId": "mod_handguard" - }, - { - "_id": "677536cab06e57fd5c0e0a64", - "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "677536cab06e57fd5c0e0a63", - "slotId": "mod_foregrip" - }, - { - "_id": "677536cab06e57fd5c0e0a65", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536cab06e57fd5c0e0a55", - "slotId": "mod_stock" - }, - { - "_id": "677536cab06e57fd5c0e0a66", - "_tpl": "58d2946386f774496974c37e", - "parentId": "677536cab06e57fd5c0e0a65", - "slotId": "mod_stock_000" - }, - { - "_id": "677536cab06e57fd5c0e0a67", - "_tpl": "58d2912286f7744e27117493", - "parentId": "677536cab06e57fd5c0e0a66", - "slotId": "mod_stock" - }, - { - "_id": "677536cab06e57fd5c0e0a68", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "677536cab06e57fd5c0e0a55", - "slotId": "mod_charge" - }, - { - "_id": "677536cbb06e57fd5c0e0a6a", - "_tpl": "58948c8e86f77409493f7266", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a6b", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "677536cbb06e57fd5c0e0a6a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536cbb06e57fd5c0e0a6c", - "_tpl": "5894a05586f774094708ef75", - "parentId": "677536cbb06e57fd5c0e0a6a", - "slotId": "mod_magazine" - }, - { - "_id": "677536cbb06e57fd5c0e0a6d", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "677536cbb06e57fd5c0e0a6a", - "slotId": "mod_reciever" - }, - { - "_id": "677536cbb06e57fd5c0e0a6e", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "677536cbb06e57fd5c0e0a6d", - "slotId": "mod_scope" - }, - { - "_id": "677536cbb06e57fd5c0e0a6f", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "677536cbb06e57fd5c0e0a6e", - "slotId": "mod_scope" - }, - { - "_id": "677536cbb06e57fd5c0e0a70", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "677536cbb06e57fd5c0e0a6f", - "slotId": "mod_scope" - }, - { - "_id": "677536cbb06e57fd5c0e0a71", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "677536cbb06e57fd5c0e0a6d", - "slotId": "mod_barrel" - }, - { - "_id": "677536cbb06e57fd5c0e0a72", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "677536cbb06e57fd5c0e0a71", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cbb06e57fd5c0e0a73", - "_tpl": "5894a42086f77426d2590762", - "parentId": "677536cbb06e57fd5c0e0a6d", - "slotId": "mod_handguard" - }, - { - "_id": "677536cbb06e57fd5c0e0a74", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "677536cbb06e57fd5c0e0a73", - "slotId": "mod_mount_000" - }, - { - "_id": "677536cbb06e57fd5c0e0a75", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "677536cbb06e57fd5c0e0a74", - "slotId": "mod_tactical" - }, - { - "_id": "677536cbb06e57fd5c0e0a76", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "677536cbb06e57fd5c0e0a73", - "slotId": "mod_mount_001" - }, - { - "_id": "677536cbb06e57fd5c0e0a77", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "677536cbb06e57fd5c0e0a76", - "slotId": "mod_foregrip" - }, - { - "_id": "677536cbb06e57fd5c0e0a78", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "677536cbb06e57fd5c0e0a6a", - "slotId": "mod_stock" - }, - { - "_id": "677536cbb06e57fd5c0e0a79", - "_tpl": "591aef7986f774139d495f03", - "parentId": "677536cbb06e57fd5c0e0a78", - "slotId": "mod_stock" - }, - { - "_id": "677536cbb06e57fd5c0e0a7a", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "677536cbb06e57fd5c0e0a6a", - "slotId": "mod_charge" - }, - { - "_id": "677536cbb06e57fd5c0e0a7d", - "_tpl": "5a957c3fa2750c00137fa5f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a80", - "_tpl": "5afd7e445acfc4001637e35a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a83", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a86", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a89", - "_tpl": "59fb137a86f7740adb646af1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a8c", - "_tpl": "5c0000c00db834001a6697fc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a8f", - "_tpl": "5bffec120db834001c38f5fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a92", - "_tpl": "5a6b60158dc32e000a31138b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a95", - "_tpl": "5a32a064c4a28200741e22de", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a97", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0a98", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "677536cbb06e57fd5c0e0a97", - "slotId": "mod_barrel" - }, - { - "_id": "677536cbb06e57fd5c0e0a99", - "_tpl": "5a32a064c4a28200741e22de", - "parentId": "677536cbb06e57fd5c0e0a98", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cbb06e57fd5c0e0a9a", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "677536cbb06e57fd5c0e0a97", - "slotId": "mod_reciever" - }, - { - "_id": "677536cbb06e57fd5c0e0a9b", - "_tpl": "5a718da68dc32e000d46d264", - "parentId": "677536cbb06e57fd5c0e0a97", - "slotId": "mod_magazine" - }, - { - "_id": "677536cbb06e57fd5c0e0a9c", - "_tpl": "5a7ad4af51dfba0013379717", - "parentId": "677536cbb06e57fd5c0e0a97", - "slotId": "mod_tactical" - }, - { - "_id": "677536cbb06e57fd5c0e0a9d", - "_tpl": "577d128124597739d65d0e56", - "parentId": "677536cbb06e57fd5c0e0a9c", - "slotId": "mod_scope" - }, - { - "_id": "677536cbb06e57fd5c0e0a9e", - "_tpl": "577d141e24597739c5255e01", - "parentId": "677536cbb06e57fd5c0e0a9d", - "slotId": "mod_scope" - }, - { - "_id": "677536cbb06e57fd5c0e0aa1", - "_tpl": "5a7893c1c585673f2b5c374d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0aa4", - "_tpl": "5a788089c5856700142fdd9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0aa7", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0aad", - "_tpl": "5b4736a986f774040571e998", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0ab0", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cbb06e57fd5c0e0ab2", + "_id": "6808baec364a85cccb04bcfc", "_tpl": "5aafa857e5b5b00018480968", "parentId": "hideout", "slotId": "hideout", @@ -1253,332 +109,56 @@ } }, { - "_id": "677536cbb06e57fd5c0e0ab3", + "_id": "6808baec364a85cccb04bcfd", "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "677536cbb06e57fd5c0e0ab2", + "parentId": "6808baec364a85cccb04bcfc", "slotId": "mod_magazine" }, { - "_id": "677536cbb06e57fd5c0e0ab4", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "677536cbb06e57fd5c0e0ab2", - "slotId": "mod_stock" - }, - { - "_id": "677536cbb06e57fd5c0e0ab5", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "677536cbb06e57fd5c0e0ab4", - "slotId": "mod_pistolgrip" - }, - { - "_id": "677536cbb06e57fd5c0e0ab6", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536cbb06e57fd5c0e0ab4", - "slotId": "mod_stock" - }, - { - "_id": "677536cbb06e57fd5c0e0ab7", - "_tpl": "58d2946386f774496974c37e", - "parentId": "677536cbb06e57fd5c0e0ab6", - "slotId": "mod_stock_000" - }, - { - "_id": "677536cbb06e57fd5c0e0ab8", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "677536cbb06e57fd5c0e0ab2", - "slotId": "mod_barrel" - }, - { - "_id": "677536cbb06e57fd5c0e0ab9", - "_tpl": "5addbbb25acfc40015621bd9", - "parentId": "677536cbb06e57fd5c0e0ab8", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cbb06e57fd5c0e0abc", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0abf", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ac2", - "_tpl": "5b800ebc86f774394e230a90", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ac4", - "_tpl": "54491c4f4bdc2db1078b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ac5", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "677536ccb06e57fd5c0e0ac4", - "slotId": "mod_barrel" - }, - { - "_id": "677536ccb06e57fd5c0e0ac6", - "_tpl": "560838c94bdc2d77798b4569", - "parentId": "677536ccb06e57fd5c0e0ac5", - "slotId": "mod_muzzle" - }, - { - "_id": "677536ccb06e57fd5c0e0ac7", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "677536ccb06e57fd5c0e0ac4", - "slotId": "mod_handguard" - }, - { - "_id": "677536ccb06e57fd5c0e0ac8", - "_tpl": "588226d124597767ad33f787", - "parentId": "677536ccb06e57fd5c0e0ac7", - "slotId": "mod_foregrip" - }, - { - "_id": "677536ccb06e57fd5c0e0ac9", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "677536ccb06e57fd5c0e0ac7", - "slotId": "mod_tactical_000" - }, - { - "_id": "677536ccb06e57fd5c0e0aca", - "_tpl": "59d790f486f77403cb06aec6", - "parentId": "677536ccb06e57fd5c0e0ac9", - "slotId": "mod_flashlight" - }, - { - "_id": "677536ccb06e57fd5c0e0acb", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "677536ccb06e57fd5c0e0ac4", - "slotId": "mod_magazine" - }, - { - "_id": "677536ccb06e57fd5c0e0acc", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "677536ccb06e57fd5c0e0ac4", - "slotId": "mod_stock" - }, - { - "_id": "677536ccb06e57fd5c0e0acd", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "677536ccb06e57fd5c0e0ac4", - "slotId": "mod_mount_001" - }, - { - "_id": "677536ccb06e57fd5c0e0ace", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "677536ccb06e57fd5c0e0acd", - "slotId": "mod_scope" - }, - { - "_id": "677536ccb06e57fd5c0e0acf", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "677536ccb06e57fd5c0e0ace", - "slotId": "mod_scope" - }, - { - "_id": "677536ccb06e57fd5c0e0ad2", - "_tpl": "5c07b36c0db834002a1259e9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ad5", - "_tpl": "5c07a8770db8340023300450", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ad8", - "_tpl": "5c0125fc0db834001a669aa3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0adb", - "_tpl": "5a9fc7e6a2750c0032157184", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ade", - "_tpl": "5c010a700db834001d23ef5d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ae1", - "_tpl": "5c00076d0db834001d23ee1f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ae4", - "_tpl": "5bffcf7a0db83400232fea79", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0ae7", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0aea", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0aed", - "_tpl": "5b7be1125acfc4001876c0e5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0af0", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0af3", - "_tpl": "5b7bed205acfc400161d08cc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0af6", - "_tpl": "5b7d693d5acfc43bca706a3d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ccb06e57fd5c0e0af9", + "_id": "6808baec364a85cccb04bcfe", "_tpl": "5addc7005acfc4001669f275", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "parentId": "6808baec364a85cccb04bcfc", + "slotId": "mod_stock" }, { - "_id": "677536ccb06e57fd5c0e0afc", - "_tpl": "5ba26acdd4351e003562908e", + "_id": "6808baec364a85cccb04bcff", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "6808baec364a85cccb04bcfe", + "slotId": "mod_stock" + }, + { + "_id": "6808baec364a85cccb04bd00", + "_tpl": "5addc7db5acfc4001669f279", + "parentId": "6808baec364a85cccb04bcff", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baec364a85cccb04bd01", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "6808baec364a85cccb04bcfc", + "slotId": "mod_barrel" + }, + { + "_id": "6808baec364a85cccb04bd02", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "6808baec364a85cccb04bd01", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baec364a85cccb04bd03", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "6808baec364a85cccb04bd02", + "slotId": "mod_sight_front" + }, + { + "_id": "6808baec364a85cccb04bd04", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "6808baec364a85cccb04bcfc", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baed364a85cccb04bd07", + "_tpl": "5a7ad0c451dfba0013379712", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1589,14 +169,131 @@ } }, { - "_id": "677536ccb06e57fd5c0e0afe", - "_tpl": "571a12c42459771f627b58a0", + "_id": "6808baed364a85cccb04bd0a", + "_tpl": "5a7d9104159bd400134c8c21", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd0d", + "_tpl": "5a7ad1fb51dfba0013379715", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd10", + "_tpl": "588226ef24597767af46e39c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd13", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd16", + "_tpl": "5a71e0048dc32e000c52ecc8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd19", + "_tpl": "5a7d90eb159bd400165484f1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd1c", + "_tpl": "5a351711c4a282000b1521a4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd1f", + "_tpl": "5a7dbfc1159bd40016548fde", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd22", + "_tpl": "5a7ad55551dfba0015068f42", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd25", + "_tpl": "5a7b4900e899ef197b331a2a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd28", + "_tpl": "571a279b24597720b4066566", "parentId": "hideout", "slotId": "hideout", "upd": { - "FireMode": { - "FireMode": "single" - }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 2, @@ -1604,110 +301,8 @@ } }, { - "_id": "677536ccb06e57fd5c0e0aff", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "677536ccb06e57fd5c0e0afe", - "slotId": "mod_barrel" - }, - { - "_id": "677536ccb06e57fd5c0e0b00", - "_tpl": "5c079ec50db834001966a706", - "parentId": "677536ccb06e57fd5c0e0afe", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536ccb06e57fd5c0e0b01", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "677536ccb06e57fd5c0e0afe", - "slotId": "mod_magazine" - }, - { - "_id": "677536ccb06e57fd5c0e0b02", - "_tpl": "5bffd7ed0db834001d23ebf9", - "parentId": "677536ccb06e57fd5c0e0afe", - "slotId": "mod_muzzle" - }, - { - "_id": "677536ccb06e57fd5c0e0b03", - "_tpl": "5c079ed60db834001a66b372", - "parentId": "677536ccb06e57fd5c0e0afe", - "slotId": "mod_tactical" - }, - { - "_id": "677536ccb06e57fd5c0e0b06", - "_tpl": "5c127c4486f7745625356c13", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b0a", - "_tpl": "5a9d6d34a2750c00141e07da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b0d", - "_tpl": "5a9548c9159bd400133e97b3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b10", - "_tpl": "5b3b6e495acfc4330140bd88", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b13", - "_tpl": "5b4391a586f7745321235ab2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b16", - "_tpl": "5addccf45acfc400185c2989", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b19", - "_tpl": "5addbbb25acfc40015621bd9", + "_id": "6808baed364a85cccb04bd2b", + "_tpl": "5a7c147ce899ef00150bd8b8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1718,80 +313,8 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b1b", - "_tpl": "5a7828548dc32e5a9c28b516", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b1c", - "_tpl": "5a787fdfc5856700142fdd9a", - "parentId": "677536cdb06e57fd5c0e0b1b", - "slotId": "mod_barrel" - }, - { - "_id": "677536cdb06e57fd5c0e0b1d", - "_tpl": "5a788031c585673f2b5c1c79", - "parentId": "677536cdb06e57fd5c0e0b1b", - "slotId": "mod_handguard" - }, - { - "_id": "677536cdb06e57fd5c0e0b1e", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "677536cdb06e57fd5c0e0b1d", - "slotId": "mod_foregrip" - }, - { - "_id": "677536cdb06e57fd5c0e0b1f", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "677536cdb06e57fd5c0e0b1b", - "slotId": "mod_magazine" - }, - { - "_id": "677536cdb06e57fd5c0e0b20", - "_tpl": "5ae35b315acfc4001714e8b0", - "parentId": "677536cdb06e57fd5c0e0b1b", - "slotId": "mod_stock" - }, - { - "_id": "677536cdb06e57fd5c0e0b21", - "_tpl": "56eabf3bd2720b75698b4569", - "parentId": "677536cdb06e57fd5c0e0b20", - "slotId": "mod_stock" - }, - { - "_id": "677536cdb06e57fd5c0e0b22", - "_tpl": "58d2912286f7744e27117493", - "parentId": "677536cdb06e57fd5c0e0b21", - "slotId": "mod_stock" - }, - { - "_id": "677536cdb06e57fd5c0e0b23", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "677536cdb06e57fd5c0e0b20", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536cdb06e57fd5c0e0b24", - "_tpl": "5a78948ec5856700177b1124", - "parentId": "677536cdb06e57fd5c0e0b1b", - "slotId": "mod_mount" - }, - { - "_id": "677536cdb06e57fd5c0e0b25", - "_tpl": "584924ec24597768f12ae244", - "parentId": "677536cdb06e57fd5c0e0b24", - "slotId": "mod_scope" - }, - { - "_id": "677536cdb06e57fd5c0e0b28", - "_tpl": "5c59529a2e221602b177d160", + "_id": "6808baed364a85cccb04bd2e", + "_tpl": "5a7d912f159bd400165484f3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1802,20 +325,8 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b2b", - "_tpl": "5b7be46e5acfc400170e2dcf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b2e", - "_tpl": "5b7bedd75acfc43d825283f9", + "_id": "6808baed364a85cccb04bd31", + "_tpl": "544fb5454bdc2df8738b456a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1826,7 +337,295 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b31", + "_id": "6808baed364a85cccb04bd34", + "_tpl": "5a800961159bd4315e3a1657", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd37", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd3a", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 180, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd3d", + "_tpl": "5a7d9122159bd4001438dbf4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd40", + "_tpl": "5a6b5ed88dc32e000c52ec86", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd43", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd46", + "_tpl": "5a7033908dc32e000a311392", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd49", + "_tpl": "5a718da68dc32e000d46d264", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baed364a85cccb04bd4c", + "_tpl": "5a7ad4af51dfba0013379717", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd4f", + "_tpl": "5a70366c8dc32e001207fb06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd52", + "_tpl": "5a718f958dc32e00094b97e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd55", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd58", + "_tpl": "5a6f5f078dc32e00094b97dd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd5b", + "_tpl": "5a33e75ac4a2826c6e06d759", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd5e", + "_tpl": "5a7b32a2e899ef00135e345a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd61", + "_tpl": "55d4af3a4bdc2d972f8b456f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd64", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd67", + "_tpl": "5a705e128dc32e000d46d258", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd6a", + "_tpl": "5a7afa25e899ef00135e31b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd6d", + "_tpl": "5a71e22f8dc32e00094b97f4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd70", + "_tpl": "5a71e4f48dc32e001207fb26", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd73", + "_tpl": "5a7ad74e51dfba0015068f45", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd76", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd79", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd7c", "_tpl": "5b7d671b5acfc43d82528ddd", "parentId": "hideout", "slotId": "hideout", @@ -1838,44 +637,20 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b34", - "_tpl": "5b07dd285acfc4001754240d", + "_id": "6808baee364a85cccb04bd7f", + "_tpl": "5b4736a986f774040571e998", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 7, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536cdb06e57fd5c0e0b37", - "_tpl": "5afd7e095acfc40017541f61", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b3a", - "_tpl": "5b7d63de5acfc400170e2f8d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b3d", - "_tpl": "5b800e9286f7747a8b04f3ff", + "_id": "6808baee364a85cccb04bd82", + "_tpl": "5b7bed205acfc400161d08cc", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1886,74 +661,110 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b40", - "_tpl": "5c079ed60db834001a66b372", + "_id": "6808baee364a85cccb04bd85", + "_tpl": "5a7893c1c585673f2b5c374d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536cdb06e57fd5c0e0b42", - "_tpl": "5b1fa9b25acfc40018633c01", + "_id": "6808baee364a85cccb04bd88", + "_tpl": "5ae30db85acfc408fb139a05", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536cdb06e57fd5c0e0b43", - "_tpl": "5b1fa9ea5acfc40018633c0a", - "parentId": "677536cdb06e57fd5c0e0b42", + "_id": "6808baee364a85cccb04bd8b", + "_tpl": "5b7d63cf5acfc4001876c8df", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd8e", + "_tpl": "59fb023c86f7746d0d4b423c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd90", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baee364a85cccb04bd91", + "_tpl": "5a6b5ed88dc32e000c52ec86", + "parentId": "6808baee364a85cccb04bd90", "slotId": "mod_barrel" }, { - "_id": "677536cdb06e57fd5c0e0b44", - "_tpl": "5b1faa0f5acfc40dc528aeb5", - "parentId": "677536cdb06e57fd5c0e0b42", + "_id": "6808baee364a85cccb04bd92", + "_tpl": "5a6b59a08dc32e000b452fb7", + "parentId": "6808baee364a85cccb04bd91", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baee364a85cccb04bd93", + "_tpl": "5a71e4f48dc32e001207fb26", + "parentId": "6808baee364a85cccb04bd90", "slotId": "mod_reciever" }, { - "_id": "677536cdb06e57fd5c0e0b45", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "677536cdb06e57fd5c0e0b44", + "_id": "6808baee364a85cccb04bd94", + "_tpl": "5a7d912f159bd400165484f3", + "parentId": "6808baee364a85cccb04bd93", "slotId": "mod_sight_rear" }, { - "_id": "677536cdb06e57fd5c0e0b46", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "677536cdb06e57fd5c0e0b44", + "_id": "6808baee364a85cccb04bd95", + "_tpl": "5a7d9104159bd400134c8c21", + "parentId": "6808baee364a85cccb04bd93", "slotId": "mod_sight_front" }, { - "_id": "677536cdb06e57fd5c0e0b47", + "_id": "6808baee364a85cccb04bd96", + "_tpl": "5a71e1868dc32e00094b97f3", + "parentId": "6808baee364a85cccb04bd93", + "slotId": "mod_scope" + }, + { + "_id": "6808baee364a85cccb04bd97", "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536cdb06e57fd5c0e0b42", + "parentId": "6808baee364a85cccb04bd90", "slotId": "mod_magazine" }, { - "_id": "677536cdb06e57fd5c0e0b4a", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b4d", - "_tpl": "5bb20dfcd4351e00334c9e24", + "_id": "6808baee364a85cccb04bd9a", + "_tpl": "5addc7005acfc4001669f275", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1964,20 +775,8 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b50", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cdb06e57fd5c0e0b53", - "_tpl": "56ea8d2fd2720b7c698b4570", + "_id": "6808baee364a85cccb04bd9d", + "_tpl": "5b099bb25acfc400186331e8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1988,8 +787,110 @@ } }, { - "_id": "677536cdb06e57fd5c0e0b56", - "_tpl": "5a32a064c4a28200741e22de", + "_id": "6808baef364a85cccb04bda0", + "_tpl": "5a78830bc5856700137e4c90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bda2", + "_tpl": "54491c4f4bdc2db1078b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bda3", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "6808baef364a85cccb04bda2", + "slotId": "mod_barrel" + }, + { + "_id": "6808baef364a85cccb04bda4", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "6808baef364a85cccb04bda3", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baef364a85cccb04bda5", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "6808baef364a85cccb04bda2", + "slotId": "mod_handguard" + }, + { + "_id": "6808baef364a85cccb04bda6", + "_tpl": "588226d124597767ad33f787", + "parentId": "6808baef364a85cccb04bda5", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baef364a85cccb04bda7", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "6808baef364a85cccb04bda5", + "slotId": "mod_tactical_000" + }, + { + "_id": "6808baef364a85cccb04bda8", + "_tpl": "59d790f486f77403cb06aec6", + "parentId": "6808baef364a85cccb04bda7", + "slotId": "mod_flashlight" + }, + { + "_id": "6808baef364a85cccb04bda9", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "6808baef364a85cccb04bda2", + "slotId": "mod_magazine" + }, + { + "_id": "6808baef364a85cccb04bdaa", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "6808baef364a85cccb04bda2", + "slotId": "mod_stock" + }, + { + "_id": "6808baef364a85cccb04bdab", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "6808baef364a85cccb04bda2", + "slotId": "mod_mount_001" + }, + { + "_id": "6808baef364a85cccb04bdac", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6808baef364a85cccb04bdab", + "slotId": "mod_scope" + }, + { + "_id": "6808baef364a85cccb04bdad", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6808baef364a85cccb04bdac", + "slotId": "mod_scope" + }, + { + "_id": "6808baef364a85cccb04bdb0", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdb3", + "_tpl": "5c00076d0db834001d23ee1f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2000,31 +901,133 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b61", + "_id": "6808baef364a85cccb04bdb6", + "_tpl": "5b7bef9c5acfc43d102852ec", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdb9", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdbc", + "_tpl": "5c07a8770db8340023300450", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdbf", + "_tpl": "5a9ea27ca2750c00137fa672", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdc2", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdc4", "_tpl": "5ac4cd105acfc40016339859", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536ceb06e57fd5c0e0b74", - "_tpl": "5a0ec13bfcdbcb00165aa685", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808baef364a85cccb04bdc5", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_gas_block" }, { - "_id": "677536ceb06e57fd5c0e0b7f", + "_id": "6808baef364a85cccb04bdc6", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "6808baef364a85cccb04bdc5", + "slotId": "mod_handguard" + }, + { + "_id": "6808baef364a85cccb04bdc7", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baef364a85cccb04bdc8", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baef364a85cccb04bdc9", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_reciever" + }, + { + "_id": "6808baef364a85cccb04bdca", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baef364a85cccb04bdcb", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_stock" + }, + { + "_id": "6808baef364a85cccb04bdcc", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "6808baef364a85cccb04bdcb", + "slotId": "mod_stock" + }, + { + "_id": "6808baef364a85cccb04bdcd", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "6808baef364a85cccb04bdc4", + "slotId": "mod_charge" + }, + { + "_id": "6808baef364a85cccb04bdd0", "_tpl": "5c079ec50db834001966a706", "parentId": "hideout", "slotId": "hideout", @@ -2036,8 +1039,152 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b82", - "_tpl": "5c0009510db834001966907f", + "_id": "6808baef364a85cccb04bdd3", + "_tpl": "5b800ebc86f774394e230a90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdd6", + "_tpl": "5b7c2d1d5acfc43d1028532a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdd9", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bddc", + "_tpl": "5ba2657ed4351e0035628ff2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdde", + "_tpl": "5ac66cb05acfc40198510a10", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bddf", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_gas_block" + }, + { + "_id": "6808baef364a85cccb04bde0", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6808baef364a85cccb04bddf", + "slotId": "mod_handguard" + }, + { + "_id": "6808baef364a85cccb04bde1", + "_tpl": "5ac72e615acfc43f67248aa0", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baef364a85cccb04bde2", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baef364a85cccb04bde3", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_reciever" + }, + { + "_id": "6808baef364a85cccb04bde4", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baef364a85cccb04bde5", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_stock" + }, + { + "_id": "6808baef364a85cccb04bde6", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "6808baef364a85cccb04bdde", + "slotId": "mod_magazine" + }, + { + "_id": "6808baef364a85cccb04bde9", + "_tpl": "5ba26586d4351e44f824b340", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdec", + "_tpl": "5b7be4575acfc400161d0832", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdf4", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baef364a85cccb04bdfc", + "_tpl": "5b099bf25acfc4001637e683", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2048,8 +1195,8 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b85", - "_tpl": "5c0006470db834001a6697fe", + "_id": "6808baef364a85cccb04bdff", + "_tpl": "5a787fdfc5856700142fdd9a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2060,8 +1207,32 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b88", - "_tpl": "5bfebc250db834001a6694e1", + "_id": "6808baef364a85cccb04be02", + "_tpl": "5bb20dfcd4351e00334c9e24", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be05", + "_tpl": "5c0102b20db834001d23eebc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be08", + "_tpl": "5b0800175acfc400153aebd4", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2072,65 +1243,319 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b8a", - "_tpl": "5bfea6e90db834001b7347f3", + "_id": "6808baf0364a85cccb04be0b", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be0e", + "_tpl": "5b7be4645acfc400170e2dcc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be10", + "_tpl": "58948c8e86f77409493f7266", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be11", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "6808baf0364a85cccb04be10", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf0364a85cccb04be12", + "_tpl": "5894a05586f774094708ef75", + "parentId": "6808baf0364a85cccb04be10", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf0364a85cccb04be13", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "6808baf0364a85cccb04be10", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf0364a85cccb04be14", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "6808baf0364a85cccb04be13", + "slotId": "mod_scope" + }, + { + "_id": "6808baf0364a85cccb04be15", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "6808baf0364a85cccb04be14", + "slotId": "mod_scope" + }, + { + "_id": "6808baf0364a85cccb04be16", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "6808baf0364a85cccb04be15", + "slotId": "mod_scope" + }, + { + "_id": "6808baf0364a85cccb04be17", + "_tpl": "58aeaaa886f7744fc1560f81", + "parentId": "6808baf0364a85cccb04be13", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf0364a85cccb04be18", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "6808baf0364a85cccb04be17", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf0364a85cccb04be19", + "_tpl": "5894a42086f77426d2590762", + "parentId": "6808baf0364a85cccb04be13", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf0364a85cccb04be1a", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "6808baf0364a85cccb04be19", + "slotId": "mod_mount_000" + }, + { + "_id": "6808baf0364a85cccb04be1b", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "6808baf0364a85cccb04be1a", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf0364a85cccb04be1c", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "6808baf0364a85cccb04be19", + "slotId": "mod_mount_001" + }, + { + "_id": "6808baf0364a85cccb04be1d", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "6808baf0364a85cccb04be1c", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baf0364a85cccb04be1e", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "6808baf0364a85cccb04be10", + "slotId": "mod_stock" + }, + { + "_id": "6808baf0364a85cccb04be1f", + "_tpl": "591aef7986f774139d495f03", + "parentId": "6808baf0364a85cccb04be1e", + "slotId": "mod_stock" + }, + { + "_id": "6808baf0364a85cccb04be20", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "6808baf0364a85cccb04be10", + "slotId": "mod_charge" + }, + { + "_id": "6808baf0364a85cccb04be23", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be25", + "_tpl": "5b0bbe4e5acfc40dc528a72d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BuyRestrictionCurrent": 0 } }, { - "_id": "677536ceb06e57fd5c0e0b8b", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "677536ceb06e57fd5c0e0b8a", + "_id": "6808baf0364a85cccb04be26", + "_tpl": "5b7d679f5acfc4001a5c4024", + "parentId": "6808baf0364a85cccb04be25", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf0364a85cccb04be27", + "_tpl": "5b7bef1e5acfc43d82528402", + "parentId": "6808baf0364a85cccb04be25", "slotId": "mod_magazine" }, { - "_id": "677536ceb06e57fd5c0e0b8c", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "677536ceb06e57fd5c0e0b8a", - "slotId": "mod_stock" + "_id": "6808baf0364a85cccb04be28", + "_tpl": "5b7bebc85acfc43bca706666", + "parentId": "6808baf0364a85cccb04be25", + "slotId": "mod_handguard" }, { - "_id": "677536ceb06e57fd5c0e0b8d", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536ceb06e57fd5c0e0b8a", + "_id": "6808baf0364a85cccb04be29", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6808baf0364a85cccb04be28", + "slotId": "mod_mount_000" + }, + { + "_id": "6808baf0364a85cccb04be2a", + "_tpl": "588226d124597767ad33f787", + "parentId": "6808baf0364a85cccb04be29", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baf0364a85cccb04be2b", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808baf0364a85cccb04be28", + "slotId": "mod_mount_001" + }, + { + "_id": "6808baf0364a85cccb04be2c", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6808baf0364a85cccb04be25", "slotId": "mod_barrel" }, { - "_id": "677536ceb06e57fd5c0e0b8e", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "677536ceb06e57fd5c0e0b8d", + "_id": "6808baf0364a85cccb04be2d", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "6808baf0364a85cccb04be2c", "slotId": "mod_muzzle" }, { - "_id": "677536ceb06e57fd5c0e0b8f", - "_tpl": "5a34fe59c4a282000b1521a2", - "parentId": "677536ceb06e57fd5c0e0b8e", + "_id": "6808baf0364a85cccb04be2e", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "6808baf0364a85cccb04be2d", "slotId": "mod_muzzle" }, { - "_id": "677536ceb06e57fd5c0e0b90", - "_tpl": "5bfebc5e0db834001a6694e5", - "parentId": "677536ceb06e57fd5c0e0b8a", - "slotId": "mod_mount" + "_id": "6808baf0364a85cccb04be2f", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808baf0364a85cccb04be25", + "slotId": "mod_sight_rear" }, { - "_id": "677536ceb06e57fd5c0e0b91", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "677536ceb06e57fd5c0e0b90", - "slotId": "mod_scope" + "_id": "6808baf0364a85cccb04be30", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "6808baf0364a85cccb04be25", + "slotId": "mod_reciever" }, { - "_id": "677536ceb06e57fd5c0e0b93", + "_id": "6808baf0364a85cccb04be31", + "_tpl": "5b7d63b75acfc400170e2f8a", + "parentId": "6808baf0364a85cccb04be25", + "slotId": "mod_stock" + }, + { + "_id": "6808baf0364a85cccb04be34", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be37", + "_tpl": "5b3a08b25acfc4001754880c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be3a", + "_tpl": "5bffe7c50db834001d23ece1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be3d", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be40", + "_tpl": "5b363dd25acfc4001a598fd2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be43", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be46", + "_tpl": "5c0125fc0db834001a669aa3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be48", "_tpl": "5beed0f50db834001c062b12", "parentId": "hideout", "slotId": "hideout", @@ -2148,176 +1573,74 @@ } }, { - "_id": "677536ceb06e57fd5c0e0b94", + "_id": "6808baf0364a85cccb04be49", "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "677536ceb06e57fd5c0e0b93", + "parentId": "6808baf0364a85cccb04be48", "slotId": "mod_pistol_grip" }, { - "_id": "677536ceb06e57fd5c0e0b95", + "_id": "6808baf0364a85cccb04be4a", "_tpl": "5beec91a0db834001961942d", - "parentId": "677536ceb06e57fd5c0e0b93", + "parentId": "6808baf0364a85cccb04be48", "slotId": "mod_reciever" }, { - "_id": "677536ceb06e57fd5c0e0b96", + "_id": "6808baf0364a85cccb04be4b", "_tpl": "5beec9450db83400970084fd", - "parentId": "677536ceb06e57fd5c0e0b95", + "parentId": "6808baf0364a85cccb04be4a", "slotId": "mod_sight_rear" }, { - "_id": "677536ceb06e57fd5c0e0b97", + "_id": "6808baf0364a85cccb04be4c", "_tpl": "5bf3f59f0db834001a6fa060", - "parentId": "677536ceb06e57fd5c0e0b96", + "parentId": "6808baf0364a85cccb04be4b", "slotId": "mod_sight_rear" }, { - "_id": "677536ceb06e57fd5c0e0b98", + "_id": "6808baf0364a85cccb04be4d", "_tpl": "5beec8b20db834001961942a", - "parentId": "677536ceb06e57fd5c0e0b93", + "parentId": "6808baf0364a85cccb04be48", "slotId": "mod_stock_001" }, { - "_id": "677536ceb06e57fd5c0e0b99", + "_id": "6808baf0364a85cccb04be4e", "_tpl": "5beec8c20db834001d2c465c", - "parentId": "677536ceb06e57fd5c0e0b98", + "parentId": "6808baf0364a85cccb04be4d", "slotId": "mod_stock" }, { - "_id": "677536ceb06e57fd5c0e0b9a", + "_id": "6808baf0364a85cccb04be4f", "_tpl": "5beec3e30db8340019619424", - "parentId": "677536ceb06e57fd5c0e0b93", + "parentId": "6808baf0364a85cccb04be48", "slotId": "mod_handguard" }, { - "_id": "677536ceb06e57fd5c0e0b9b", + "_id": "6808baf0364a85cccb04be50", "_tpl": "5beecbb80db834001d2c465e", - "parentId": "677536ceb06e57fd5c0e0b9a", + "parentId": "6808baf0364a85cccb04be4f", "slotId": "mod_mount_000" }, { - "_id": "677536ceb06e57fd5c0e0b9c", + "_id": "6808baf0364a85cccb04be51", "_tpl": "5beecbb80db834001d2c465e", - "parentId": "677536ceb06e57fd5c0e0b9a", + "parentId": "6808baf0364a85cccb04be4f", "slotId": "mod_mount_001" }, { - "_id": "677536ceb06e57fd5c0e0b9d", + "_id": "6808baf0364a85cccb04be52", "_tpl": "5beec1bd0db834001e6006f3", - "parentId": "677536ceb06e57fd5c0e0b93", + "parentId": "6808baf0364a85cccb04be48", "slotId": "mod_barrel" }, { - "_id": "677536ceb06e57fd5c0e0b9e", + "_id": "6808baf0364a85cccb04be53", "_tpl": "5beec3420db834001b095429", - "parentId": "677536ceb06e57fd5c0e0b9d", + "parentId": "6808baf0364a85cccb04be52", "slotId": "mod_muzzle" }, { - "_id": "677536ceb06e57fd5c0e0ba1", - "_tpl": "5a787fadc5856700155a6ca1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0ba4", - "_tpl": "56ea6fafd2720b844b8b4593", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0ba7", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0ba9", - "_tpl": "5ac4cd105acfc40016339859", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0baa", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_gas_block" - }, - { - "_id": "677536ceb06e57fd5c0e0bab", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "677536ceb06e57fd5c0e0baa", - "slotId": "mod_handguard" - }, - { - "_id": "677536ceb06e57fd5c0e0bac", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_muzzle" - }, - { - "_id": "677536ceb06e57fd5c0e0bad", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536ceb06e57fd5c0e0bae", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_reciever" - }, - { - "_id": "677536ceb06e57fd5c0e0baf", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536ceb06e57fd5c0e0bb0", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_stock" - }, - { - "_id": "677536ceb06e57fd5c0e0bb1", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "677536ceb06e57fd5c0e0bb0", - "slotId": "mod_stock" - }, - { - "_id": "677536ceb06e57fd5c0e0bb2", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "677536ceb06e57fd5c0e0ba9", - "slotId": "mod_charge" - }, - { - "_id": "677536ceb06e57fd5c0e0bb5", - "_tpl": "5b7be1ca5acfc400170e2d2f", + "_id": "6808baf0364a85cccb04be56", + "_tpl": "5c06595c0db834001a66af6c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2328,1119 +1651,7 @@ } }, { - "_id": "677536ceb06e57fd5c0e0bb8", - "_tpl": "5b7be4575acfc400161d0832", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0bbb", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0bbe", - "_tpl": "5ba2657ed4351e0035628ff2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0bc1", - "_tpl": "5c0102b20db834001d23eebc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0bc4", - "_tpl": "5bfebc530db834001d23eb65", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ceb06e57fd5c0e0bc7", - "_tpl": "5a9d6d21a2750c00137fa649", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bca", - "_tpl": "5a78830bc5856700137e4c90", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bcd", - "_tpl": "5a788068c5856700137e4c8f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bcf", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bd0", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_gas_block" - }, - { - "_id": "677536cfb06e57fd5c0e0bd1", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "677536cfb06e57fd5c0e0bd0", - "slotId": "mod_handguard" - }, - { - "_id": "677536cfb06e57fd5c0e0bd2", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cfb06e57fd5c0e0bd3", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536cfb06e57fd5c0e0bd4", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_reciever" - }, - { - "_id": "677536cfb06e57fd5c0e0bd5", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536cfb06e57fd5c0e0bd6", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_stock" - }, - { - "_id": "677536cfb06e57fd5c0e0bd7", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "677536cfb06e57fd5c0e0bcf", - "slotId": "mod_magazine" - }, - { - "_id": "677536cfb06e57fd5c0e0bda", - "_tpl": "5addbfe15acfc4001a5fc58b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bdc", - "_tpl": "5aafa857e5b5b00018480968", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bdd", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "677536cfb06e57fd5c0e0bdc", - "slotId": "mod_magazine" - }, - { - "_id": "677536cfb06e57fd5c0e0bde", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "677536cfb06e57fd5c0e0bdc", - "slotId": "mod_stock" - }, - { - "_id": "677536cfb06e57fd5c0e0bdf", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "677536cfb06e57fd5c0e0bde", - "slotId": "mod_pistolgrip" - }, - { - "_id": "677536cfb06e57fd5c0e0be0", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536cfb06e57fd5c0e0bde", - "slotId": "mod_stock" - }, - { - "_id": "677536cfb06e57fd5c0e0be1", - "_tpl": "58d2946386f774496974c37e", - "parentId": "677536cfb06e57fd5c0e0be0", - "slotId": "mod_stock_000" - }, - { - "_id": "677536cfb06e57fd5c0e0be2", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "677536cfb06e57fd5c0e0bdc", - "slotId": "mod_barrel" - }, - { - "_id": "677536cfb06e57fd5c0e0be3", - "_tpl": "5addbbb25acfc40015621bd9", - "parentId": "677536cfb06e57fd5c0e0be2", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cfb06e57fd5c0e0be6", - "_tpl": "59bfc5c886f7743bf6794e62", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0be9", - "_tpl": "5afd7ded5acfc40017541f5e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bec", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bef", - "_tpl": "558022b54bdc2dac148b458d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bf7", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0bff", - "_tpl": "5bb20da5d4351e0035629dbf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0c01", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0c02", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "677536cfb06e57fd5c0e0c01", - "slotId": "mod_barrel" - }, - { - "_id": "677536cfb06e57fd5c0e0c03", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "677536cfb06e57fd5c0e0c01", - "slotId": "mod_reciever" - }, - { - "_id": "677536cfb06e57fd5c0e0c04", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "677536cfb06e57fd5c0e0c03", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536cfb06e57fd5c0e0c05", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "677536cfb06e57fd5c0e0c03", - "slotId": "mod_sight_front" - }, - { - "_id": "677536cfb06e57fd5c0e0c06", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536cfb06e57fd5c0e0c01", - "slotId": "mod_magazine" - }, - { - "_id": "677536cfb06e57fd5c0e0c08", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0c09", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "677536cfb06e57fd5c0e0c08", - "slotId": "mod_barrel" - }, - { - "_id": "677536cfb06e57fd5c0e0c0a", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "677536cfb06e57fd5c0e0c08", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536cfb06e57fd5c0e0c0b", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "677536cfb06e57fd5c0e0c08", - "slotId": "mod_reciever" - }, - { - "_id": "677536cfb06e57fd5c0e0c0c", - "_tpl": "5a71e0fb8dc32e00094b97f2", - "parentId": "677536cfb06e57fd5c0e0c0b", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536cfb06e57fd5c0e0c0d", - "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "677536cfb06e57fd5c0e0c0b", - "slotId": "mod_sight_front" - }, - { - "_id": "677536cfb06e57fd5c0e0c0e", - "_tpl": "5a7b32a2e899ef00135e345a", - "parentId": "677536cfb06e57fd5c0e0c0b", - "slotId": "mod_muzzle" - }, - { - "_id": "677536cfb06e57fd5c0e0c0f", - "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "677536cfb06e57fd5c0e0c08", - "slotId": "mod_magazine" - }, - { - "_id": "677536cfb06e57fd5c0e0c10", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "677536cfb06e57fd5c0e0c08", - "slotId": "mod_tactical" - }, - { - "_id": "677536cfb06e57fd5c0e0c13", - "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536cfb06e57fd5c0e0c16", - "_tpl": "5a788169c5856700142fdd9e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c19", - "_tpl": "5ac78a9b86f7741cca0bbd8d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c1c", - "_tpl": "5a789261c5856700186c65d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c1f", - "_tpl": "5b3a16655acfc40016387a2a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c22", - "_tpl": "5b3a08b25acfc4001754880c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c25", - "_tpl": "5b363dd25acfc4001a598fd2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c28", - "_tpl": "5b099b965acfc400186331e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c37", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536d0b06e57fd5c0e0c45", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c46", - "_tpl": "5b7d679f5acfc4001a5c4024", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536d0b06e57fd5c0e0c47", - "_tpl": "5b7bef9c5acfc43d102852ec", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_magazine" - }, - { - "_id": "677536d0b06e57fd5c0e0c48", - "_tpl": "5b7bee755acfc400196d5383", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_handguard" - }, - { - "_id": "677536d0b06e57fd5c0e0c49", - "_tpl": "5b7be46e5acfc400170e2dcf", - "parentId": "677536d0b06e57fd5c0e0c48", - "slotId": "mod_mount_000" - }, - { - "_id": "677536d0b06e57fd5c0e0c4a", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "677536d0b06e57fd5c0e0c49", - "slotId": "mod_foregrip" - }, - { - "_id": "677536d0b06e57fd5c0e0c4b", - "_tpl": "5b7be4645acfc400170e2dcc", - "parentId": "677536d0b06e57fd5c0e0c48", - "slotId": "mod_mount_001" - }, - { - "_id": "677536d0b06e57fd5c0e0c4c", - "_tpl": "5b7be4645acfc400170e2dcc", - "parentId": "677536d0b06e57fd5c0e0c48", - "slotId": "mod_mount_002" - }, - { - "_id": "677536d0b06e57fd5c0e0c4d", - "_tpl": "5b099a765acfc47a8607efe3", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_barrel" - }, - { - "_id": "677536d0b06e57fd5c0e0c4e", - "_tpl": "5b7d693d5acfc43bca706a3d", - "parentId": "677536d0b06e57fd5c0e0c4d", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d0b06e57fd5c0e0c4f", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536d0b06e57fd5c0e0c50", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_reciever" - }, - { - "_id": "677536d0b06e57fd5c0e0c51", - "_tpl": "5b7d64555acfc4001876c8e2", - "parentId": "677536d0b06e57fd5c0e0c45", - "slotId": "mod_stock" - }, - { - "_id": "677536d0b06e57fd5c0e0c54", - "_tpl": "5bffe7c50db834001d23ece1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c57", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c5a", - "_tpl": "5ab3afb2d8ce87001660304d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c5d", - "_tpl": "5a9d56c8a2750c0032157146", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c60", - "_tpl": "5addbfd15acfc40015621bde", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c63", - "_tpl": "5b30ac585acfc433000eb79c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c66", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c69", - "_tpl": "5addbfbb5acfc400194dbcf7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c6c", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c6f", - "_tpl": "5c07c9660db834001a66b588", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c72", - "_tpl": "5c07b3850db834002330045b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d0b06e57fd5c0e0c75", - "_tpl": "5bb20dadd4351e00367faeff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c78", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c7b", - "_tpl": "5a78948ec5856700177b1124", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c7d", - "_tpl": "5ac66cb05acfc40198510a10", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c7e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_gas_block" - }, - { - "_id": "677536d1b06e57fd5c0e0c7f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "677536d1b06e57fd5c0e0c7e", - "slotId": "mod_handguard" - }, - { - "_id": "677536d1b06e57fd5c0e0c80", - "_tpl": "5ac72e615acfc43f67248aa0", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d1b06e57fd5c0e0c81", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536d1b06e57fd5c0e0c82", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_reciever" - }, - { - "_id": "677536d1b06e57fd5c0e0c83", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536d1b06e57fd5c0e0c84", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_stock" - }, - { - "_id": "677536d1b06e57fd5c0e0c85", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "677536d1b06e57fd5c0e0c7d", - "slotId": "mod_magazine" - }, - { - "_id": "677536d1b06e57fd5c0e0c88", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c8b", - "_tpl": "5addc00b5acfc4001669f144", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c8e", - "_tpl": "5addbfef5acfc400185c2857", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c91", - "_tpl": "5addba3e5acfc4001669f0ab", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c94", - "_tpl": "5addbb825acfc408fb139400", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0c96", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536d1b06e57fd5c0e0c97", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "677536d1b06e57fd5c0e0c96", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536d1b06e57fd5c0e0c98", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "677536d1b06e57fd5c0e0c96", - "slotId": "mod_magazine" - }, - { - "_id": "677536d1b06e57fd5c0e0c99", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "677536d1b06e57fd5c0e0c96", - "slotId": "mod_reciever" - }, - { - "_id": "677536d1b06e57fd5c0e0c9a", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "677536d1b06e57fd5c0e0c99", - "slotId": "mod_barrel" - }, - { - "_id": "677536d1b06e57fd5c0e0c9b", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "677536d1b06e57fd5c0e0c9a", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d1b06e57fd5c0e0c9c", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "677536d1b06e57fd5c0e0c9a", - "slotId": "mod_gas_block" - }, - { - "_id": "677536d1b06e57fd5c0e0c9d", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "677536d1b06e57fd5c0e0c99", - "slotId": "mod_handguard" - }, - { - "_id": "677536d1b06e57fd5c0e0c9e", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "677536d1b06e57fd5c0e0c9d", - "slotId": "mod_handguard" - }, - { - "_id": "677536d1b06e57fd5c0e0c9f", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "677536d1b06e57fd5c0e0c99", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536d1b06e57fd5c0e0ca0", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536d1b06e57fd5c0e0c96", - "slotId": "mod_stock" - }, - { - "_id": "677536d1b06e57fd5c0e0ca1", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "677536d1b06e57fd5c0e0ca0", - "slotId": "mod_stock_000" - }, - { - "_id": "677536d1b06e57fd5c0e0ca2", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "677536d1b06e57fd5c0e0c96", - "slotId": "mod_charge" - }, - { - "_id": "677536d1b06e57fd5c0e0ca5", - "_tpl": "5b4736b986f77405cb415c10", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0ca8", - "_tpl": "5b6d9ce188a4501afc1b2b25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cab", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cae", - "_tpl": "5b7bee755acfc400196d5383", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cb1", - "_tpl": "5b7d63cf5acfc4001876c8df", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cb4", - "_tpl": "5b800ed086f7747baf6e2f9e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cb7", - "_tpl": "5b099bf25acfc4001637e683", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cba", - "_tpl": "5a9fbacda2750c00141e080f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cbd", - "_tpl": "5b7bef9c5acfc43d102852ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cc0", - "_tpl": "5ba26586d4351e44f824b340", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cc3", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d1b06e57fd5c0e0cc6", - "_tpl": "5bffd7ed0db834001d23ebf9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cc8", + "_id": "6808baf0364a85cccb04be58", "_tpl": "5ae08f0a5acfc408fb1398a1", "parentId": "hideout", "slotId": "hideout", @@ -3455,164 +1666,32 @@ } }, { - "_id": "677536d2b06e57fd5c0e0cc9", + "_id": "6808baf0364a85cccb04be59", "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "677536d2b06e57fd5c0e0cc8", + "parentId": "6808baf0364a85cccb04be58", "slotId": "mod_magazine" }, { - "_id": "677536d2b06e57fd5c0e0cca", + "_id": "6808baf0364a85cccb04be5a", "_tpl": "5bfd36290db834001966869a", - "parentId": "677536d2b06e57fd5c0e0cc8", + "parentId": "6808baf0364a85cccb04be58", "slotId": "mod_stock" }, { - "_id": "677536d2b06e57fd5c0e0ccb", + "_id": "6808baf0364a85cccb04be5b", "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "677536d2b06e57fd5c0e0cc8", + "parentId": "6808baf0364a85cccb04be58", "slotId": "mod_barrel" }, { - "_id": "677536d2b06e57fd5c0e0ccc", + "_id": "6808baf0364a85cccb04be5c", "_tpl": "5bbdb811d4351e45020113c7", - "parentId": "677536d2b06e57fd5c0e0ccb", + "parentId": "6808baf0364a85cccb04be5b", "slotId": "mod_sight_rear" }, { - "_id": "677536d2b06e57fd5c0e0ccf", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cd2", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cd5", - "_tpl": "5a78832ec5856700155a6ca3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cd8", - "_tpl": "5b30bc165acfc40016387293", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cdb", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cde", - "_tpl": "5b7c2d1d5acfc43d1028532a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0ce1", - "_tpl": "5bffef760db8340019668fe4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0ce4", - "_tpl": "5c17664f2e2216398b5a7e3c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0ce7", - "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cea", - "_tpl": "5b363e1b5acfc4771e1c5e80", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0ced", - "_tpl": "5b057b4f5acfc4771e1bd3e9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cf0", - "_tpl": "59c6633186f7740cf0493bb9", + "_id": "6808baf0364a85cccb04be5f", + "_tpl": "55d44fd14bdc2d962f8b456e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3623,625 +1702,7 @@ } }, { - "_id": "677536d2b06e57fd5c0e0cf3", - "_tpl": "5a78813bc5856700186c4abe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cf6", - "_tpl": "57235b6f24597759bf5a30f1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cf9", - "_tpl": "5a9eb32da2750c00171b3f9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cfc", - "_tpl": "5b7bef5d5acfc43bca7067a3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d2b06e57fd5c0e0cff", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d02", - "_tpl": "5ba26ae8d4351e00367f9bdb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d04", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d05", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "677536d3b06e57fd5c0e0d04", - "slotId": "mod_barrel" - }, - { - "_id": "677536d3b06e57fd5c0e0d06", - "_tpl": "5a70366c8dc32e001207fb06", - "parentId": "677536d3b06e57fd5c0e0d05", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d3b06e57fd5c0e0d07", - "_tpl": "5a7afa25e899ef00135e31b0", - "parentId": "677536d3b06e57fd5c0e0d04", - "slotId": "mod_reciever" - }, - { - "_id": "677536d3b06e57fd5c0e0d08", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "677536d3b06e57fd5c0e0d07", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536d3b06e57fd5c0e0d09", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "677536d3b06e57fd5c0e0d07", - "slotId": "mod_sight_front" - }, - { - "_id": "677536d3b06e57fd5c0e0d0a", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536d3b06e57fd5c0e0d04", - "slotId": "mod_magazine" - }, - { - "_id": "677536d3b06e57fd5c0e0d0b", - "_tpl": "5a7ad55551dfba0015068f42", - "parentId": "677536d3b06e57fd5c0e0d04", - "slotId": "mod_mount" - }, - { - "_id": "677536d3b06e57fd5c0e0d0c", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "677536d3b06e57fd5c0e0d0b", - "slotId": "mod_scope" - }, - { - "_id": "677536d3b06e57fd5c0e0d0d", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "677536d3b06e57fd5c0e0d0c", - "slotId": "mod_scope" - }, - { - "_id": "677536d3b06e57fd5c0e0d0f", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d10", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "677536d3b06e57fd5c0e0d0f", - "slotId": "mod_barrel" - }, - { - "_id": "677536d3b06e57fd5c0e0d11", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "677536d3b06e57fd5c0e0d10", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d3b06e57fd5c0e0d12", - "_tpl": "5a71e22f8dc32e00094b97f4", - "parentId": "677536d3b06e57fd5c0e0d0f", - "slotId": "mod_reciever" - }, - { - "_id": "677536d3b06e57fd5c0e0d13", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "677536d3b06e57fd5c0e0d12", - "slotId": "mod_scope" - }, - { - "_id": "677536d3b06e57fd5c0e0d14", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "677536d3b06e57fd5c0e0d0f", - "slotId": "mod_magazine" - }, - { - "_id": "677536d3b06e57fd5c0e0d15", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "677536d3b06e57fd5c0e0d0f", - "slotId": "mod_tactical" - }, - { - "_id": "677536d3b06e57fd5c0e0d18", - "_tpl": "5a71e1868dc32e00094b97f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d1b", - "_tpl": "5a9ea27ca2750c00137fa672", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d1e", - "_tpl": "5a78813bc5856700186c4abe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d21", - "_tpl": "5a787fdfc5856700142fdd9a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d3b06e57fd5c0e0d24", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d4b06e57fd5c0e0d27", - "_tpl": "5b39ffbd5acfc47a8773fb06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d4b06e57fd5c0e0d2a", - "_tpl": "5b30bc285acfc47a8608615d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d4b06e57fd5c0e0d2d", - "_tpl": "5b0800175acfc400153aebd4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d4b06e57fd5c0e0d30", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d4b06e57fd5c0e0d33", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d5b06e57fd5c0e0d36", - "_tpl": "5bbdb8bdd4351e4502011460", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d5b06e57fd5c0e0d38", - "_tpl": "5ba26383d4351e00334c93d9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d5b06e57fd5c0e0d39", - "_tpl": "5ba26586d4351e44f824b340", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_magazine" - }, - { - "_id": "677536d5b06e57fd5c0e0d3a", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d5b06e57fd5c0e0d3b", - "_tpl": "5ba26ae8d4351e00367f9bdb", - "parentId": "677536d5b06e57fd5c0e0d3a", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d5b06e57fd5c0e0d3c", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_scope" - }, - { - "_id": "677536d5b06e57fd5c0e0d3d", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "677536d5b06e57fd5c0e0d3c", - "slotId": "mod_scope" - }, - { - "_id": "677536d5b06e57fd5c0e0d3e", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "677536d5b06e57fd5c0e0d3d", - "slotId": "mod_scope" - }, - { - "_id": "677536d5b06e57fd5c0e0d3f", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_tactical_000" - }, - { - "_id": "677536d5b06e57fd5c0e0d40", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_tactical_002" - }, - { - "_id": "677536d5b06e57fd5c0e0d41", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "677536d5b06e57fd5c0e0d40", - "slotId": "mod_flashlight" - }, - { - "_id": "677536d5b06e57fd5c0e0d42", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "677536d5b06e57fd5c0e0d38", - "slotId": "mod_stock" - }, - { - "_id": "677536d5b06e57fd5c0e0d45", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d5b06e57fd5c0e0d48", - "_tpl": "5c0102aa0db834001b734ba1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d5b06e57fd5c0e0d4b", - "_tpl": "5bb20d92d4351e00853263eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d4e", - "_tpl": "59faff1d86f7746c51718c9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d51", - "_tpl": "5a966ec8a2750c00171b3f36", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d54", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d57", - "_tpl": "5addbf175acfc408fb13965b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d5a", - "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d5d", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d5f", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d60", - "_tpl": "5b7d679f5acfc4001a5c4024", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536d6b06e57fd5c0e0d61", - "_tpl": "5b7bef1e5acfc43d82528402", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_magazine" - }, - { - "_id": "677536d6b06e57fd5c0e0d62", - "_tpl": "5b7bebc85acfc43bca706666", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_handguard" - }, - { - "_id": "677536d6b06e57fd5c0e0d63", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "677536d6b06e57fd5c0e0d62", - "slotId": "mod_mount_000" - }, - { - "_id": "677536d6b06e57fd5c0e0d64", - "_tpl": "588226d124597767ad33f787", - "parentId": "677536d6b06e57fd5c0e0d63", - "slotId": "mod_foregrip" - }, - { - "_id": "677536d6b06e57fd5c0e0d65", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536d6b06e57fd5c0e0d62", - "slotId": "mod_mount_001" - }, - { - "_id": "677536d6b06e57fd5c0e0d66", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_barrel" - }, - { - "_id": "677536d6b06e57fd5c0e0d67", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "677536d6b06e57fd5c0e0d66", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d6b06e57fd5c0e0d68", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "677536d6b06e57fd5c0e0d67", - "slotId": "mod_muzzle" - }, - { - "_id": "677536d6b06e57fd5c0e0d69", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536d6b06e57fd5c0e0d6a", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_reciever" - }, - { - "_id": "677536d6b06e57fd5c0e0d6b", - "_tpl": "5b7d63b75acfc400170e2f8a", - "parentId": "677536d6b06e57fd5c0e0d5f", - "slotId": "mod_stock" - }, - { - "_id": "677536d6b06e57fd5c0e0d6e", - "_tpl": "5c0684e50db834002a12585a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d6b06e57fd5c0e0d71", - "_tpl": "5c064c400db834001d23f468", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d7b06e57fd5c0e0d74", - "_tpl": "5aafbde786f774389d0cbc0f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d7b06e57fd5c0e0d78", + "_id": "6808baf0364a85cccb04be62", "_tpl": "5addbb945acfc4001a5fc44e", "parentId": "hideout", "slotId": "hideout", @@ -4253,8 +1714,8 @@ } }, { - "_id": "677536d7b06e57fd5c0e0d7b", - "_tpl": "57ffb0062459777a045af529", + "_id": "6808baf0364a85cccb04be65", + "_tpl": "5b30bc285acfc47a8608615d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4265,7 +1726,91 @@ } }, { - "_id": "677536d7b06e57fd5c0e0d7e", + "_id": "6808baf0364a85cccb04be67", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf0364a85cccb04be68", + "_tpl": "5b7d679f5acfc4001a5c4024", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf0364a85cccb04be69", + "_tpl": "5b7bef9c5acfc43d102852ec", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf0364a85cccb04be6a", + "_tpl": "5b7bee755acfc400196d5383", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf0364a85cccb04be6b", + "_tpl": "5b7be46e5acfc400170e2dcf", + "parentId": "6808baf0364a85cccb04be6a", + "slotId": "mod_mount_000" + }, + { + "_id": "6808baf0364a85cccb04be6c", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "6808baf0364a85cccb04be6b", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baf0364a85cccb04be6d", + "_tpl": "5b7be4645acfc400170e2dcc", + "parentId": "6808baf0364a85cccb04be6a", + "slotId": "mod_mount_001" + }, + { + "_id": "6808baf0364a85cccb04be6e", + "_tpl": "5b7be4645acfc400170e2dcc", + "parentId": "6808baf0364a85cccb04be6a", + "slotId": "mod_mount_002" + }, + { + "_id": "6808baf0364a85cccb04be6f", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf0364a85cccb04be70", + "_tpl": "5b7d693d5acfc43bca706a3d", + "parentId": "6808baf0364a85cccb04be6f", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf0364a85cccb04be71", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf0364a85cccb04be72", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf0364a85cccb04be73", + "_tpl": "5b7d64555acfc4001876c8e2", + "parentId": "6808baf0364a85cccb04be67", + "slotId": "mod_stock" + }, + { + "_id": "6808baf0364a85cccb04be76", "_tpl": "5b2cfa535acfc432ff4db7a0", "parentId": "hideout", "slotId": "hideout", @@ -4277,32 +1822,32 @@ } }, { - "_id": "677536d7b06e57fd5c0e0d81", - "_tpl": "5b2240bf5acfc40dc528af69", + "_id": "6808baf0364a85cccb04be79", + "_tpl": "58aeaaa886f7744fc1560f81", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536d7b06e57fd5c0e0d84", - "_tpl": "5ba26812d4351e003201fef1", + "_id": "6808baf1364a85cccb04be7c", + "_tpl": "5a787fadc5856700155a6ca1", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536d7b06e57fd5c0e0d87", - "_tpl": "5a9fbb84a2750c00137fa685", + "_id": "6808baf1364a85cccb04be7f", + "_tpl": "5b7be1ca5acfc400170e2d2f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4313,20 +1858,8 @@ } }, { - "_id": "677536d7b06e57fd5c0e0d8a", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536d7b06e57fd5c0e0d8d", - "_tpl": "5ae35b315acfc4001714e8b0", + "_id": "6808baf1364a85cccb04be82", + "_tpl": "5addbac75acfc400194dbc56", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4337,8 +1870,20 @@ } }, { - "_id": "677536d8b06e57fd5c0e0d90", - "_tpl": "5addbba15acfc400185c2854", + "_id": "6808baf1364a85cccb04be85", + "_tpl": "56ea8d2fd2720b7c698b4570", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04be88", + "_tpl": "5a78948ec5856700177b1124", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4349,8 +1894,8 @@ } }, { - "_id": "677536d8b06e57fd5c0e0d93", - "_tpl": "5addbffe5acfc4001714dfac", + "_id": "6808baf1364a85cccb04be8b", + "_tpl": "5c0684e50db834002a12585a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4361,19 +1906,31 @@ } }, { - "_id": "677536d8b06e57fd5c0e0d96", - "_tpl": "5b237e425acfc4771e1be0b6", + "_id": "6808baf1364a85cccb04be8e", + "_tpl": "5b800e9286f7747a8b04f3ff", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536d8b06e57fd5c0e0d99", + "_id": "6808baf1364a85cccb04be91", + "_tpl": "5bb20d92d4351e00853263eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04be94", "_tpl": "5ba26844d4351e00334c9475", "parentId": "hideout", "slotId": "hideout", @@ -4385,8 +1942,134 @@ } }, { - "_id": "677536d8b06e57fd5c0e0d9c", - "_tpl": "59bffc1f86f77435b128b872", + "_id": "6808baf1364a85cccb04be97", + "_tpl": "5bffcf7a0db83400232fea79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04be9a", + "_tpl": "5a788169c5856700142fdd9e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04be9d", + "_tpl": "5a9d6d34a2750c00141e07da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bea0", + "_tpl": "5addbfd15acfc40015621bde", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bea3", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bea5", + "_tpl": "5aafa857e5b5b00018480968", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bea6", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "6808baf1364a85cccb04bea5", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf1364a85cccb04bea7", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "6808baf1364a85cccb04bea5", + "slotId": "mod_stock" + }, + { + "_id": "6808baf1364a85cccb04bea8", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808baf1364a85cccb04bea7", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6808baf1364a85cccb04bea9", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808baf1364a85cccb04bea7", + "slotId": "mod_stock" + }, + { + "_id": "6808baf1364a85cccb04beaa", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6808baf1364a85cccb04bea9", + "slotId": "mod_stock_000" + }, + { + "_id": "6808baf1364a85cccb04beab", + "_tpl": "5addbac75acfc400194dbc56", + "parentId": "6808baf1364a85cccb04bea5", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf1364a85cccb04beac", + "_tpl": "5addbbb25acfc40015621bd9", + "parentId": "6808baf1364a85cccb04beab", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf1364a85cccb04beaf", + "_tpl": "5addba3e5acfc4001669f0ab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04beb2", + "_tpl": "59c6633186f7740cf0493bb9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4397,8 +2080,446 @@ } }, { - "_id": "677536d9b06e57fd5c0e0d9f", - "_tpl": "5aafbde786f774389d0cbc0f", + "_id": "6808baf1364a85cccb04beb5", + "_tpl": "5c17664f2e2216398b5a7e3c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bebb", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bebe", + "_tpl": "5addbb825acfc408fb139400", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bec1", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bec4", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf1364a85cccb04bec7", + "_tpl": "5c0006470db834001a6697fe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04beca", + "_tpl": "5b7be46e5acfc400170e2dcf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04becd", + "_tpl": "5a957c3fa2750c00137fa5f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04becf", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bed0", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "6808baf2364a85cccb04becf", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf2364a85cccb04bed1", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "6808baf2364a85cccb04becf", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf2364a85cccb04bed2", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "6808baf2364a85cccb04bed1", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf2364a85cccb04bed3", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "6808baf2364a85cccb04bed1", + "slotId": "mod_sight_front" + }, + { + "_id": "6808baf2364a85cccb04bed4", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6808baf2364a85cccb04becf", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf2364a85cccb04bed7", + "_tpl": "5bfebc250db834001a6694e1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04beda", + "_tpl": "5a966ec8a2750c00171b3f36", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bedd", + "_tpl": "5bfebc530db834001d23eb65", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bee0", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bee3", + "_tpl": "5a9fbb84a2750c00137fa685", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bee6", + "_tpl": "5addccf45acfc400185c2989", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bee9", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04beec", + "_tpl": "5addc00b5acfc4001669f144", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04beee", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04beef", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "6808baf2364a85cccb04beee", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf2364a85cccb04bef0", + "_tpl": "5a70366c8dc32e001207fb06", + "parentId": "6808baf2364a85cccb04beef", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf2364a85cccb04bef1", + "_tpl": "5a7afa25e899ef00135e31b0", + "parentId": "6808baf2364a85cccb04beee", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf2364a85cccb04bef2", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "6808baf2364a85cccb04bef1", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf2364a85cccb04bef3", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "6808baf2364a85cccb04bef1", + "slotId": "mod_sight_front" + }, + { + "_id": "6808baf2364a85cccb04bef4", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6808baf2364a85cccb04beee", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf2364a85cccb04bef5", + "_tpl": "5a7ad55551dfba0015068f42", + "parentId": "6808baf2364a85cccb04beee", + "slotId": "mod_mount" + }, + { + "_id": "6808baf2364a85cccb04bef6", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6808baf2364a85cccb04bef5", + "slotId": "mod_scope" + }, + { + "_id": "6808baf2364a85cccb04bef7", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6808baf2364a85cccb04bef6", + "slotId": "mod_scope" + }, + { + "_id": "6808baf2364a85cccb04befa", + "_tpl": "5a6b60158dc32e000a31138b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04befd", + "_tpl": "5b7bee755acfc400196d5383", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf00", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf02", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf03", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "6808baf2364a85cccb04bf02", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf2364a85cccb04bf04", + "_tpl": "5a7ad0c451dfba0013379712", + "parentId": "6808baf2364a85cccb04bf03", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf2364a85cccb04bf05", + "_tpl": "5a6f5f078dc32e00094b97dd", + "parentId": "6808baf2364a85cccb04bf02", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf2364a85cccb04bf06", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "6808baf2364a85cccb04bf02", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf2364a85cccb04bf07", + "_tpl": "5a7b4900e899ef197b331a2a", + "parentId": "6808baf2364a85cccb04bf02", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf2364a85cccb04bf08", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "6808baf2364a85cccb04bf07", + "slotId": "mod_scope" + }, + { + "_id": "6808baf2364a85cccb04bf09", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "6808baf2364a85cccb04bf08", + "slotId": "mod_scope" + }, + { + "_id": "6808baf2364a85cccb04bf0c", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf0f", + "_tpl": "5bffd7ed0db834001d23ebf9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf1a", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf25", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf28", + "_tpl": "57235b6f24597759bf5a30f1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4409,7 +2530,155 @@ } }, { - "_id": "677536dab06e57fd5c0e0da2", + "_id": "6808baf2364a85cccb04bf2a", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808baf2364a85cccb04bf2b", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808baf2364a85cccb04bf2a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf2364a85cccb04bf2c", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6808baf2364a85cccb04bf2a", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf2364a85cccb04bf2d", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6808baf2364a85cccb04bf2a", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf2364a85cccb04bf2e", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6808baf2364a85cccb04bf2d", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf2364a85cccb04bf2f", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6808baf2364a85cccb04bf2e", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf2364a85cccb04bf30", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6808baf2364a85cccb04bf2e", + "slotId": "mod_gas_block" + }, + { + "_id": "6808baf2364a85cccb04bf31", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "6808baf2364a85cccb04bf2d", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf2364a85cccb04bf32", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "6808baf2364a85cccb04bf31", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf2364a85cccb04bf33", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "6808baf2364a85cccb04bf2d", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf2364a85cccb04bf34", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808baf2364a85cccb04bf2a", + "slotId": "mod_stock" + }, + { + "_id": "6808baf2364a85cccb04bf35", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "6808baf2364a85cccb04bf34", + "slotId": "mod_stock_000" + }, + { + "_id": "6808baf2364a85cccb04bf36", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6808baf2364a85cccb04bf2a", + "slotId": "mod_charge" + }, + { + "_id": "6808baf2364a85cccb04bf39", + "_tpl": "5addbba15acfc400185c2854", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf2364a85cccb04bf3c", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf3f", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf42", + "_tpl": "5addbffe5acfc4001714dfac", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf45", + "_tpl": "5c0000c00db834001a6697fc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf48", "_tpl": "5b7be2345acfc400196d524a", "parentId": "hideout", "slotId": "hideout", @@ -4421,8 +2690,78 @@ } }, { - "_id": "677536dab06e57fd5c0e0da5", - "_tpl": "5b7bebc85acfc43bca706666", + "_id": "6808baf3364a85cccb04bf4a", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808baf3364a85cccb04bf4b", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "6808baf3364a85cccb04bf4a", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf3364a85cccb04bf4c", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6808baf3364a85cccb04bf4a", + "slotId": "mod_stock" + }, + { + "_id": "6808baf3364a85cccb04bf4d", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6808baf3364a85cccb04bf4a", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf3364a85cccb04bf4e", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6808baf3364a85cccb04bf4d", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf3364a85cccb04bf4f", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "6808baf3364a85cccb04bf4e", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf3364a85cccb04bf50", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "6808baf3364a85cccb04bf4a", + "slotId": "mod_mount" + }, + { + "_id": "6808baf3364a85cccb04bf51", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "6808baf3364a85cccb04bf50", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf54", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf57", + "_tpl": "55d35ee94bdc2d61338b4568", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4433,43 +2772,7 @@ } }, { - "_id": "677536dab06e57fd5c0e0da8", - "_tpl": "5b7be4645acfc400170e2dcc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dbb06e57fd5c0e0dab", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dbb06e57fd5c0e0dae", - "_tpl": "5addc7db5acfc4001669f279", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dbb06e57fd5c0e0db1", + "_id": "6808baf3364a85cccb04bf5a", "_tpl": "5c07c5ed0db834001b73571c", "parentId": "hideout", "slotId": "hideout", @@ -4481,68 +2784,230 @@ } }, { - "_id": "677536dbb06e57fd5c0e0db4", - "_tpl": "5cc86832d7f00c000d3a6e6c", + "_id": "6808baf3364a85cccb04bf5c", + "_tpl": "5a7ae0c351dfba0017554310", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536dbb06e57fd5c0e0db7", - "_tpl": "5c18b90d2e2216152142466b", + "_id": "6808baf3364a85cccb04bf5d", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "6808baf3364a85cccb04bf5c", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf3364a85cccb04bf5e", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "6808baf3364a85cccb04bf5d", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf3364a85cccb04bf5f", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "6808baf3364a85cccb04bf5c", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf3364a85cccb04bf60", + "_tpl": "5a718da68dc32e000d46d264", + "parentId": "6808baf3364a85cccb04bf5c", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf3364a85cccb04bf61", + "_tpl": "5a7ad4af51dfba0013379717", + "parentId": "6808baf3364a85cccb04bf5c", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf3364a85cccb04bf62", + "_tpl": "577d128124597739d65d0e56", + "parentId": "6808baf3364a85cccb04bf61", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf63", + "_tpl": "577d141e24597739c5255e01", + "parentId": "6808baf3364a85cccb04bf62", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf66", + "_tpl": "5c07b36c0db834002a1259e9", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536dbb06e57fd5c0e0dba", - "_tpl": "5bc09a18d4351e003562b68e", + "_id": "6808baf3364a85cccb04bf69", + "_tpl": "5ac66c5d5acfc4001718d314", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 12, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536dbb06e57fd5c0e0dbd", - "_tpl": "56d5a407d2720bb3418b456b", + "_id": "6808baf3364a85cccb04bf6b", + "_tpl": "5ba26383d4351e00334c93d9", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536dbb06e57fd5c0e0dc0", - "_tpl": "5bc09a30d4351e00367fb7c8", + "_id": "6808baf3364a85cccb04bf6c", + "_tpl": "5ba26586d4351e44f824b340", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf3364a85cccb04bf6d", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf3364a85cccb04bf6e", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "parentId": "6808baf3364a85cccb04bf6d", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf3364a85cccb04bf6f", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf70", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "6808baf3364a85cccb04bf6f", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf71", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6808baf3364a85cccb04bf70", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf72", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_tactical_000" + }, + { + "_id": "6808baf3364a85cccb04bf73", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_tactical_002" + }, + { + "_id": "6808baf3364a85cccb04bf74", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "6808baf3364a85cccb04bf73", + "slotId": "mod_flashlight" + }, + { + "_id": "6808baf3364a85cccb04bf75", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "6808baf3364a85cccb04bf6b", + "slotId": "mod_stock" + }, + { + "_id": "6808baf3364a85cccb04bf78", + "_tpl": "5b7be1125acfc4001876c0e5", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536dbb06e57fd5c0e0dc3", - "_tpl": "56d5a1f7d2720bb3418b456a", + "_id": "6808baf3364a85cccb04bf7b", + "_tpl": "5c07b3850db834002330045b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf7e", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf81", + "_tpl": "5c59529a2e221602b177d160", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf84", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf87", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf8a", + "_tpl": "5addbf175acfc408fb13965b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4553,8 +3018,132 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dc6", - "_tpl": "5bb20df1d4351e00347787d5", + "_id": "6808baf3364a85cccb04bf8d", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf8f", + "_tpl": "5a7828548dc32e5a9c28b516", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf90", + "_tpl": "5a787fdfc5856700142fdd9a", + "parentId": "6808baf3364a85cccb04bf8f", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf3364a85cccb04bf91", + "_tpl": "5a788031c585673f2b5c1c79", + "parentId": "6808baf3364a85cccb04bf8f", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf3364a85cccb04bf92", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "6808baf3364a85cccb04bf91", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baf3364a85cccb04bf93", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "6808baf3364a85cccb04bf8f", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf3364a85cccb04bf94", + "_tpl": "5ae35b315acfc4001714e8b0", + "parentId": "6808baf3364a85cccb04bf8f", + "slotId": "mod_stock" + }, + { + "_id": "6808baf3364a85cccb04bf95", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "6808baf3364a85cccb04bf94", + "slotId": "mod_stock" + }, + { + "_id": "6808baf3364a85cccb04bf96", + "_tpl": "58d2912286f7744e27117493", + "parentId": "6808baf3364a85cccb04bf95", + "slotId": "mod_stock" + }, + { + "_id": "6808baf3364a85cccb04bf97", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6808baf3364a85cccb04bf94", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf3364a85cccb04bf98", + "_tpl": "5a78948ec5856700177b1124", + "parentId": "6808baf3364a85cccb04bf8f", + "slotId": "mod_mount" + }, + { + "_id": "6808baf3364a85cccb04bf99", + "_tpl": "584924ec24597768f12ae244", + "parentId": "6808baf3364a85cccb04bf98", + "slotId": "mod_scope" + }, + { + "_id": "6808baf3364a85cccb04bf9c", + "_tpl": "5bb20dadd4351e00367faeff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf3364a85cccb04bf9f", + "_tpl": "5b7bebc85acfc43bca706666", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04bfae", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808baf4364a85cccb04bfc5", + "_tpl": "5a0ec13bfcdbcb00165aa685", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4565,8 +3154,8 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dc9", - "_tpl": "587de5ba2459771c0f1e8a58", + "_id": "6808baf4364a85cccb04bfd0", + "_tpl": "5b7d693d5acfc43bca706a3d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4577,8 +3166,8 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dcc", - "_tpl": "5c7e8fab2e22165df16b889b", + "_id": "6808baf4364a85cccb04bfd3", + "_tpl": "5a6b5b8a8dc32e001207faf3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4589,8 +3178,92 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dcf", - "_tpl": "5d15ce51d7ad1a1eff619092", + "_id": "6808baf4364a85cccb04bfd5", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04bfd6", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_gas_block" + }, + { + "_id": "6808baf4364a85cccb04bfd7", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6808baf4364a85cccb04bfd6", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf4364a85cccb04bfd8", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf4364a85cccb04bfd9", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf4364a85cccb04bfda", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf4364a85cccb04bfdb", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf4364a85cccb04bfdc", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_stock" + }, + { + "_id": "6808baf4364a85cccb04bfdd", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "6808baf4364a85cccb04bfd5", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf4364a85cccb04bfe0", + "_tpl": "56ea6fafd2720b844b8b4593", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04bfe3", + "_tpl": "5afd7e445acfc4001637e35a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04bfe6", + "_tpl": "5b3a16655acfc40016387a2a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4601,8 +3274,20 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dd2", - "_tpl": "5d120a28d7ad1a1c8962e295", + "_id": "6808baf4364a85cccb04bfe9", + "_tpl": "59faff1d86f7746c51718c9c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04bfec", + "_tpl": "5ab3afb2d8ce87001660304d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4613,8 +3298,138 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dd5", - "_tpl": "5c6d85e02e22165df16b81f4", + "_id": "6808baf4364a85cccb04bfee", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808baf4364a85cccb04bfef", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6808baf4364a85cccb04bfee", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf4364a85cccb04bff0", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "6808baf4364a85cccb04bfee", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf4364a85cccb04bff1", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6808baf4364a85cccb04bfee", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf4364a85cccb04bff2", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "6808baf4364a85cccb04bff1", + "slotId": "mod_scope" + }, + { + "_id": "6808baf4364a85cccb04bff3", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "6808baf4364a85cccb04bff1", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf4364a85cccb04bff4", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "6808baf4364a85cccb04bff3", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf4364a85cccb04bff5", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "6808baf4364a85cccb04bff4", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf4364a85cccb04bff6", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6808baf4364a85cccb04bff3", + "slotId": "mod_gas_block" + }, + { + "_id": "6808baf4364a85cccb04bff7", + "_tpl": "55f84c3c4bdc2d5f408b4576", + "parentId": "6808baf4364a85cccb04bff1", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf4364a85cccb04bff8", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "6808baf4364a85cccb04bff7", + "slotId": "mod_scope" + }, + { + "_id": "6808baf4364a85cccb04bff9", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "6808baf4364a85cccb04bff8", + "slotId": "mod_scope" + }, + { + "_id": "6808baf4364a85cccb04bffa", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6808baf4364a85cccb04bff9", + "slotId": "mod_scope" + }, + { + "_id": "6808baf4364a85cccb04bffb", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "6808baf4364a85cccb04bff7", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf4364a85cccb04bffc", + "_tpl": "638f1ff84822287cad04be9d", + "parentId": "6808baf4364a85cccb04bff7", + "slotId": "mod_handguard" + }, + { + "_id": "6808baf4364a85cccb04bffd", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "6808baf4364a85cccb04bffc", + "slotId": "mod_foregrip" + }, + { + "_id": "6808baf4364a85cccb04bffe", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808baf4364a85cccb04bfee", + "slotId": "mod_stock" + }, + { + "_id": "6808baf4364a85cccb04bfff", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6808baf4364a85cccb04bffe", + "slotId": "mod_stock_000" + }, + { + "_id": "6808baf4364a85cccb04c000", + "_tpl": "58d2912286f7744e27117493", + "parentId": "6808baf4364a85cccb04bfff", + "slotId": "mod_stock" + }, + { + "_id": "6808baf4364a85cccb04c001", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6808baf4364a85cccb04bfee", + "slotId": "mod_charge" + }, + { + "_id": "6808baf4364a85cccb04c004", + "_tpl": "5b363e1b5acfc4771e1c5e80", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4625,8 +3440,8 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dd8", - "_tpl": "5c793fde2e221601da358614", + "_id": "6808baf4364a85cccb04c007", + "_tpl": "5addbfbb5acfc400194dbcf7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4637,8 +3452,20 @@ } }, { - "_id": "677536dbb06e57fd5c0e0ddb", - "_tpl": "5cf50fc5d7f00c056c53f83c", + "_id": "6808baf4364a85cccb04c00a", + "_tpl": "59bfc5c886f7743bf6794e62", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c00d", + "_tpl": "5a78813bc5856700186c4abe", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4649,8 +3476,314 @@ } }, { - "_id": "677536dbb06e57fd5c0e0dde", - "_tpl": "5cf12a15d7f00c05464b293f", + "_id": "6808baf4364a85cccb04c010", + "_tpl": "5b800ed086f7747baf6e2f9e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c013", + "_tpl": "5b30ac585acfc433000eb79c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c016", + "_tpl": "5c127c4486f7745625356c13", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c01a", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c01d", + "_tpl": "5b3b6e495acfc4330140bd88", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c020", + "_tpl": "5c079ed60db834001a66b372", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c023", + "_tpl": "5b30bc165acfc40016387293", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c026", + "_tpl": "5addbfef5acfc400185c2857", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf4364a85cccb04c029", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c02c", + "_tpl": "5bffef760db8340019668fe4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c02f", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c032", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c035", + "_tpl": "5a9fc7e6a2750c0032157184", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c038", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c03a", + "_tpl": "5b1fa9b25acfc40018633c01", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c03b", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "6808baf5364a85cccb04c03a", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf5364a85cccb04c03c", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "6808baf5364a85cccb04c03a", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf5364a85cccb04c03d", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "6808baf5364a85cccb04c03c", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf5364a85cccb04c03e", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "6808baf5364a85cccb04c03c", + "slotId": "mod_sight_front" + }, + { + "_id": "6808baf5364a85cccb04c03f", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6808baf5364a85cccb04c03a", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf5364a85cccb04c042", + "_tpl": "5a9d56c8a2750c0032157146", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c045", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c048", + "_tpl": "5b6d9ce188a4501afc1b2b25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c04b", + "_tpl": "5bbdb8bdd4351e4502011460", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c04e", + "_tpl": "5b7d63de5acfc400170e2f8d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c051", + "_tpl": "5c0009510db834001966907f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c054", + "_tpl": "5c010a700db834001d23ef5d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c057", + "_tpl": "5b4391a586f7745321235ab2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c05a", + "_tpl": "5ac78a9b86f7741cca0bbd8d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4661,7 +3794,730 @@ } }, { - "_id": "677536dbb06e57fd5c0e0de1", + "_id": "6808baf5364a85cccb04c05d", + "_tpl": "5a9548c9159bd400133e97b3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c060", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c062", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c063", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "6808baf5364a85cccb04c062", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf5364a85cccb04c064", + "_tpl": "5a7ad0c451dfba0013379712", + "parentId": "6808baf5364a85cccb04c063", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf5364a85cccb04c065", + "_tpl": "5a71e22f8dc32e00094b97f4", + "parentId": "6808baf5364a85cccb04c062", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf5364a85cccb04c066", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6808baf5364a85cccb04c065", + "slotId": "mod_scope" + }, + { + "_id": "6808baf5364a85cccb04c067", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "6808baf5364a85cccb04c062", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf5364a85cccb04c068", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "6808baf5364a85cccb04c062", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf5364a85cccb04c06b", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c06e", + "_tpl": "5aafbde786f774389d0cbc0f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c072", + "_tpl": "5b4736b986f77405cb415c10", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c075", + "_tpl": "5b7bedd75acfc43d825283f9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c078", + "_tpl": "5bb20da5d4351e0035629dbf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c07b", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf5364a85cccb04c07e", + "_tpl": "5a78832ec5856700155a6ca3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c081", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c084", + "_tpl": "5ae35b315acfc4001714e8b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c087", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c08a", + "_tpl": "5addc7db5acfc4001669f279", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c08d", + "_tpl": "5a9d6d21a2750c00137fa649", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c090", + "_tpl": "5bffec120db834001c38f5fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c093", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c096", + "_tpl": "5afd7e095acfc40017541f61", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c099", + "_tpl": "5c064c400db834001d23f468", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c09c", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c09f", + "_tpl": "5c0102aa0db834001b734ba1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0a2", + "_tpl": "5a9eb32da2750c00171b3f9c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0a5", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0a8", + "_tpl": "59fb137a86f7740adb646af1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0aa", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0ab", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "6808baf6364a85cccb04c0aa", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf6364a85cccb04c0ac", + "_tpl": "5c079ec50db834001966a706", + "parentId": "6808baf6364a85cccb04c0aa", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf6364a85cccb04c0ad", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "6808baf6364a85cccb04c0aa", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf6364a85cccb04c0ae", + "_tpl": "5bffd7ed0db834001d23ebf9", + "parentId": "6808baf6364a85cccb04c0aa", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf6364a85cccb04c0af", + "_tpl": "5c079ed60db834001a66b372", + "parentId": "6808baf6364a85cccb04c0aa", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf6364a85cccb04c0b2", + "_tpl": "5c07c9660db834001a66b588", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0b5", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0b8", + "_tpl": "57ffb0062459777a045af529", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0ba", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0bb", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "6808baf6364a85cccb04c0ba", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf6364a85cccb04c0bc", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "6808baf6364a85cccb04c0ba", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808baf6364a85cccb04c0bd", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "6808baf6364a85cccb04c0ba", + "slotId": "mod_reciever" + }, + { + "_id": "6808baf6364a85cccb04c0be", + "_tpl": "5a71e0fb8dc32e00094b97f2", + "parentId": "6808baf6364a85cccb04c0bd", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808baf6364a85cccb04c0bf", + "_tpl": "5a71e0048dc32e000c52ecc8", + "parentId": "6808baf6364a85cccb04c0bd", + "slotId": "mod_sight_front" + }, + { + "_id": "6808baf6364a85cccb04c0c0", + "_tpl": "5a7b32a2e899ef00135e345a", + "parentId": "6808baf6364a85cccb04c0bd", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf6364a85cccb04c0c1", + "_tpl": "5a718f958dc32e00094b97e7", + "parentId": "6808baf6364a85cccb04c0ba", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf6364a85cccb04c0c2", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "6808baf6364a85cccb04c0ba", + "slotId": "mod_tactical" + }, + { + "_id": "6808baf6364a85cccb04c0c5", + "_tpl": "5addbbb25acfc40015621bd9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0c8", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0cb", + "_tpl": "5a788068c5856700137e4c8f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0cd", + "_tpl": "5aafa857e5b5b00018480968", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf6364a85cccb04c0ce", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "6808baf6364a85cccb04c0cd", + "slotId": "mod_magazine" + }, + { + "_id": "6808baf6364a85cccb04c0cf", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "6808baf6364a85cccb04c0cd", + "slotId": "mod_stock" + }, + { + "_id": "6808baf6364a85cccb04c0d0", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808baf6364a85cccb04c0cf", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6808baf6364a85cccb04c0d1", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808baf6364a85cccb04c0cf", + "slotId": "mod_stock" + }, + { + "_id": "6808baf6364a85cccb04c0d2", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6808baf6364a85cccb04c0d1", + "slotId": "mod_stock_000" + }, + { + "_id": "6808baf6364a85cccb04c0d3", + "_tpl": "5addbac75acfc400194dbc56", + "parentId": "6808baf6364a85cccb04c0cd", + "slotId": "mod_barrel" + }, + { + "_id": "6808baf6364a85cccb04c0d4", + "_tpl": "5addbbb25acfc40015621bd9", + "parentId": "6808baf6364a85cccb04c0d3", + "slotId": "mod_muzzle" + }, + { + "_id": "6808baf7364a85cccb04c0d7", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0da", + "_tpl": "5a71e1868dc32e00094b97f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0dd", + "_tpl": "5addbfe15acfc4001a5fc58b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0e0", + "_tpl": "5afd7ded5acfc40017541f5e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0e3", + "_tpl": "5a6b59a08dc32e000b452fb7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0e6", + "_tpl": "5aafbde786f774389d0cbc0f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0e9", + "_tpl": "5b2240bf5acfc40dc528af69", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0ec", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0ef", + "_tpl": "5a9fbacda2750c00141e080f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0f2", + "_tpl": "5a789261c5856700186c65d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0f5", + "_tpl": "5a78813bc5856700186c4abe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0f8", + "_tpl": "5b237e425acfc4771e1be0b6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0fb", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c0fe", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c101", "_tpl": "5d2c772c48f0355d95672c25", "parentId": "hideout", "slotId": "hideout", @@ -4673,413 +4529,8 @@ } }, { - "_id": "677536dbb06e57fd5c0e0de4", - "_tpl": "591af10186f774139d495f0e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0de7", - "_tpl": "5c4ee3d62e2216152006f302", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0dea", - "_tpl": "5c6d11152e2216000f2003e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0ded", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0df0", - "_tpl": "5c5db6742e2216000f1b2852", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0df3", - "_tpl": "5cc7015ae4a949001152b4c6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0df6", - "_tpl": "5d1f819086f7744b355c219b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0df9", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0dfc", - "_tpl": "5cebec38d7f00c00110a652a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0dff", - "_tpl": "5cc9ad73d7f00c000e2579d4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e02", - "_tpl": "5d270ca28abbc31ee25ee821", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e05", - "_tpl": "5d25d0ac8abbc3054f3e61f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e08", - "_tpl": "5d25a6a48abbc306c62e6310", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e16", - "_tpl": "5bb2475ed4351e00853264e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e24", - "_tpl": "5de8f2d5b74cd90030650c72", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e27", - "_tpl": "5d1b304286f774253763a528", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e2a", - "_tpl": "5d2703038abbc3105103d94c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e2c", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e2d", - "_tpl": "5b099b965acfc400186331e6", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536dcb06e57fd5c0e0e2e", - "_tpl": "5b7c2d1d5acfc43d1028532a", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_magazine" - }, - { - "_id": "677536dcb06e57fd5c0e0e2f", - "_tpl": "5b7bedd75acfc43d825283f9", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_handguard" - }, - { - "_id": "677536dcb06e57fd5c0e0e30", - "_tpl": "5b7be46e5acfc400170e2dcf", - "parentId": "677536dcb06e57fd5c0e0e2f", - "slotId": "mod_mount_000" - }, - { - "_id": "677536dcb06e57fd5c0e0e31", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_barrel" - }, - { - "_id": "677536dcb06e57fd5c0e0e32", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "677536dcb06e57fd5c0e0e31", - "slotId": "mod_muzzle" - }, - { - "_id": "677536dcb06e57fd5c0e0e33", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536dcb06e57fd5c0e0e34", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_reciever" - }, - { - "_id": "677536dcb06e57fd5c0e0e35", - "_tpl": "5b7d63de5acfc400170e2f8d", - "parentId": "677536dcb06e57fd5c0e0e2c", - "slotId": "mod_stock" - }, - { - "_id": "677536dcb06e57fd5c0e0e38", - "_tpl": "5dfce88fe9dc277128008b2e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e3b", - "_tpl": "5cf4e3f3d7f00c06595bc7f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e3d", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dcb06e57fd5c0e0e3e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_gas_block" - }, - { - "_id": "677536dcb06e57fd5c0e0e3f", - "_tpl": "5cf4e3f3d7f00c06595bc7f0", - "parentId": "677536dcb06e57fd5c0e0e3e", - "slotId": "mod_handguard" - }, - { - "_id": "677536dcb06e57fd5c0e0e40", - "_tpl": "5c7fc87d2e221644f31c0298", - "parentId": "677536dcb06e57fd5c0e0e3f", - "slotId": "mod_foregrip" - }, - { - "_id": "677536dcb06e57fd5c0e0e41", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "677536dcb06e57fd5c0e0e3f", - "slotId": "mod_scope" - }, - { - "_id": "677536dcb06e57fd5c0e0e42", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "677536dcb06e57fd5c0e0e41", - "slotId": "mod_scope" - }, - { - "_id": "677536dcb06e57fd5c0e0e43", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "677536dcb06e57fd5c0e0e42", - "slotId": "mod_scope" - }, - { - "_id": "677536dcb06e57fd5c0e0e44", - "_tpl": "5cc9ad73d7f00c000e2579d4", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_muzzle" - }, - { - "_id": "677536dcb06e57fd5c0e0e45", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536dcb06e57fd5c0e0e46", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_reciever" - }, - { - "_id": "677536dcb06e57fd5c0e0e47", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "677536dcb06e57fd5c0e0e46", - "slotId": "mod_scope" - }, - { - "_id": "677536dcb06e57fd5c0e0e48", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536dcb06e57fd5c0e0e49", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_stock" - }, - { - "_id": "677536dcb06e57fd5c0e0e4a", - "_tpl": "5c793fde2e221601da358614", - "parentId": "677536dcb06e57fd5c0e0e49", - "slotId": "mod_stock" - }, - { - "_id": "677536dcb06e57fd5c0e0e4b", - "_tpl": "5cfe8010d7ad1a59283b14c6", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_magazine" - }, - { - "_id": "677536dcb06e57fd5c0e0e4c", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "677536dcb06e57fd5c0e0e3d", - "slotId": "mod_charge" - }, - { - "_id": "677536dcb06e57fd5c0e0e4f", - "_tpl": "5c18b9192e2216398b5a8104", + "_id": "6808baf7364a85cccb04c104", + "_tpl": "5bb20e58d4351e00320205d7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5090,8 +4541,8 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e52", - "_tpl": "5beec8b20db834001961942a", + "_id": "6808baf7364a85cccb04c107", + "_tpl": "5c7fb51d2e2216001219ce11", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5102,8 +4553,8 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e55", - "_tpl": "5cc9bcaed7f00c011c04e179", + "_id": "6808baf7364a85cccb04c10a", + "_tpl": "5c5db6652e221600113fba51", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5114,44 +4565,8 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e58", - "_tpl": "5cebec00d7f00c065c53522a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e5b", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e5e", - "_tpl": "5cc9a96cd7f00c011c04e04a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e61", - "_tpl": "5c6592372e221600133e47d7", + "_id": "6808baf7364a85cccb04c10d", + "_tpl": "5c6c2c9c2e2216000f2002e4", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5162,43 +4577,7 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e64", - "_tpl": "5d025cc1d7ad1a53845279ef", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e67", - "_tpl": "5cff9e5ed7ad1a09407397d4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e6a", - "_tpl": "5cc9b815d7f00c000e2579d6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e74", + "_id": "6808baf7364a85cccb04c117", "_tpl": "57dc2fa62459775949412633", "parentId": "hideout", "slotId": "hideout", @@ -5216,145 +4595,7 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e7e", - "_tpl": "591aef7986f774139d495f03", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e81", - "_tpl": "5d02676dd7ad1a049e54f6dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e84", - "_tpl": "5e01e9e273d8eb11426f5bc3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e86", - "_tpl": "6165ac306ef05c2ce828ef74", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e87", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "677536ddb06e57fd5c0e0e86", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536ddb06e57fd5c0e0e88", - "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "677536ddb06e57fd5c0e0e86", - "slotId": "mod_magazine" - }, - { - "_id": "677536ddb06e57fd5c0e0e89", - "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "677536ddb06e57fd5c0e0e86", - "slotId": "mod_reciever" - }, - { - "_id": "677536ddb06e57fd5c0e0e8a", - "_tpl": "618168b350224f204c1da4d8", - "parentId": "677536ddb06e57fd5c0e0e89", - "slotId": "mod_barrel" - }, - { - "_id": "677536ddb06e57fd5c0e0e8b", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "677536ddb06e57fd5c0e0e8a", - "slotId": "mod_muzzle" - }, - { - "_id": "677536ddb06e57fd5c0e0e8c", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "677536ddb06e57fd5c0e0e8a", - "slotId": "mod_sight_front" - }, - { - "_id": "677536ddb06e57fd5c0e0e8d", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "677536ddb06e57fd5c0e0e89", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536ddb06e57fd5c0e0e8e", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "677536ddb06e57fd5c0e0e89", - "slotId": "mod_mount_000" - }, - { - "_id": "677536ddb06e57fd5c0e0e8f", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "677536ddb06e57fd5c0e0e89", - "slotId": "mod_mount_001" - }, - { - "_id": "677536ddb06e57fd5c0e0e90", - "_tpl": "61825d06d92c473c770215de", - "parentId": "677536ddb06e57fd5c0e0e86", - "slotId": "mod_stock" - }, - { - "_id": "677536ddb06e57fd5c0e0e91", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "677536ddb06e57fd5c0e0e90", - "slotId": "mod_stock_001" - }, - { - "_id": "677536ddb06e57fd5c0e0e92", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "677536ddb06e57fd5c0e0e91", - "slotId": "mod_stock" - }, - { - "_id": "677536ddb06e57fd5c0e0e93", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "677536ddb06e57fd5c0e0e90", - "slotId": "mod_stock_002" - }, - { - "_id": "677536ddb06e57fd5c0e0e94", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "677536ddb06e57fd5c0e0e86", - "slotId": "mod_charge" - }, - { - "_id": "677536ddb06e57fd5c0e0e97", + "_id": "6808baf7364a85cccb04c121", "_tpl": "5c7fc87d2e221644f31c0298", "parentId": "hideout", "slotId": "hideout", @@ -5366,43 +4607,7 @@ } }, { - "_id": "677536ddb06e57fd5c0e0e9a", - "_tpl": "5cff9e84d7ad1a049e54ed55", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0e9d", - "_tpl": "5cfe8010d7ad1a59283b14c6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0ea0", - "_tpl": "5cf6937cd7f00c056c53fb39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ddb06e57fd5c0e0ea3", + "_id": "6808baf7364a85cccb04c124", "_tpl": "5cc6ea85e4a949000e1ea3c3", "parentId": "hideout", "slotId": "hideout", @@ -5414,7 +4619,103 @@ } }, { - "_id": "677536deb06e57fd5c0e0ea6", + "_id": "6808baf7364a85cccb04c127", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf7364a85cccb04c12a", + "_tpl": "5d25af8f8abbc3055079fec5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c12d", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c130", + "_tpl": "5c6d5d8b2e221644fc630b39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c133", + "_tpl": "5de8fbf2b74cd90030650c79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c136", + "_tpl": "5c6beec32e221601da3578f2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c139", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c13c", + "_tpl": "5de8f237bbaf010b10528a70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c13f", "_tpl": "5d7b6bafa4b93652786f4c76", "parentId": "hideout", "slotId": "hideout", @@ -5426,8 +4727,404 @@ } }, { - "_id": "677536deb06e57fd5c0e0eb1", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "_id": "6808baf8364a85cccb04c142", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c145", + "_tpl": "5d026791d7ad1a04a067ea63", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c148", + "_tpl": "5d025cc1d7ad1a53845279ef", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c14b", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c14e", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c151", + "_tpl": "5d25a6538abbc306c62e630d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c154", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c157", + "_tpl": "5d00e0cbd7ad1a6c6566a42d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c15a", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c15d", + "_tpl": "5c5db6742e2216000f1b2852", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c160", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c163", + "_tpl": "5d1b304286f774253763a528", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c166", + "_tpl": "5dfcd0e547101c39625f66f9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c169", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c16c", + "_tpl": "5d2703038abbc3105103d94c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c16f", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf8364a85cccb04c172", + "_tpl": "5cc700ede4a949033c734315", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c175", + "_tpl": "5bb20df1d4351e00347787d5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c178", + "_tpl": "55d614004bdc2d86028b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c17b", + "_tpl": "591af10186f774139d495f0e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c17e", + "_tpl": "5d00ef6dd7ad1a0940739b16", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c181", + "_tpl": "5c6592372e221600133e47d7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c184", + "_tpl": "5beec8b20db834001961942a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c187", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 500, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c18a", + "_tpl": "5d2702e88abbc31ed91efc44", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c18d", + "_tpl": "5d120a28d7ad1a1c8962e295", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c190", + "_tpl": "5d00f63bd7ad1a59283b1c1e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c193", + "_tpl": "5c11046cd174af02a012e42b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c196", + "_tpl": "5cf518cfd7f00c065b422214", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c199", + "_tpl": "5c793fde2e221601da358614", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c19c", + "_tpl": "591aef7986f774139d495f03", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c1a5", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c1ae", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c1bc", + "_tpl": "5bb2475ed4351e00853264e3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5441,8 +5138,32 @@ } }, { - "_id": "677536deb06e57fd5c0e0ebc", - "_tpl": "5bb20e58d4351e00320205d7", + "_id": "6808baf9364a85cccb04c1ca", + "_tpl": "5dfce88fe9dc277128008b2e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c1cd", + "_tpl": "5bb20e18d4351e00320205d5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baf9364a85cccb04c1d0", + "_tpl": "5cc9a96cd7f00c011c04e04a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5453,32 +5174,8 @@ } }, { - "_id": "677536deb06e57fd5c0e0ebf", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ec2", - "_tpl": "55d614004bdc2d86028b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ec5", - "_tpl": "5c7fb51d2e2216001219ce11", + "_id": "6808baf9364a85cccb04c1d3", + "_tpl": "5c7e8fab2e22165df16b889b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5489,91 +5186,19 @@ } }, { - "_id": "677536deb06e57fd5c0e0ec8", - "_tpl": "5d120a10d7ad1a4e1026ba85", + "_id": "6808baf9364a85cccb04c1d6", + "_tpl": "5d25a4a98abbc30b917421a4", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536deb06e57fd5c0e0ecb", - "_tpl": "5d026791d7ad1a04a067ea63", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ece", - "_tpl": "5d00ede1d7ad1a0940739a76", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ed1", - "_tpl": "5cf13123d7f00c1085616a50", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ed4", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0ed7", - "_tpl": "5c6175362e221600133e3b94", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0eda", - "_tpl": "5d02677ad7ad1a04a15c0f95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0edc", + "_id": "6808baf9364a85cccb04c1d8", "_tpl": "587e02ff24597743df3deaeb", "parentId": "hideout", "slotId": "hideout", @@ -5589,73 +5214,169 @@ } }, { - "_id": "677536deb06e57fd5c0e0edd", + "_id": "6808baf9364a85cccb04c1d9", "_tpl": "5d0236dad7ad1a0940739d29", - "parentId": "677536deb06e57fd5c0e0edc", + "parentId": "6808baf9364a85cccb04c1d8", "slotId": "mod_stock" }, { - "_id": "677536deb06e57fd5c0e0ede", + "_id": "6808baf9364a85cccb04c1da", "_tpl": "5d023784d7ad1a049d4aa7f2", - "parentId": "677536deb06e57fd5c0e0edd", + "parentId": "6808baf9364a85cccb04c1d9", "slotId": "mod_pistol_grip" }, { - "_id": "677536deb06e57fd5c0e0edf", + "_id": "6808baf9364a85cccb04c1db", "_tpl": "653ed132896b99b40a0292e6", - "parentId": "677536deb06e57fd5c0e0edd", + "parentId": "6808baf9364a85cccb04c1d9", "slotId": "mod_stock" }, { - "_id": "677536deb06e57fd5c0e0ee0", + "_id": "6808baf9364a85cccb04c1dc", "_tpl": "587df3a12459772c28142567", - "parentId": "677536deb06e57fd5c0e0edc", + "parentId": "6808baf9364a85cccb04c1d8", "slotId": "mod_magazine" }, { - "_id": "677536deb06e57fd5c0e0ee1", + "_id": "6808baf9364a85cccb04c1dd", "_tpl": "587e08ee245977446b4410cf", - "parentId": "677536deb06e57fd5c0e0edc", + "parentId": "6808baf9364a85cccb04c1d8", "slotId": "mod_mount" }, { - "_id": "677536deb06e57fd5c0e0ee2", + "_id": "6808baf9364a85cccb04c1de", "_tpl": "634eff66517ccc8a960fc735", - "parentId": "677536deb06e57fd5c0e0edc", + "parentId": "6808baf9364a85cccb04c1d8", "slotId": "mod_barrel" }, { - "_id": "677536deb06e57fd5c0e0ee3", + "_id": "6808baf9364a85cccb04c1df", "_tpl": "634f05a21f9f536910079b56", - "parentId": "677536deb06e57fd5c0e0ee2", + "parentId": "6808baf9364a85cccb04c1de", "slotId": "mod_mount_000" }, { - "_id": "677536deb06e57fd5c0e0ee4", + "_id": "6808baf9364a85cccb04c1e0", "_tpl": "634f036a517ccc8a960fc746", - "parentId": "677536deb06e57fd5c0e0ee3", + "parentId": "6808baf9364a85cccb04c1df", "slotId": "mod_gas_block" }, { - "_id": "677536deb06e57fd5c0e0ee5", + "_id": "6808baf9364a85cccb04c1e1", "_tpl": "653ece125a1690d9d90491e8", - "parentId": "677536deb06e57fd5c0e0ee4", + "parentId": "6808baf9364a85cccb04c1e0", "slotId": "mod_mount_000" }, { - "_id": "677536deb06e57fd5c0e0ee6", + "_id": "6808baf9364a85cccb04c1e2", "_tpl": "574db213245977459a2f3f5d", - "parentId": "677536deb06e57fd5c0e0ee3", + "parentId": "6808baf9364a85cccb04c1df", "slotId": "mod_sight_rear" }, { - "_id": "677536deb06e57fd5c0e0ee7", + "_id": "6808baf9364a85cccb04c1e3", "_tpl": "634f06262e5def262d0b30ca", - "parentId": "677536deb06e57fd5c0e0edc", + "parentId": "6808baf9364a85cccb04c1d8", "slotId": "mod_reciever" }, { - "_id": "677536deb06e57fd5c0e0eea", + "_id": "6808baf9364a85cccb04c1e6", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1e9", + "_tpl": "5d25a6a48abbc306c62e6310", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1ec", + "_tpl": "5cc9bcaed7f00c011c04e179", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1ef", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1f2", + "_tpl": "5d270ca28abbc31ee25ee821", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1f5", + "_tpl": "5cff9e84d7ad1a049e54ed55", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1f8", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1fb", + "_tpl": "5d00ede1d7ad1a0940739a76", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c1fe", "_tpl": "5cc70146e4a949000d73bf6b", "parentId": "hideout", "slotId": "hideout", @@ -5667,7 +5388,370 @@ } }, { - "_id": "677536deb06e57fd5c0e0ef5", + "_id": "6808bafa364a85cccb04c201", + "_tpl": "5d010d1cd7ad1a59283b1ce7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c204", + "_tpl": "5cc7012ae4a949001252b43e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c207", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c20a", + "_tpl": "5dff8db859400025ea5150d4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c20d", + "_tpl": "5c6175362e221600133e3b94", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c210", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c213", + "_tpl": "5c6d46132e221601da357d56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 12, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c216", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c221", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c22c", + "_tpl": "5d02677ad7ad1a04a15c0f95", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c22f", + "_tpl": "5c6d11152e2216000f2003e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c232", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c235", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c237", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c238", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bafa364a85cccb04c239", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "6808bafa364a85cccb04c238", + "slotId": "mod_handguard" + }, + { + "_id": "6808bafa364a85cccb04c23a", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "6808bafa364a85cccb04c239", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bafa364a85cccb04c23b", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "6808bafa364a85cccb04c239", + "slotId": "mod_scope" + }, + { + "_id": "6808bafa364a85cccb04c23c", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6808bafa364a85cccb04c23b", + "slotId": "mod_scope" + }, + { + "_id": "6808bafa364a85cccb04c23d", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6808bafa364a85cccb04c23c", + "slotId": "mod_scope" + }, + { + "_id": "6808bafa364a85cccb04c23e", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bafa364a85cccb04c23f", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bafa364a85cccb04c240", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafa364a85cccb04c241", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "6808bafa364a85cccb04c240", + "slotId": "mod_scope" + }, + { + "_id": "6808bafa364a85cccb04c242", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafa364a85cccb04c243", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_stock" + }, + { + "_id": "6808bafa364a85cccb04c244", + "_tpl": "5c793fde2e221601da358614", + "parentId": "6808bafa364a85cccb04c243", + "slotId": "mod_stock" + }, + { + "_id": "6808bafa364a85cccb04c245", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafa364a85cccb04c246", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "6808bafa364a85cccb04c237", + "slotId": "mod_charge" + }, + { + "_id": "6808bafa364a85cccb04c249", + "_tpl": "5cf13123d7f00c1085616a50", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafa364a85cccb04c24c", + "_tpl": "5cff9e5ed7ad1a09407397d4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c24f", + "_tpl": "5c4ee3d62e2216152006f302", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c252", + "_tpl": "5de8f2d5b74cd90030650c72", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c255", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c258", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c25b", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c25e", + "_tpl": "5cf6937cd7f00c056c53fb39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c269", "_tpl": "59e6687d86f77411d949b251", "parentId": "hideout", "slotId": "hideout", @@ -5683,116 +5767,8 @@ } }, { - "_id": "677536deb06e57fd5c0e0f00", - "_tpl": "59fb023c86f7746d0d4b423c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0f03", - "_tpl": "5dff8db859400025ea5150d4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0f06", - "_tpl": "5de8fbf2b74cd90030650c79", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536deb06e57fd5c0e0f09", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 500, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f0c", - "_tpl": "5c6d5d8b2e221644fc630b39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f0f", - "_tpl": "5d00ef6dd7ad1a0940739b16", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f12", - "_tpl": "5d00e0cbd7ad1a6c6566a42d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f15", - "_tpl": "5cc7012ae4a949001252b43e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f18", - "_tpl": "5c791e872e2216001219c40a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f1b", - "_tpl": "5d25a6538abbc306c62e630d", + "_id": "6808bafb364a85cccb04c274", + "_tpl": "5cf12a15d7f00c05464b293f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5803,44 +5779,8 @@ } }, { - "_id": "677536dfb06e57fd5c0e0f29", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f3d", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f46", - "_tpl": "5bb20dcad4351e3bac1212da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f49", - "_tpl": "5c6beec32e221601da3578f2", + "_id": "6808bafb364a85cccb04c277", + "_tpl": "5cc700d4e4a949000f0f0f28", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5851,79 +5791,7 @@ } }, { - "_id": "677536dfb06e57fd5c0e0f4c", - "_tpl": "5c6c2c9c2e2216000f2002e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f4f", - "_tpl": "5c9a26332e2216001219ea70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f52", - "_tpl": "5d00ec68d7ad1a04a067e5be", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f55", - "_tpl": "5d2702e88abbc31ed91efc44", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f58", - "_tpl": "5c6d46132e221601da357d56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f5b", - "_tpl": "5cf518cfd7f00c065b422214", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f5e", + "_id": "6808bafb364a85cccb04c27a", "_tpl": "5cc82796e24e8d000f5859a8", "parentId": "hideout", "slotId": "hideout", @@ -5935,8 +5803,20 @@ } }, { - "_id": "677536dfb06e57fd5c0e0f61", - "_tpl": "5cc701aae4a949000e1ea45c", + "_id": "6808bafb364a85cccb04c27d", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c280", + "_tpl": "5c6d85e02e22165df16b81f4", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5947,68 +5827,8 @@ } }, { - "_id": "677536dfb06e57fd5c0e0f64", - "_tpl": "5d25af8f8abbc3055079fec5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f67", - "_tpl": "5b099a765acfc47a8607efe3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f6a", - "_tpl": "5de8f237bbaf010b10528a70", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536dfb06e57fd5c0e0f6d", - "_tpl": "5c5db6652e221600113fba51", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f70", - "_tpl": "5d00f63bd7ad1a59283b1c1e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f73", - "_tpl": "5cf8f3b0d7f00c00217872ef", + "_id": "6808bafb364a85cccb04c283", + "_tpl": "55d6190f4bdc2d87028b4567", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6019,19 +5839,145 @@ } }, { - "_id": "677536e0b06e57fd5c0e0f76", - "_tpl": "5d25a4a98abbc30b917421a4", + "_id": "6808bafb364a85cccb04c291", + "_tpl": "5b0bbe4e5acfc40dc528a72d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e0b06e57fd5c0e0f80", + "_id": "6808bafb364a85cccb04c29f", + "_tpl": "5d00ec68d7ad1a04a067e5be", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2a2", + "_tpl": "587de5ba2459771c0f1e8a58", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2a5", + "_tpl": "5c6d10e82e221601da357b07", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2a8", + "_tpl": "5cebec38d7f00c00110a652a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2ab", + "_tpl": "5cebec00d7f00c065c53522a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2ad", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafb364a85cccb04c2ae", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bafb364a85cccb04c2af", + "_tpl": "5b7c2d1d5acfc43d1028532a", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafb364a85cccb04c2b0", + "_tpl": "5b7bedd75acfc43d825283f9", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_handguard" + }, + { + "_id": "6808bafb364a85cccb04c2b1", + "_tpl": "5b7be46e5acfc400170e2dcf", + "parentId": "6808bafb364a85cccb04c2b0", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bafb364a85cccb04c2b2", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafb364a85cccb04c2b3", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "6808bafb364a85cccb04c2b2", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bafb364a85cccb04c2b4", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafb364a85cccb04c2b5", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafb364a85cccb04c2b6", + "_tpl": "5b7d63de5acfc400170e2f8d", + "parentId": "6808bafb364a85cccb04c2ad", + "slotId": "mod_stock" + }, + { + "_id": "6808bafb364a85cccb04c2c0", "_tpl": "5aafa857e5b5b00018480968", "parentId": "hideout", "slotId": "hideout", @@ -6047,56 +5993,8 @@ } }, { - "_id": "677536e0b06e57fd5c0e0f8a", - "_tpl": "5dfcd0e547101c39625f66f9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f8d", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f90", - "_tpl": "5bb20e18d4351e00320205d5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f93", - "_tpl": "5c6d10e82e221601da357b07", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f96", - "_tpl": "5c793fb92e221644f31bfb64", + "_id": "6808bafb364a85cccb04c2ca", + "_tpl": "5cc7015ae4a949001152b4c6", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6107,20 +6005,8 @@ } }, { - "_id": "677536e0b06e57fd5c0e0f99", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0f9c", - "_tpl": "5d010d1cd7ad1a59283b1ce7", + "_id": "6808bafb364a85cccb04c2cd", + "_tpl": "5d1f819086f7744b355c219b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6131,56 +6017,8 @@ } }, { - "_id": "677536e0b06e57fd5c0e0f9f", - "_tpl": "5ea2a8e200685063ec28c05a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 90, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0fa2", - "_tpl": "5cc700ede4a949033c734315", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0fa5", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0fa8", - "_tpl": "5c11046cd174af02a012e42b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0fab", - "_tpl": "5a1eaa87fcdbcb001865f75e", + "_id": "6808bafb364a85cccb04c2d0", + "_tpl": "59fb023c86f7746d0d4b423c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6191,20 +6029,8 @@ } }, { - "_id": "677536e0b06e57fd5c0e0fae", - "_tpl": "5de8fc0b205ddc616a6bc51b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e0b06e57fd5c0e0fb1", - "_tpl": "5eea21647547d6330471b3c9", + "_id": "6808bafc364a85cccb04c2d3", + "_tpl": "5d15ce51d7ad1a1eff619092", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6215,44 +6041,8 @@ } }, { - "_id": "677536e0b06e57fd5c0e0fb4", - "_tpl": "5fc4b992187fea44d52edaa9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fb7", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fba", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fbd", - "_tpl": "61712eae6c780c1e710c9a1d", + "_id": "6808bafc364a85cccb04c2d6", + "_tpl": "5cc9b815d7f00c000e2579d6", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6263,91 +6053,7 @@ } }, { - "_id": "677536e1b06e57fd5c0e0fc0", - "_tpl": "61695095d92c473c7702147a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fc3", - "_tpl": "5e569a2e56edd02abe09f280", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fc6", - "_tpl": "5e5699df2161e06ac158df6f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fc9", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fcc", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fcf", - "_tpl": "615d8da4d3a39d50044c10e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fd2", - "_tpl": "5addbfef5acfc400185c2857", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0fd4", + "_id": "6808bafc364a85cccb04c2d8", "_tpl": "6165ac306ef05c2ce828ef74", "parentId": "hideout", "slotId": "hideout", @@ -6365,92 +6071,128 @@ } }, { - "_id": "677536e1b06e57fd5c0e0fd5", + "_id": "6808bafc364a85cccb04c2d9", "_tpl": "571659bb2459771fb2755a12", - "parentId": "677536e1b06e57fd5c0e0fd4", + "parentId": "6808bafc364a85cccb04c2d8", "slotId": "mod_pistol_grip" }, { - "_id": "677536e1b06e57fd5c0e0fd6", + "_id": "6808bafc364a85cccb04c2da", "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "677536e1b06e57fd5c0e0fd4", + "parentId": "6808bafc364a85cccb04c2d8", "slotId": "mod_magazine" }, { - "_id": "677536e1b06e57fd5c0e0fd7", + "_id": "6808bafc364a85cccb04c2db", "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "677536e1b06e57fd5c0e0fd4", + "parentId": "6808bafc364a85cccb04c2d8", "slotId": "mod_reciever" }, { - "_id": "677536e1b06e57fd5c0e0fd8", - "_tpl": "6183b0711cb55961fa0fdcad", - "parentId": "677536e1b06e57fd5c0e0fd7", + "_id": "6808bafc364a85cccb04c2dc", + "_tpl": "618168b350224f204c1da4d8", + "parentId": "6808bafc364a85cccb04c2db", "slotId": "mod_barrel" }, { - "_id": "677536e1b06e57fd5c0e0fd9", + "_id": "6808bafc364a85cccb04c2dd", "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "677536e1b06e57fd5c0e0fd8", + "parentId": "6808bafc364a85cccb04c2dc", "slotId": "mod_muzzle" }, { - "_id": "677536e1b06e57fd5c0e0fda", + "_id": "6808bafc364a85cccb04c2de", "_tpl": "61816fcad92c473c770215cc", - "parentId": "677536e1b06e57fd5c0e0fd8", + "parentId": "6808bafc364a85cccb04c2dc", "slotId": "mod_sight_front" }, { - "_id": "677536e1b06e57fd5c0e0fdb", + "_id": "6808bafc364a85cccb04c2df", "_tpl": "61817865d3a39d50044c13a4", - "parentId": "677536e1b06e57fd5c0e0fd7", + "parentId": "6808bafc364a85cccb04c2db", "slotId": "mod_sight_rear" }, { - "_id": "677536e1b06e57fd5c0e0fdc", + "_id": "6808bafc364a85cccb04c2e0", "_tpl": "61816df1d3a39d50044c139e", - "parentId": "677536e1b06e57fd5c0e0fd7", + "parentId": "6808bafc364a85cccb04c2db", "slotId": "mod_mount_000" }, { - "_id": "677536e1b06e57fd5c0e0fdd", + "_id": "6808bafc364a85cccb04c2e1", "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "677536e1b06e57fd5c0e0fd7", + "parentId": "6808bafc364a85cccb04c2db", "slotId": "mod_mount_001" }, { - "_id": "677536e1b06e57fd5c0e0fde", + "_id": "6808bafc364a85cccb04c2e2", "_tpl": "61825d06d92c473c770215de", - "parentId": "677536e1b06e57fd5c0e0fd4", + "parentId": "6808bafc364a85cccb04c2d8", "slotId": "mod_stock" }, { - "_id": "677536e1b06e57fd5c0e0fdf", + "_id": "6808bafc364a85cccb04c2e3", "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "677536e1b06e57fd5c0e0fde", + "parentId": "6808bafc364a85cccb04c2e2", "slotId": "mod_stock_001" }, { - "_id": "677536e1b06e57fd5c0e0fe0", + "_id": "6808bafc364a85cccb04c2e4", "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "677536e1b06e57fd5c0e0fdf", + "parentId": "6808bafc364a85cccb04c2e3", "slotId": "mod_stock" }, { - "_id": "677536e1b06e57fd5c0e0fe1", + "_id": "6808bafc364a85cccb04c2e5", "_tpl": "61825d24d3a39d50044c13af", - "parentId": "677536e1b06e57fd5c0e0fde", + "parentId": "6808bafc364a85cccb04c2e2", "slotId": "mod_stock_002" }, { - "_id": "677536e1b06e57fd5c0e0fe2", + "_id": "6808bafc364a85cccb04c2e6", "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "677536e1b06e57fd5c0e0fd4", + "parentId": "6808bafc364a85cccb04c2d8", "slotId": "mod_charge" }, { - "_id": "677536e1b06e57fd5c0e0fe5", - "_tpl": "5c86592b2e2216000e69e77c", + "_id": "6808bafc364a85cccb04c2e9", + "_tpl": "5c9a26332e2216001219ea70", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c2ec", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c2ef", + "_tpl": "5ea2a8e200685063ec28c05a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 90, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c2f2", + "_tpl": "5cc701aae4a949000e1ea45c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6461,8 +6203,20 @@ } }, { - "_id": "677536e1b06e57fd5c0e0fe8", - "_tpl": "5ef3553c43cb350a955a7ccb", + "_id": "6808bafc364a85cccb04c2f5", + "_tpl": "5fbb978207e8a97d1f0902d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c2f8", + "_tpl": "5e5699df2161e06ac158df6f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6473,31 +6227,19 @@ } }, { - "_id": "677536e1b06e57fd5c0e0feb", - "_tpl": "5ef32e4d1c1fd62aea6a150d", + "_id": "6808bafc364a85cccb04c2fb", + "_tpl": "61695095d92c473c7702147a", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e1b06e57fd5c0e0fee", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e1b06e57fd5c0e0ff1", + "_id": "6808bafc364a85cccb04c2fe", "_tpl": "5c94bbff86f7747ee735c08f", "parentId": "hideout", "slotId": "hideout", @@ -6509,8 +6251,113 @@ } }, { - "_id": "677536e1b06e57fd5c0e0ff4", - "_tpl": "5b7d645e5acfc400170e2f90", + "_id": "6808bafc364a85cccb04c301", + "_tpl": "615d8dbd290d254f5e6b2ed6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c304", + "_tpl": "6130c43c67085e45ef1405a1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c307", + "_tpl": "5ef369b08cef260c0642acaf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c309", + "_tpl": "6193a720f8ee7e52e42109ed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c30a", + "_tpl": "6194f017ed0429009f543eaa", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafc364a85cccb04c30b", + "_tpl": "6194f5d418a3974e5e7421ef", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafc364a85cccb04c30c", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "6808bafc364a85cccb04c30b", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafc364a85cccb04c30d", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "6808bafc364a85cccb04c30b", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bafc364a85cccb04c30e", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafc364a85cccb04c30f", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_trigger" + }, + { + "_id": "6808bafc364a85cccb04c310", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_hammer" + }, + { + "_id": "6808bafc364a85cccb04c311", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_catch" + }, + { + "_id": "6808bafc364a85cccb04c312", + "_tpl": "619621a4de3cdf1d2614a7a7", + "parentId": "6808bafc364a85cccb04c309", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bafc364a85cccb04c315", + "_tpl": "60658776f2cb2e02a42ace2b", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6521,8 +6368,20 @@ } }, { - "_id": "677536e1b06e57fd5c0e0ff7", - "_tpl": "615d8faecabb9b7ad90f4d5d", + "_id": "6808bafc364a85cccb04c318", + "_tpl": "5eea21647547d6330471b3c9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c31b", + "_tpl": "607ffb988900dc2d9a55b6e4", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6533,20 +6392,20 @@ } }, { - "_id": "677536e2b06e57fd5c0e0ffa", - "_tpl": "615d8f8567085e45ef1409ca", + "_id": "6808bafc364a85cccb04c31e", + "_tpl": "5fb651dc85f90547f674b6f4", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 8, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e2b06e57fd5c0e0ffd", - "_tpl": "615d8eb350224f204c1da1cf", + "_id": "6808bafc364a85cccb04c321", + "_tpl": "6194f1f918a3974e5e7421e4", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6557,7 +6416,91 @@ } }, { - "_id": "677536e2b06e57fd5c0e1000", + "_id": "6808bafc364a85cccb04c324", + "_tpl": "612e0e3c290d254f5e6b291d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c327", + "_tpl": "5c86592b2e2216000e69e77c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafc364a85cccb04c32a", + "_tpl": "5eea217fc64c5d0dfc05712a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c32d", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c330", + "_tpl": "5ef35bc243cb350a955a7ccd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c333", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c336", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c339", "_tpl": "5dcbd6dddbd3d91b3e5468de", "parentId": "hideout", "slotId": "hideout", @@ -6569,11 +6512,104 @@ } }, { - "_id": "677536e2b06e57fd5c0e1003", - "_tpl": "590a3efd86f77437d351a25b", + "_id": "6808bafd364a85cccb04c33b", + "_tpl": "6193a720f8ee7e52e42109ed", "parentId": "hideout", "slotId": "hideout", "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c33c", + "_tpl": "6194eff92d2c397d6600348b", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafd364a85cccb04c33d", + "_tpl": "6194f5722d2c397d6600348f", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafd364a85cccb04c33e", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "6808bafd364a85cccb04c33d", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafd364a85cccb04c33f", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "6808bafd364a85cccb04c33d", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bafd364a85cccb04c340", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafd364a85cccb04c341", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_trigger" + }, + { + "_id": "6808bafd364a85cccb04c342", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_hammer" + }, + { + "_id": "6808bafd364a85cccb04c343", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "6808bafd364a85cccb04c33b", + "slotId": "mod_catch" + }, + { + "_id": "6808bafd364a85cccb04c346", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c349", + "_tpl": "5f63418ef5750b524b45f116", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c34b", + "_tpl": "6165ac306ef05c2ce828ef74", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 1, @@ -6581,7 +6617,115 @@ } }, { - "_id": "677536e2b06e57fd5c0e1005", + "_id": "6808bafd364a85cccb04c34c", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6808bafd364a85cccb04c34b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bafd364a85cccb04c34d", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "6808bafd364a85cccb04c34b", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafd364a85cccb04c34e", + "_tpl": "6165aeedfaa1272e431521e3", + "parentId": "6808bafd364a85cccb04c34b", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafd364a85cccb04c34f", + "_tpl": "6183b0711cb55961fa0fdcad", + "parentId": "6808bafd364a85cccb04c34e", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafd364a85cccb04c350", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "6808bafd364a85cccb04c34f", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bafd364a85cccb04c351", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6808bafd364a85cccb04c34f", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bafd364a85cccb04c352", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6808bafd364a85cccb04c34e", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafd364a85cccb04c353", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6808bafd364a85cccb04c34e", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bafd364a85cccb04c354", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6808bafd364a85cccb04c34e", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bafd364a85cccb04c355", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6808bafd364a85cccb04c34b", + "slotId": "mod_stock" + }, + { + "_id": "6808bafd364a85cccb04c356", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6808bafd364a85cccb04c355", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bafd364a85cccb04c357", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6808bafd364a85cccb04c356", + "slotId": "mod_stock" + }, + { + "_id": "6808bafd364a85cccb04c358", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6808bafd364a85cccb04c355", + "slotId": "mod_stock_002" + }, + { + "_id": "6808bafd364a85cccb04c359", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6808bafd364a85cccb04c34b", + "slotId": "mod_charge" + }, + { + "_id": "6808bafd364a85cccb04c35c", + "_tpl": "5f633f791b231926f2329f13", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c35f", + "_tpl": "5e569a132642e66b0b68015c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c361", "_tpl": "5926bb2186f7744b1c6c6e60", "parentId": "hideout", "slotId": "hideout", @@ -6597,250 +6741,49 @@ } }, { - "_id": "677536e2b06e57fd5c0e1006", + "_id": "6808bafd364a85cccb04c362", "_tpl": "5926c3b286f774640d189b6b", - "parentId": "677536e2b06e57fd5c0e1005", + "parentId": "6808bafd364a85cccb04c361", "slotId": "mod_magazine" }, { - "_id": "677536e2b06e57fd5c0e1007", + "_id": "6808bafd364a85cccb04c363", "_tpl": "5926f2e086f7745aae644231", - "parentId": "677536e2b06e57fd5c0e1005", + "parentId": "6808bafd364a85cccb04c361", "slotId": "mod_reciever" }, { - "_id": "677536e2b06e57fd5c0e1008", + "_id": "6808bafd364a85cccb04c364", "_tpl": "5926f34786f77469195bfe92", - "parentId": "677536e2b06e57fd5c0e1007", + "parentId": "6808bafd364a85cccb04c363", "slotId": "mod_handguard" }, { - "_id": "677536e2b06e57fd5c0e1009", + "_id": "6808bafd364a85cccb04c365", "_tpl": "5926d2be86f774134d668e4e", - "parentId": "677536e2b06e57fd5c0e1007", + "parentId": "6808bafd364a85cccb04c363", "slotId": "mod_sight_rear" }, { - "_id": "677536e2b06e57fd5c0e100a", + "_id": "6808bafd364a85cccb04c366", "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "677536e2b06e57fd5c0e1007", + "parentId": "6808bafd364a85cccb04c363", "slotId": "mod_stock" }, { - "_id": "677536e2b06e57fd5c0e100b", + "_id": "6808bafd364a85cccb04c367", "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "677536e2b06e57fd5c0e1007", + "parentId": "6808bafd364a85cccb04c363", "slotId": "mod_muzzle" }, { - "_id": "677536e2b06e57fd5c0e100c", + "_id": "6808bafd364a85cccb04c368", "_tpl": "5926c32286f774616e42de99", - "parentId": "677536e2b06e57fd5c0e1005", + "parentId": "6808bafd364a85cccb04c361", "slotId": "mod_charge" }, { - "_id": "677536e2b06e57fd5c0e100f", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1012", - "_tpl": "5ef35f46382a846010715a96", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1015", - "_tpl": "5ef1b9f0c64c5d0dfc0571a1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1018", - "_tpl": "5f633f791b231926f2329f13", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e101b", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e101e", - "_tpl": "607ffb988900dc2d9a55b6e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1020", - "_tpl": "6193a720f8ee7e52e42109ed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1021", - "_tpl": "6194f02d9bb3d20b0946d2f0", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_barrel" - }, - { - "_id": "677536e2b06e57fd5c0e1022", - "_tpl": "6194f5a318a3974e5e7421eb", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_reciever" - }, - { - "_id": "677536e2b06e57fd5c0e1023", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "677536e2b06e57fd5c0e1022", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e2b06e57fd5c0e1024", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "677536e2b06e57fd5c0e1022", - "slotId": "mod_sight_front" - }, - { - "_id": "677536e2b06e57fd5c0e1025", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_magazine" - }, - { - "_id": "677536e2b06e57fd5c0e1026", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_trigger" - }, - { - "_id": "677536e2b06e57fd5c0e1027", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_hammer" - }, - { - "_id": "677536e2b06e57fd5c0e1028", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_catch" - }, - { - "_id": "677536e2b06e57fd5c0e1029", - "_tpl": "619624b26db0f2477964e6b0", - "parentId": "677536e2b06e57fd5c0e1020", - "slotId": "mod_mount_000" - }, - { - "_id": "677536e2b06e57fd5c0e102c", - "_tpl": "6194f1f918a3974e5e7421e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e102f", - "_tpl": "5e569a132642e66b0b68015c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1032", - "_tpl": "5ef369b08cef260c0642acaf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1035", - "_tpl": "5fc4b9b17283c4046c5814d7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1038", - "_tpl": "5fbc210bf24b94483f726481", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e103b", + "_id": "6808bafd364a85cccb04c36b", "_tpl": "5ef61964ec7f42238c31e0c1", "parentId": "hideout", "slotId": "hideout", @@ -6852,23 +6795,17 @@ } }, { - "_id": "677536e2b06e57fd5c0e103e", - "_tpl": "59c63b4486f7747afb151c1c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e2b06e57fd5c0e1041", - "_tpl": "619b69037b9de8162902673e", + "_id": "6808bafd364a85cccb04c36d", + "_tpl": "5fc3e272f8b6a877a729eac5", "parentId": "hideout", "slotId": "hideout", "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 1, @@ -6876,20 +6813,44 @@ } }, { - "_id": "677536e2b06e57fd5c0e1044", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bafd364a85cccb04c36e", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_magazine" }, { - "_id": "677536e3b06e57fd5c0e1047", - "_tpl": "6065881d1246154cad35d637", + "_id": "6808bafd364a85cccb04c36f", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_stock" + }, + { + "_id": "6808bafd364a85cccb04c370", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafd364a85cccb04c371", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bafd364a85cccb04c372", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bafd364a85cccb04c373", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "6808bafd364a85cccb04c36d", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bafd364a85cccb04c376", + "_tpl": "5ef1b9f0c64c5d0dfc0571a1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6900,8 +6861,8 @@ } }, { - "_id": "677536e3b06e57fd5c0e104a", - "_tpl": "612e0e55a112697a4b3a66e7", + "_id": "6808bafd364a85cccb04c379", + "_tpl": "61703001d92c473c77021497", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6912,32 +6873,8 @@ } }, { - "_id": "677536e3b06e57fd5c0e104d", - "_tpl": "5b7d64555acfc4001876c8e2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1050", - "_tpl": "5eea217fc64c5d0dfc05712a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1053", - "_tpl": "5f6341043ada5942720e2dc5", + "_id": "6808bafd364a85cccb04c37c", + "_tpl": "5ef35f46382a846010715a96", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -6948,67 +6885,19 @@ } }, { - "_id": "677536e3b06e57fd5c0e1056", - "_tpl": "5fbcc429900b1d5091531dd7", + "_id": "6808bafd364a85cccb04c37f", + "_tpl": "57ffa9f4245977728561e844", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e3b06e57fd5c0e1059", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e105c", - "_tpl": "619b5db699fb192e7430664f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e105f", - "_tpl": "622f039199f4ea1a4d6c9a17", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1062", - "_tpl": "5f63418ef5750b524b45f116", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1065", + "_id": "6808bafd364a85cccb04c382", "_tpl": "5fc0f9b5d724d907e2077d82", "parentId": "hideout", "slotId": "hideout", @@ -7020,7 +6909,103 @@ } }, { - "_id": "677536e3b06e57fd5c0e1067", + "_id": "6808bafd364a85cccb04c385", + "_tpl": "615d8f8567085e45ef1409ca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c388", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c38b", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c38e", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafd364a85cccb04c391", + "_tpl": "5ef35d2ac64c5d0dfc0571b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c394", + "_tpl": "618b9682a3884f56c957ca78", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c397", + "_tpl": "615d8e2f1cb55961fa0fd9a4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c39a", + "_tpl": "615d8e9867085e45ef1409c6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c39c", "_tpl": "62e7c4fba689e8c9c50dfc38", "parentId": "hideout", "slotId": "hideout", @@ -7039,127 +7024,43 @@ } }, { - "_id": "677536e3b06e57fd5c0e1068", + "_id": "6808bafe364a85cccb04c39d", "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "677536e3b06e57fd5c0e1067", + "parentId": "6808bafe364a85cccb04c39c", "slotId": "mod_magazine" }, { - "_id": "677536e3b06e57fd5c0e1069", + "_id": "6808bafe364a85cccb04c39e", "_tpl": "62e7c880f68e7a0676050c7c", - "parentId": "677536e3b06e57fd5c0e1067", + "parentId": "6808bafe364a85cccb04c39c", "slotId": "mod_charge" }, { - "_id": "677536e3b06e57fd5c0e106a", + "_id": "6808bafe364a85cccb04c39f", "_tpl": "62ea7c793043d74a0306e19f", - "parentId": "677536e3b06e57fd5c0e1067", + "parentId": "6808bafe364a85cccb04c39c", "slotId": "mod_reciever" }, { - "_id": "677536e3b06e57fd5c0e106b", + "_id": "6808bafe364a85cccb04c3a0", "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "677536e3b06e57fd5c0e106a", + "parentId": "6808bafe364a85cccb04c39f", "slotId": "mod_barrel" }, { - "_id": "677536e3b06e57fd5c0e106c", + "_id": "6808bafe364a85cccb04c3a1", "_tpl": "630f2872911356c17d06abc5", - "parentId": "677536e3b06e57fd5c0e106b", + "parentId": "6808bafe364a85cccb04c3a0", "slotId": "mod_muzzle_000" }, { - "_id": "677536e3b06e57fd5c0e106d", + "_id": "6808bafe364a85cccb04c3a2", "_tpl": "634e61b0767cb15c4601a877", - "parentId": "677536e3b06e57fd5c0e106b", + "parentId": "6808bafe364a85cccb04c3a0", "slotId": "mod_foregrip" }, { - "_id": "677536e3b06e57fd5c0e1070", - "_tpl": "618b9682a3884f56c957ca78", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1073", - "_tpl": "615d8f5dd92c473c770212ef", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1076", - "_tpl": "615d8dbd290d254f5e6b2ed6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1079", - "_tpl": "612e0e3c290d254f5e6b291d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e107c", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e107f", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1082", - "_tpl": "615d8e2f1cb55961fa0fd9a4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e3b06e57fd5c0e1085", + "_id": "6808bafe364a85cccb04c3a5", "_tpl": "5e21ca18e4d47f0da15e77dd", "parentId": "hideout", "slotId": "hideout", @@ -7171,8 +7072,8 @@ } }, { - "_id": "677536e4b06e57fd5c0e1088", - "_tpl": "5ef35bc243cb350a955a7ccd", + "_id": "6808bafe364a85cccb04c3a8", + "_tpl": "5ef366938cef260c0642acad", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7183,433 +7084,7 @@ } }, { - "_id": "677536e4b06e57fd5c0e108b", - "_tpl": "5eeb2ff5ea4f8b73c827350b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e108e", - "_tpl": "5f633f68f5750b524b45f112", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e1091", - "_tpl": "5fbb978207e8a97d1f0902d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e1094", - "_tpl": "5fc4b97bab884124df0cd5e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e1097", - "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e109a", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e109d", - "_tpl": "5c1d0f4986f7744bb01837fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10a0", - "_tpl": "6065c6e7132d4d12c81fd8e1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10a2", - "_tpl": "6193a720f8ee7e52e42109ed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10a3", - "_tpl": "6194f017ed0429009f543eaa", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_barrel" - }, - { - "_id": "677536e4b06e57fd5c0e10a4", - "_tpl": "6194f5d418a3974e5e7421ef", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_reciever" - }, - { - "_id": "677536e4b06e57fd5c0e10a5", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "677536e4b06e57fd5c0e10a4", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e4b06e57fd5c0e10a6", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "677536e4b06e57fd5c0e10a4", - "slotId": "mod_sight_front" - }, - { - "_id": "677536e4b06e57fd5c0e10a7", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_magazine" - }, - { - "_id": "677536e4b06e57fd5c0e10a8", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_trigger" - }, - { - "_id": "677536e4b06e57fd5c0e10a9", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_hammer" - }, - { - "_id": "677536e4b06e57fd5c0e10aa", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_catch" - }, - { - "_id": "677536e4b06e57fd5c0e10ab", - "_tpl": "619621a4de3cdf1d2614a7a7", - "parentId": "677536e4b06e57fd5c0e10a2", - "slotId": "mod_mount_000" - }, - { - "_id": "677536e4b06e57fd5c0e10ae", - "_tpl": "6065878ac9cf8012264142fd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10b1", - "_tpl": "609bab8b455afd752b2e6138", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10b4", - "_tpl": "6087e2a5232e5a31c233d552", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10b7", - "_tpl": "5ef5d994dfbc9f3c660ded95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10ba", - "_tpl": "5ef35d2ac64c5d0dfc0571b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10bc", - "_tpl": "5fc3e272f8b6a877a729eac5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10bd", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_magazine" - }, - { - "_id": "677536e4b06e57fd5c0e10be", - "_tpl": "5fc3e4ee7283c4046c5814af", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_stock" - }, - { - "_id": "677536e4b06e57fd5c0e10bf", - "_tpl": "5fc3e4a27283c4046c5814ab", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_barrel" - }, - { - "_id": "677536e4b06e57fd5c0e10c0", - "_tpl": "5fc53954f8b6a877a729eaeb", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_mount_000" - }, - { - "_id": "677536e4b06e57fd5c0e10c1", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_mount_001" - }, - { - "_id": "677536e4b06e57fd5c0e10c2", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "677536e4b06e57fd5c0e10bc", - "slotId": "mod_mount_002" - }, - { - "_id": "677536e4b06e57fd5c0e10c5", - "_tpl": "6065880c132d4d12c81fd8da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10c7", - "_tpl": "6193a720f8ee7e52e42109ed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10c8", - "_tpl": "6194eff92d2c397d6600348b", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_barrel" - }, - { - "_id": "677536e4b06e57fd5c0e10c9", - "_tpl": "6194f5722d2c397d6600348f", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_reciever" - }, - { - "_id": "677536e4b06e57fd5c0e10ca", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "677536e4b06e57fd5c0e10c9", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e4b06e57fd5c0e10cb", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "677536e4b06e57fd5c0e10c9", - "slotId": "mod_sight_front" - }, - { - "_id": "677536e4b06e57fd5c0e10cc", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_magazine" - }, - { - "_id": "677536e4b06e57fd5c0e10cd", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_trigger" - }, - { - "_id": "677536e4b06e57fd5c0e10ce", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_hammer" - }, - { - "_id": "677536e4b06e57fd5c0e10cf", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "677536e4b06e57fd5c0e10c7", - "slotId": "mod_catch" - }, - { - "_id": "677536e4b06e57fd5c0e10d2", - "_tpl": "61703001d92c473c77021497", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e4b06e57fd5c0e10d5", - "_tpl": "615d8fd3290d254f5e6b2edc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e10d8", - "_tpl": "615d8e9867085e45ef1409c6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e10db", - "_tpl": "5b363dea5acfc4771e1c5e7e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e10de", - "_tpl": "5fb651dc85f90547f674b6f4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e10e1", - "_tpl": "6065dc8a132d4d12c81fd8e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e10e4", + "_id": "6808bafe364a85cccb04c3ab", "_tpl": "618ba92152ecee1505530bd3", "parentId": "hideout", "slotId": "hideout", @@ -7621,8 +7096,44 @@ } }, { - "_id": "677536e5b06e57fd5c0e10e7", - "_tpl": "6130c43c67085e45ef1405a1", + "_id": "6808bafe364a85cccb04c3ae", + "_tpl": "5a718f958dc32e00094b97e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3b1", + "_tpl": "6065c6e7132d4d12c81fd8e1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3b4", + "_tpl": "609bab8b455afd752b2e6138", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3b7", + "_tpl": "59c63b4486f7747afb151c1c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7633,7 +7144,496 @@ } }, { - "_id": "677536e5b06e57fd5c0e10ea", + "_id": "6808bafe364a85cccb04c3ba", + "_tpl": "5fbcc429900b1d5091531dd7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3bd", + "_tpl": "615d8f5dd92c473c770212ef", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3c0", + "_tpl": "615d8faecabb9b7ad90f4d5d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3c2", + "_tpl": "6193a720f8ee7e52e42109ed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3c3", + "_tpl": "6194f02d9bb3d20b0946d2f0", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_barrel" + }, + { + "_id": "6808bafe364a85cccb04c3c4", + "_tpl": "6194f5a318a3974e5e7421eb", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_reciever" + }, + { + "_id": "6808bafe364a85cccb04c3c5", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "6808bafe364a85cccb04c3c4", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bafe364a85cccb04c3c6", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "6808bafe364a85cccb04c3c4", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bafe364a85cccb04c3c7", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_magazine" + }, + { + "_id": "6808bafe364a85cccb04c3c8", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_trigger" + }, + { + "_id": "6808bafe364a85cccb04c3c9", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_hammer" + }, + { + "_id": "6808bafe364a85cccb04c3ca", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_catch" + }, + { + "_id": "6808bafe364a85cccb04c3cb", + "_tpl": "619624b26db0f2477964e6b0", + "parentId": "6808bafe364a85cccb04c3c2", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bafe364a85cccb04c3ce", + "_tpl": "619b5db699fb192e7430664f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3d1", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 180, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3d4", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3d7", + "_tpl": "622f039199f4ea1a4d6c9a17", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3da", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3dd", + "_tpl": "619b69037b9de8162902673e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3e0", + "_tpl": "5b7d64555acfc4001876c8e2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3e3", + "_tpl": "5ef5d994dfbc9f3c660ded95", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3e6", + "_tpl": "5f6341043ada5942720e2dc5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bafe364a85cccb04c3e9", + "_tpl": "615d8eb350224f204c1da1cf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3ec", + "_tpl": "5addbfef5acfc400185c2857", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3ef", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3f2", + "_tpl": "5c1d0f4986f7744bb01837fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3f5", + "_tpl": "5b7d645e5acfc400170e2f90", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3f8", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3fb", + "_tpl": "5f633f68f5750b524b45f112", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c3fe", + "_tpl": "5e569a2e56edd02abe09f280", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c401", + "_tpl": "6087e2a5232e5a31c233d552", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c404", + "_tpl": "5ef3553c43cb350a955a7ccb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c407", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c40a", + "_tpl": "5ef32e4d1c1fd62aea6a150d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c40d", + "_tpl": "615d8fd3290d254f5e6b2edc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c410", + "_tpl": "61712eae6c780c1e710c9a1d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c413", + "_tpl": "612e0e55a112697a4b3a66e7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c416", + "_tpl": "5fc4b9b17283c4046c5814d7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c419", + "_tpl": "5fc4b97bab884124df0cd5e3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c41c", + "_tpl": "6065878ac9cf8012264142fd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c41f", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c422", + "_tpl": "5fc4b992187fea44d52edaa9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c425", + "_tpl": "6065881d1246154cad35d637", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c428", + "_tpl": "615d8da4d3a39d50044c10e8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c42b", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baff364a85cccb04c431", "_tpl": "630f27f04f3f6281050b94d7", "parentId": "hideout", "slotId": "hideout", @@ -7645,19 +7645,227 @@ } }, { - "_id": "677536e5b06e57fd5c0e10ed", - "_tpl": "655df24fdf80b12750626d0a", + "_id": "6808bb00364a85cccb04c434", + "_tpl": "5c920e902e221644f31c3c99", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e5b06e57fd5c0e10ef", + "_id": "6808bb00364a85cccb04c437", + "_tpl": "627254cc9c563e6e442c398f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c43a", + "_tpl": "628a83c29179c324ed269508", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c43d", + "_tpl": "626a74340be03179a165e30c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c440", + "_tpl": "6516b129609aaf354b34b3a8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c443", + "_tpl": "6389c7f115805221fb410466", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c446", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c449", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c44c", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c456", + "_tpl": "579204f224597773d619e051", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb00364a85cccb04c45d", + "_tpl": "628a7b23b0f75035732dd565", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c460", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c463", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c466", + "_tpl": "5afd7ded5acfc40017541f5e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c46c", + "_tpl": "637f589af5ef8c33840d36d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c46f", + "_tpl": "6389c7750ef44505c87f5996", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c472", + "_tpl": "62669bccdb9ebb4daa44cd14", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c475", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c477", "_tpl": "58948c8e86f77409493f7266", "parentId": "hideout", "slotId": "hideout", @@ -7673,86 +7881,86 @@ } }, { - "_id": "677536e5b06e57fd5c0e10f0", + "_id": "6808bb00364a85cccb04c478", "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "677536e5b06e57fd5c0e10ef", + "parentId": "6808bb00364a85cccb04c477", "slotId": "mod_pistol_grip" }, { - "_id": "677536e5b06e57fd5c0e10f1", + "_id": "6808bb00364a85cccb04c479", "_tpl": "5894a5b586f77426d2590767", - "parentId": "677536e5b06e57fd5c0e10ef", + "parentId": "6808bb00364a85cccb04c477", "slotId": "mod_reciever" }, { - "_id": "677536e5b06e57fd5c0e10f2", + "_id": "6808bb00364a85cccb04c47a", "_tpl": "5c5db5c62e22160012542255", - "parentId": "677536e5b06e57fd5c0e10f1", + "parentId": "6808bb00364a85cccb04c479", "slotId": "mod_barrel" }, { - "_id": "677536e5b06e57fd5c0e10f3", + "_id": "6808bb00364a85cccb04c47b", "_tpl": "5c7e8fab2e22165df16b889b", - "parentId": "677536e5b06e57fd5c0e10f2", + "parentId": "6808bb00364a85cccb04c47a", "slotId": "mod_muzzle" }, { - "_id": "677536e5b06e57fd5c0e10f4", + "_id": "6808bb00364a85cccb04c47c", "_tpl": "5c5db63a2e2216000f1b284a", - "parentId": "677536e5b06e57fd5c0e10f1", + "parentId": "6808bb00364a85cccb04c479", "slotId": "mod_handguard" }, { - "_id": "677536e5b06e57fd5c0e10f5", + "_id": "6808bb00364a85cccb04c47d", "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536e5b06e57fd5c0e10f4", + "parentId": "6808bb00364a85cccb04c47c", "slotId": "mod_mount_000" }, { - "_id": "677536e5b06e57fd5c0e10f6", + "_id": "6808bb00364a85cccb04c47e", "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536e5b06e57fd5c0e10f4", + "parentId": "6808bb00364a85cccb04c47c", "slotId": "mod_mount_002" }, { - "_id": "677536e5b06e57fd5c0e10f7", + "_id": "6808bb00364a85cccb04c47f", "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "677536e5b06e57fd5c0e10f4", + "parentId": "6808bb00364a85cccb04c47c", "slotId": "mod_foregrip" }, { - "_id": "677536e5b06e57fd5c0e10f8", + "_id": "6808bb00364a85cccb04c480", "_tpl": "5894a73486f77426d259076c", - "parentId": "677536e5b06e57fd5c0e10f4", + "parentId": "6808bb00364a85cccb04c47c", "slotId": "mod_sight_front" }, { - "_id": "677536e5b06e57fd5c0e10f9", + "_id": "6808bb00364a85cccb04c481", "_tpl": "5894a81786f77427140b8347", - "parentId": "677536e5b06e57fd5c0e10f1", + "parentId": "6808bb00364a85cccb04c479", "slotId": "mod_sight_rear" }, { - "_id": "677536e5b06e57fd5c0e10fa", + "_id": "6808bb00364a85cccb04c482", "_tpl": "58949edd86f77409483e16a9", - "parentId": "677536e5b06e57fd5c0e10ef", + "parentId": "6808bb00364a85cccb04c477", "slotId": "mod_charge" }, { - "_id": "677536e5b06e57fd5c0e10fb", + "_id": "6808bb00364a85cccb04c483", "_tpl": "5894a05586f774094708ef75", - "parentId": "677536e5b06e57fd5c0e10ef", + "parentId": "6808bb00364a85cccb04c477", "slotId": "mod_magazine" }, { - "_id": "677536e5b06e57fd5c0e10fc", + "_id": "6808bb00364a85cccb04c484", "_tpl": "5c5db6ee2e221600113fba54", - "parentId": "677536e5b06e57fd5c0e10ef", + "parentId": "6808bb00364a85cccb04c477", "slotId": "mod_stock" }, { - "_id": "677536e5b06e57fd5c0e1102", - "_tpl": "628a6678ccaab13006640e49", + "_id": "6808bb00364a85cccb04c487", + "_tpl": "653ed19d22e1ef3d9002c328", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7763,8 +7971,66 @@ } }, { - "_id": "677536e5b06e57fd5c0e1105", - "_tpl": "637f589af5ef8c33840d36d3", + "_id": "6808bb00364a85cccb04c48a", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c48d", + "_tpl": "5a788068c5856700137e4c8f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb00364a85cccb04c48f", + "_tpl": "66015072e9f84d5680039678", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb00364a85cccb04c490", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "6808bb00364a85cccb04c48f", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb01364a85cccb04c496", + "_tpl": "5efaf417aeb21837e749c7f2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c499", + "_tpl": "648ae3e356c6310a830fc291", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7775,7 +8041,79 @@ } }, { - "_id": "677536e5b06e57fd5c0e1108", + "_id": "6808bb01364a85cccb04c49c", + "_tpl": "655df24fdf80b12750626d0a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c49f", + "_tpl": "65266fd43341ed9aa903dd56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4a2", + "_tpl": "626becf9582c3e319310b837", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4a5", + "_tpl": "655dccfdbdcc6b5df71382b6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4a8", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4ab", + "_tpl": "653ecd065a1690d9d90491e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4ae", "_tpl": "6389c85357baa773a825b356", "parentId": "hideout", "slotId": "hideout", @@ -7787,7 +8125,167 @@ } }, { - "_id": "677536e5b06e57fd5c0e110a", + "_id": "6808bb01364a85cccb04c4b1", + "_tpl": "5a33a8ebc4a282000c5a950d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4c2", + "_tpl": "618428466ef05c2ce828f218", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4d3", + "_tpl": "62811fa609427b40ab14e765", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4d6", + "_tpl": "5b4391a586f7745321235ab2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4d8", + "_tpl": "628a60ae6b1d481ff772e9c8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb01364a85cccb04c4d9", + "_tpl": "628a83c29179c324ed269508", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb01364a85cccb04c4da", + "_tpl": "628a66b41d5e41750e314f34", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb01364a85cccb04c4db", + "_tpl": "628a664bccaab13006640e47", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb01364a85cccb04c4dc", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb01364a85cccb04c4dd", + "_tpl": "628a7b23b0f75035732dd565", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb01364a85cccb04c4de", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb01364a85cccb04c4df", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808bb01364a85cccb04c4de", + "slotId": "mod_stock" + }, + { + "_id": "6808bb01364a85cccb04c4e0", + "_tpl": "628a85ee6b1d481ff772e9d5", + "parentId": "6808bb01364a85cccb04c4df", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb01364a85cccb04c4e1", + "_tpl": "59d625f086f774661516605d", + "parentId": "6808bb01364a85cccb04c4d8", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb01364a85cccb04c4e4", + "_tpl": "63969c9019971040b005049b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4e7", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4ea", + "_tpl": "6601546f86889319850bd566", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb01364a85cccb04c4ec", "_tpl": "65268d8ecb944ff1e90ea385", "parentId": "hideout", "slotId": "hideout", @@ -7806,161 +8304,49 @@ } }, { - "_id": "677536e5b06e57fd5c0e110b", + "_id": "6808bb01364a85cccb04c4ed", "_tpl": "6513f0a194c72326990a3868", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_magazine" }, { - "_id": "677536e5b06e57fd5c0e110c", + "_id": "6808bb01364a85cccb04c4ee", "_tpl": "6513f1798cb24472490ee331", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_stock" }, { - "_id": "677536e5b06e57fd5c0e110d", + "_id": "6808bb01364a85cccb04c4ef", "_tpl": "6513f13a8cb24472490ee32f", - "parentId": "677536e5b06e57fd5c0e110c", + "parentId": "6808bb01364a85cccb04c4ee", "slotId": "mod_pistolgrip" }, { - "_id": "677536e5b06e57fd5c0e110e", + "_id": "6808bb01364a85cccb04c4f0", "_tpl": "65266fd43341ed9aa903dd56", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_barrel" }, { - "_id": "677536e5b06e57fd5c0e110f", + "_id": "6808bb01364a85cccb04c4f1", "_tpl": "6513f05a94c72326990a3866", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_handguard" }, { - "_id": "677536e5b06e57fd5c0e1110", + "_id": "6808bb01364a85cccb04c4f2", "_tpl": "6513f153e63f29908d0ffaba", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_sight_rear" }, { - "_id": "677536e5b06e57fd5c0e1111", + "_id": "6808bb01364a85cccb04c4f3", "_tpl": "57486e672459770abd687134", - "parentId": "677536e5b06e57fd5c0e110a", + "parentId": "6808bb01364a85cccb04c4ec", "slotId": "mod_scope" }, { - "_id": "677536e5b06e57fd5c0e1114", - "_tpl": "628a7b23b0f75035732dd565", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e1117", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e111a", - "_tpl": "653ecd065a1690d9d90491e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e111d", - "_tpl": "62811fa609427b40ab14e765", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e1120", - "_tpl": "5c920e902e221644f31c3c99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e5b06e57fd5c0e1123", - "_tpl": "5a788068c5856700137e4c8f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e112d", - "_tpl": "579204f224597773d619e051", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e6b06e57fd5c0e1134", - "_tpl": "648ae3e356c6310a830fc291", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1137", - "_tpl": "628a83c29179c324ed269508", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e113a", + "_id": "6808bb01364a85cccb04c4f6", "_tpl": "5b099a9d5acfc47a8607efe7", "parentId": "hideout", "slotId": "hideout", @@ -7972,8 +8358,8 @@ } }, { - "_id": "677536e6b06e57fd5c0e113d", - "_tpl": "6516b129609aaf354b34b3a8", + "_id": "6808bb01364a85cccb04c4f9", + "_tpl": "6698c90829e062525d0ad8ad", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -7984,32 +8370,8 @@ } }, { - "_id": "677536e6b06e57fd5c0e1140", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1143", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1149", - "_tpl": "626becf9582c3e319310b837", + "_id": "6808bb01364a85cccb04c4fc", + "_tpl": "67112695fe5c8bf33f02476d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8020,545 +8382,7 @@ } }, { - "_id": "677536e6b06e57fd5c0e114c", - "_tpl": "6389c7750ef44505c87f5996", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e114f", - "_tpl": "6601546f86889319850bd566", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1152", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1155", - "_tpl": "63969c9019971040b005049b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1158", - "_tpl": "5b4391a586f7745321235ab2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e115b", - "_tpl": "5afd7ded5acfc40017541f5e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e115e", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e6b06e57fd5c0e1161", - "_tpl": "653ed19d22e1ef3d9002c328", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e1163", - "_tpl": "66015072e9f84d5680039678", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e7b06e57fd5c0e1164", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "677536e7b06e57fd5c0e1163", - "slotId": "mod_magazine" - }, - { - "_id": "677536e7b06e57fd5c0e1166", - "_tpl": "628a60ae6b1d481ff772e9c8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e7b06e57fd5c0e1167", - "_tpl": "628a83c29179c324ed269508", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_gas_block" - }, - { - "_id": "677536e7b06e57fd5c0e1168", - "_tpl": "628a66b41d5e41750e314f34", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_muzzle" - }, - { - "_id": "677536e7b06e57fd5c0e1169", - "_tpl": "628a664bccaab13006640e47", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536e7b06e57fd5c0e116a", - "_tpl": "628a665a86cbd9750d2ff5e5", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_reciever" - }, - { - "_id": "677536e7b06e57fd5c0e116b", - "_tpl": "628a7b23b0f75035732dd565", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e7b06e57fd5c0e116c", - "_tpl": "628a6678ccaab13006640e49", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_stock_000" - }, - { - "_id": "677536e7b06e57fd5c0e116d", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536e7b06e57fd5c0e116c", - "slotId": "mod_stock" - }, - { - "_id": "677536e7b06e57fd5c0e116e", - "_tpl": "628a85ee6b1d481ff772e9d5", - "parentId": "677536e7b06e57fd5c0e116d", - "slotId": "mod_stock_000" - }, - { - "_id": "677536e7b06e57fd5c0e116f", - "_tpl": "59d625f086f774661516605d", - "parentId": "677536e7b06e57fd5c0e1166", - "slotId": "mod_magazine" - }, - { - "_id": "677536e7b06e57fd5c0e1172", - "_tpl": "626a74340be03179a165e30c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e1175", - "_tpl": "6389c7f115805221fb410466", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e1178", - "_tpl": "5efaf417aeb21837e749c7f2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e117b", - "_tpl": "655dccfdbdcc6b5df71382b6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e117e", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e118f", - "_tpl": "618428466ef05c2ce828f218", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11a0", - "_tpl": "627254cc9c563e6e442c398f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11a3", - "_tpl": "62669bccdb9ebb4daa44cd14", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11a6", - "_tpl": "5a33a8ebc4a282000c5a950d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11a9", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11ac", - "_tpl": "65266fd43341ed9aa903dd56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11b2", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11b5", - "_tpl": "5c0009510db834001966907f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e7b06e57fd5c0e11b7", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e7b06e57fd5c0e11b8", - "_tpl": "5d15cf3bd7ad1a67e71518b2", - "parentId": "677536e7b06e57fd5c0e11b7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536e7b06e57fd5c0e11b9", - "_tpl": "59bfe68886f7746004266202", - "parentId": "677536e7b06e57fd5c0e11b7", - "slotId": "mod_reciever" - }, - { - "_id": "677536e7b06e57fd5c0e11ba", - "_tpl": "63d3d44a2a49307baf09386d", - "parentId": "677536e7b06e57fd5c0e11b9", - "slotId": "mod_barrel" - }, - { - "_id": "677536e7b06e57fd5c0e11bb", - "_tpl": "63d3ce281fe77d0f2801859e", - "parentId": "677536e7b06e57fd5c0e11ba", - "slotId": "mod_gas_block" - }, - { - "_id": "677536e7b06e57fd5c0e11bc", - "_tpl": "5c6d710d2e22165df16b81e7", - "parentId": "677536e7b06e57fd5c0e11ba", - "slotId": "mod_muzzle" - }, - { - "_id": "677536e7b06e57fd5c0e11bd", - "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "677536e7b06e57fd5c0e11bc", - "slotId": "mod_muzzle" - }, - { - "_id": "677536e7b06e57fd5c0e11be", - "_tpl": "5ea16ada09aa976f2e7a51be", - "parentId": "677536e7b06e57fd5c0e11b9", - "slotId": "mod_handguard" - }, - { - "_id": "677536e7b06e57fd5c0e11bf", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "677536e7b06e57fd5c0e11be", - "slotId": "mod_sight_front" - }, - { - "_id": "677536e7b06e57fd5c0e11c0", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "677536e7b06e57fd5c0e11be", - "slotId": "mod_foregrip" - }, - { - "_id": "677536e7b06e57fd5c0e11c1", - "_tpl": "655df24fdf80b12750626d0a", - "parentId": "677536e7b06e57fd5c0e11c0", - "slotId": "mod_foregrip" - }, - { - "_id": "677536e7b06e57fd5c0e11c2", - "_tpl": "6269545d0e57f218e4548ca2", - "parentId": "677536e7b06e57fd5c0e11be", - "slotId": "mod_mount_002" - }, - { - "_id": "677536e7b06e57fd5c0e11c3", - "_tpl": "626becf9582c3e319310b837", - "parentId": "677536e7b06e57fd5c0e11c2", - "slotId": "mod_tactical" - }, - { - "_id": "677536e7b06e57fd5c0e11c4", - "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "677536e7b06e57fd5c0e11b9", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e7b06e57fd5c0e11c5", - "_tpl": "6567e751a715f85433025998", - "parentId": "677536e7b06e57fd5c0e11b9", - "slotId": "mod_scope" - }, - { - "_id": "677536e7b06e57fd5c0e11c6", - "_tpl": "618ba27d9008e4636a67f61d", - "parentId": "677536e7b06e57fd5c0e11c5", - "slotId": "mod_scope" - }, - { - "_id": "677536e7b06e57fd5c0e11c7", - "_tpl": "5c793fc42e221600114ca25d", - "parentId": "677536e7b06e57fd5c0e11b7", - "slotId": "mod_stock" - }, - { - "_id": "677536e7b06e57fd5c0e11c8", - "_tpl": "5d135ecbd7ad1a21c176542e", - "parentId": "677536e7b06e57fd5c0e11c7", - "slotId": "mod_stock_000" - }, - { - "_id": "677536e7b06e57fd5c0e11c9", - "_tpl": "5ea16d4d5aad6446a939753d", - "parentId": "677536e7b06e57fd5c0e11b7", - "slotId": "mod_charge" - }, - { - "_id": "677536e7b06e57fd5c0e11ca", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "677536e7b06e57fd5c0e11b7", - "slotId": "mod_magazine" - }, - { - "_id": "677536e7b06e57fd5c0e11cc", - "_tpl": "64637076203536ad5600c990", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e7b06e57fd5c0e11cd", - "_tpl": "646371779f5f0ea59a04c204", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_pistolgrip" - }, - { - "_id": "677536e7b06e57fd5c0e11ce", - "_tpl": "646371faf2404ab67905c8e9", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_barrel" - }, - { - "_id": "677536e7b06e57fd5c0e11cf", - "_tpl": "6492efb8cfcf7c89e701abf3", - "parentId": "677536e7b06e57fd5c0e11ce", - "slotId": "mod_muzzle" - }, - { - "_id": "677536e7b06e57fd5c0e11d0", - "_tpl": "646372518610c40fc20204e8", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_magazine" - }, - { - "_id": "677536e7b06e57fd5c0e11d1", - "_tpl": "646371a9f2404ab67905c8e6", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_stock" - }, - { - "_id": "677536e7b06e57fd5c0e11d2", - "_tpl": "6464d870bb2c580352070cc4", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_bipod" - }, - { - "_id": "677536e7b06e57fd5c0e11d3", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "677536e7b06e57fd5c0e11cc", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e7b06e57fd5c0e11d6", + "_id": "6808bb01364a85cccb04c4ff", "_tpl": "674d5e287075e056160e0176", "parentId": "hideout", "slotId": "hideout", @@ -8570,108 +8394,8 @@ } }, { - "_id": "677536e7b06e57fd5c0e11d8", - "_tpl": "576165642459773c7a400233", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e7b06e57fd5c0e11d9", - "_tpl": "6086b5731246154cad35d6c7", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_handguard" - }, - { - "_id": "677536e7b06e57fd5c0e11da", - "_tpl": "6086b5392535c57a13424d70", - "parentId": "677536e7b06e57fd5c0e11d9", - "slotId": "mod_mount_001" - }, - { - "_id": "677536e7b06e57fd5c0e11db", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "677536e7b06e57fd5c0e11da", - "slotId": "mod_tactical" - }, - { - "_id": "677536e7b06e57fd5c0e11dc", - "_tpl": "59d790f486f77403cb06aec6", - "parentId": "677536e7b06e57fd5c0e11db", - "slotId": "mod_flashlight" - }, - { - "_id": "677536e7b06e57fd5c0e11dd", - "_tpl": "6087e663132d4d12c81fd96b", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536e7b06e57fd5c0e11de", - "_tpl": "59fb137a86f7740adb646af1", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_muzzle" - }, - { - "_id": "677536e7b06e57fd5c0e11df", - "_tpl": "57616c112459773cce774d66", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_reciever" - }, - { - "_id": "677536e7b06e57fd5c0e11e0", - "_tpl": "58272b842459774abc128d50", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536e7b06e57fd5c0e11e1", - "_tpl": "655f13e0a246670fb0373245", - "parentId": "677536e7b06e57fd5c0e11e0", - "slotId": "mod_scope" - }, - { - "_id": "677536e7b06e57fd5c0e11e2", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_stock" - }, - { - "_id": "677536e7b06e57fd5c0e11e3", - "_tpl": "5b222d405acfc400153af4fe", - "parentId": "677536e7b06e57fd5c0e11e2", - "slotId": "mod_stock" - }, - { - "_id": "677536e7b06e57fd5c0e11e4", - "_tpl": "5a0c59791526d8dba737bba7", - "parentId": "677536e7b06e57fd5c0e11e3", - "slotId": "mod_stock_000" - }, - { - "_id": "677536e7b06e57fd5c0e11e5", - "_tpl": "5cf8f3b0d7f00c00217872ef", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_magazine" - }, - { - "_id": "677536e7b06e57fd5c0e11e6", - "_tpl": "6130ca3fd92c473c77020dbd", - "parentId": "677536e7b06e57fd5c0e11d8", - "slotId": "mod_charge" - }, - { - "_id": "677536e8b06e57fd5c0e11e9", - "_tpl": "669fa4d97a09bc295603b496", + "_id": "6808bb01364a85cccb04c502", + "_tpl": "661f8995c341ea101e0d33e8", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8682,8 +8406,8 @@ } }, { - "_id": "677536e8b06e57fd5c0e11ec", - "_tpl": "668ea3f68117e4968b0cff4a", + "_id": "6808bb02364a85cccb04c505", + "_tpl": "668670f52a2296a8d909963c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8694,8 +8418,8 @@ } }, { - "_id": "677536e8b06e57fd5c0e11ef", - "_tpl": "66ffeab4ab3336cc01063833", + "_id": "6808bb02364a85cccb04c508", + "_tpl": "668031bde3e7eb26e8004cd7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8706,8 +8430,8 @@ } }, { - "_id": "677536e8b06e57fd5c0e11f2", - "_tpl": "66ffc246a81a4f85e70d4d06", + "_id": "6808bb02364a85cccb04c50b", + "_tpl": "669cf78806768ff39504fc1c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8718,7 +8442,7 @@ } }, { - "_id": "677536e8b06e57fd5c0e11f5", + "_id": "6808bb02364a85cccb04c50e", "_tpl": "671126b049e181972e0681fa", "parentId": "hideout", "slotId": "hideout", @@ -8730,31 +8454,137 @@ } }, { - "_id": "677536e8b06e57fd5c0e11f8", - "_tpl": "6761770e48fa5c377e06fc3c", + "_id": "6808bb02364a85cccb04c511", + "_tpl": "66ffea456be19fd81e0ef742", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e8b06e57fd5c0e11fb", - "_tpl": "5b7be4895acfc400170e2dd5", + "_id": "6808bb02364a85cccb04c514", + "_tpl": "5addbf175acfc408fb13965b", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e8b06e57fd5c0e11fd", + "_id": "6808bb02364a85cccb04c517", + "_tpl": "668672b8c99550c6fd0f0b29", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb02364a85cccb04c51a", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb02364a85cccb04c51c", + "_tpl": "674d6121c09f69dfb201a888", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb02364a85cccb04c51d", + "_tpl": "63f4da90f31d4a33b87bd054", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb02364a85cccb04c51e", + "_tpl": "674d5e287075e056160e0176", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb02364a85cccb04c51f", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb02364a85cccb04c520", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_scope" + }, + { + "_id": "6808bb02364a85cccb04c521", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6808bb02364a85cccb04c520", + "slotId": "mod_scope" + }, + { + "_id": "6808bb02364a85cccb04c522", + "_tpl": "5b0e794b5acfc47a877359b2", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb02364a85cccb04c523", + "_tpl": "5c0548ae0db834001966a3c2", + "parentId": "6808bb02364a85cccb04c51c", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb02364a85cccb04c526", + "_tpl": "5c0009510db834001966907f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb02364a85cccb04c529", + "_tpl": "66992f7d9950f5f4cd0602a8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb02364a85cccb04c52b", "_tpl": "669fa39b48fc9f8db6035a0c", "parentId": "hideout", "slotId": "hideout", @@ -8770,44 +8600,44 @@ } }, { - "_id": "677536e8b06e57fd5c0e11fe", + "_id": "6808bb02364a85cccb04c52c", "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "677536e8b06e57fd5c0e11fd", + "parentId": "6808bb02364a85cccb04c52b", "slotId": "mod_barrel" }, { - "_id": "677536e8b06e57fd5c0e11ff", + "_id": "6808bb02364a85cccb04c52d", "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "677536e8b06e57fd5c0e11fe", + "parentId": "6808bb02364a85cccb04c52c", "slotId": "mod_sight_front" }, { - "_id": "677536e8b06e57fd5c0e1200", + "_id": "6808bb02364a85cccb04c52e", "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "677536e8b06e57fd5c0e11fd", + "parentId": "6808bb02364a85cccb04c52b", "slotId": "mod_pistolgrip" }, { - "_id": "677536e8b06e57fd5c0e1201", + "_id": "6808bb02364a85cccb04c52f", "_tpl": "669fa4d97a09bc295603b496", - "parentId": "677536e8b06e57fd5c0e11fd", + "parentId": "6808bb02364a85cccb04c52b", "slotId": "mod_reciever" }, { - "_id": "677536e8b06e57fd5c0e1202", + "_id": "6808bb02364a85cccb04c530", "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "677536e8b06e57fd5c0e1201", + "parentId": "6808bb02364a85cccb04c52f", "slotId": "mod_sight_rear" }, { - "_id": "677536e8b06e57fd5c0e1203", + "_id": "6808bb02364a85cccb04c531", "_tpl": "668fe5c5f35310705d02b696", - "parentId": "677536e8b06e57fd5c0e11fd", + "parentId": "6808bb02364a85cccb04c52b", "slotId": "mod_magazine" }, { - "_id": "677536e8b06e57fd5c0e1206", - "_tpl": "668fe5d42a0f85eea407cc16", + "_id": "6808bb02364a85cccb04c534", + "_tpl": "66ffea06132225f0fe061394", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8818,20 +8648,8 @@ } }, { - "_id": "677536e8b06e57fd5c0e1209", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e120c", - "_tpl": "6698c90829e062525d0ad8ad", + "_id": "6808bb02364a85cccb04c537", + "_tpl": "668fe5ec4315934ba10c6f96", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8842,31 +8660,7 @@ } }, { - "_id": "677536e8b06e57fd5c0e120f", - "_tpl": "6699313af74fef4dfd0b04f6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e1212", - "_tpl": "668031705014e211b4078046", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e1215", + "_id": "6808bb02364a85cccb04c53a", "_tpl": "665edce564fb556f940ab32a", "parentId": "hideout", "slotId": "hideout", @@ -8878,86 +8672,20 @@ } }, { - "_id": "677536e8b06e57fd5c0e121d", - "_tpl": "66bdc28a0b603c26902b2011", + "_id": "6808bb02364a85cccb04c53d", + "_tpl": "668fe62ac62660a5d8071446", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 100, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536e8b06e57fd5c0e121e", - "_tpl": "66bdc2ea8cbd597c9c2f9360", - "parentId": "677536e8b06e57fd5c0e121d", - "slotId": "Helmet_top" - }, - { - "_id": "677536e8b06e57fd5c0e121f", - "_tpl": "66bdc2e25f17154509115d1e", - "parentId": "677536e8b06e57fd5c0e121d", - "slotId": "Helmet_back" - }, - { - "_id": "677536e8b06e57fd5c0e1220", - "_tpl": "66bdc2d051aa8c345646d03f", - "parentId": "677536e8b06e57fd5c0e121d", - "slotId": "helmet_eyes" - }, - { - "_id": "677536e8b06e57fd5c0e1221", - "_tpl": "66bdc2d9408f1e66eb4fd957", - "parentId": "677536e8b06e57fd5c0e121d", - "slotId": "helmet_jaw" - }, - { - "_id": "677536e8b06e57fd5c0e1222", - "_tpl": "66bdc2c90b603c26902b2018", - "parentId": "677536e8b06e57fd5c0e121d", - "slotId": "Helmet_ears" - }, - { - "_id": "677536e8b06e57fd5c0e122b", - "_tpl": "67600929bd0a0549d70993f6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e122f", - "_tpl": "66992725ae08c5c29e0c4f9a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e1232", - "_tpl": "676176d362e0497044079f4c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e8b06e57fd5c0e1235", - "_tpl": "6698c89bfbc8142e60024b0e", + "_id": "6808bb02364a85cccb04c540", + "_tpl": "668ea3f68117e4968b0cff4a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8968,8 +8696,8 @@ } }, { - "_id": "677536e8b06e57fd5c0e1238", - "_tpl": "6699272a3c4fda6471005cc1", + "_id": "6808bb02364a85cccb04c543", + "_tpl": "668031705014e211b4078046", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -8980,31 +8708,7 @@ } }, { - "_id": "677536e9b06e57fd5c0e123b", - "_tpl": "668032ba74b8f2050c0b917d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e123e", - "_tpl": "66993733f74fef4dfd0b04ff", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1241", + "_id": "6808bb02364a85cccb04c546", "_tpl": "676176a162e0497044079f46", "parentId": "hideout", "slotId": "hideout", @@ -9016,8 +8720,8 @@ } }, { - "_id": "677536e9b06e57fd5c0e1244", - "_tpl": "665d5d9e338229cfd6078da1", + "_id": "6808bb02364a85cccb04c549", + "_tpl": "669fa4d97a09bc295603b496", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -9028,7 +8732,221 @@ } }, { - "_id": "677536e9b06e57fd5c0e1246", + "_id": "6808bb02364a85cccb04c54c", + "_tpl": "6698c9e07356874dfe0a0b88", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb02364a85cccb04c54e", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb02364a85cccb04c54f", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "parentId": "6808bb02364a85cccb04c54e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb02364a85cccb04c550", + "_tpl": "59bfe68886f7746004266202", + "parentId": "6808bb02364a85cccb04c54e", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb02364a85cccb04c551", + "_tpl": "63d3d44a2a49307baf09386d", + "parentId": "6808bb02364a85cccb04c550", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb02364a85cccb04c552", + "_tpl": "63d3ce281fe77d0f2801859e", + "parentId": "6808bb02364a85cccb04c551", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb02364a85cccb04c553", + "_tpl": "5c6d710d2e22165df16b81e7", + "parentId": "6808bb02364a85cccb04c551", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb02364a85cccb04c554", + "_tpl": "5ea17bbc09aa976f2e7a51cd", + "parentId": "6808bb02364a85cccb04c553", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb02364a85cccb04c555", + "_tpl": "5ea16ada09aa976f2e7a51be", + "parentId": "6808bb02364a85cccb04c550", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb02364a85cccb04c556", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "6808bb02364a85cccb04c555", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb02364a85cccb04c557", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6808bb02364a85cccb04c555", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb02364a85cccb04c558", + "_tpl": "655df24fdf80b12750626d0a", + "parentId": "6808bb02364a85cccb04c557", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb02364a85cccb04c559", + "_tpl": "6269545d0e57f218e4548ca2", + "parentId": "6808bb02364a85cccb04c555", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bb02364a85cccb04c55a", + "_tpl": "626becf9582c3e319310b837", + "parentId": "6808bb02364a85cccb04c559", + "slotId": "mod_tactical" + }, + { + "_id": "6808bb02364a85cccb04c55b", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "6808bb02364a85cccb04c550", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb02364a85cccb04c55c", + "_tpl": "6567e751a715f85433025998", + "parentId": "6808bb02364a85cccb04c550", + "slotId": "mod_scope" + }, + { + "_id": "6808bb02364a85cccb04c55d", + "_tpl": "618ba27d9008e4636a67f61d", + "parentId": "6808bb02364a85cccb04c55c", + "slotId": "mod_scope" + }, + { + "_id": "6808bb02364a85cccb04c55e", + "_tpl": "5c793fc42e221600114ca25d", + "parentId": "6808bb02364a85cccb04c54e", + "slotId": "mod_stock" + }, + { + "_id": "6808bb02364a85cccb04c55f", + "_tpl": "5d135ecbd7ad1a21c176542e", + "parentId": "6808bb02364a85cccb04c55e", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb02364a85cccb04c560", + "_tpl": "5ea16d4d5aad6446a939753d", + "parentId": "6808bb02364a85cccb04c54e", + "slotId": "mod_charge" + }, + { + "_id": "6808bb02364a85cccb04c561", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "6808bb02364a85cccb04c54e", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb03364a85cccb04c564", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c567", + "_tpl": "66d98233302686954b0c6f81", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c56a", + "_tpl": "66ffc246a81a4f85e70d4d06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c56d", + "_tpl": "669a6a4a525be1d2d004b8eb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c570", + "_tpl": "6699272a3c4fda6471005cc1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c573", + "_tpl": "6761770e48fa5c377e06fc3c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c575", "_tpl": "66992b349950f5f4cd06029f", "parentId": "hideout", "slotId": "hideout", @@ -9050,382 +8968,61 @@ } }, { - "_id": "677536e9b06e57fd5c0e1247", + "_id": "6808bb03364a85cccb04c576", "_tpl": "668031ffe3e7eb26e8004cdd", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_magazine" }, { - "_id": "677536e9b06e57fd5c0e1248", + "_id": "6808bb03364a85cccb04c577", "_tpl": "6698c8ab29e062525d0ad8ab", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_barrel" }, { - "_id": "677536e9b06e57fd5c0e1249", + "_id": "6808bb03364a85cccb04c578", "_tpl": "66993733f74fef4dfd0b04ff", - "parentId": "677536e9b06e57fd5c0e1248", + "parentId": "6808bb03364a85cccb04c577", "slotId": "mod_muzzle" }, { - "_id": "677536e9b06e57fd5c0e124a", + "_id": "6808bb03364a85cccb04c579", "_tpl": "66992f4db9f31ddda10dd1c8", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_stock" }, { - "_id": "677536e9b06e57fd5c0e124b", + "_id": "6808bb03364a85cccb04c57a", "_tpl": "5894a13e86f7742405482982", - "parentId": "677536e9b06e57fd5c0e124a", + "parentId": "6808bb03364a85cccb04c579", "slotId": "mod_stock" }, { - "_id": "677536e9b06e57fd5c0e124c", + "_id": "6808bb03364a85cccb04c57b", "_tpl": "66992f7d9950f5f4cd0602a8", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_mount_001" }, { - "_id": "677536e9b06e57fd5c0e124d", + "_id": "6808bb03364a85cccb04c57c", "_tpl": "5cc9c20cd7f00c001336c65d", - "parentId": "677536e9b06e57fd5c0e124c", + "parentId": "6808bb03364a85cccb04c57b", "slotId": "mod_tactical" }, { - "_id": "677536e9b06e57fd5c0e124e", + "_id": "6808bb03364a85cccb04c57d", "_tpl": "6698c8c736ba38d29101770b", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_handguard" }, { - "_id": "677536e9b06e57fd5c0e124f", + "_id": "6808bb03364a85cccb04c57e", "_tpl": "669946c157df3e2b4e0a0dc5", - "parentId": "677536e9b06e57fd5c0e1246", + "parentId": "6808bb03364a85cccb04c575", "slotId": "mod_pistol_grip" }, { - "_id": "677536e9b06e57fd5c0e1252", - "_tpl": "66ffe811f5d758d71101e89a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1255", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1258", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e125b", - "_tpl": "669924a69950f5f4cd060295", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e125e", - "_tpl": "6699370c57df3e2b4e0a0dab", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1260", - "_tpl": "674d6121c09f69dfb201a888", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536e9b06e57fd5c0e1261", - "_tpl": "63f4da90f31d4a33b87bd054", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536e9b06e57fd5c0e1262", - "_tpl": "674d5e287075e056160e0176", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_handguard" - }, - { - "_id": "677536e9b06e57fd5c0e1263", - "_tpl": "628a665a86cbd9750d2ff5e5", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_reciever" - }, - { - "_id": "677536e9b06e57fd5c0e1264", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_scope" - }, - { - "_id": "677536e9b06e57fd5c0e1265", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "677536e9b06e57fd5c0e1264", - "slotId": "mod_scope" - }, - { - "_id": "677536e9b06e57fd5c0e1266", - "_tpl": "5b0e794b5acfc47a877359b2", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_stock_000" - }, - { - "_id": "677536e9b06e57fd5c0e1267", - "_tpl": "5c0548ae0db834001966a3c2", - "parentId": "677536e9b06e57fd5c0e1260", - "slotId": "mod_magazine" - }, - { - "_id": "677536e9b06e57fd5c0e126a", - "_tpl": "676177df1f08ed5e8800b7ae", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e126d", - "_tpl": "66992f4db9f31ddda10dd1c8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1270", - "_tpl": "668672b8c99550c6fd0f0b29", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1273", - "_tpl": "66ffea06132225f0fe061394", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1276", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1279", - "_tpl": "5ef369b08cef260c0642acaf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e127c", - "_tpl": "66993149558c59581e03c028", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e127f", - "_tpl": "669a6a4a525be1d2d004b8eb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1282", - "_tpl": "66ffea456be19fd81e0ef742", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536e9b06e57fd5c0e1285", - "_tpl": "66d98233302686954b0c6f81", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e1288", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e128b", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e128e", - "_tpl": "668031bde3e7eb26e8004cd7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e1291", - "_tpl": "66d98233302686954b0c6f81", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e1294", - "_tpl": "5a6b592c8dc32e00094b97bf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e1297", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e129a", - "_tpl": "6686717ffb75ee4a5e02eb19", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e129d", + "_id": "6808bb03364a85cccb04c581", "_tpl": "57347ca924597744596b4e71", "parentId": "hideout", "slotId": "hideout", @@ -9437,429 +9034,7 @@ } }, { - "_id": "677536eab06e57fd5c0e129f", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536eab06e57fd5c0e12a0", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536eab06e57fd5c0e12a1", - "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_handguard" - }, - { - "_id": "677536eab06e57fd5c0e12a2", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536eab06e57fd5c0e12a1", - "slotId": "mod_mount_001" - }, - { - "_id": "677536eab06e57fd5c0e12a3", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "677536eab06e57fd5c0e12a2", - "slotId": "mod_tactical" - }, - { - "_id": "677536eab06e57fd5c0e12a4", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "677536eab06e57fd5c0e12a1", - "slotId": "mod_sight_front" - }, - { - "_id": "677536eab06e57fd5c0e12a5", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "677536eab06e57fd5c0e12a1", - "slotId": "mod_mount_000" - }, - { - "_id": "677536eab06e57fd5c0e12a6", - "_tpl": "655dccfdbdcc6b5df71382b6", - "parentId": "677536eab06e57fd5c0e12a5", - "slotId": "mod_foregrip" - }, - { - "_id": "677536eab06e57fd5c0e12a7", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_barrel" - }, - { - "_id": "677536eab06e57fd5c0e12a8", - "_tpl": "612e0d3767085e45ef14057f", - "parentId": "677536eab06e57fd5c0e12a7", - "slotId": "mod_muzzle" - }, - { - "_id": "677536eab06e57fd5c0e12a9", - "_tpl": "63877c99e785640d436458ea", - "parentId": "677536eab06e57fd5c0e12a8", - "slotId": "mod_muzzle" - }, - { - "_id": "677536eab06e57fd5c0e12aa", - "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536eab06e57fd5c0e12ab", - "_tpl": "558022b54bdc2dac148b458d", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_scope" - }, - { - "_id": "677536eab06e57fd5c0e12ac", - "_tpl": "65293c7a17e14363030ad308", - "parentId": "677536eab06e57fd5c0e129f", - "slotId": "mod_magazine" - }, - { - "_id": "677536eab06e57fd5c0e12ae", - "_tpl": "5fbcc1d9016cce60e8341ab3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536eab06e57fd5c0e12af", - "_tpl": "6113cc78d3a39d50044c065a", - "parentId": "677536eab06e57fd5c0e12ae", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536eab06e57fd5c0e12b0", - "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "677536eab06e57fd5c0e12ae", - "slotId": "mod_reciever" - }, - { - "_id": "677536eab06e57fd5c0e12b1", - "_tpl": "5fbbfabed5cb881a7363194e", - "parentId": "677536eab06e57fd5c0e12b0", - "slotId": "mod_barrel" - }, - { - "_id": "677536eab06e57fd5c0e12b2", - "_tpl": "5fbc210bf24b94483f726481", - "parentId": "677536eab06e57fd5c0e12b1", - "slotId": "mod_gas_block" - }, - { - "_id": "677536eab06e57fd5c0e12b3", - "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "677536eab06e57fd5c0e12b1", - "slotId": "mod_muzzle" - }, - { - "_id": "677536eab06e57fd5c0e12b4", - "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "677536eab06e57fd5c0e12b3", - "slotId": "mod_muzzle_000" - }, - { - "_id": "677536eab06e57fd5c0e12b5", - "_tpl": "5fbe760793164a5b6278efc8", - "parentId": "677536eab06e57fd5c0e12b3", - "slotId": "mod_muzzle_001" - }, - { - "_id": "677536eab06e57fd5c0e12b6", - "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "677536eab06e57fd5c0e12b0", - "slotId": "mod_handguard" - }, - { - "_id": "677536eab06e57fd5c0e12b7", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "677536eab06e57fd5c0e12b6", - "slotId": "mod_foregrip" - }, - { - "_id": "677536eab06e57fd5c0e12b8", - "_tpl": "5c791e872e2216001219c40a", - "parentId": "677536eab06e57fd5c0e12b7", - "slotId": "mod_foregrip" - }, - { - "_id": "677536eab06e57fd5c0e12b9", - "_tpl": "5fc0fa362770a0045c59c677", - "parentId": "677536eab06e57fd5c0e12b6", - "slotId": "mod_sight_front" - }, - { - "_id": "677536eab06e57fd5c0e12ba", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "677536eab06e57fd5c0e12b6", - "slotId": "mod_mount_000" - }, - { - "_id": "677536eab06e57fd5c0e12bb", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "677536eab06e57fd5c0e12ba", - "slotId": "mod_tactical" - }, - { - "_id": "677536eab06e57fd5c0e12bc", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "677536eab06e57fd5c0e12bb", - "slotId": "mod_flashlight" - }, - { - "_id": "677536eab06e57fd5c0e12bd", - "_tpl": "5fc0fa957283c4046c58147e", - "parentId": "677536eab06e57fd5c0e12b0", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536eab06e57fd5c0e12be", - "_tpl": "655f13e0a246670fb0373245", - "parentId": "677536eab06e57fd5c0e12b0", - "slotId": "mod_scope" - }, - { - "_id": "677536eab06e57fd5c0e12bf", - "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "677536eab06e57fd5c0e12ae", - "slotId": "mod_charge" - }, - { - "_id": "677536eab06e57fd5c0e12c0", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "677536eab06e57fd5c0e12ae", - "slotId": "mod_magazine" - }, - { - "_id": "677536eab06e57fd5c0e12c1", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "677536eab06e57fd5c0e12ae", - "slotId": "mod_stock" - }, - { - "_id": "677536eab06e57fd5c0e12c2", - "_tpl": "5c793fb92e221644f31bfb64", - "parentId": "677536eab06e57fd5c0e12c1", - "slotId": "mod_stock" - }, - { - "_id": "677536eab06e57fd5c0e12c3", - "_tpl": "6516e971a3d4c6497930b450", - "parentId": "677536eab06e57fd5c0e12c2", - "slotId": "mod_stock_000" - }, - { - "_id": "677536eab06e57fd5c0e12c4", - "_tpl": "6516e9d7e239bd0c487e3766", - "parentId": "677536eab06e57fd5c0e12c3", - "slotId": "mod_stock_000" - }, - { - "_id": "677536eab06e57fd5c0e12c7", - "_tpl": "6698c8f4710a4525fe0e9e57", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12ca", - "_tpl": "66992f7d9950f5f4cd0602a8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12cd", - "_tpl": "668670f52a2296a8d909963c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12d0", - "_tpl": "661f8995c341ea101e0d33e8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12d3", - "_tpl": "65ae4f57e343f0acc00824da", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12d6", - "_tpl": "6764139c44b3c96e7b0e2f7b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12d9", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536eab06e57fd5c0e12dc", - "_tpl": "66a0d1e0ed648d72fe064d06", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12df", - "_tpl": "6698c9e07356874dfe0a0b88", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12e2", - "_tpl": "6698c8b7710a4525fe0e9e55", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12e5", - "_tpl": "67112695fe5c8bf33f02476d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12e8", - "_tpl": "57347ca924597744596b4e71", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12eb", - "_tpl": "5addbf175acfc408fb13965b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12ee", - "_tpl": "6644920d49817dc7d505ca71", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12f1", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536ebb06e57fd5c0e12f4", + "_id": "6808bb03364a85cccb04c584", "_tpl": "5c00076d0db834001d23ee1f", "parentId": "hideout", "slotId": "hideout", @@ -9871,7 +9046,352 @@ } }, { - "_id": "677536ebb06e57fd5c0e12f6", + "_id": "6808bb03364a85cccb04c58c", + "_tpl": "66bdc28a0b603c26902b2011", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c58d", + "_tpl": "66bdc2ea8cbd597c9c2f9360", + "parentId": "6808bb03364a85cccb04c58c", + "slotId": "Helmet_top" + }, + { + "_id": "6808bb03364a85cccb04c58e", + "_tpl": "66bdc2e25f17154509115d1e", + "parentId": "6808bb03364a85cccb04c58c", + "slotId": "Helmet_back" + }, + { + "_id": "6808bb03364a85cccb04c58f", + "_tpl": "66bdc2d051aa8c345646d03f", + "parentId": "6808bb03364a85cccb04c58c", + "slotId": "helmet_eyes" + }, + { + "_id": "6808bb03364a85cccb04c590", + "_tpl": "66bdc2d9408f1e66eb4fd957", + "parentId": "6808bb03364a85cccb04c58c", + "slotId": "helmet_jaw" + }, + { + "_id": "6808bb03364a85cccb04c591", + "_tpl": "66bdc2c90b603c26902b2018", + "parentId": "6808bb03364a85cccb04c58c", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bb03364a85cccb04c59a", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c59d", + "_tpl": "6698c89bfbc8142e60024b0e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5a0", + "_tpl": "66a0d1e0ed648d72fe064d06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5a3", + "_tpl": "66ffe811f5d758d71101e89a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5a6", + "_tpl": "6698c8b7710a4525fe0e9e55", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5a9", + "_tpl": "5ef369b08cef260c0642acaf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5ac", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5af", + "_tpl": "6764139c44b3c96e7b0e2f7b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5b2", + "_tpl": "66992725ae08c5c29e0c4f9a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5b5", + "_tpl": "66992f4db9f31ddda10dd1c8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5b8", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5bb", + "_tpl": "676176d362e0497044079f4c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5be", + "_tpl": "66993149558c59581e03c028", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 19900, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb03364a85cccb04c5c1", + "_tpl": "6761765f1f08ed5e8800b7a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5c4", + "_tpl": "6644920d49817dc7d505ca71", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5c7", + "_tpl": "6699313af74fef4dfd0b04f6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5ca", + "_tpl": "669924a69950f5f4cd060295", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5cc", + "_tpl": "576165642459773c7a400233", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb04364a85cccb04c5cd", + "_tpl": "6086b5731246154cad35d6c7", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb04364a85cccb04c5ce", + "_tpl": "6086b5392535c57a13424d70", + "parentId": "6808bb04364a85cccb04c5cd", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bb04364a85cccb04c5cf", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "6808bb04364a85cccb04c5ce", + "slotId": "mod_tactical" + }, + { + "_id": "6808bb04364a85cccb04c5d0", + "_tpl": "59d790f486f77403cb06aec6", + "parentId": "6808bb04364a85cccb04c5cf", + "slotId": "mod_flashlight" + }, + { + "_id": "6808bb04364a85cccb04c5d1", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb04364a85cccb04c5d2", + "_tpl": "59fb137a86f7740adb646af1", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb04364a85cccb04c5d3", + "_tpl": "57616c112459773cce774d66", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb04364a85cccb04c5d4", + "_tpl": "58272b842459774abc128d50", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb04364a85cccb04c5d5", + "_tpl": "655f13e0a246670fb0373245", + "parentId": "6808bb04364a85cccb04c5d4", + "slotId": "mod_scope" + }, + { + "_id": "6808bb04364a85cccb04c5d6", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_stock" + }, + { + "_id": "6808bb04364a85cccb04c5d7", + "_tpl": "5b222d405acfc400153af4fe", + "parentId": "6808bb04364a85cccb04c5d6", + "slotId": "mod_stock" + }, + { + "_id": "6808bb04364a85cccb04c5d8", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "6808bb04364a85cccb04c5d7", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb04364a85cccb04c5d9", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb04364a85cccb04c5da", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "6808bb04364a85cccb04c5cc", + "slotId": "mod_charge" + }, + { + "_id": "6808bb04364a85cccb04c5dc", "_tpl": "5447a9cd4bdc2dbd208b4567", "parentId": "hideout", "slotId": "hideout", @@ -9887,128 +9407,128 @@ } }, { - "_id": "677536ebb06e57fd5c0e12f7", + "_id": "6808bb04364a85cccb04c5dd", "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "677536ebb06e57fd5c0e12f6", + "parentId": "6808bb04364a85cccb04c5dc", "slotId": "mod_pistol_grip" }, { - "_id": "677536ebb06e57fd5c0e12f8", + "_id": "6808bb04364a85cccb04c5de", "_tpl": "59bfe68886f7746004266202", - "parentId": "677536ebb06e57fd5c0e12f6", + "parentId": "6808bb04364a85cccb04c5dc", "slotId": "mod_reciever" }, { - "_id": "677536ebb06e57fd5c0e12f9", + "_id": "6808bb04364a85cccb04c5df", "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "677536ebb06e57fd5c0e12f8", + "parentId": "6808bb04364a85cccb04c5de", "slotId": "mod_barrel" }, { - "_id": "677536ebb06e57fd5c0e12fa", + "_id": "6808bb04364a85cccb04c5e0", "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "677536ebb06e57fd5c0e12f9", + "parentId": "6808bb04364a85cccb04c5df", "slotId": "mod_gas_block" }, { - "_id": "677536ebb06e57fd5c0e12fb", + "_id": "6808bb04364a85cccb04c5e1", "_tpl": "626667e87379c44d557b7550", - "parentId": "677536ebb06e57fd5c0e12f9", + "parentId": "6808bb04364a85cccb04c5df", "slotId": "mod_muzzle" }, { - "_id": "677536ebb06e57fd5c0e12fc", + "_id": "6808bb04364a85cccb04c5e2", "_tpl": "5c9a25172e2216000f20314e", - "parentId": "677536ebb06e57fd5c0e12f8", + "parentId": "6808bb04364a85cccb04c5de", "slotId": "mod_handguard" }, { - "_id": "677536ebb06e57fd5c0e12fd", + "_id": "6808bb04364a85cccb04c5e3", "_tpl": "638f2003bbd47aeb9e0ff637", - "parentId": "677536ebb06e57fd5c0e12fc", + "parentId": "6808bb04364a85cccb04c5e2", "slotId": "mod_handguard" }, { - "_id": "677536ebb06e57fd5c0e12fe", + "_id": "6808bb04364a85cccb04c5e4", "_tpl": "591af28e86f77414a27a9e1d", - "parentId": "677536ebb06e57fd5c0e12fd", + "parentId": "6808bb04364a85cccb04c5e3", "slotId": "mod_foregrip" }, { - "_id": "677536ebb06e57fd5c0e12ff", + "_id": "6808bb04364a85cccb04c5e5", "_tpl": "6267c6396b642f77f56f5c1c", - "parentId": "677536ebb06e57fd5c0e12fc", + "parentId": "6808bb04364a85cccb04c5e2", "slotId": "mod_tactical_001" }, { - "_id": "677536ebb06e57fd5c0e1300", + "_id": "6808bb04364a85cccb04c5e6", "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "677536ebb06e57fd5c0e12ff", + "parentId": "6808bb04364a85cccb04c5e5", "slotId": "mod_flashlight" }, { - "_id": "677536ebb06e57fd5c0e1301", + "_id": "6808bb04364a85cccb04c5e7", "_tpl": "5c17804b2e2216152006c02f", - "parentId": "677536ebb06e57fd5c0e12fc", + "parentId": "6808bb04364a85cccb04c5e2", "slotId": "mod_sight_front" }, { - "_id": "677536ebb06e57fd5c0e1302", + "_id": "6808bb04364a85cccb04c5e8", "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "677536ebb06e57fd5c0e12fc", + "parentId": "6808bb04364a85cccb04c5e2", "slotId": "mod_scope" }, { - "_id": "677536ebb06e57fd5c0e1303", + "_id": "6808bb04364a85cccb04c5e9", "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "677536ebb06e57fd5c0e1302", + "parentId": "6808bb04364a85cccb04c5e8", "slotId": "mod_scope" }, { - "_id": "677536ebb06e57fd5c0e1304", + "_id": "6808bb04364a85cccb04c5ea", "_tpl": "58d268fc86f774111273f8c2", - "parentId": "677536ebb06e57fd5c0e1303", + "parentId": "6808bb04364a85cccb04c5e9", "slotId": "mod_scope" }, { - "_id": "677536ebb06e57fd5c0e1305", + "_id": "6808bb04364a85cccb04c5eb", "_tpl": "6478641c19d732620e045e17", - "parentId": "677536ebb06e57fd5c0e12f8", + "parentId": "6808bb04364a85cccb04c5de", "slotId": "mod_scope" }, { - "_id": "677536ebb06e57fd5c0e1306", + "_id": "6808bb04364a85cccb04c5ec", "_tpl": "5c1780312e221602b66cc189", - "parentId": "677536ebb06e57fd5c0e12f8", + "parentId": "6808bb04364a85cccb04c5de", "slotId": "mod_sight_rear" }, { - "_id": "677536ebb06e57fd5c0e1307", + "_id": "6808bb04364a85cccb04c5ed", "_tpl": "638de3603a1a4031d8260b8c", - "parentId": "677536ebb06e57fd5c0e12f6", + "parentId": "6808bb04364a85cccb04c5dc", "slotId": "mod_stock" }, { - "_id": "677536ebb06e57fd5c0e1308", + "_id": "6808bb04364a85cccb04c5ee", "_tpl": "6529370c405a5f51dd023db8", - "parentId": "677536ebb06e57fd5c0e1307", + "parentId": "6808bb04364a85cccb04c5ed", "slotId": "mod_stock_000" }, { - "_id": "677536ebb06e57fd5c0e1309", + "_id": "6808bb04364a85cccb04c5ef", "_tpl": "5f633ff5c444ce7e3c30a006", - "parentId": "677536ebb06e57fd5c0e12f6", + "parentId": "6808bb04364a85cccb04c5dc", "slotId": "mod_charge" }, { - "_id": "677536ebb06e57fd5c0e130a", + "_id": "6808bb04364a85cccb04c5f0", "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "677536ebb06e57fd5c0e12f6", + "parentId": "6808bb04364a85cccb04c5dc", "slotId": "mod_magazine" }, { - "_id": "677536ebb06e57fd5c0e130d", - "_tpl": "66867310f3734a938b077f79", + "_id": "6808bb04364a85cccb04c5f3", + "_tpl": "668fe5d42a0f85eea407cc16", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10019,8 +9539,32 @@ } }, { - "_id": "677536ebb06e57fd5c0e1310", - "_tpl": "669cf78806768ff39504fc1c", + "_id": "6808bb04364a85cccb04c5f6", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5f9", + "_tpl": "66993733f74fef4dfd0b04ff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c5fc", + "_tpl": "668032ba74b8f2050c0b917d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -10031,19 +9575,31 @@ } }, { - "_id": "677536ebb06e57fd5c0e1313", - "_tpl": "6761765f1f08ed5e8800b7a6", + "_id": "6808bb04364a85cccb04c5ff", + "_tpl": "57347ca924597744596b4e71", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536ebb06e57fd5c0e1316", + "_id": "6808bb04364a85cccb04c602", + "_tpl": "6686717ffb75ee4a5e02eb19", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c605", "_tpl": "675307301f7c19a9780f2668", "parentId": "hideout", "slotId": "hideout", @@ -10055,7 +9611,31 @@ } }, { - "_id": "677536ebb06e57fd5c0e1319", + "_id": "6808bb04364a85cccb04c608", + "_tpl": "6699370c57df3e2b4e0a0dab", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c60b", + "_tpl": "67600929bd0a0549d70993f6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c60f", "_tpl": "5a6b585a8dc32e5a9c28b4f1", "parentId": "hideout", "slotId": "hideout", @@ -10066,6 +9646,426 @@ "BuyRestrictionCurrent": 0 } }, + { + "_id": "6808bb04364a85cccb04c612", + "_tpl": "66d98233302686954b0c6f81", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c614", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb04364a85cccb04c615", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb04364a85cccb04c616", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb04364a85cccb04c617", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808bb04364a85cccb04c616", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bb04364a85cccb04c618", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "6808bb04364a85cccb04c617", + "slotId": "mod_tactical" + }, + { + "_id": "6808bb04364a85cccb04c619", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "6808bb04364a85cccb04c616", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb04364a85cccb04c61a", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6808bb04364a85cccb04c616", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bb04364a85cccb04c61b", + "_tpl": "655dccfdbdcc6b5df71382b6", + "parentId": "6808bb04364a85cccb04c61a", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb04364a85cccb04c61c", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb04364a85cccb04c61d", + "_tpl": "612e0d3767085e45ef14057f", + "parentId": "6808bb04364a85cccb04c61c", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb04364a85cccb04c61e", + "_tpl": "63877c99e785640d436458ea", + "parentId": "6808bb04364a85cccb04c61d", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb04364a85cccb04c61f", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb04364a85cccb04c620", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_scope" + }, + { + "_id": "6808bb04364a85cccb04c621", + "_tpl": "65293c7a17e14363030ad308", + "parentId": "6808bb04364a85cccb04c614", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb04364a85cccb04c624", + "_tpl": "66ffeab4ab3336cc01063833", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c627", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c62a", + "_tpl": "665d5d9e338229cfd6078da1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c62d", + "_tpl": "6698c8f4710a4525fe0e9e57", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c630", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb04364a85cccb04c633", + "_tpl": "5a6b592c8dc32e00094b97bf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb05364a85cccb04c635", + "_tpl": "64637076203536ad5600c990", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb05364a85cccb04c636", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6808bb05364a85cccb04c637", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb05364a85cccb04c638", + "_tpl": "6492efb8cfcf7c89e701abf3", + "parentId": "6808bb05364a85cccb04c637", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb05364a85cccb04c639", + "_tpl": "646372518610c40fc20204e8", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb05364a85cccb04c63a", + "_tpl": "646371a9f2404ab67905c8e6", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_stock" + }, + { + "_id": "6808bb05364a85cccb04c63b", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_bipod" + }, + { + "_id": "6808bb05364a85cccb04c63c", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "6808bb05364a85cccb04c635", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb05364a85cccb04c63e", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bb05364a85cccb04c63f", + "_tpl": "6113cc78d3a39d50044c065a", + "parentId": "6808bb05364a85cccb04c63e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bb05364a85cccb04c640", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "6808bb05364a85cccb04c63e", + "slotId": "mod_reciever" + }, + { + "_id": "6808bb05364a85cccb04c641", + "_tpl": "5fbbfabed5cb881a7363194e", + "parentId": "6808bb05364a85cccb04c640", + "slotId": "mod_barrel" + }, + { + "_id": "6808bb05364a85cccb04c642", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "6808bb05364a85cccb04c641", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bb05364a85cccb04c643", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "6808bb05364a85cccb04c641", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bb05364a85cccb04c644", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "6808bb05364a85cccb04c643", + "slotId": "mod_muzzle_000" + }, + { + "_id": "6808bb05364a85cccb04c645", + "_tpl": "5fbe760793164a5b6278efc8", + "parentId": "6808bb05364a85cccb04c643", + "slotId": "mod_muzzle_001" + }, + { + "_id": "6808bb05364a85cccb04c646", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "6808bb05364a85cccb04c640", + "slotId": "mod_handguard" + }, + { + "_id": "6808bb05364a85cccb04c647", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "6808bb05364a85cccb04c646", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb05364a85cccb04c648", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "6808bb05364a85cccb04c647", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bb05364a85cccb04c649", + "_tpl": "5fc0fa362770a0045c59c677", + "parentId": "6808bb05364a85cccb04c646", + "slotId": "mod_sight_front" + }, + { + "_id": "6808bb05364a85cccb04c64a", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6808bb05364a85cccb04c646", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bb05364a85cccb04c64b", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "6808bb05364a85cccb04c64a", + "slotId": "mod_tactical" + }, + { + "_id": "6808bb05364a85cccb04c64c", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "6808bb05364a85cccb04c64b", + "slotId": "mod_flashlight" + }, + { + "_id": "6808bb05364a85cccb04c64d", + "_tpl": "5fc0fa957283c4046c58147e", + "parentId": "6808bb05364a85cccb04c640", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bb05364a85cccb04c64e", + "_tpl": "655f13e0a246670fb0373245", + "parentId": "6808bb05364a85cccb04c640", + "slotId": "mod_scope" + }, + { + "_id": "6808bb05364a85cccb04c64f", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "6808bb05364a85cccb04c63e", + "slotId": "mod_charge" + }, + { + "_id": "6808bb05364a85cccb04c650", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "6808bb05364a85cccb04c63e", + "slotId": "mod_magazine" + }, + { + "_id": "6808bb05364a85cccb04c651", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "6808bb05364a85cccb04c63e", + "slotId": "mod_stock" + }, + { + "_id": "6808bb05364a85cccb04c652", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "6808bb05364a85cccb04c651", + "slotId": "mod_stock" + }, + { + "_id": "6808bb05364a85cccb04c653", + "_tpl": "6516e971a3d4c6497930b450", + "parentId": "6808bb05364a85cccb04c652", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb05364a85cccb04c654", + "_tpl": "6516e9d7e239bd0c487e3766", + "parentId": "6808bb05364a85cccb04c653", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bb05364a85cccb04c657", + "_tpl": "676177df1f08ed5e8800b7ae", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb05364a85cccb04c65a", + "_tpl": "65ae4f57e343f0acc00824da", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bb05364a85cccb04c65d", + "_tpl": "66867310f3734a938b077f79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, { "_id": "64a2e6f09b9ad2b93b0cab9c", "_tpl": "62e7e7bbe6da9612f743f1e0", @@ -10108,127 +10108,7 @@ } ], "barter_scheme": { - "677536c8b06e57fd5c0e09a1": [ - [ - { - "count": 4500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c8b06e57fd5c0e09a4": [ - [ - { - "count": 14904, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c8b06e57fd5c0e09a7": [ - [ - { - "count": 14.31, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09aa": [ - [ - { - "count": 84.2, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09ad": [ - [ - { - "count": 172.77, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09b0": [ - [ - { - "count": 42.26, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09b3": [ - [ - { - "count": 13.67, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09b6": [ - [ - { - "count": 75.53, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09b9": [ - [ - { - "count": 1, - "_tpl": "575146b724597720a27126d5" - } - ] - ], - "677536c8b06e57fd5c0e09bc": [ - [ - { - "count": 9.77, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09bf": [ - [ - { - "count": 33.86, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09c1": [ - [ - { - "count": 8, - "_tpl": "5734795124597738002c6176" - } - ] - ], - "677536c8b06e57fd5c0e09cc": [ - [ - { - "count": 287.69, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09cf": [ - [ - { - "count": 331.25, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09d2": [ - [ - { - "count": 151.27, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09d5": [ + "6808baec364a85cccb04bce5": [ [ { "count": 38, @@ -10236,31 +10116,15 @@ } ] ], - "677536c8b06e57fd5c0e09d8": [ + "6808baec364a85cccb04bce8": [ [ { - "count": 48.69, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c8b06e57fd5c0e09db": [ - [ - { - "count": 2149, + "count": 4500, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c9b06e57fd5c0e09de": [ - [ - { - "count": 85.08, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e09e1": [ + "6808baec364a85cccb04bceb": [ [ { "count": 60.27, @@ -10268,63 +10132,7 @@ } ] ], - "677536c9b06e57fd5c0e09e4": [ - [ - { - "count": 15985, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c9b06e57fd5c0e09e7": [ - [ - { - "count": 106.18, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e09ea": [ - [ - { - "count": 25.3, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e09ed": [ - [ - { - "count": 30.87, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e09f0": [ - [ - { - "count": 3, - "_tpl": "5c06779c86f77426e00dd782" - } - ] - ], - "677536c9b06e57fd5c0e09f3": [ - [ - { - "count": 1476, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c9b06e57fd5c0e09f6": [ - [ - { - "count": 2904, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c9b06e57fd5c0e09f9": [ + "6808baec364a85cccb04bcee": [ [ { "count": 15.04, @@ -10332,7 +10140,7 @@ } ] ], - "677536c9b06e57fd5c0e09fc": [ + "6808baec364a85cccb04bcf1": [ [ { "count": 29.74, @@ -10340,23 +10148,23 @@ } ] ], - "677536c9b06e57fd5c0e09ff": [ + "6808baec364a85cccb04bcf4": [ [ { - "count": 2799, + "count": 2904, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c9b06e57fd5c0e0a02": [ + "6808baec364a85cccb04bcf7": [ [ { - "count": 600, + "count": 14904, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c9b06e57fd5c0e0a05": [ + "6808baec364a85cccb04bcfa": [ [ { "count": 16844, @@ -10364,79 +10172,15 @@ } ] ], - "677536c9b06e57fd5c0e0a08": [ + "6808baec364a85cccb04bcfc": [ [ { - "count": 7.59, - "_tpl": "569668774bdc2da2298b4568" + "count": 8, + "_tpl": "5734795124597738002c6176" } ] ], - "677536c9b06e57fd5c0e0a0b": [ - [ - { - "count": 13.02, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e0a0e": [ - [ - { - "count": 21.05, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e0a11": [ - [ - { - "count": 94.68, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536c9b06e57fd5c0e0a14": [ - [ - { - "count": 44.85, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cab06e57fd5c0e0a17": [ - [ - { - "count": 6326, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cab06e57fd5c0e0a1a": [ - [ - { - "count": 170, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cab06e57fd5c0e0a1d": [ - [ - { - "count": 157.6, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cab06e57fd5c0e0a20": [ - [ - { - "count": 30.43, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cab06e57fd5c0e0a23": [ + "6808baed364a85cccb04bd07": [ [ { "count": 46.26, @@ -10444,39 +10188,7 @@ } ] ], - "677536cab06e57fd5c0e0a26": [ - [ - { - "count": 85.38, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cab06e57fd5c0e0a29": [ - [ - { - "count": 4950, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cab06e57fd5c0e0a2c": [ - [ - { - "count": 15083, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cab06e57fd5c0e0a2f": [ - [ - { - "count": 30.41, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cab06e57fd5c0e0a32": [ + "6808baed364a85cccb04bd0a": [ [ { "count": 7.59, @@ -10484,47 +10196,295 @@ } ] ], - "677536cab06e57fd5c0e0a34": [ + "6808baed364a85cccb04bd0d": [ [ { - "count": 5, - "_tpl": "5d1b392c86f77425243e98fe" - } - ] - ], - "677536cab06e57fd5c0e0a3e": [ - [ - { - "count": 23.38, + "count": 25.3, "_tpl": "569668774bdc2da2298b4568" } ] ], - "677536cab06e57fd5c0e0a41": [ + "6808baed364a85cccb04bd10": [ [ { - "count": 62, + "count": 6326, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536cab06e57fd5c0e0a43": [ + "6808baed364a85cccb04bd13": [ [ { - "count": 2, - "_tpl": "590a391c86f774385a33c404" + "count": 44.85, + "_tpl": "569668774bdc2da2298b4568" } ] ], - "677536cab06e57fd5c0e0a4d": [ + "6808baed364a85cccb04bd16": [ [ { - "count": 5, - "_tpl": "59faff1d86f7746c51718c9c" + "count": 9.77, + "_tpl": "569668774bdc2da2298b4568" } ] ], - "677536cab06e57fd5c0e0a50": [ + "6808baed364a85cccb04bd19": [ + [ + { + "count": 14.31, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd1c": [ + [ + { + "count": 3, + "_tpl": "5c06779c86f77426e00dd782" + } + ] + ], + "6808baed364a85cccb04bd1f": [ + [ + { + "count": 157.6, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd22": [ + [ + { + "count": 30.43, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd25": [ + [ + { + "count": 42.26, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd28": [ + [ + { + "count": 2149, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baed364a85cccb04bd2b": [ + [ + { + "count": 85.08, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd2e": [ + [ + { + "count": 13.67, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd31": [ + [ + { + "count": 15985, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baed364a85cccb04bd34": [ + [ + { + "count": 15083, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baed364a85cccb04bd37": [ + [ + { + "count": 1, + "_tpl": "575146b724597720a27126d5" + } + ] + ], + "6808baed364a85cccb04bd3a": [ + [ + { + "count": 170, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baed364a85cccb04bd3d": [ + [ + { + "count": 30.87, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd40": [ + [ + { + "count": 85.38, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd43": [ + [ + { + "count": 1476, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baed364a85cccb04bd46": [ + [ + { + "count": 94.68, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd49": [ + [ + { + "count": 13.02, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baed364a85cccb04bd4c": [ + [ + { + "count": 30.41, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd4f": [ + [ + { + "count": 33.86, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd52": [ + [ + { + "count": 75.53, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd55": [ + [ + { + "count": 4950, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd58": [ + [ + { + "count": 84.2, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd5b": [ + [ + { + "count": 287.69, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd5e": [ + [ + { + "count": 48.69, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd61": [ + [ + { + "count": 600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd64": [ + [ + { + "count": 2799, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd67": [ + [ + { + "count": 21.05, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd6a": [ + [ + { + "count": 106.18, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd6d": [ + [ + { + "count": 151.27, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd70": [ + [ + { + "count": 172.77, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd73": [ + [ + { + "count": 331.25, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd76": [ + [ + { + "count": 7.59, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baee364a85cccb04bd79": [ [ { "count": 11.75, @@ -10532,23 +10492,303 @@ } ] ], - "677536cab06e57fd5c0e0a53": [ + "6808baee364a85cccb04bd7c": [ [ { - "count": 7.57, - "_tpl": "569668774bdc2da2298b4568" + "count": 3002, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536cab06e57fd5c0e0a55": [ + "6808baee364a85cccb04bd7f": [ + [ + { + "count": 1676, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd82": [ + [ + { + "count": 2400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd85": [ + [ + { + "count": 1496, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd88": [ + [ + { + "count": 1424, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd8b": [ + [ + { + "count": 14015, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd8e": [ + [ + { + "count": 5, + "_tpl": "59faff1d86f7746c51718c9c" + } + ] + ], + "6808baee364a85cccb04bd90": [ [ { "count": 2, - "_tpl": "5c1267ee86f77416ec610f72" + "_tpl": "590a391c86f774385a33c404" } ] ], - "677536cbb06e57fd5c0e0a6a": [ + "6808baee364a85cccb04bd9a": [ + [ + { + "count": 13479, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baee364a85cccb04bd9d": [ + [ + { + "count": 11568, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bda0": [ + [ + { + "count": 1679, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bda2": [ + [ + { + "count": 2, + "_tpl": "5af04b6486f774195a3ebb49" + }, + { + "count": 1, + "_tpl": "590c2d8786f774245b1f03f3" + } + ] + ], + "6808baef364a85cccb04bdb0": [ + [ + { + "count": 335, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdb3": [ + [ + { + "count": 2000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdb6": [ + [ + { + "count": 1, + "_tpl": "56742c324bdc2d150f8b456d" + } + ] + ], + "6808baef364a85cccb04bdb9": [ + [ + { + "count": 4026, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdbc": [ + [ + { + "count": 25150, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdbf": [ + [ + { + "count": 3900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdc2": [ + [ + { + "count": 3100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdc4": [ + [ + { + "count": 4, + "_tpl": "573476d324597737da2adc13" + }, + { + "count": 1, + "_tpl": "5d0375ff86f774186372f685" + } + ] + ], + "6808baef364a85cccb04bdd0": [ + [ + { + "count": 4900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdd3": [ + [ + { + "count": 1473, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdd6": [ + [ + { + "count": 3459, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdd9": [ + [ + { + "count": 5451, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bddc": [ + [ + { + "count": 7802, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdde": [ + [ + { + "count": 38337, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bde9": [ + [ + { + "count": 12142, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdec": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdf4": [ + [ + { + "count": 6608, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdfc": [ + [ + { + "count": 2602, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04bdff": [ + [ + { + "count": 5593, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baef364a85cccb04be02": [ + [ + { + "count": 11300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be05": [ + [ + { + "count": 1875, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be08": [ + [ + { + "count": 10140, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be0b": [ + [ + { + "count": 4466, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be0e": [ + [ + { + "count": 1306, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be10": [ [ { "count": 5, @@ -10564,495 +10804,7 @@ } ] ], - "677536cbb06e57fd5c0e0a7d": [ - [ - { - "count": 22090, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a80": [ - [ - { - "count": 3323, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a83": [ - [ - { - "count": 1100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a86": [ - [ - { - "count": 2339, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a89": [ - [ - { - "count": 8798, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a8c": [ - [ - { - "count": 2970, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a8f": [ - [ - { - "count": 3000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0a92": [ - [ - { - "count": 14.2, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cbb06e57fd5c0e0a95": [ - [ - { - "count": 1, - "_tpl": "59e35de086f7741778269d84" - } - ] - ], - "677536cbb06e57fd5c0e0a97": [ - [ - { - "count": 2, - "_tpl": "56742c324bdc2d150f8b456d" - }, - { - "count": 1, - "_tpl": "590a3b0486f7743954552bdb" - } - ] - ], - "677536cbb06e57fd5c0e0aa1": [ - [ - { - "count": 1496, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0aa4": [ - [ - { - "count": 1402, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0aa7": [ - [ - { - "count": 1424, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0aad": [ - [ - { - "count": 1676, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0ab0": [ - [ - { - "count": 4756, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0ab2": [ - [ - { - "count": 110664, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cbb06e57fd5c0e0abc": [ - [ - { - "count": 3, - "_tpl": "573476d324597737da2adc13" - }, - { - "count": 2, - "_tpl": "573475fb24597737fb1379e1" - } - ] - ], - "677536ccb06e57fd5c0e0abf": [ - [ - { - "count": 2501, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ac2": [ - [ - { - "count": 1473, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ac4": [ - [ - { - "count": 2, - "_tpl": "5af04b6486f774195a3ebb49" - }, - { - "count": 1, - "_tpl": "590c2d8786f774245b1f03f3" - } - ] - ], - "677536ccb06e57fd5c0e0ad2": [ - [ - { - "count": 1500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ad5": [ - [ - { - "count": 25150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ad8": [ - [ - { - "count": 4120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0adb": [ - [ - { - "count": 5495, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ade": [ - [ - { - "count": 5780, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ae1": [ - [ - { - "count": 2000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ae4": [ - [ - { - "count": 3490, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0ae7": [ - [ - { - "count": 220, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0aea": [ - [ - { - "count": 5198, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0aed": [ - [ - { - "count": 23397, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0af0": [ - [ - { - "count": 33060, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0af3": [ - [ - { - "count": 2400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0af6": [ - [ - { - "count": 7817, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0af9": [ - [ - { - "count": 13479, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0afc": [ - [ - { - "count": 911, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ccb06e57fd5c0e0afe": [ - [ - { - "count": 1, - "_tpl": "5c06779c86f77426e00dd782" - }, - { - "count": 2, - "_tpl": "5c06782b86f77426df5407d2" - } - ] - ], - "677536ccb06e57fd5c0e0b06": [ - [ - { - "count": 258500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b0a": [ - [ - { - "count": 7259, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b0d": [ - [ - { - "count": 7800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b10": [ - [ - { - "count": 1, - "_tpl": "59e35de086f7741778269d84" - }, - { - "count": 1, - "_tpl": "56742c324bdc2d150f8b456d" - } - ] - ], - "677536cdb06e57fd5c0e0b13": [ - [ - { - "count": 263.85, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536cdb06e57fd5c0e0b16": [ - [ - { - "count": 1, - "_tpl": "5672cb724bdc2dc2088b456b" - } - ] - ], - "677536cdb06e57fd5c0e0b19": [ - [ - { - "count": 6488, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b1b": [ - [ - { - "count": 2, - "_tpl": "5af0561e86f7745f5f3ad6ac" - }, - { - "count": 4, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "677536cdb06e57fd5c0e0b28": [ - [ - { - "count": 12070, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b2b": [ - [ - { - "count": 1531, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b2e": [ - [ - { - "count": 29262, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b31": [ - [ - { - "count": 3002, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b34": [ - [ - { - "count": 20907, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b37": [ - [ - { - "count": 1672, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b3a": [ - [ - { - "count": 23411, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b3d": [ - [ - { - "count": 29840, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b40": [ - [ - { - "count": 4600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b42": [ - [ - { - "count": 33034, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b4a": [ - [ - { - "count": 608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b4d": [ - [ - { - "count": 11300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b50": [ - [ - { - "count": 5100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b53": [ - [ - { - "count": 5447, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cdb06e57fd5c0e0b56": [ + "6808baf0364a85cccb04be23": [ [ { "count": 27820, @@ -11060,67 +10812,75 @@ } ] ], - "677536ceb06e57fd5c0e0b61": [ - [ - { - "count": 26181, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b74": [ - [ - { - "count": 34003, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b7f": [ - [ - { - "count": 4900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b82": [ - [ - { - "count": 4250, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b85": [ - [ - { - "count": 2450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b88": [ - [ - { - "count": 25400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0b8a": [ + "6808baf0364a85cccb04be25": [ [ { "count": 2, - "_tpl": "5d0375ff86f774186372f685" + "_tpl": "5d1b2ffd86f77425243e8d17" }, { - "count": 5, - "_tpl": "590a3cd386f77436f20848cb" + "count": 1, + "_tpl": "60b0f561c4449e4cb624c1d7" } ] ], - "677536ceb06e57fd5c0e0b93": [ + "6808baf0364a85cccb04be34": [ + [ + { + "count": 20907, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be37": [ + [ + { + "count": 3811, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be3a": [ + [ + { + "count": 9900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be3d": [ + [ + { + "count": 1580, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be40": [ + [ + { + "count": 35650, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be43": [ + [ + { + "count": 1, + "_tpl": "590a386e86f77429692b27ab" + } + ] + ], + "6808baf0364a85cccb04be46": [ + [ + { + "count": 4120, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be48": [ [ { "count": 8, @@ -11132,7 +10892,79 @@ } ] ], - "677536ceb06e57fd5c0e0ba1": [ + "6808baf0364a85cccb04be56": [ + [ + { + "count": 16258, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be58": [ + [ + { + "count": 1, + "_tpl": "5bfd37c80db834001d23e842" + }, + { + "count": 1, + "_tpl": "5ae09bff5acfc4001562219d" + }, + { + "count": 1, + "_tpl": "573476f124597737e04bf328" + } + ] + ], + "6808baf0364a85cccb04be5f": [ + [ + { + "count": 1404, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be62": [ + [ + { + "count": 8043, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be65": [ + [ + { + "count": 2579, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be67": [ + [ + { + "count": 8, + "_tpl": "5d1c819a86f774771b0acd6c" + } + ] + ], + "6808baf0364a85cccb04be76": [ + [ + { + "count": 21204, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf0364a85cccb04be79": [ + [ + { + "count": 31.68, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf1364a85cccb04be7c": [ [ { "count": 14215, @@ -11140,7 +10972,623 @@ } ] ], - "677536ceb06e57fd5c0e0ba4": [ + "6808baf1364a85cccb04be7f": [ + [ + { + "count": 9601, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be82": [ + [ + { + "count": 24457, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be85": [ + [ + { + "count": 5447, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be88": [ + [ + { + "count": 5926, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be8b": [ + [ + { + "count": 2700, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be8e": [ + [ + { + "count": 29840, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be91": [ + [ + { + "count": 24130, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be94": [ + [ + { + "count": 100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be97": [ + [ + { + "count": 3490, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be9a": [ + [ + { + "count": 2545, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04be9d": [ + [ + { + "count": 7259, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bea0": [ + [ + { + "count": 7204, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bea3": [ + [ + { + "count": 2001, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bea5": [ + [ + { + "count": 110664, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04beaf": [ + [ + { + "count": 1628, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04beb2": [ + [ + { + "count": 2073, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04beb5": [ + [ + { + "count": 30910, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bebb": [ + [ + { + "count": 5198, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bebe": [ + [ + { + "count": 9442, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bec1": [ + [ + { + "count": 21503, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bec4": [ + [ + { + "count": 5100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf1364a85cccb04bec7": [ + [ + { + "count": 2450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04beca": [ + [ + { + "count": 1531, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04becd": [ + [ + { + "count": 22090, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04becf": [ + [ + { + "count": 13862, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bed7": [ + [ + { + "count": 25400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04beda": [ + [ + { + "count": 4501, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bedd": [ + [ + { + "count": 2640, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bee0": [ + [ + { + "count": 3207, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bee3": [ + [ + { + "count": 49410, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bee6": [ + [ + { + "count": 1, + "_tpl": "5672cb724bdc2dc2088b456b" + } + ] + ], + "6808baf2364a85cccb04bee9": [ + [ + { + "count": 2339, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04beec": [ + [ + { + "count": 10147, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04beee": [ + [ + { + "count": 2, + "_tpl": "590c5c9f86f77477c91c36e7" + } + ] + ], + "6808baf2364a85cccb04befa": [ + [ + { + "count": 14.2, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf2364a85cccb04befd": [ + [ + { + "count": 20068, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf00": [ + [ + { + "count": 2055, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf02": [ + [ + { + "count": 5, + "_tpl": "5d1b392c86f77425243e98fe" + } + ] + ], + "6808baf2364a85cccb04bf0c": [ + [ + { + "count": 4193, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf0f": [ + [ + { + "count": 2660, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf1a": [ + [ + { + "count": 26181, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf25": [ + [ + { + "count": 15604, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf28": [ + [ + { + "count": 2, + "_tpl": "56742c324bdc2d150f8b456d" + }, + { + "count": 3, + "_tpl": "5d1b309586f77425227d1676" + } + ] + ], + "6808baf2364a85cccb04bf2a": [ + [ + { + "count": 61128, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf39": [ + [ + { + "count": 5403, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf2364a85cccb04bf3c": [ + [ + { + "count": 1100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf3f": [ + [ + { + "count": 15600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf42": [ + [ + { + "count": 7906, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf45": [ + [ + { + "count": 2970, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf48": [ + [ + { + "count": 4841, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf4a": [ + [ + { + "count": 2, + "_tpl": "5d0375ff86f774186372f685" + }, + { + "count": 5, + "_tpl": "590a3cd386f77436f20848cb" + } + ] + ], + "6808baf3364a85cccb04bf54": [ + [ + { + "count": 52790, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf57": [ + [ + { + "count": 3, + "_tpl": "573476d324597737da2adc13" + }, + { + "count": 2, + "_tpl": "573475fb24597737fb1379e1" + } + ] + ], + "6808baf3364a85cccb04bf5a": [ + [ + { + "count": 8900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf5c": [ + [ + { + "count": 2, + "_tpl": "56742c324bdc2d150f8b456d" + }, + { + "count": 1, + "_tpl": "590a3b0486f7743954552bdb" + } + ] + ], + "6808baf3364a85cccb04bf66": [ + [ + { + "count": 1500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf69": [ + [ + { + "count": 1808, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf6b": [ + [ + { + "count": 5, + "_tpl": "5d1b304286f774253763a528" + }, + { + "count": 1, + "_tpl": "5d1b2ffd86f77425243e8d17" + } + ] + ], + "6808baf3364a85cccb04bf78": [ + [ + { + "count": 23397, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf7b": [ + [ + { + "count": 1400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf7e": [ + [ + { + "count": 33060, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf81": [ + [ + { + "count": 12070, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf84": [ + [ + { + "count": 70, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf87": [ + [ + { + "count": 425, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf8a": [ + [ + { + "count": 24862, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf8d": [ + [ + { + "count": 11976, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf8f": [ + [ + { + "count": 2, + "_tpl": "5af0561e86f7745f5f3ad6ac" + }, + { + "count": 4, + "_tpl": "5d1c819a86f774771b0acd6c" + } + ] + ], + "6808baf3364a85cccb04bf9c": [ + [ + { + "count": 37700, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf3364a85cccb04bf9f": [ + [ + { + "count": 5484, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfae": [ + [ + { + "count": 18397, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfc5": [ + [ + { + "count": 34003, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfd0": [ + [ + { + "count": 7817, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfd3": [ + [ + { + "count": 59.76, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf4364a85cccb04bfd5": [ + [ + { + "count": 51892, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfe0": [ [ { "count": 7237, @@ -11148,7 +11596,295 @@ } ] ], - "677536ceb06e57fd5c0e0ba7": [ + "6808baf4364a85cccb04bfe3": [ + [ + { + "count": 3323, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfe6": [ + [ + { + "count": 1, + "_tpl": "60391b0fb847c71012789415" + } + ] + ], + "6808baf4364a85cccb04bfe9": [ + [ + { + "count": 2, + "_tpl": "5c12620d86f7743f8b198b72" + }, + { + "count": 2, + "_tpl": "5e2aedd986f7746d404f3aa4" + } + ] + ], + "6808baf4364a85cccb04bfec": [ + [ + { + "count": 4909, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04bfee": [ + [ + { + "count": 2, + "_tpl": "5c1267ee86f77416ec610f72" + } + ] + ], + "6808baf4364a85cccb04c004": [ + [ + { + "count": 800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c007": [ + [ + { + "count": 3, + "_tpl": "590a3b0486f7743954552bdb" + } + ] + ], + "6808baf4364a85cccb04c00a": [ + [ + { + "count": 20343, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c00d": [ + [ + { + "count": 2, + "_tpl": "5672cb124bdc2d1a0f8b4568" + }, + { + "count": 2, + "_tpl": "5672cb304bdc2dc2088b456a" + } + ] + ], + "6808baf4364a85cccb04c010": [ + [ + { + "count": 1108, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c013": [ + [ + { + "count": 7356, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c016": [ + [ + { + "count": 258500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c01a": [ + [ + { + "count": 23.38, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf4364a85cccb04c01d": [ + [ + { + "count": 1, + "_tpl": "59e35de086f7741778269d84" + }, + { + "count": 1, + "_tpl": "56742c324bdc2d150f8b456d" + } + ] + ], + "6808baf4364a85cccb04c020": [ + [ + { + "count": 4600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c023": [ + [ + { + "count": 1725, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c026": [ + [ + { + "count": 9811, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf4364a85cccb04c029": [ + [ + { + "count": 36750, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c02c": [ + [ + { + "count": 8300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c02f": [ + [ + { + "count": 11399, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c032": [ + [ + { + "count": 22200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c035": [ + [ + { + "count": 5495, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c038": [ + [ + { + "count": 911, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c03a": [ + [ + { + "count": 33034, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c042": [ + [ + { + "count": 7925, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c045": [ + [ + { + "count": 4756, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c048": [ + [ + { + "count": 10, + "_tpl": "59faff1d86f7746c51718c9c" + }, + { + "count": 10, + "_tpl": "5d235a5986f77443f6329bc6" + } + ] + ], + "6808baf5364a85cccb04c04b": [ + [ + { + "count": 16383, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c04e": [ + [ + { + "count": 23411, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c051": [ + [ + { + "count": 4250, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c054": [ + [ + { + "count": 5780, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c057": [ + [ + { + "count": 263.85, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf5364a85cccb04c05a": [ + [ + { + "count": 17481, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c05d": [ + [ + { + "count": 7800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf5364a85cccb04c060": [ [ { "count": 1, @@ -11172,703 +11908,7 @@ } ] ], - "677536ceb06e57fd5c0e0ba9": [ - [ - { - "count": 4, - "_tpl": "573476d324597737da2adc13" - }, - { - "count": 1, - "_tpl": "5d0375ff86f774186372f685" - } - ] - ], - "677536ceb06e57fd5c0e0bb5": [ - [ - { - "count": 9601, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0bb8": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0bbb": [ - [ - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - } - ] - ], - "677536ceb06e57fd5c0e0bbe": [ - [ - { - "count": 7802, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0bc1": [ - [ - { - "count": 1875, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0bc4": [ - [ - { - "count": 2640, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ceb06e57fd5c0e0bc7": [ - [ - { - "count": 1635, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bca": [ - [ - { - "count": 1679, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bcd": [ - [ - { - "count": 1, - "_tpl": "590a358486f77429692b2790" - } - ] - ], - "677536cfb06e57fd5c0e0bcf": [ - [ - { - "count": 51892, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bda": [ - [ - { - "count": 3217, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bdc": [ - [ - { - "count": 18, - "_tpl": "573476f124597737e04bf328" - } - ] - ], - "677536cfb06e57fd5c0e0be6": [ - [ - { - "count": 20343, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0be9": [ - [ - { - "count": 8654, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bec": [ - [ - { - "count": 2001, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bef": [ - [ - { - "count": 36750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bf7": [ - [ - { - "count": 6608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0bff": [ - [ - { - "count": 33500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0c01": [ - [ - { - "count": 13862, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0c08": [ - [ - { - "count": 3, - "_tpl": "5aa2b9ede5b5b000137b758b" - } - ] - ], - "677536cfb06e57fd5c0e0c13": [ - [ - { - "count": 4193, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536cfb06e57fd5c0e0c16": [ - [ - { - "count": 2545, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c19": [ - [ - { - "count": 17481, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c1c": [ - [ - { - "count": 4277, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c1f": [ - [ - { - "count": 1, - "_tpl": "60391b0fb847c71012789415" - } - ] - ], - "677536d0b06e57fd5c0e0c22": [ - [ - { - "count": 3811, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c25": [ - [ - { - "count": 35650, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c28": [ - [ - { - "count": 3207, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c37": [ - [ - { - "count": 18397, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c45": [ - [ - { - "count": 8, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "677536d0b06e57fd5c0e0c54": [ - [ - { - "count": 9900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c57": [ - [ - { - "count": 22200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c5a": [ - [ - { - "count": 4909, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c5d": [ - [ - { - "count": 7925, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c60": [ - [ - { - "count": 7204, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c63": [ - [ - { - "count": 7356, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c66": [ - [ - { - "count": 4, - "_tpl": "57347baf24597738002c6178" - } - ] - ], - "677536d0b06e57fd5c0e0c69": [ - [ - { - "count": 3, - "_tpl": "590a3b0486f7743954552bdb" - } - ] - ], - "677536d0b06e57fd5c0e0c6c": [ - [ - { - "count": 15600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c6f": [ - [ - { - "count": 2620, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c72": [ - [ - { - "count": 1400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d0b06e57fd5c0e0c75": [ - [ - { - "count": 37700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c78": [ - [ - { - "count": 59.76, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536d1b06e57fd5c0e0c7b": [ - [ - { - "count": 5926, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c7d": [ - [ - { - "count": 38337, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c88": [ - [ - { - "count": 5451, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c8b": [ - [ - { - "count": 10147, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c8e": [ - [ - { - "count": 9811, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c91": [ - [ - { - "count": 1628, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c94": [ - [ - { - "count": 9442, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0c96": [ - [ - { - "count": 61128, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0ca5": [ - [ - { - "count": 2109, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0ca8": [ - [ - { - "count": 10, - "_tpl": "59faff1d86f7746c51718c9c" - }, - { - "count": 10, - "_tpl": "5d235a5986f77443f6329bc6" - } - ] - ], - "677536d1b06e57fd5c0e0cab": [ - [ - { - "count": 1404, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cae": [ - [ - { - "count": 20068, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cb1": [ - [ - { - "count": 14015, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cb4": [ - [ - { - "count": 1108, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cb7": [ - [ - { - "count": 2602, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cba": [ - [ - { - "count": 2, - "_tpl": "590a391c86f774385a33c404" - } - ] - ], - "677536d1b06e57fd5c0e0cbd": [ - [ - { - "count": 1, - "_tpl": "56742c324bdc2d150f8b456d" - } - ] - ], - "677536d1b06e57fd5c0e0cc0": [ - [ - { - "count": 12142, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cc3": [ - [ - { - "count": 4026, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d1b06e57fd5c0e0cc6": [ - [ - { - "count": 2660, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cc8": [ - [ - { - "count": 1, - "_tpl": "5bfd37c80db834001d23e842" - }, - { - "count": 1, - "_tpl": "5ae09bff5acfc4001562219d" - }, - { - "count": 1, - "_tpl": "573476f124597737e04bf328" - } - ] - ], - "677536d2b06e57fd5c0e0ccf": [ - [ - { - "count": 31.68, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536d2b06e57fd5c0e0cd2": [ - [ - { - "count": 1580, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cd5": [ - [ - { - "count": 2444, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cd8": [ - [ - { - "count": 1725, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cdb": [ - [ - { - "count": 425, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cde": [ - [ - { - "count": 3459, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0ce1": [ - [ - { - "count": 8300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0ce4": [ - [ - { - "count": 30910, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0ce7": [ - [ - { - "count": 11399, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cea": [ - [ - { - "count": 800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0ced": [ - [ - { - "count": 15604, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cf0": [ - [ - { - "count": 2073, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cf3": [ - [ - { - "count": 2, - "_tpl": "5672cb124bdc2d1a0f8b4568" - }, - { - "count": 2, - "_tpl": "5672cb304bdc2dc2088b456a" - } - ] - ], - "677536d2b06e57fd5c0e0cf6": [ - [ - { - "count": 2, - "_tpl": "56742c324bdc2d150f8b456d" - }, - { - "count": 3, - "_tpl": "5d1b309586f77425227d1676" - } - ] - ], - "677536d2b06e57fd5c0e0cf9": [ - [ - { - "count": 1, - "_tpl": "590c5c9f86f77477c91c36e7" - } - ] - ], - "677536d2b06e57fd5c0e0cfc": [ - [ - { - "count": 4466, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d2b06e57fd5c0e0cff": [ - [ - { - "count": 11976, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d3b06e57fd5c0e0d02": [ - [ - { - "count": 52790, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d3b06e57fd5c0e0d04": [ - [ - { - "count": 2, - "_tpl": "590c5c9f86f77477c91c36e7" - } - ] - ], - "677536d3b06e57fd5c0e0d0f": [ + "6808baf5364a85cccb04c062": [ [ { "count": 5, @@ -11876,211 +11916,15 @@ } ] ], - "677536d3b06e57fd5c0e0d18": [ + "6808baf5364a85cccb04c06b": [ [ { - "count": 0.75, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536d3b06e57fd5c0e0d1b": [ - [ - { - "count": 3900, + "count": 2501, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d3b06e57fd5c0e0d1e": [ - [ - { - "count": 8924, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d3b06e57fd5c0e0d21": [ - [ - { - "count": 5593, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d3b06e57fd5c0e0d24": [ - [ - { - "count": 2029, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d4b06e57fd5c0e0d27": [ - [ - { - "count": 3100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d4b06e57fd5c0e0d2a": [ - [ - { - "count": 2579, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d4b06e57fd5c0e0d2d": [ - [ - { - "count": 10140, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d4b06e57fd5c0e0d30": [ - [ - { - "count": 2055, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d4b06e57fd5c0e0d33": [ - [ - { - "count": 21503, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d5b06e57fd5c0e0d36": [ - [ - { - "count": 16383, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d5b06e57fd5c0e0d38": [ - [ - { - "count": 5, - "_tpl": "5d1b304286f774253763a528" - }, - { - "count": 1, - "_tpl": "5d1b2ffd86f77425243e8d17" - } - ] - ], - "677536d5b06e57fd5c0e0d45": [ - [ - { - "count": 16258, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d5b06e57fd5c0e0d48": [ - [ - { - "count": 1100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d5b06e57fd5c0e0d4b": [ - [ - { - "count": 24130, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d4e": [ - [ - { - "count": 2, - "_tpl": "5c12620d86f7743f8b198b72" - }, - { - "count": 2, - "_tpl": "5e2aedd986f7746d404f3aa4" - } - ] - ], - "677536d6b06e57fd5c0e0d51": [ - [ - { - "count": 4501, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d54": [ - [ - { - "count": 24457, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d57": [ - [ - { - "count": 24862, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d5a": [ - [ - { - "count": 10283, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d5d": [ - [ - { - "count": 26.38, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "677536d6b06e57fd5c0e0d5f": [ - [ - { - "count": 2, - "_tpl": "5d1b2ffd86f77425243e8d17" - }, - { - "count": 1, - "_tpl": "60b0f561c4449e4cb624c1d7" - } - ] - ], - "677536d6b06e57fd5c0e0d6e": [ - [ - { - "count": 2700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d6b06e57fd5c0e0d71": [ - [ - { - "count": 2900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d7b06e57fd5c0e0d74": [ + "6808baf5364a85cccb04c06e": [ [ { "count": 162552, @@ -12088,63 +11932,55 @@ } ] ], - "677536d7b06e57fd5c0e0d78": [ + "6808baf5364a85cccb04c072": [ [ { - "count": 8043, + "count": 2109, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d7b06e57fd5c0e0d7b": [ + "6808baf5364a85cccb04c075": [ [ { - "count": 3958, + "count": 29262, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d7b06e57fd5c0e0d7e": [ + "6808baf5364a85cccb04c078": [ [ { - "count": 21204, + "count": 33500, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d7b06e57fd5c0e0d81": [ + "6808baf5364a85cccb04c07b": [ [ { - "count": 7780, + "count": 4, + "_tpl": "57347baf24597738002c6178" + } + ] + ], + "6808baf5364a85cccb04c07e": [ + [ + { + "count": 2444, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d7b06e57fd5c0e0d84": [ + "6808baf6364a85cccb04c081": [ [ { - "count": 70, + "count": 2029, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536d7b06e57fd5c0e0d87": [ - [ - { - "count": 49410, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d7b06e57fd5c0e0d8a": [ - [ - { - "count": 1808, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d7b06e57fd5c0e0d8d": [ + "6808baf6364a85cccb04c084": [ [ { "count": 2512, @@ -12152,39 +11988,7 @@ } ] ], - "677536d8b06e57fd5c0e0d90": [ - [ - { - "count": 5403, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d8b06e57fd5c0e0d93": [ - [ - { - "count": 7906, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d8b06e57fd5c0e0d96": [ - [ - { - "count": 19239, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d8b06e57fd5c0e0d99": [ - [ - { - "count": 100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536d8b06e57fd5c0e0d9c": [ + "6808baf6364a85cccb04c087": [ [ { "count": 4120, @@ -12192,7 +11996,211 @@ } ] ], - "677536d9b06e57fd5c0e0d9f": [ + "6808baf6364a85cccb04c08a": [ + [ + { + "count": 2613, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c08d": [ + [ + { + "count": 1635, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c090": [ + [ + { + "count": 3000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c093": [ + [ + { + "count": 62, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c096": [ + [ + { + "count": 1672, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c099": [ + [ + { + "count": 2900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c09c": [ + [ + { + "count": 26.38, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf6364a85cccb04c09f": [ + [ + { + "count": 1100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0a2": [ + [ + { + "count": 1, + "_tpl": "590c5c9f86f77477c91c36e7" + } + ] + ], + "6808baf6364a85cccb04c0a5": [ + [ + { + "count": 220, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0a8": [ + [ + { + "count": 8798, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0aa": [ + [ + { + "count": 1, + "_tpl": "5c06779c86f77426e00dd782" + }, + { + "count": 2, + "_tpl": "5c06782b86f77426df5407d2" + } + ] + ], + "6808baf6364a85cccb04c0b2": [ + [ + { + "count": 2620, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0b5": [ + [ + { + "count": 1402, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0b8": [ + [ + { + "count": 3958, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0ba": [ + [ + { + "count": 3, + "_tpl": "5aa2b9ede5b5b000137b758b" + } + ] + ], + "6808baf6364a85cccb04c0c5": [ + [ + { + "count": 6488, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0c8": [ + [ + { + "count": 10283, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf6364a85cccb04c0cb": [ + [ + { + "count": 1, + "_tpl": "590a358486f77429692b2790" + } + ] + ], + "6808baf6364a85cccb04c0cd": [ + [ + { + "count": 18, + "_tpl": "573476f124597737e04bf328" + } + ] + ], + "6808baf7364a85cccb04c0d7": [ + [ + { + "count": 608, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c0da": [ + [ + { + "count": 0.75, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf7364a85cccb04c0dd": [ + [ + { + "count": 3217, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c0e0": [ + [ + { + "count": 8654, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c0e3": [ + [ + { + "count": 7.57, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808baf7364a85cccb04c0e6": [ [ { "count": 2, @@ -12204,175 +12212,71 @@ } ] ], - "677536dab06e57fd5c0e0da2": [ + "6808baf7364a85cccb04c0e9": [ [ { - "count": 4841, + "count": 7780, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dab06e57fd5c0e0da5": [ + "6808baf7364a85cccb04c0ec": [ [ { - "count": 5484, + "count": 1, + "_tpl": "59e35de086f7741778269d84" + } + ] + ], + "6808baf7364a85cccb04c0ef": [ + [ + { + "count": 2, + "_tpl": "590a391c86f774385a33c404" + } + ] + ], + "6808baf7364a85cccb04c0f2": [ + [ + { + "count": 4277, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dab06e57fd5c0e0da8": [ + "6808baf7364a85cccb04c0f5": [ [ { - "count": 1306, + "count": 8924, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dbb06e57fd5c0e0dab": [ + "6808baf7364a85cccb04c0f8": [ [ { - "count": 11568, + "count": 19239, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dbb06e57fd5c0e0dae": [ + "6808baf7364a85cccb04c0fb": [ [ { - "count": 2613, + "count": 10440, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dbb06e57fd5c0e0db1": [ + "6808baf7364a85cccb04c0fe": [ [ { - "count": 8900, + "count": 19400, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dbb06e57fd5c0e0db4": [ - [ - { - "count": 335, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0db7": [ - [ - { - "count": 2400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dba": [ - [ - { - "count": 3600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dbd": [ - [ - { - "count": 3210, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dc0": [ - [ - { - "count": 2444, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dc3": [ - [ - { - "count": 1563, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dc6": [ - [ - { - "count": 8350, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dc9": [ - [ - { - "count": 400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dcc": [ - [ - { - "count": 32940, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dcf": [ - [ - { - "count": 4414, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dd2": [ - [ - { - "count": 4779, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dd5": [ - [ - { - "count": 21130, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dd8": [ - [ - { - "count": 8500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0ddb": [ - [ - { - "count": 6200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0dde": [ - [ - { - "count": 6240, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dbb06e57fd5c0e0de1": [ + "6808baf7364a85cccb04c101": [ [ { "count": 11600, @@ -12380,7 +12284,287 @@ } ] ], - "677536dbb06e57fd5c0e0de4": [ + "6808baf7364a85cccb04c104": [ + [ + { + "count": 4990, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c107": [ + [ + { + "count": 6420, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c10a": [ + [ + { + "count": 5273, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c10d": [ + [ + { + "count": 18900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c117": [ + [ + { + "count": 13643, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c121": [ + [ + { + "count": 4900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c124": [ + [ + { + "count": 2663, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c127": [ + [ + { + "count": 3210, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf7364a85cccb04c12a": [ + [ + { + "count": 4340, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c12d": [ + [ + { + "count": 10050, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c130": [ + [ + { + "count": 14500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c133": [ + [ + { + "count": 1200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c136": [ + [ + { + "count": 2800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c139": [ + [ + { + "count": 850, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c13c": [ + [ + { + "count": 4350, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c13f": [ + [ + { + "count": 1700, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c142": [ + [ + { + "count": 6200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c145": [ + [ + { + "count": 20300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c148": [ + [ + { + "count": 27140, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c14b": [ + [ + { + "count": 5960, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c14e": [ + [ + { + "count": 470, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c151": [ + [ + { + "count": 3900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c154": [ + [ + { + "count": 3600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c157": [ + [ + { + "count": 4275, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c15a": [ + [ + { + "count": 10650, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c15d": [ + [ + { + "count": 14100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c160": [ + [ + { + "count": 500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c163": [ + [ + { + "count": 2, + "_tpl": "5d1b309586f77425227d1676" + } + ] + ], + "6808baf8364a85cccb04c166": [ + [ + { + "count": 15900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c169": [ + [ + { + "count": 10000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c16c": [ + [ + { + "count": 22800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c16f": [ + [ + { + "count": 29700, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf8364a85cccb04c172": [ + [ + { + "count": 3800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c175": [ + [ + { + "count": 8350, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c178": [ + [ + { + "count": 43000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c17b": [ [ { "count": 7441, @@ -12388,15 +12572,327 @@ } ] ], - "677536dcb06e57fd5c0e0de7": [ + "6808baf9364a85cccb04c17e": [ [ { - "count": 7800, + "count": 19200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dcb06e57fd5c0e0dea": [ + "6808baf9364a85cccb04c181": [ + [ + { + "count": 37755, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c184": [ + [ + { + "count": 2900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c187": [ + [ + { + "count": 65, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c18a": [ + [ + { + "count": 25900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c18d": [ + [ + { + "count": 4779, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c190": [ + [ + { + "count": 4275, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c193": [ + [ + { + "count": 2454, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c196": [ + [ + { + "count": 6500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c199": [ + [ + { + "count": 8500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c19c": [ + [ + { + "count": 5518, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1a5": [ + [ + { + "count": 6238, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1ae": [ + [ + { + "count": 2400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1bc": [ + [ + { + "count": 21800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1ca": [ + [ + { + "count": 1450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1cd": [ + [ + { + "count": 2500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1d0": [ + [ + { + "count": 5660, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1d3": [ + [ + { + "count": 32940, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1d6": [ + [ + { + "count": 2100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baf9364a85cccb04c1d8": [ + [ + { + "count": 3, + "_tpl": "5d1c819a86f774771b0acd6c" + } + ] + ], + "6808baf9364a85cccb04c1e6": [ + [ + { + "count": 2600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1e9": [ + [ + { + "count": 5600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1ec": [ + [ + { + "count": 5100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1ef": [ + [ + { + "count": 21337, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1f2": [ + [ + { + "count": 600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1f5": [ + [ + { + "count": 51000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1f8": [ + [ + { + "count": 4, + "_tpl": "5d0377ce86f774186372f689" + }, + { + "count": 4, + "_tpl": "5d0376a486f7747d8050965c" + }, + { + "count": 4, + "_tpl": "5d0378d486f77420421a5ff4" + } + ] + ], + "6808bafa364a85cccb04c1fb": [ + [ + { + "count": 19200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c1fe": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c201": [ + [ + { + "count": 14400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c204": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c207": [ + [ + { + "count": 4, + "_tpl": "5d1b31ce86f7742523398394" + } + ] + ], + "6808bafa364a85cccb04c20a": [ + [ + { + "count": 9100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c20d": [ + [ + { + "count": 6, + "_tpl": "57347cd0245977445a2d6ff1" + } + ] + ], + "6808bafa364a85cccb04c210": [ + [ + { + "count": 36580, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c213": [ + [ + { + "count": 4680, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c216": [ + [ + { + "count": 2444, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c221": [ + [ + { + "count": 23147, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c22c": [ + [ + { + "count": 8400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c22f": [ [ { "count": 16700, @@ -12404,7 +12900,83 @@ } ] ], - "677536dcb06e57fd5c0e0ded": [ + "6808bafa364a85cccb04c232": [ + [ + { + "count": 26500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c235": [ + [ + { + "count": 1800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c237": [ + [ + { + "count": 4, + "_tpl": "5c052fb986f7746b2101e909" + }, + { + "count": 2, + "_tpl": "5c05308086f7746b2101e90b" + } + ] + ], + "6808bafa364a85cccb04c249": [ + [ + { + "count": 21000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafa364a85cccb04c24c": [ + [ + { + "count": 9337, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c24f": [ + [ + { + "count": 7800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c252": [ + [ + { + "count": 25400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c255": [ + [ + { + "count": 2320, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c258": [ + [ + { + "count": 1563, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c25b": [ [ { "count": 2, @@ -12420,291 +12992,7 @@ } ] ], - "677536dcb06e57fd5c0e0df0": [ - [ - { - "count": 14100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0df3": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0df6": [ - [ - { - "count": 7980, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0df9": [ - [ - { - "count": 4150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0dfc": [ - [ - { - "count": 15500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0dff": [ - [ - { - "count": 5960, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e02": [ - [ - { - "count": 600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e05": [ - [ - { - "count": 26500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e08": [ - [ - { - "count": 5600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e16": [ - [ - { - "count": 21800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e24": [ - [ - { - "count": 25400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e27": [ - [ - { - "count": 2, - "_tpl": "5d1b309586f77425227d1676" - } - ] - ], - "677536dcb06e57fd5c0e0e2a": [ - [ - { - "count": 22800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e2c": [ - [ - { - "count": 12, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "677536dcb06e57fd5c0e0e38": [ - [ - { - "count": 1450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e3b": [ - [ - { - "count": 19400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dcb06e57fd5c0e0e3d": [ - [ - { - "count": 4, - "_tpl": "5c052fb986f7746b2101e909" - }, - { - "count": 2, - "_tpl": "5c05308086f7746b2101e90b" - } - ] - ], - "677536dcb06e57fd5c0e0e4f": [ - [ - { - "count": 3600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e52": [ - [ - { - "count": 2900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e55": [ - [ - { - "count": 5100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e58": [ - [ - { - "count": 63450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e5b": [ - [ - { - "count": 58000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e5e": [ - [ - { - "count": 5660, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e61": [ - [ - { - "count": 37755, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e64": [ - [ - { - "count": 27140, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e67": [ - [ - { - "count": 9337, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e6a": [ - [ - { - "count": 7850, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e74": [ - [ - { - "count": 13643, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e7e": [ - [ - { - "count": 5518, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e81": [ - [ - { - "count": 10000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e84": [ - [ - { - "count": 1800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e86": [ - [ - { - "count": 128467, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e97": [ - [ - { - "count": 4900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e9a": [ - [ - { - "count": 51000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0e9d": [ - [ - { - "count": 29700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ddb06e57fd5c0e0ea0": [ + "6808bafb364a85cccb04c25e": [ [ { "count": 14760, @@ -12712,135 +13000,7 @@ } ] ], - "677536ddb06e57fd5c0e0ea3": [ - [ - { - "count": 2663, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ea6": [ - [ - { - "count": 1700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0eb1": [ - [ - { - "count": 23147, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ebc": [ - [ - { - "count": 4990, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ebf": [ - [ - { - "count": 36580, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ec2": [ - [ - { - "count": 43000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ec5": [ - [ - { - "count": 6420, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ec8": [ - [ - { - "count": 10650, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ecb": [ - [ - { - "count": 20300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ece": [ - [ - { - "count": 19200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ed1": [ - [ - { - "count": 21000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ed4": [ - [ - { - "count": 470, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ed7": [ - [ - { - "count": 6, - "_tpl": "57347cd0245977445a2d6ff1" - } - ] - ], - "677536deb06e57fd5c0e0eda": [ - [ - { - "count": 8400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0edc": [ - [ - { - "count": 3, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "677536deb06e57fd5c0e0eea": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536deb06e57fd5c0e0ef5": [ + "6808bafb364a85cccb04c269": [ [ { "count": 21585, @@ -12848,7 +13008,135 @@ } ] ], - "677536deb06e57fd5c0e0f00": [ + "6808bafb364a85cccb04c274": [ + [ + { + "count": 6240, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c277": [ + [ + { + "count": 4150, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c27a": [ + [ + { + "count": 1600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c27d": [ + [ + { + "count": 3600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c280": [ + [ + { + "count": 21130, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c283": [ + [ + { + "count": 58000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c291": [ + [ + { + "count": 31093, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c29f": [ + [ + { + "count": 7800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2a2": [ + [ + { + "count": 400, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2a5": [ + [ + { + "count": 13900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2a8": [ + [ + { + "count": 15500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2ab": [ + [ + { + "count": 63450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2ad": [ + [ + { + "count": 12, + "_tpl": "5d1c819a86f774771b0acd6c" + } + ] + ], + "6808bafb364a85cccb04c2c0": [ + [ + { + "count": 30264, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2ca": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2cd": [ + [ + { + "count": 7980, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafb364a85cccb04c2d0": [ [ { "count": 8, @@ -12868,119 +13156,31 @@ } ] ], - "677536deb06e57fd5c0e0f03": [ + "6808bafc364a85cccb04c2d3": [ [ { - "count": 9100, + "count": 4414, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536deb06e57fd5c0e0f06": [ + "6808bafc364a85cccb04c2d6": [ [ { - "count": 1200, + "count": 7850, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536deb06e57fd5c0e0f09": [ + "6808bafc364a85cccb04c2d8": [ [ { - "count": 65, + "count": 128467, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536dfb06e57fd5c0e0f0c": [ - [ - { - "count": 14500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f0f": [ - [ - { - "count": 19200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f12": [ - [ - { - "count": 4275, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f15": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f18": [ - [ - { - "count": 10050, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f1b": [ - [ - { - "count": 3900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f29": [ - [ - { - "count": 31093, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f3d": [ - [ - { - "count": 6238, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f46": [ - [ - { - "count": 2600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f49": [ - [ - { - "count": 2800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f4c": [ - [ - { - "count": 18900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f4f": [ + "6808bafc364a85cccb04c2e9": [ [ { "count": 2, @@ -12988,127 +13188,7 @@ } ] ], - "677536dfb06e57fd5c0e0f52": [ - [ - { - "count": 7800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f55": [ - [ - { - "count": 25900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f58": [ - [ - { - "count": 4680, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f5b": [ - [ - { - "count": 6500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f5e": [ - [ - { - "count": 1600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f61": [ - [ - { - "count": 19600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f64": [ - [ - { - "count": 4340, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f67": [ - [ - { - "count": 21337, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f6a": [ - [ - { - "count": 4350, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536dfb06e57fd5c0e0f6d": [ - [ - { - "count": 5273, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f70": [ - [ - { - "count": 4275, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f73": [ - [ - { - "count": 4, - "_tpl": "5d1b31ce86f7742523398394" - } - ] - ], - "677536e0b06e57fd5c0e0f76": [ - [ - { - "count": 2100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f80": [ - [ - { - "count": 30264, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f8a": [ - [ - { - "count": 15900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f8d": [ + "6808bafc364a85cccb04c2ec": [ [ { "count": 1340, @@ -13116,47 +13196,7 @@ } ] ], - "677536e0b06e57fd5c0e0f90": [ - [ - { - "count": 2500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f93": [ - [ - { - "count": 13900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f96": [ - [ - { - "count": 10440, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f99": [ - [ - { - "count": 2320, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f9c": [ - [ - { - "count": 14400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0f9f": [ + "6808bafc364a85cccb04c2ef": [ [ { "count": 420, @@ -13164,111 +13204,23 @@ } ] ], - "677536e0b06e57fd5c0e0fa2": [ + "6808bafc364a85cccb04c2f2": [ [ { - "count": 3800, + "count": 19600, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e0b06e57fd5c0e0fa5": [ + "6808bafc364a85cccb04c2f5": [ [ { - "count": 500, + "count": 2200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e0b06e57fd5c0e0fa8": [ - [ - { - "count": 2454, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0fab": [ - [ - { - "count": 4, - "_tpl": "5d0377ce86f774186372f689" - }, - { - "count": 4, - "_tpl": "5d0376a486f7747d8050965c" - }, - { - "count": 4, - "_tpl": "5d0378d486f77420421a5ff4" - } - ] - ], - "677536e0b06e57fd5c0e0fae": [ - [ - { - "count": 850, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0fb1": [ - [ - { - "count": 7900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e0b06e57fd5c0e0fb4": [ - [ - { - "count": 3750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fb7": [ - [ - { - "count": 2, - "_tpl": "590c392f86f77444754deb29" - } - ] - ], - "677536e1b06e57fd5c0e0fba": [ - [ - { - "count": 2056, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fbd": [ - [ - { - "count": 8600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fc0": [ - [ - { - "count": 26950, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fc3": [ - [ - { - "count": 6400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fc6": [ + "6808bafc364a85cccb04c2f8": [ [ { "count": 9600, @@ -13276,87 +13228,15 @@ } ] ], - "677536e1b06e57fd5c0e0fc9": [ + "6808bafc364a85cccb04c2fb": [ [ { - "count": 2, - "_tpl": "5672cb304bdc2dc2088b456a" - } - ] - ], - "677536e1b06e57fd5c0e0fcc": [ - [ - { - "count": 280, + "count": 26950, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e1b06e57fd5c0e0fcf": [ - [ - { - "count": 2600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fd2": [ - [ - { - "count": 1, - "_tpl": "5d1b31ce86f7742523398394" - }, - { - "count": 1, - "_tpl": "5d40425986f7743185265461" - } - ] - ], - "677536e1b06e57fd5c0e0fd4": [ - [ - { - "count": 2, - "_tpl": "61bf7c024770ee6f9c6b8b53" - }, - { - "count": 1, - "_tpl": "5d4042a986f7743185265463" - } - ] - ], - "677536e1b06e57fd5c0e0fe5": [ - [ - { - "count": 2, - "_tpl": "5734781f24597737e04bf32a" - } - ] - ], - "677536e1b06e57fd5c0e0fe8": [ - [ - { - "count": 1800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0feb": [ - [ - { - "count": 3700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0fee": [ - [ - { - "count": 8665, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e1b06e57fd5c0e0ff1": [ + "6808bafc364a85cccb04c2fe": [ [ { "count": 1, @@ -13372,39 +13252,135 @@ } ] ], - "677536e1b06e57fd5c0e0ff4": [ + "6808bafc364a85cccb04c301": [ [ { - "count": 3400, + "count": 4700, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e1b06e57fd5c0e0ff7": [ + "6808bafc364a85cccb04c304": [ [ { - "count": 6500, + "count": 16250, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e0ffa": [ + "6808bafc364a85cccb04c307": [ [ { - "count": 123500, + "count": 2300, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e0ffd": [ + "6808bafc364a85cccb04c309": [ [ { - "count": 8000, + "count": 30450, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e1000": [ + "6808bafc364a85cccb04c315": [ + [ + { + "count": 26300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c318": [ + [ + { + "count": 7900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c31b": [ + [ + { + "count": 13000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c31e": [ + [ + { + "count": 4100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c321": [ + [ + { + "count": 1100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c324": [ + [ + { + "count": 9200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafc364a85cccb04c327": [ + [ + { + "count": 2, + "_tpl": "5734781f24597737e04bf32a" + } + ] + ], + "6808bafc364a85cccb04c32a": [ + [ + { + "count": 8824, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c32d": [ + [ + { + "count": 1558, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c330": [ + [ + { + "count": 4900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c333": [ + [ + { + "count": 3000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c336": [ + [ + { + "count": 4500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c339": [ [ { "count": 2320, @@ -13412,15 +13388,59 @@ } ] ], - "677536e2b06e57fd5c0e1003": [ + "6808bafd364a85cccb04c33b": [ [ { - "count": 1, - "_tpl": "5734779624597737e04bf329" + "count": 23450, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e1005": [ + "6808bafd364a85cccb04c346": [ + [ + { + "count": 1, + "_tpl": "573476f124597737e04bf328" + } + ] + ], + "6808bafd364a85cccb04c349": [ + [ + { + "count": 13200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c34b": [ + [ + { + "count": 2, + "_tpl": "61bf7c024770ee6f9c6b8b53" + }, + { + "count": 1, + "_tpl": "5d4042a986f7743185265463" + } + ] + ], + "6808bafd364a85cccb04c35c": [ + [ + { + "count": 11800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c35f": [ + [ + { + "count": 2600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c361": [ [ { "count": 1, @@ -13436,23 +13456,31 @@ } ] ], - "677536e2b06e57fd5c0e100f": [ + "6808bafd364a85cccb04c36b": [ [ { - "count": 2900, + "count": 4700, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e1012": [ + "6808bafd364a85cccb04c36d": [ [ { - "count": 4000, - "_tpl": "5449016a4bdc2d6f028b456f" + "count": 1, + "_tpl": "5734781f24597737e04bf32a" + }, + { + "count": 1, + "_tpl": "590a386e86f77429692b27ab" + }, + { + "count": 2, + "_tpl": "5c06782b86f77426df5407d2" } ] ], - "677536e2b06e57fd5c0e1015": [ + "6808bafd364a85cccb04c376": [ [ { "count": 2600, @@ -13460,15 +13488,47 @@ } ] ], - "677536e2b06e57fd5c0e1018": [ + "6808bafd364a85cccb04c379": [ [ { - "count": 11800, + "count": 11200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e101b": [ + "6808bafd364a85cccb04c37c": [ + [ + { + "count": 4000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c37f": [ + [ + { + "count": 2, + "_tpl": "5672cb304bdc2dc2088b456a" + } + ] + ], + "6808bafd364a85cccb04c382": [ + [ + { + "count": 7809, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c385": [ + [ + { + "count": 123500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafd364a85cccb04c388": [ [ { "count": 1, @@ -13484,163 +13544,23 @@ } ] ], - "677536e2b06e57fd5c0e101e": [ - [ - { - "count": 13000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e1020": [ - [ - { - "count": 31750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e102c": [ - [ - { - "count": 1100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e102f": [ - [ - { - "count": 2600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e1032": [ - [ - { - "count": 2300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e1035": [ - [ - { - "count": 37742, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e1038": [ - [ - { - "count": 4500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e103b": [ - [ - { - "count": 4700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e2b06e57fd5c0e103e": [ + "6808bafd364a85cccb04c38b": [ [ { "count": 1, - "_tpl": "590c639286f774151567fa95" - }, - { - "count": 1, - "_tpl": "5672cb124bdc2d1a0f8b4568" + "_tpl": "5734779624597737e04bf329" } ] ], - "677536e2b06e57fd5c0e1041": [ + "6808bafd364a85cccb04c38e": [ [ { - "count": 34390, + "count": 8665, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e2b06e57fd5c0e1044": [ - [ - { - "count": 3000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1047": [ - [ - { - "count": 15000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e104a": [ - [ - { - "count": 10500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e104d": [ - [ - { - "count": 16150, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1050": [ - [ - { - "count": 8824, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1053": [ - [ - { - "count": 5800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1056": [ - [ - { - "count": 4839, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1059": [ - [ - { - "count": 26300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e105c": [ - [ - { - "count": 16100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e105f": [ + "6808bafd364a85cccb04c391": [ [ { "count": 1500, @@ -13648,23 +13568,31 @@ } ] ], - "677536e3b06e57fd5c0e1062": [ + "6808bafe364a85cccb04c394": [ [ { - "count": 13200, + "count": 2000, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e3b06e57fd5c0e1065": [ + "6808bafe364a85cccb04c397": [ [ { - "count": 7809, + "count": 9300, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e3b06e57fd5c0e1067": [ + "6808bafe364a85cccb04c39a": [ + [ + { + "count": 4050, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c39c": [ [ { "count": 2, @@ -13676,63 +13604,7 @@ } ] ], - "677536e3b06e57fd5c0e1070": [ - [ - { - "count": 2000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1073": [ - [ - { - "count": 11040, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1076": [ - [ - { - "count": 4700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1079": [ - [ - { - "count": 9200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e107c": [ - [ - { - "count": 1, - "_tpl": "5e2af51086f7746d3f3c3402" - } - ] - ], - "677536e3b06e57fd5c0e107f": [ - [ - { - "count": 1558, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1082": [ - [ - { - "count": 9300, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e3b06e57fd5c0e1085": [ + "6808bafe364a85cccb04c3a5": [ [ { "count": 2615, @@ -13740,47 +13612,23 @@ } ] ], - "677536e4b06e57fd5c0e1088": [ + "6808bafe364a85cccb04c3a8": [ [ { - "count": 4900, + "count": 2900, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e108b": [ + "6808bafe364a85cccb04c3ab": [ [ { - "count": 5900, + "count": 2000, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e108e": [ - [ - { - "count": 13100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e1091": [ - [ - { - "count": 2200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e1094": [ - [ - { - "count": 3990, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e1097": [ + "6808bafe364a85cccb04c3ae": [ [ { "count": 2, @@ -13788,15 +13636,167 @@ } ] ], - "677536e4b06e57fd5c0e109a": [ + "6808bafe364a85cccb04c3b1": [ [ { - "count": 1, - "_tpl": "573476f124597737e04bf328" + "count": 7217, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e109d": [ + "6808bafe364a85cccb04c3b4": [ + [ + { + "count": 98533, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3b7": [ + [ + { + "count": 1, + "_tpl": "590c639286f774151567fa95" + }, + { + "count": 1, + "_tpl": "5672cb124bdc2d1a0f8b4568" + } + ] + ], + "6808bafe364a85cccb04c3ba": [ + [ + { + "count": 4839, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3bd": [ + [ + { + "count": 11040, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3c0": [ + [ + { + "count": 6500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3c2": [ + [ + { + "count": 31750, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3ce": [ + [ + { + "count": 16100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3d1": [ + [ + { + "count": 280, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3d4": [ + [ + { + "count": 8250, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3d7": [ + [ + { + "count": 1500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3da": [ + [ + { + "count": 1200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3dd": [ + [ + { + "count": 34390, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3e0": [ + [ + { + "count": 16150, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3e3": [ + [ + { + "count": 2900, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3e6": [ + [ + { + "count": 5800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bafe364a85cccb04c3e9": [ + [ + { + "count": 8000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c3ec": [ + [ + { + "count": 1, + "_tpl": "5d1b31ce86f7742523398394" + }, + { + "count": 1, + "_tpl": "5d40425986f7743185265461" + } + ] + ], + "6808baff364a85cccb04c3ef": [ + [ + { + "count": 2056, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c3f2": [ [ { "count": 5, @@ -13816,79 +13816,15 @@ } ] ], - "677536e4b06e57fd5c0e10a0": [ + "6808baff364a85cccb04c3f5": [ [ { - "count": 7217, + "count": 3400, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e10a2": [ - [ - { - "count": 30450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10ae": [ - [ - { - "count": 29567, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10b1": [ - [ - { - "count": 98533, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10b4": [ - [ - { - "count": 19600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10b7": [ - [ - { - "count": 2900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10ba": [ - [ - { - "count": 1500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e4b06e57fd5c0e10bc": [ - [ - { - "count": 1, - "_tpl": "5734781f24597737e04bf32a" - }, - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - }, - { - "count": 2, - "_tpl": "5c06782b86f77426df5407d2" - } - ] - ], - "677536e4b06e57fd5c0e10c5": [ + "6808baff364a85cccb04c3f8": [ [ { "count": 10500, @@ -13896,151 +13832,31 @@ } ] ], - "677536e4b06e57fd5c0e10c7": [ + "6808baff364a85cccb04c3fb": [ [ { - "count": 23450, + "count": 13100, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e10d2": [ + "6808baff364a85cccb04c3fe": [ [ { - "count": 11200, + "count": 6400, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e4b06e57fd5c0e10d5": [ + "6808baff364a85cccb04c401": [ [ { - "count": 6900, + "count": 19600, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e5b06e57fd5c0e10d8": [ - [ - { - "count": 4050, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10db": [ - [ - { - "count": 1200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10de": [ - [ - { - "count": 4100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10e1": [ - [ - { - "count": 8250, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10e4": [ - [ - { - "count": 2000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10e7": [ - [ - { - "count": 16250, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10ea": [ - [ - { - "count": 3700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10ed": [ - [ - { - "count": 14823, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e10ef": [ - [ - { - "count": 83637, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e1102": [ - [ - { - "count": 4200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e1105": [ - [ - { - "count": 5225, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e5b06e57fd5c0e1108": [ - [ - { - "count": 30, - "_tpl": "6389c70ca33d8c4cdf4932c6" - }, - { - "count": 10, - "_tpl": "5d03775b86f774203e7e0c4b" - }, - { - "count": 10, - "_tpl": "5c05308086f7746b2101e90b" - }, - { - "count": 10, - "_tpl": "5c05300686f7746dce784e5d" - } - ] - ], - "677536e5b06e57fd5c0e110a": [ - [ - { - "count": 1, - "_tpl": "5d0376a486f7747d8050965c" - }, - { - "count": 1, - "_tpl": "5e2aee0a86f774755a234b62" - } - ] - ], - "677536e5b06e57fd5c0e1114": [ + "6808baff364a85cccb04c404": [ [ { "count": 1800, @@ -14048,31 +13864,119 @@ } ] ], - "677536e5b06e57fd5c0e1117": [ + "6808baff364a85cccb04c407": [ [ { - "count": 1601, + "count": 5900, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e5b06e57fd5c0e111a": [ + "6808baff364a85cccb04c40a": [ [ { - "count": 1015, + "count": 3700, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e5b06e57fd5c0e111d": [ + "6808baff364a85cccb04c40d": [ [ { - "count": 104000, + "count": 6900, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e5b06e57fd5c0e1120": [ + "6808baff364a85cccb04c410": [ + [ + { + "count": 8600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c413": [ + [ + { + "count": 10500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c416": [ + [ + { + "count": 37742, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c419": [ + [ + { + "count": 3990, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c41c": [ + [ + { + "count": 29567, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c41f": [ + [ + { + "count": 2, + "_tpl": "590c392f86f77444754deb29" + } + ] + ], + "6808baff364a85cccb04c422": [ + [ + { + "count": 3750, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c425": [ + [ + { + "count": 15000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c428": [ + [ + { + "count": 2600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baff364a85cccb04c42b": [ + [ + { + "count": 1, + "_tpl": "5e2af51086f7746d3f3c3402" + } + ] + ], + "6808baff364a85cccb04c431": [ + [ + { + "count": 3700, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c434": [ [ { "count": 1, @@ -14080,31 +13984,15 @@ } ] ], - "677536e5b06e57fd5c0e1123": [ + "6808bb00364a85cccb04c437": [ [ { - "count": 7852, + "count": 9800, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e6b06e57fd5c0e112d": [ - [ - { - "count": 5517, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1134": [ - [ - { - "count": 1450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1137": [ + "6808bb00364a85cccb04c43a": [ [ { "count": 21300, @@ -14112,143 +14000,7 @@ } ] ], - "677536e6b06e57fd5c0e113a": [ - [ - { - "count": 8637, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e113d": [ - [ - { - "count": 1240, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1140": [ - [ - { - "count": 2111, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1143": [ - [ - { - "count": 1555, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1149": [ - [ - { - "count": 13258, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e114c": [ - [ - { - "count": 3, - "_tpl": "5c05308086f7746b2101e90b" - }, - { - "count": 1, - "_tpl": "57347ca924597744596b4e71" - }, - { - "count": 5, - "_tpl": "5c1265fc86f7743f896a21c2" - }, - { - "count": 5, - "_tpl": "5c05300686f7746dce784e5d" - } - ] - ], - "677536e6b06e57fd5c0e114f": [ - [ - { - "count": 1, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1152": [ - [ - { - "count": 940, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1155": [ - [ - { - "count": 5225, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1158": [ - [ - { - "count": 1, - "_tpl": "6389c70ca33d8c4cdf4932c6" - }, - { - "count": 1, - "_tpl": "5af0561e86f7745f5f3ad6ac" - } - ] - ], - "677536e6b06e57fd5c0e115b": [ - [ - { - "count": 1, - "_tpl": "573477e124597737dd42e191" - } - ] - ], - "677536e6b06e57fd5c0e115e": [ - [ - { - "count": 1312, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e6b06e57fd5c0e1161": [ - [ - { - "count": 1761, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e1163": [ - [ - { - "count": 1, - "_tpl": "5c12620d86f7743f8b198b72" - } - ] - ], - "677536e7b06e57fd5c0e1166": [ - [ - { - "count": 102338, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e1172": [ + "6808bb00364a85cccb04c43d": [ [ { "count": 5000, @@ -14256,7 +14008,15 @@ } ] ], - "677536e7b06e57fd5c0e1175": [ + "6808bb00364a85cccb04c440": [ + [ + { + "count": 1240, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c443": [ [ { "count": 5, @@ -14276,79 +14036,7 @@ } ] ], - "677536e7b06e57fd5c0e1178": [ - [ - { - "count": 3, - "_tpl": "57347baf24597738002c6178" - } - ] - ], - "677536e7b06e57fd5c0e117b": [ - [ - { - "count": 9547, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e117e": [ - [ - { - "count": 12500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e118f": [ - [ - { - "count": 18000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e11a0": [ - [ - { - "count": 9800, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e11a3": [ - [ - { - "count": 8000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e11a6": [ - [ - { - "count": 2, - "_tpl": "62a09ee4cf4a99369e262453" - } - ] - ], - "677536e7b06e57fd5c0e11a9": [ - [ - { - "count": 803, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e11ac": [ - [ - { - "count": 8824, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e7b06e57fd5c0e11b2": [ + "6808bb00364a85cccb04c446": [ [ { "count": 602, @@ -14356,31 +14044,335 @@ } ] ], - "677536e7b06e57fd5c0e11b5": [ + "6808bb00364a85cccb04c449": [ [ { - "count": 1, - "_tpl": "590c2b4386f77425357b6123" - } - ] - ], - "677536e7b06e57fd5c0e11b7": [ - [ - { - "count": 302322, + "count": 4200, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e7b06e57fd5c0e11cc": [ + "6808bb00364a85cccb04c44c": [ [ { - "count": 1, - "_tpl": "6389c8c5dbfd5e4b95197e6b" + "count": 1555, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e7b06e57fd5c0e11d6": [ + "6808bb00364a85cccb04c456": [ + [ + { + "count": 5517, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c45d": [ + [ + { + "count": 1800, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c460": [ + [ + { + "count": 803, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c463": [ + [ + { + "count": 1601, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c466": [ + [ + { + "count": 1, + "_tpl": "573477e124597737dd42e191" + } + ] + ], + "6808bb00364a85cccb04c46c": [ + [ + { + "count": 5225, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c46f": [ + [ + { + "count": 3, + "_tpl": "5c05308086f7746b2101e90b" + }, + { + "count": 1, + "_tpl": "57347ca924597744596b4e71" + }, + { + "count": 5, + "_tpl": "5c1265fc86f7743f896a21c2" + }, + { + "count": 5, + "_tpl": "5c05300686f7746dce784e5d" + } + ] + ], + "6808bb00364a85cccb04c472": [ + [ + { + "count": 8000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c475": [ + [ + { + "count": 1312, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c477": [ + [ + { + "count": 83637, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c487": [ + [ + { + "count": 1761, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c48a": [ + [ + { + "count": 940, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c48d": [ + [ + { + "count": 7852, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb00364a85cccb04c48f": [ + [ + { + "count": 1, + "_tpl": "5c12620d86f7743f8b198b72" + } + ] + ], + "6808bb01364a85cccb04c496": [ + [ + { + "count": 3, + "_tpl": "57347baf24597738002c6178" + } + ] + ], + "6808bb01364a85cccb04c499": [ + [ + { + "count": 1450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c49c": [ + [ + { + "count": 14823, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c49f": [ + [ + { + "count": 8824, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4a2": [ + [ + { + "count": 13258, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4a5": [ + [ + { + "count": 9547, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4a8": [ + [ + { + "count": 2111, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4ab": [ + [ + { + "count": 1015, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4ae": [ + [ + { + "count": 30, + "_tpl": "6389c70ca33d8c4cdf4932c6" + }, + { + "count": 10, + "_tpl": "5d03775b86f774203e7e0c4b" + }, + { + "count": 10, + "_tpl": "5c05308086f7746b2101e90b" + }, + { + "count": 10, + "_tpl": "5c05300686f7746dce784e5d" + } + ] + ], + "6808bb01364a85cccb04c4b1": [ + [ + { + "count": 2, + "_tpl": "62a09ee4cf4a99369e262453" + } + ] + ], + "6808bb01364a85cccb04c4c2": [ + [ + { + "count": 18000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4d3": [ + [ + { + "count": 104000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4d6": [ + [ + { + "count": 1, + "_tpl": "6389c70ca33d8c4cdf4932c6" + }, + { + "count": 1, + "_tpl": "5af0561e86f7745f5f3ad6ac" + } + ] + ], + "6808bb01364a85cccb04c4d8": [ + [ + { + "count": 102338, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4e4": [ + [ + { + "count": 5225, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4e7": [ + [ + { + "count": 12500, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4ea": [ + [ + { + "count": 1, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4ec": [ + [ + { + "count": 1, + "_tpl": "5d0376a486f7747d8050965c" + }, + { + "count": 1, + "_tpl": "5e2aee0a86f774755a234b62" + } + ] + ], + "6808bb01364a85cccb04c4f6": [ + [ + { + "count": 8637, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4f9": [ + [ + { + "count": 3298, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4fc": [ + [ + { + "count": 1248, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb01364a85cccb04c4ff": [ [ { "count": 5367, @@ -14388,51 +14380,39 @@ } ] ], - "677536e7b06e57fd5c0e11d8": [ + "6808bb01364a85cccb04c502": [ [ { - "count": 1, - "_tpl": "5c05300686f7746dce784e5d" - }, - { - "count": 2, - "_tpl": "5d03784a86f774203e7e0c4d" - } - ] - ], - "677536e8b06e57fd5c0e11e9": [ - [ - { - "count": 3957, + "count": 2825, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e8b06e57fd5c0e11ec": [ + "6808bb02364a85cccb04c505": [ [ { - "count": 1230, + "count": 472, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e8b06e57fd5c0e11ef": [ + "6808bb02364a85cccb04c508": [ [ { - "count": 5355, + "count": 6845, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e8b06e57fd5c0e11f2": [ + "6808bb02364a85cccb04c50b": [ [ { - "count": 4238, + "count": 1065, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536e8b06e57fd5c0e11f5": [ + "6808bb02364a85cccb04c50e": [ [ { "count": 1102, @@ -14440,7 +14420,195 @@ } ] ], - "677536e8b06e57fd5c0e11f8": [ + "6808bb02364a85cccb04c511": [ + [ + { + "count": 5355, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c514": [ + [ + { + "count": 1, + "_tpl": "5af0561e86f7745f5f3ad6ac" + } + ] + ], + "6808bb02364a85cccb04c517": [ + [ + { + "count": 856, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c51a": [ + [ + { + "count": 653, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c51c": [ + [ + { + "count": 119642, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c526": [ + [ + { + "count": 1, + "_tpl": "590c2b4386f77425357b6123" + } + ] + ], + "6808bb02364a85cccb04c529": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c52b": [ + [ + { + "count": 69032, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c534": [ + [ + { + "count": 8513, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c537": [ + [ + { + "count": 565, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c53a": [ + [ + { + "count": 4623, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c53d": [ + [ + { + "count": 824, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c540": [ + [ + { + "count": 1230, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c543": [ + [ + { + "count": 7573, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c546": [ + [ + { + "count": 1, + "_tpl": "62a09dd4621468534a797ac7" + } + ] + ], + "6808bb02364a85cccb04c549": [ + [ + { + "count": 3957, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c54c": [ + [ + { + "count": 1847, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb02364a85cccb04c54e": [ + [ + { + "count": 302322, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c564": [ + [ + { + "count": 422, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c567": [ + [ + { + "count": 1, + "_tpl": "619cbfccbedcde2f5b3f7bdd" + }, + { + "count": 1, + "_tpl": "66b37f114410565a8f6789e2" + } + ] + ], + "6808bb03364a85cccb04c56a": [ + [ + { + "count": 4238, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c56d": [ + [ + { + "count": 1000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c570": [ + [ + { + "count": 1, + "_tpl": "5e2af22086f7746d3f3c33fa" + } + ] + ], + "6808bb03364a85cccb04c573": [ [ { "count": 1, @@ -14452,151 +14620,7 @@ } ] ], - "677536e8b06e57fd5c0e11fb": [ - [ - { - "count": 1, - "_tpl": "5672cb304bdc2dc2088b456a" - } - ] - ], - "677536e8b06e57fd5c0e11fd": [ - [ - { - "count": 69032, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1206": [ - [ - { - "count": 2957, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1209": [ - [ - { - "count": 1349, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e120c": [ - [ - { - "count": 3298, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e120f": [ - [ - { - "count": 5123, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1212": [ - [ - { - "count": 7573, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1215": [ - [ - { - "count": 4623, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e121d": [ - [ - { - "count": 77775, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e122b": [ - [ - { - "count": 750000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e122f": [ - [ - { - "count": 1950, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1232": [ - [ - { - "count": 29422, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1235": [ - [ - { - "count": 6454, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e8b06e57fd5c0e1238": [ - [ - { - "count": 1, - "_tpl": "5e2af22086f7746d3f3c33fa" - } - ] - ], - "677536e9b06e57fd5c0e123b": [ - [ - { - "count": 3641, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e123e": [ - [ - { - "count": 44100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1241": [ - [ - { - "count": 1, - "_tpl": "62a09dd4621468534a797ac7" - } - ] - ], - "677536e9b06e57fd5c0e1244": [ - [ - { - "count": 4623, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1246": [ + "6808bb03364a85cccb04c575": [ [ { "count": 1, @@ -14604,199 +14628,7 @@ } ] ], - "677536e9b06e57fd5c0e1252": [ - [ - { - "count": 8513, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1255": [ - [ - { - "count": 1, - "_tpl": "5672cb124bdc2d1a0f8b4568" - } - ] - ], - "677536e9b06e57fd5c0e1258": [ - [ - { - "count": 824, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e125b": [ - [ - { - "count": 1847, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e125e": [ - [ - { - "count": 7685, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1260": [ - [ - { - "count": 119642, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e126a": [ - [ - { - "count": 6974, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e126d": [ - [ - { - "count": 1847, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1270": [ - [ - { - "count": 856, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1273": [ - [ - { - "count": 8513, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1276": [ - [ - { - "count": 3012, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1279": [ - [ - { - "count": 1, - "_tpl": "5909e99886f7740c983b9984" - } - ] - ], - "677536e9b06e57fd5c0e127c": [ - [ - { - "count": 5463, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e127f": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1282": [ - [ - { - "count": 5355, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536e9b06e57fd5c0e1285": [ - [ - { - "count": 1, - "_tpl": "619cbfccbedcde2f5b3f7bdd" - }, - { - "count": 1, - "_tpl": "66b37f114410565a8f6789e2" - } - ] - ], - "677536eab06e57fd5c0e1288": [ - [ - { - "count": 1, - "_tpl": "57347c77245977448d35f6e2" - } - ] - ], - "677536eab06e57fd5c0e128b": [ - [ - { - "count": 653, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e128e": [ - [ - { - "count": 6845, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e1291": [ - [ - { - "count": 1, - "_tpl": "619cbfccbedcde2f5b3f7bdd" - }, - { - "count": 1, - "_tpl": "66b37f114410565a8f6789e2" - } - ] - ], - "677536eab06e57fd5c0e1294": [ - [ - { - "count": 704, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e1297": [ - [ - { - "count": 422, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e129a": [ - [ - { - "count": 4352, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e129d": [ + "6808bb03364a85cccb04c581": [ [ { "count": 7, @@ -14804,143 +14636,7 @@ } ] ], - "677536eab06e57fd5c0e129f": [ - [ - { - "count": 289140, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12ae": [ - [ - { - "count": 196379, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12c7": [ - [ - { - "count": 864, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12ca": [ - [ - { - "count": 1000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12cd": [ - [ - { - "count": 472, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12d0": [ - [ - { - "count": 2825, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12d3": [ - [ - { - "count": 7465, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12d6": [ - [ - { - "count": 7455, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12d9": [ - [ - { - "count": 2423, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536eab06e57fd5c0e12dc": [ - [ - { - "count": 435, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12df": [ - [ - { - "count": 1847, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12e2": [ - [ - { - "count": 6536, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12e5": [ - [ - { - "count": 1248, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12e8": [ - [ - { - "count": 7, - "_tpl": "5733279d245977289b77ec24" - } - ] - ], - "677536ebb06e57fd5c0e12eb": [ - [ - { - "count": 1, - "_tpl": "5af0561e86f7745f5f3ad6ac" - } - ] - ], - "677536ebb06e57fd5c0e12ee": [ - [ - { - "count": 8523, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12f1": [ - [ - { - "count": 565, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536ebb06e57fd5c0e12f4": [ + "6808bb03364a85cccb04c584": [ [ { "count": 1, @@ -14948,35 +14644,119 @@ } ] ], - "677536ebb06e57fd5c0e12f6": [ + "6808bb03364a85cccb04c58c": [ [ { - "count": 1, - "_tpl": "6389c7750ef44505c87f5996" - }, - { - "count": 1, - "_tpl": "5d0377ce86f774186372f689" - } - ] - ], - "677536ebb06e57fd5c0e130d": [ - [ - { - "count": 2350, + "count": 77775, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ebb06e57fd5c0e1310": [ + "6808bb03364a85cccb04c59a": [ [ { - "count": 1065, + "count": 1, + "_tpl": "5672cb304bdc2dc2088b456a" + } + ] + ], + "6808bb03364a85cccb04c59d": [ + [ + { + "count": 6454, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536ebb06e57fd5c0e1313": [ + "6808bb03364a85cccb04c5a0": [ + [ + { + "count": 435, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5a3": [ + [ + { + "count": 8513, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5a6": [ + [ + { + "count": 6536, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5a9": [ + [ + { + "count": 1, + "_tpl": "5909e99886f7740c983b9984" + } + ] + ], + "6808bb03364a85cccb04c5ac": [ + [ + { + "count": 1, + "_tpl": "57347c77245977448d35f6e2" + } + ] + ], + "6808bb03364a85cccb04c5af": [ + [ + { + "count": 7455, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5b2": [ + [ + { + "count": 1950, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5b5": [ + [ + { + "count": 1847, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5b8": [ + [ + { + "count": 2423, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5bb": [ + [ + { + "count": 29422, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5be": [ + [ + { + "count": 5463, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb03364a85cccb04c5c1": [ [ { "count": 4, @@ -14988,7 +14768,103 @@ } ] ], - "677536ebb06e57fd5c0e1316": [ + "6808bb04364a85cccb04c5c4": [ + [ + { + "count": 8523, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5c7": [ + [ + { + "count": 5123, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5ca": [ + [ + { + "count": 1847, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5cc": [ + [ + { + "count": 1, + "_tpl": "5c05300686f7746dce784e5d" + }, + { + "count": 2, + "_tpl": "5d03784a86f774203e7e0c4d" + } + ] + ], + "6808bb04364a85cccb04c5dc": [ + [ + { + "count": 1, + "_tpl": "6389c7750ef44505c87f5996" + }, + { + "count": 1, + "_tpl": "5d0377ce86f774186372f689" + } + ] + ], + "6808bb04364a85cccb04c5f3": [ + [ + { + "count": 2957, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5f6": [ + [ + { + "count": 1349, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5f9": [ + [ + { + "count": 44100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5fc": [ + [ + { + "count": 3641, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c5ff": [ + [ + { + "count": 7, + "_tpl": "5733279d245977289b77ec24" + } + ] + ], + "6808bb04364a85cccb04c602": [ + [ + { + "count": 4352, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c605": [ [ { "count": 5180, @@ -14996,7 +14872,23 @@ } ] ], - "677536ebb06e57fd5c0e1319": [ + "6808bb04364a85cccb04c608": [ + [ + { + "count": 7685, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c60b": [ + [ + { + "count": 750000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c60f": [ [ { "count": 703, @@ -15004,6 +14896,114 @@ } ] ], + "6808bb04364a85cccb04c612": [ + [ + { + "count": 1, + "_tpl": "619cbfccbedcde2f5b3f7bdd" + }, + { + "count": 1, + "_tpl": "66b37f114410565a8f6789e2" + } + ] + ], + "6808bb04364a85cccb04c614": [ + [ + { + "count": 289140, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c624": [ + [ + { + "count": 5355, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c627": [ + [ + { + "count": 1, + "_tpl": "5672cb124bdc2d1a0f8b4568" + } + ] + ], + "6808bb04364a85cccb04c62a": [ + [ + { + "count": 4623, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c62d": [ + [ + { + "count": 864, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c630": [ + [ + { + "count": 3012, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb04364a85cccb04c633": [ + [ + { + "count": 704, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb05364a85cccb04c635": [ + [ + { + "count": 1, + "_tpl": "6389c8c5dbfd5e4b95197e6b" + } + ] + ], + "6808bb05364a85cccb04c63e": [ + [ + { + "count": 196379, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb05364a85cccb04c657": [ + [ + { + "count": 6974, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb05364a85cccb04c65a": [ + [ + { + "count": 7465, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bb05364a85cccb04c65d": [ + [ + { + "count": 2350, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], "64a2e6f09b9ad2b93b0cab9c": [ [ { @@ -15038,591 +15038,591 @@ ] }, "loyal_level_items": { - "677536c8b06e57fd5c0e09a1": 2, - "677536c8b06e57fd5c0e09a4": 1, - "677536c8b06e57fd5c0e09a7": 2, - "677536c8b06e57fd5c0e09aa": 2, - "677536c8b06e57fd5c0e09ad": 3, - "677536c8b06e57fd5c0e09b0": 2, - "677536c8b06e57fd5c0e09b3": 1, - "677536c8b06e57fd5c0e09b6": 3, - "677536c8b06e57fd5c0e09b9": 2, - "677536c8b06e57fd5c0e09bc": 2, - "677536c8b06e57fd5c0e09bf": 2, - "677536c8b06e57fd5c0e09c1": 2, - "677536c8b06e57fd5c0e09cc": 4, - "677536c8b06e57fd5c0e09cf": 3, - "677536c8b06e57fd5c0e09d2": 2, - "677536c8b06e57fd5c0e09d5": 2, - "677536c8b06e57fd5c0e09d8": 3, - "677536c8b06e57fd5c0e09db": 1, - "677536c9b06e57fd5c0e09de": 4, - "677536c9b06e57fd5c0e09e1": 1, - "677536c9b06e57fd5c0e09e4": 1, - "677536c9b06e57fd5c0e09e7": 2, - "677536c9b06e57fd5c0e09ea": 2, - "677536c9b06e57fd5c0e09ed": 2, - "677536c9b06e57fd5c0e09f0": 2, - "677536c9b06e57fd5c0e09f3": 1, - "677536c9b06e57fd5c0e09f6": 3, - "677536c9b06e57fd5c0e09f9": 2, - "677536c9b06e57fd5c0e09fc": 3, - "677536c9b06e57fd5c0e09ff": 1, - "677536c9b06e57fd5c0e0a02": 1, - "677536c9b06e57fd5c0e0a05": 1, - "677536c9b06e57fd5c0e0a08": 1, - "677536c9b06e57fd5c0e0a0b": 1, - "677536c9b06e57fd5c0e0a0e": 1, - "677536c9b06e57fd5c0e0a11": 2, - "677536c9b06e57fd5c0e0a14": 2, - "677536cab06e57fd5c0e0a17": 3, - "677536cab06e57fd5c0e0a1a": 3, - "677536cab06e57fd5c0e0a1d": 4, - "677536cab06e57fd5c0e0a20": 1, - "677536cab06e57fd5c0e0a23": 3, - "677536cab06e57fd5c0e0a26": 2, - "677536cab06e57fd5c0e0a29": 2, - "677536cab06e57fd5c0e0a2c": 1, - "677536cab06e57fd5c0e0a2f": 1, - "677536cab06e57fd5c0e0a32": 1, - "677536cab06e57fd5c0e0a34": 1, - "677536cab06e57fd5c0e0a3e": 1, - "677536cab06e57fd5c0e0a41": 2, - "677536cab06e57fd5c0e0a43": 2, - "677536cab06e57fd5c0e0a4d": 2, - "677536cab06e57fd5c0e0a50": 1, - "677536cab06e57fd5c0e0a53": 2, - "677536cab06e57fd5c0e0a55": 2, - "677536cbb06e57fd5c0e0a6a": 1, - "677536cbb06e57fd5c0e0a7d": 2, - "677536cbb06e57fd5c0e0a80": 1, - "677536cbb06e57fd5c0e0a83": 1, - "677536cbb06e57fd5c0e0a86": 3, - "677536cbb06e57fd5c0e0a89": 3, - "677536cbb06e57fd5c0e0a8c": 2, - "677536cbb06e57fd5c0e0a8f": 2, - "677536cbb06e57fd5c0e0a92": 1, - "677536cbb06e57fd5c0e0a95": 1, - "677536cbb06e57fd5c0e0a97": 2, - "677536cbb06e57fd5c0e0aa1": 2, - "677536cbb06e57fd5c0e0aa4": 3, - "677536cbb06e57fd5c0e0aa7": 2, - "677536cbb06e57fd5c0e0aaa": 3, - "677536cbb06e57fd5c0e0aad": 4, - "677536cbb06e57fd5c0e0ab0": 2, - "677536cbb06e57fd5c0e0ab2": 4, - "677536cbb06e57fd5c0e0abc": 2, - "677536ccb06e57fd5c0e0abf": 1, - "677536ccb06e57fd5c0e0ac2": 4, - "677536ccb06e57fd5c0e0ac4": 1, - "677536ccb06e57fd5c0e0ad2": 1, - "677536ccb06e57fd5c0e0ad5": 4, - "677536ccb06e57fd5c0e0ad8": 1, - "677536ccb06e57fd5c0e0adb": 3, - "677536ccb06e57fd5c0e0ade": 2, - "677536ccb06e57fd5c0e0ae1": 2, - "677536ccb06e57fd5c0e0ae4": 1, - "677536ccb06e57fd5c0e0ae7": 2, - "677536ccb06e57fd5c0e0aea": 2, - "677536ccb06e57fd5c0e0aed": 3, - "677536ccb06e57fd5c0e0af0": 4, - "677536ccb06e57fd5c0e0af3": 1, - "677536ccb06e57fd5c0e0af6": 2, - "677536ccb06e57fd5c0e0af9": 3, - "677536ccb06e57fd5c0e0afc": 3, - "677536ccb06e57fd5c0e0afe": 1, - "677536ccb06e57fd5c0e0b06": 3, - "677536cdb06e57fd5c0e0b0a": 2, - "677536cdb06e57fd5c0e0b0d": 2, - "677536cdb06e57fd5c0e0b10": 1, - "677536cdb06e57fd5c0e0b13": 1, - "677536cdb06e57fd5c0e0b16": 4, - "677536cdb06e57fd5c0e0b19": 3, - "677536cdb06e57fd5c0e0b1b": 1, - "677536cdb06e57fd5c0e0b28": 4, - "677536cdb06e57fd5c0e0b2b": 4, - "677536cdb06e57fd5c0e0b2e": 4, - "677536cdb06e57fd5c0e0b31": 2, - "677536cdb06e57fd5c0e0b34": 3, - "677536cdb06e57fd5c0e0b37": 1, - "677536cdb06e57fd5c0e0b3a": 4, - "677536cdb06e57fd5c0e0b3d": 4, - "677536cdb06e57fd5c0e0b40": 1, - "677536cdb06e57fd5c0e0b42": 3, - "677536cdb06e57fd5c0e0b4a": 1, - "677536cdb06e57fd5c0e0b4d": 3, - "677536cdb06e57fd5c0e0b50": 3, - "677536cdb06e57fd5c0e0b53": 1, - "677536cdb06e57fd5c0e0b56": 3, - "677536ceb06e57fd5c0e0b61": 3, - "677536ceb06e57fd5c0e0b74": 3, - "677536ceb06e57fd5c0e0b7f": 2, - "677536ceb06e57fd5c0e0b82": 2, - "677536ceb06e57fd5c0e0b85": 2, - "677536ceb06e57fd5c0e0b88": 4, - "677536ceb06e57fd5c0e0b8a": 2, - "677536ceb06e57fd5c0e0b93": 3, - "677536ceb06e57fd5c0e0ba1": 2, - "677536ceb06e57fd5c0e0ba4": 3, - "677536ceb06e57fd5c0e0ba7": 1, - "677536ceb06e57fd5c0e0ba9": 3, - "677536ceb06e57fd5c0e0bb5": 4, - "677536ceb06e57fd5c0e0bb8": 4, - "677536ceb06e57fd5c0e0bbb": 1, - "677536ceb06e57fd5c0e0bbe": 3, - "677536ceb06e57fd5c0e0bc1": 2, - "677536ceb06e57fd5c0e0bc4": 2, - "677536ceb06e57fd5c0e0bc7": 2, - "677536cfb06e57fd5c0e0bca": 2, - "677536cfb06e57fd5c0e0bcd": 1, - "677536cfb06e57fd5c0e0bcf": 3, - "677536cfb06e57fd5c0e0bda": 2, - "677536cfb06e57fd5c0e0bdc": 3, - "677536cfb06e57fd5c0e0be6": 2, - "677536cfb06e57fd5c0e0be9": 1, - "677536cfb06e57fd5c0e0bec": 1, - "677536cfb06e57fd5c0e0bef": 4, - "677536cfb06e57fd5c0e0bf7": 1, - "677536cfb06e57fd5c0e0bff": 3, - "677536cfb06e57fd5c0e0c01": 1, - "677536cfb06e57fd5c0e0c08": 1, - "677536cfb06e57fd5c0e0c13": 3, - "677536cfb06e57fd5c0e0c16": 1, - "677536d0b06e57fd5c0e0c19": 1, - "677536d0b06e57fd5c0e0c1c": 1, - "677536d0b06e57fd5c0e0c1f": 2, - "677536d0b06e57fd5c0e0c22": 1, - "677536d0b06e57fd5c0e0c25": 4, - "677536d0b06e57fd5c0e0c28": 2, - "677536d0b06e57fd5c0e0c37": 2, - "677536d0b06e57fd5c0e0c45": 3, - "677536d0b06e57fd5c0e0c54": 2, - "677536d0b06e57fd5c0e0c57": 3, - "677536d0b06e57fd5c0e0c5a": 2, - "677536d0b06e57fd5c0e0c5d": 2, - "677536d0b06e57fd5c0e0c60": 3, - "677536d0b06e57fd5c0e0c63": 3, - "677536d0b06e57fd5c0e0c66": 2, - "677536d0b06e57fd5c0e0c69": 2, - "677536d0b06e57fd5c0e0c6c": 3, - "677536d0b06e57fd5c0e0c6f": 2, - "677536d0b06e57fd5c0e0c72": 1, - "677536d0b06e57fd5c0e0c75": 4, - "677536d1b06e57fd5c0e0c78": 1, - "677536d1b06e57fd5c0e0c7b": 1, - "677536d1b06e57fd5c0e0c7d": 3, - "677536d1b06e57fd5c0e0c88": 2, - "677536d1b06e57fd5c0e0c8b": 4, - "677536d1b06e57fd5c0e0c8e": 3, - "677536d1b06e57fd5c0e0c91": 3, - "677536d1b06e57fd5c0e0c94": 4, - "677536d1b06e57fd5c0e0c96": 3, - "677536d1b06e57fd5c0e0ca5": 4, - "677536d1b06e57fd5c0e0ca8": 4, - "677536d1b06e57fd5c0e0cab": 1, - "677536d1b06e57fd5c0e0cae": 4, - "677536d1b06e57fd5c0e0cb1": 2, - "677536d1b06e57fd5c0e0cb4": 4, - "677536d1b06e57fd5c0e0cb7": 2, - "677536d1b06e57fd5c0e0cba": 2, - "677536d1b06e57fd5c0e0cbd": 4, - "677536d1b06e57fd5c0e0cc0": 4, - "677536d1b06e57fd5c0e0cc3": 1, - "677536d1b06e57fd5c0e0cc6": 1, - "677536d2b06e57fd5c0e0cc8": 2, - "677536d2b06e57fd5c0e0ccf": 2, - "677536d2b06e57fd5c0e0cd2": 2, - "677536d2b06e57fd5c0e0cd5": 3, - "677536d2b06e57fd5c0e0cd8": 4, - "677536d2b06e57fd5c0e0cdb": 4, - "677536d2b06e57fd5c0e0cde": 2, - "677536d2b06e57fd5c0e0ce1": 3, - "677536d2b06e57fd5c0e0ce4": 4, - "677536d2b06e57fd5c0e0ce7": 3, - "677536d2b06e57fd5c0e0cea": 4, - "677536d2b06e57fd5c0e0ced": 4, - "677536d2b06e57fd5c0e0cf0": 1, - "677536d2b06e57fd5c0e0cf3": 1, - "677536d2b06e57fd5c0e0cf6": 1, - "677536d2b06e57fd5c0e0cf9": 2, - "677536d2b06e57fd5c0e0cfc": 4, - "677536d2b06e57fd5c0e0cff": 3, - "677536d3b06e57fd5c0e0d02": 4, - "677536d3b06e57fd5c0e0d04": 2, - "677536d3b06e57fd5c0e0d0f": 1, - "677536d3b06e57fd5c0e0d18": 2, - "677536d3b06e57fd5c0e0d1b": 2, - "677536d3b06e57fd5c0e0d1e": 2, - "677536d3b06e57fd5c0e0d21": 1, - "677536d3b06e57fd5c0e0d24": 2, - "677536d4b06e57fd5c0e0d27": 1, - "677536d4b06e57fd5c0e0d2a": 4, - "677536d4b06e57fd5c0e0d2d": 3, - "677536d4b06e57fd5c0e0d30": 1, - "677536d4b06e57fd5c0e0d33": 2, - "677536d5b06e57fd5c0e0d36": 4, - "677536d5b06e57fd5c0e0d38": 1, - "677536d5b06e57fd5c0e0d45": 4, - "677536d5b06e57fd5c0e0d48": 2, - "677536d5b06e57fd5c0e0d4b": 3, - "677536d6b06e57fd5c0e0d4e": 2, - "677536d6b06e57fd5c0e0d51": 2, - "677536d6b06e57fd5c0e0d54": 3, - "677536d6b06e57fd5c0e0d57": 3, - "677536d6b06e57fd5c0e0d5a": 3, - "677536d6b06e57fd5c0e0d5d": 1, - "677536d6b06e57fd5c0e0d5f": 4, - "677536d6b06e57fd5c0e0d6e": 1, - "677536d6b06e57fd5c0e0d71": 2, - "677536d7b06e57fd5c0e0d74": 2, - "677536d7b06e57fd5c0e0d78": 3, - "677536d7b06e57fd5c0e0d7b": 1, - "677536d7b06e57fd5c0e0d7e": 4, - "677536d7b06e57fd5c0e0d81": 4, - "677536d7b06e57fd5c0e0d84": 1, - "677536d7b06e57fd5c0e0d87": 3, - "677536d7b06e57fd5c0e0d8a": 2, - "677536d7b06e57fd5c0e0d8d": 1, - "677536d8b06e57fd5c0e0d90": 3, - "677536d8b06e57fd5c0e0d93": 3, - "677536d8b06e57fd5c0e0d96": 4, - "677536d8b06e57fd5c0e0d99": 2, - "677536d8b06e57fd5c0e0d9c": 2, - "677536d9b06e57fd5c0e0d9f": 1, - "677536dab06e57fd5c0e0da2": 3, - "677536dab06e57fd5c0e0da5": 3, - "677536dab06e57fd5c0e0da8": 4, - "677536dbb06e57fd5c0e0dab": 3, - "677536dbb06e57fd5c0e0dae": 3, - "677536dbb06e57fd5c0e0db1": 2, - "677536dbb06e57fd5c0e0db4": 3, - "677536dbb06e57fd5c0e0db7": 2, - "677536dbb06e57fd5c0e0dba": 2, - "677536dbb06e57fd5c0e0dbd": 1, - "677536dbb06e57fd5c0e0dc0": 2, - "677536dbb06e57fd5c0e0dc3": 1, - "677536dbb06e57fd5c0e0dc6": 3, - "677536dbb06e57fd5c0e0dc9": 1, - "677536dbb06e57fd5c0e0dcc": 2, - "677536dbb06e57fd5c0e0dcf": 1, - "677536dbb06e57fd5c0e0dd2": 4, - "677536dbb06e57fd5c0e0dd5": 4, - "677536dbb06e57fd5c0e0dd8": 4, - "677536dbb06e57fd5c0e0ddb": 3, - "677536dbb06e57fd5c0e0dde": 4, - "677536dbb06e57fd5c0e0de1": 2, - "677536dbb06e57fd5c0e0de4": 3, - "677536dcb06e57fd5c0e0de7": 3, - "677536dcb06e57fd5c0e0dea": 4, - "677536dcb06e57fd5c0e0ded": 4, - "677536dcb06e57fd5c0e0df0": 3, - "677536dcb06e57fd5c0e0df3": 2, - "677536dcb06e57fd5c0e0df6": 3, - "677536dcb06e57fd5c0e0df9": 4, - "677536dcb06e57fd5c0e0dfc": 3, - "677536dcb06e57fd5c0e0dff": 3, - "677536dcb06e57fd5c0e0e02": 3, - "677536dcb06e57fd5c0e0e05": 3, - "677536dcb06e57fd5c0e0e08": 3, - "677536dcb06e57fd5c0e0e16": 4, - "677536dcb06e57fd5c0e0e24": 2, - "677536dcb06e57fd5c0e0e27": 2, - "677536dcb06e57fd5c0e0e2a": 3, - "677536dcb06e57fd5c0e0e2c": 3, - "677536dcb06e57fd5c0e0e38": 3, - "677536dcb06e57fd5c0e0e3b": 4, - "677536dcb06e57fd5c0e0e3d": 3, - "677536dcb06e57fd5c0e0e4f": 2, - "677536ddb06e57fd5c0e0e52": 3, - "677536ddb06e57fd5c0e0e55": 4, - "677536ddb06e57fd5c0e0e58": 4, - "677536ddb06e57fd5c0e0e5b": 3, - "677536ddb06e57fd5c0e0e5e": 3, - "677536ddb06e57fd5c0e0e61": 4, - "677536ddb06e57fd5c0e0e64": 4, - "677536ddb06e57fd5c0e0e67": 3, - "677536ddb06e57fd5c0e0e6a": 4, - "677536ddb06e57fd5c0e0e74": 1, - "677536ddb06e57fd5c0e0e7e": 2, - "677536ddb06e57fd5c0e0e81": 3, - "677536ddb06e57fd5c0e0e84": 3, - "677536ddb06e57fd5c0e0e86": 4, - "677536ddb06e57fd5c0e0e97": 2, - "677536ddb06e57fd5c0e0e9a": 3, - "677536ddb06e57fd5c0e0e9d": 4, - "677536ddb06e57fd5c0e0ea0": 4, - "677536ddb06e57fd5c0e0ea3": 4, - "677536deb06e57fd5c0e0ea6": 2, - "677536deb06e57fd5c0e0eb1": 2, - "677536deb06e57fd5c0e0ebc": 3, - "677536deb06e57fd5c0e0ebf": 4, - "677536deb06e57fd5c0e0ec2": 4, - "677536deb06e57fd5c0e0ec5": 2, - "677536deb06e57fd5c0e0ec8": 3, - "677536deb06e57fd5c0e0ecb": 4, - "677536deb06e57fd5c0e0ece": 4, - "677536deb06e57fd5c0e0ed1": 3, - "677536deb06e57fd5c0e0ed4": 3, - "677536deb06e57fd5c0e0ed7": 2, - "677536deb06e57fd5c0e0eda": 3, - "677536deb06e57fd5c0e0edc": 2, - "677536deb06e57fd5c0e0eea": 2, - "677536deb06e57fd5c0e0ef5": 2, - "677536deb06e57fd5c0e0f00": 3, - "677536deb06e57fd5c0e0f03": 3, - "677536deb06e57fd5c0e0f06": 1, - "677536deb06e57fd5c0e0f09": 1, - "677536dfb06e57fd5c0e0f0c": 3, - "677536dfb06e57fd5c0e0f0f": 4, - "677536dfb06e57fd5c0e0f12": 3, - "677536dfb06e57fd5c0e0f15": 3, - "677536dfb06e57fd5c0e0f18": 3, - "677536dfb06e57fd5c0e0f1b": 3, - "677536dfb06e57fd5c0e0f29": 4, - "677536dfb06e57fd5c0e0f3d": 1, - "677536dfb06e57fd5c0e0f46": 2, - "677536dfb06e57fd5c0e0f49": 1, - "677536dfb06e57fd5c0e0f4c": 4, - "677536dfb06e57fd5c0e0f4f": 2, - "677536dfb06e57fd5c0e0f52": 4, - "677536dfb06e57fd5c0e0f55": 4, - "677536dfb06e57fd5c0e0f58": 4, - "677536dfb06e57fd5c0e0f5b": 3, - "677536dfb06e57fd5c0e0f5e": 3, - "677536dfb06e57fd5c0e0f61": 4, - "677536dfb06e57fd5c0e0f64": 3, - "677536dfb06e57fd5c0e0f67": 3, - "677536dfb06e57fd5c0e0f6a": 2, - "677536dfb06e57fd5c0e0f6d": 3, - "677536e0b06e57fd5c0e0f70": 3, - "677536e0b06e57fd5c0e0f73": 4, - "677536e0b06e57fd5c0e0f76": 2, - "677536e0b06e57fd5c0e0f80": 3, - "677536e0b06e57fd5c0e0f8a": 3, - "677536e0b06e57fd5c0e0f8d": 1, - "677536e0b06e57fd5c0e0f90": 2, - "677536e0b06e57fd5c0e0f93": 3, - "677536e0b06e57fd5c0e0f96": 4, - "677536e0b06e57fd5c0e0f99": 3, - "677536e0b06e57fd5c0e0f9c": 2, - "677536e0b06e57fd5c0e0f9f": 4, - "677536e0b06e57fd5c0e0fa2": 3, - "677536e0b06e57fd5c0e0fa5": 3, - "677536e0b06e57fd5c0e0fa8": 2, - "677536e0b06e57fd5c0e0fab": 4, - "677536e0b06e57fd5c0e0fae": 1, - "677536e0b06e57fd5c0e0fb1": 1, - "677536e0b06e57fd5c0e0fb4": 2, - "677536e1b06e57fd5c0e0fb7": 2, - "677536e1b06e57fd5c0e0fba": 1, - "677536e1b06e57fd5c0e0fbd": 3, - "677536e1b06e57fd5c0e0fc0": 3, - "677536e1b06e57fd5c0e0fc3": 2, - "677536e1b06e57fd5c0e0fc6": 2, - "677536e1b06e57fd5c0e0fc9": 1, - "677536e1b06e57fd5c0e0fcc": 3, - "677536e1b06e57fd5c0e0fcf": 2, - "677536e1b06e57fd5c0e0fd2": 2, - "677536e1b06e57fd5c0e0fd4": 3, - "677536e1b06e57fd5c0e0fe5": 2, - "677536e1b06e57fd5c0e0fe8": 1, - "677536e1b06e57fd5c0e0feb": 1, - "677536e1b06e57fd5c0e0fee": 4, - "677536e1b06e57fd5c0e0ff1": 3, - "677536e1b06e57fd5c0e0ff4": 2, - "677536e1b06e57fd5c0e0ff7": 3, - "677536e2b06e57fd5c0e0ffa": 4, - "677536e2b06e57fd5c0e0ffd": 3, - "677536e2b06e57fd5c0e1000": 4, - "677536e2b06e57fd5c0e1003": 1, - "677536e2b06e57fd5c0e1005": 1, - "677536e2b06e57fd5c0e100f": 1, - "677536e2b06e57fd5c0e1012": 2, - "677536e2b06e57fd5c0e1015": 1, - "677536e2b06e57fd5c0e1018": 3, - "677536e2b06e57fd5c0e101b": 1, - "677536e2b06e57fd5c0e101e": 3, - "677536e2b06e57fd5c0e1020": 3, - "677536e2b06e57fd5c0e102c": 2, - "677536e2b06e57fd5c0e102f": 2, - "677536e2b06e57fd5c0e1032": 1, - "677536e2b06e57fd5c0e1035": 1, - "677536e2b06e57fd5c0e1038": 3, - "677536e2b06e57fd5c0e103b": 1, - "677536e2b06e57fd5c0e103e": 2, - "677536e2b06e57fd5c0e1041": 4, - "677536e2b06e57fd5c0e1044": 2, - "677536e3b06e57fd5c0e1047": 4, - "677536e3b06e57fd5c0e104a": 3, - "677536e3b06e57fd5c0e104d": 3, - "677536e3b06e57fd5c0e1050": 1, - "677536e3b06e57fd5c0e1053": 4, - "677536e3b06e57fd5c0e1056": 3, - "677536e3b06e57fd5c0e1059": 3, - "677536e3b06e57fd5c0e105c": 3, - "677536e3b06e57fd5c0e105f": 2, - "677536e3b06e57fd5c0e1062": 3, - "677536e3b06e57fd5c0e1065": 3, - "677536e3b06e57fd5c0e1067": 2, - "677536e3b06e57fd5c0e1070": 4, - "677536e3b06e57fd5c0e1073": 3, - "677536e3b06e57fd5c0e1076": 1, - "677536e3b06e57fd5c0e1079": 3, - "677536e3b06e57fd5c0e107c": 2, - "677536e3b06e57fd5c0e107f": 1, - "677536e3b06e57fd5c0e1082": 3, - "677536e3b06e57fd5c0e1085": 3, - "677536e4b06e57fd5c0e1088": 2, - "677536e4b06e57fd5c0e108b": 1, - "677536e4b06e57fd5c0e108e": 4, - "677536e4b06e57fd5c0e1091": 3, - "677536e4b06e57fd5c0e1094": 1, - "677536e4b06e57fd5c0e1097": 2, - "677536e4b06e57fd5c0e109a": 1, - "677536e4b06e57fd5c0e109d": 4, - "677536e4b06e57fd5c0e10a0": 2, - "677536e4b06e57fd5c0e10a2": 2, - "677536e4b06e57fd5c0e10ae": 4, - "677536e4b06e57fd5c0e10b1": 3, - "677536e4b06e57fd5c0e10b4": 4, - "677536e4b06e57fd5c0e10b7": 1, - "677536e4b06e57fd5c0e10ba": 1, - "677536e4b06e57fd5c0e10bc": 1, - "677536e4b06e57fd5c0e10c5": 2, - "677536e4b06e57fd5c0e10c7": 2, - "677536e4b06e57fd5c0e10d2": 3, - "677536e4b06e57fd5c0e10d5": 2, - "677536e5b06e57fd5c0e10d8": 3, - "677536e5b06e57fd5c0e10db": 2, - "677536e5b06e57fd5c0e10de": 3, - "677536e5b06e57fd5c0e10e1": 3, - "677536e5b06e57fd5c0e10e4": 4, - "677536e5b06e57fd5c0e10e7": 3, - "677536e5b06e57fd5c0e10ea": 2, - "677536e5b06e57fd5c0e10ed": 4, - "677536e5b06e57fd5c0e10ef": 3, - "677536e5b06e57fd5c0e10ff": 1, - "677536e5b06e57fd5c0e1102": 2, - "677536e5b06e57fd5c0e1105": 3, - "677536e5b06e57fd5c0e1108": 4, - "677536e5b06e57fd5c0e110a": 3, - "677536e5b06e57fd5c0e1114": 4, - "677536e5b06e57fd5c0e1117": 2, - "677536e5b06e57fd5c0e111a": 1, - "677536e5b06e57fd5c0e111d": 4, - "677536e5b06e57fd5c0e1120": 1, - "677536e5b06e57fd5c0e1123": 2, - "677536e6b06e57fd5c0e1126": 1, - "677536e6b06e57fd5c0e112d": 1, - "677536e6b06e57fd5c0e1134": 3, - "677536e6b06e57fd5c0e1137": 4, - "677536e6b06e57fd5c0e113a": 2, - "677536e6b06e57fd5c0e113d": 3, - "677536e6b06e57fd5c0e1140": 3, - "677536e6b06e57fd5c0e1143": 1, - "677536e6b06e57fd5c0e1146": 1, - "677536e6b06e57fd5c0e1149": 3, - "677536e6b06e57fd5c0e114c": 4, - "677536e6b06e57fd5c0e114f": 1, - "677536e6b06e57fd5c0e1152": 1, - "677536e6b06e57fd5c0e1155": 3, - "677536e6b06e57fd5c0e1158": 1, - "677536e6b06e57fd5c0e115b": 1, - "677536e6b06e57fd5c0e115e": 1, - "677536e6b06e57fd5c0e1161": 1, - "677536e7b06e57fd5c0e1163": 1, - "677536e7b06e57fd5c0e1166": 4, - "677536e7b06e57fd5c0e1172": 3, - "677536e7b06e57fd5c0e1175": 4, - "677536e7b06e57fd5c0e1178": 2, - "677536e7b06e57fd5c0e117b": 3, - "677536e7b06e57fd5c0e117e": 2, - "677536e7b06e57fd5c0e118f": 2, - "677536e7b06e57fd5c0e11a0": 3, - "677536e7b06e57fd5c0e11a3": 4, - "677536e7b06e57fd5c0e11a6": 1, - "677536e7b06e57fd5c0e11a9": 3, - "677536e7b06e57fd5c0e11ac": 3, - "677536e7b06e57fd5c0e11af": 1, - "677536e7b06e57fd5c0e11b2": 3, - "677536e7b06e57fd5c0e11b5": 1, - "677536e7b06e57fd5c0e11b7": 4, - "677536e7b06e57fd5c0e11cc": 4, - "677536e7b06e57fd5c0e11d6": 4, - "677536e7b06e57fd5c0e11d8": 4, - "677536e8b06e57fd5c0e11e9": 3, - "677536e8b06e57fd5c0e11ec": 3, - "677536e8b06e57fd5c0e11ef": 3, - "677536e8b06e57fd5c0e11f2": 3, - "677536e8b06e57fd5c0e11f5": 1, - "677536e8b06e57fd5c0e11f8": 4, - "677536e8b06e57fd5c0e11fb": 1, - "677536e8b06e57fd5c0e11fd": 3, - "677536e8b06e57fd5c0e1206": 2, - "677536e8b06e57fd5c0e1209": 3, - "677536e8b06e57fd5c0e120c": 1, - "677536e8b06e57fd5c0e120f": 1, - "677536e8b06e57fd5c0e1212": 2, - "677536e8b06e57fd5c0e1215": 2, - "677536e8b06e57fd5c0e121d": 2, - "677536e8b06e57fd5c0e122b": 2, - "677536e8b06e57fd5c0e122f": 3, - "677536e8b06e57fd5c0e1232": 4, - "677536e8b06e57fd5c0e1235": 2, - "677536e8b06e57fd5c0e1238": 3, - "677536e9b06e57fd5c0e123b": 2, - "677536e9b06e57fd5c0e123e": 2, - "677536e9b06e57fd5c0e1241": 4, - "677536e9b06e57fd5c0e1244": 2, - "677536e9b06e57fd5c0e1246": 1, - "677536e9b06e57fd5c0e1252": 3, - "677536e9b06e57fd5c0e1255": 1, - "677536e9b06e57fd5c0e1258": 3, - "677536e9b06e57fd5c0e125b": 1, - "677536e9b06e57fd5c0e125e": 1, - "677536e9b06e57fd5c0e1260": 4, - "677536e9b06e57fd5c0e126a": 2, - "677536e9b06e57fd5c0e126d": 3, - "677536e9b06e57fd5c0e1270": 3, - "677536e9b06e57fd5c0e1273": 3, - "677536e9b06e57fd5c0e1276": 3, - "677536e9b06e57fd5c0e1279": 1, - "677536e9b06e57fd5c0e127c": 2, - "677536e9b06e57fd5c0e127f": 2, - "677536e9b06e57fd5c0e1282": 3, - "677536e9b06e57fd5c0e1285": 2, - "677536eab06e57fd5c0e1288": 1, - "677536eab06e57fd5c0e128b": 2, - "677536eab06e57fd5c0e128e": 2, - "677536eab06e57fd5c0e1291": 2, - "677536eab06e57fd5c0e1294": 1, - "677536eab06e57fd5c0e1297": 4, - "677536eab06e57fd5c0e129a": 3, - "677536eab06e57fd5c0e129d": 3, - "677536eab06e57fd5c0e129f": 4, - "677536eab06e57fd5c0e12ae": 4, - "677536eab06e57fd5c0e12c7": 2, - "677536eab06e57fd5c0e12ca": 1, - "677536eab06e57fd5c0e12cd": 2, - "677536eab06e57fd5c0e12d0": 1, - "677536eab06e57fd5c0e12d3": 3, - "677536eab06e57fd5c0e12d6": 3, - "677536eab06e57fd5c0e12d9": 3, - "677536eab06e57fd5c0e12dc": 2, - "677536ebb06e57fd5c0e12df": 1, - "677536ebb06e57fd5c0e12e2": 1, - "677536ebb06e57fd5c0e12e5": 1, - "677536ebb06e57fd5c0e12e8": 3, - "677536ebb06e57fd5c0e12eb": 2, - "677536ebb06e57fd5c0e12ee": 2, - "677536ebb06e57fd5c0e12f1": 2, - "677536ebb06e57fd5c0e12f4": 1, - "677536ebb06e57fd5c0e12f6": 4, - "677536ebb06e57fd5c0e130d": 2, - "677536ebb06e57fd5c0e1310": 3, - "677536ebb06e57fd5c0e1313": 4, - "677536ebb06e57fd5c0e1316": 3, - "677536ebb06e57fd5c0e1319": 1, + "6808baec364a85cccb04bce5": 2, + "6808baec364a85cccb04bce8": 2, + "6808baec364a85cccb04bceb": 1, + "6808baec364a85cccb04bcee": 2, + "6808baec364a85cccb04bcf1": 3, + "6808baec364a85cccb04bcf4": 3, + "6808baec364a85cccb04bcf7": 1, + "6808baec364a85cccb04bcfa": 1, + "6808baec364a85cccb04bcfc": 2, + "6808baed364a85cccb04bd07": 3, + "6808baed364a85cccb04bd0a": 1, + "6808baed364a85cccb04bd0d": 2, + "6808baed364a85cccb04bd10": 3, + "6808baed364a85cccb04bd13": 2, + "6808baed364a85cccb04bd16": 2, + "6808baed364a85cccb04bd19": 2, + "6808baed364a85cccb04bd1c": 2, + "6808baed364a85cccb04bd1f": 4, + "6808baed364a85cccb04bd22": 1, + "6808baed364a85cccb04bd25": 2, + "6808baed364a85cccb04bd28": 1, + "6808baed364a85cccb04bd2b": 4, + "6808baed364a85cccb04bd2e": 1, + "6808baed364a85cccb04bd31": 1, + "6808baed364a85cccb04bd34": 1, + "6808baed364a85cccb04bd37": 2, + "6808baed364a85cccb04bd3a": 3, + "6808baed364a85cccb04bd3d": 2, + "6808baed364a85cccb04bd40": 2, + "6808baed364a85cccb04bd43": 1, + "6808baed364a85cccb04bd46": 2, + "6808baed364a85cccb04bd49": 1, + "6808baed364a85cccb04bd4c": 1, + "6808baee364a85cccb04bd4f": 2, + "6808baee364a85cccb04bd52": 3, + "6808baee364a85cccb04bd55": 2, + "6808baee364a85cccb04bd58": 2, + "6808baee364a85cccb04bd5b": 4, + "6808baee364a85cccb04bd5e": 3, + "6808baee364a85cccb04bd61": 1, + "6808baee364a85cccb04bd64": 1, + "6808baee364a85cccb04bd67": 1, + "6808baee364a85cccb04bd6a": 2, + "6808baee364a85cccb04bd6d": 2, + "6808baee364a85cccb04bd70": 3, + "6808baee364a85cccb04bd73": 3, + "6808baee364a85cccb04bd76": 1, + "6808baee364a85cccb04bd79": 1, + "6808baee364a85cccb04bd7c": 2, + "6808baee364a85cccb04bd7f": 4, + "6808baee364a85cccb04bd82": 1, + "6808baee364a85cccb04bd85": 2, + "6808baee364a85cccb04bd88": 2, + "6808baee364a85cccb04bd8b": 2, + "6808baee364a85cccb04bd8e": 2, + "6808baee364a85cccb04bd90": 2, + "6808baee364a85cccb04bd9a": 3, + "6808baee364a85cccb04bd9d": 3, + "6808baef364a85cccb04bda0": 2, + "6808baef364a85cccb04bda2": 1, + "6808baef364a85cccb04bdb0": 3, + "6808baef364a85cccb04bdb3": 2, + "6808baef364a85cccb04bdb6": 4, + "6808baef364a85cccb04bdb9": 1, + "6808baef364a85cccb04bdbc": 4, + "6808baef364a85cccb04bdbf": 2, + "6808baef364a85cccb04bdc2": 1, + "6808baef364a85cccb04bdc4": 3, + "6808baef364a85cccb04bdd0": 2, + "6808baef364a85cccb04bdd3": 4, + "6808baef364a85cccb04bdd6": 2, + "6808baef364a85cccb04bdd9": 2, + "6808baef364a85cccb04bddc": 3, + "6808baef364a85cccb04bdde": 3, + "6808baef364a85cccb04bde9": 4, + "6808baef364a85cccb04bdec": 4, + "6808baef364a85cccb04bdf4": 1, + "6808baef364a85cccb04bdfc": 2, + "6808baef364a85cccb04bdff": 1, + "6808baef364a85cccb04be02": 3, + "6808baf0364a85cccb04be05": 2, + "6808baf0364a85cccb04be08": 3, + "6808baf0364a85cccb04be0b": 4, + "6808baf0364a85cccb04be0e": 4, + "6808baf0364a85cccb04be10": 1, + "6808baf0364a85cccb04be23": 3, + "6808baf0364a85cccb04be25": 4, + "6808baf0364a85cccb04be34": 3, + "6808baf0364a85cccb04be37": 1, + "6808baf0364a85cccb04be3a": 2, + "6808baf0364a85cccb04be3d": 2, + "6808baf0364a85cccb04be40": 4, + "6808baf0364a85cccb04be43": 1, + "6808baf0364a85cccb04be46": 1, + "6808baf0364a85cccb04be48": 3, + "6808baf0364a85cccb04be56": 4, + "6808baf0364a85cccb04be58": 2, + "6808baf0364a85cccb04be5f": 1, + "6808baf0364a85cccb04be62": 3, + "6808baf0364a85cccb04be65": 4, + "6808baf0364a85cccb04be67": 3, + "6808baf0364a85cccb04be76": 4, + "6808baf0364a85cccb04be79": 2, + "6808baf1364a85cccb04be7c": 2, + "6808baf1364a85cccb04be7f": 4, + "6808baf1364a85cccb04be82": 3, + "6808baf1364a85cccb04be85": 1, + "6808baf1364a85cccb04be88": 1, + "6808baf1364a85cccb04be8b": 1, + "6808baf1364a85cccb04be8e": 4, + "6808baf1364a85cccb04be91": 3, + "6808baf1364a85cccb04be94": 2, + "6808baf1364a85cccb04be97": 1, + "6808baf1364a85cccb04be9a": 1, + "6808baf1364a85cccb04be9d": 2, + "6808baf1364a85cccb04bea0": 3, + "6808baf1364a85cccb04bea3": 1, + "6808baf1364a85cccb04bea5": 4, + "6808baf1364a85cccb04beaf": 3, + "6808baf1364a85cccb04beb2": 1, + "6808baf1364a85cccb04beb5": 4, + "6808baf1364a85cccb04beb8": 3, + "6808baf1364a85cccb04bebb": 2, + "6808baf1364a85cccb04bebe": 4, + "6808baf1364a85cccb04bec1": 2, + "6808baf1364a85cccb04bec4": 3, + "6808baf1364a85cccb04bec7": 2, + "6808baf2364a85cccb04beca": 4, + "6808baf2364a85cccb04becd": 2, + "6808baf2364a85cccb04becf": 1, + "6808baf2364a85cccb04bed7": 4, + "6808baf2364a85cccb04beda": 2, + "6808baf2364a85cccb04bedd": 2, + "6808baf2364a85cccb04bee0": 2, + "6808baf2364a85cccb04bee3": 3, + "6808baf2364a85cccb04bee6": 4, + "6808baf2364a85cccb04bee9": 3, + "6808baf2364a85cccb04beec": 4, + "6808baf2364a85cccb04beee": 2, + "6808baf2364a85cccb04befa": 1, + "6808baf2364a85cccb04befd": 4, + "6808baf2364a85cccb04bf00": 1, + "6808baf2364a85cccb04bf02": 1, + "6808baf2364a85cccb04bf0c": 3, + "6808baf2364a85cccb04bf0f": 1, + "6808baf2364a85cccb04bf1a": 3, + "6808baf2364a85cccb04bf25": 4, + "6808baf2364a85cccb04bf28": 1, + "6808baf2364a85cccb04bf2a": 3, + "6808baf2364a85cccb04bf39": 3, + "6808baf2364a85cccb04bf3c": 1, + "6808baf3364a85cccb04bf3f": 3, + "6808baf3364a85cccb04bf42": 3, + "6808baf3364a85cccb04bf45": 2, + "6808baf3364a85cccb04bf48": 3, + "6808baf3364a85cccb04bf4a": 2, + "6808baf3364a85cccb04bf54": 4, + "6808baf3364a85cccb04bf57": 2, + "6808baf3364a85cccb04bf5a": 2, + "6808baf3364a85cccb04bf5c": 2, + "6808baf3364a85cccb04bf66": 1, + "6808baf3364a85cccb04bf69": 2, + "6808baf3364a85cccb04bf6b": 1, + "6808baf3364a85cccb04bf78": 3, + "6808baf3364a85cccb04bf7b": 1, + "6808baf3364a85cccb04bf7e": 4, + "6808baf3364a85cccb04bf81": 4, + "6808baf3364a85cccb04bf84": 1, + "6808baf3364a85cccb04bf87": 4, + "6808baf3364a85cccb04bf8a": 3, + "6808baf3364a85cccb04bf8d": 3, + "6808baf3364a85cccb04bf8f": 1, + "6808baf3364a85cccb04bf9c": 4, + "6808baf3364a85cccb04bf9f": 3, + "6808baf4364a85cccb04bfae": 2, + "6808baf4364a85cccb04bfc5": 3, + "6808baf4364a85cccb04bfd0": 2, + "6808baf4364a85cccb04bfd3": 1, + "6808baf4364a85cccb04bfd5": 3, + "6808baf4364a85cccb04bfe0": 3, + "6808baf4364a85cccb04bfe3": 1, + "6808baf4364a85cccb04bfe6": 2, + "6808baf4364a85cccb04bfe9": 2, + "6808baf4364a85cccb04bfec": 2, + "6808baf4364a85cccb04bfee": 2, + "6808baf4364a85cccb04c004": 4, + "6808baf4364a85cccb04c007": 2, + "6808baf4364a85cccb04c00a": 2, + "6808baf4364a85cccb04c00d": 1, + "6808baf4364a85cccb04c010": 4, + "6808baf4364a85cccb04c013": 3, + "6808baf4364a85cccb04c016": 3, + "6808baf4364a85cccb04c01a": 1, + "6808baf4364a85cccb04c01d": 1, + "6808baf4364a85cccb04c020": 1, + "6808baf4364a85cccb04c023": 4, + "6808baf4364a85cccb04c026": 3, + "6808baf4364a85cccb04c029": 4, + "6808baf5364a85cccb04c02c": 3, + "6808baf5364a85cccb04c02f": 3, + "6808baf5364a85cccb04c032": 3, + "6808baf5364a85cccb04c035": 3, + "6808baf5364a85cccb04c038": 3, + "6808baf5364a85cccb04c03a": 3, + "6808baf5364a85cccb04c042": 2, + "6808baf5364a85cccb04c045": 2, + "6808baf5364a85cccb04c048": 4, + "6808baf5364a85cccb04c04b": 4, + "6808baf5364a85cccb04c04e": 4, + "6808baf5364a85cccb04c051": 2, + "6808baf5364a85cccb04c054": 2, + "6808baf5364a85cccb04c057": 1, + "6808baf5364a85cccb04c05a": 1, + "6808baf5364a85cccb04c05d": 2, + "6808baf5364a85cccb04c060": 1, + "6808baf5364a85cccb04c062": 1, + "6808baf5364a85cccb04c06b": 1, + "6808baf5364a85cccb04c06e": 2, + "6808baf5364a85cccb04c072": 4, + "6808baf5364a85cccb04c075": 4, + "6808baf5364a85cccb04c078": 3, + "6808baf5364a85cccb04c07b": 2, + "6808baf5364a85cccb04c07e": 3, + "6808baf6364a85cccb04c081": 2, + "6808baf6364a85cccb04c084": 1, + "6808baf6364a85cccb04c087": 2, + "6808baf6364a85cccb04c08a": 3, + "6808baf6364a85cccb04c08d": 2, + "6808baf6364a85cccb04c090": 2, + "6808baf6364a85cccb04c093": 2, + "6808baf6364a85cccb04c096": 1, + "6808baf6364a85cccb04c099": 2, + "6808baf6364a85cccb04c09c": 1, + "6808baf6364a85cccb04c09f": 2, + "6808baf6364a85cccb04c0a2": 2, + "6808baf6364a85cccb04c0a5": 2, + "6808baf6364a85cccb04c0a8": 3, + "6808baf6364a85cccb04c0aa": 1, + "6808baf6364a85cccb04c0b2": 2, + "6808baf6364a85cccb04c0b5": 3, + "6808baf6364a85cccb04c0b8": 1, + "6808baf6364a85cccb04c0ba": 1, + "6808baf6364a85cccb04c0c5": 3, + "6808baf6364a85cccb04c0c8": 3, + "6808baf6364a85cccb04c0cb": 1, + "6808baf6364a85cccb04c0cd": 3, + "6808baf7364a85cccb04c0d7": 1, + "6808baf7364a85cccb04c0da": 2, + "6808baf7364a85cccb04c0dd": 2, + "6808baf7364a85cccb04c0e0": 1, + "6808baf7364a85cccb04c0e3": 2, + "6808baf7364a85cccb04c0e6": 1, + "6808baf7364a85cccb04c0e9": 4, + "6808baf7364a85cccb04c0ec": 1, + "6808baf7364a85cccb04c0ef": 2, + "6808baf7364a85cccb04c0f2": 1, + "6808baf7364a85cccb04c0f5": 2, + "6808baf7364a85cccb04c0f8": 4, + "6808baf7364a85cccb04c0fb": 4, + "6808baf7364a85cccb04c0fe": 4, + "6808baf7364a85cccb04c101": 2, + "6808baf7364a85cccb04c104": 3, + "6808baf7364a85cccb04c107": 2, + "6808baf7364a85cccb04c10a": 3, + "6808baf7364a85cccb04c10d": 4, + "6808baf7364a85cccb04c117": 1, + "6808baf7364a85cccb04c121": 2, + "6808baf7364a85cccb04c124": 4, + "6808baf7364a85cccb04c127": 1, + "6808baf7364a85cccb04c12a": 3, + "6808baf8364a85cccb04c12d": 3, + "6808baf8364a85cccb04c130": 3, + "6808baf8364a85cccb04c133": 1, + "6808baf8364a85cccb04c136": 1, + "6808baf8364a85cccb04c139": 1, + "6808baf8364a85cccb04c13c": 2, + "6808baf8364a85cccb04c13f": 2, + "6808baf8364a85cccb04c142": 3, + "6808baf8364a85cccb04c145": 4, + "6808baf8364a85cccb04c148": 4, + "6808baf8364a85cccb04c14b": 3, + "6808baf8364a85cccb04c14e": 3, + "6808baf8364a85cccb04c151": 3, + "6808baf8364a85cccb04c154": 2, + "6808baf8364a85cccb04c157": 3, + "6808baf8364a85cccb04c15a": 3, + "6808baf8364a85cccb04c15d": 3, + "6808baf8364a85cccb04c160": 3, + "6808baf8364a85cccb04c163": 2, + "6808baf8364a85cccb04c166": 3, + "6808baf8364a85cccb04c169": 3, + "6808baf8364a85cccb04c16c": 3, + "6808baf8364a85cccb04c16f": 4, + "6808baf8364a85cccb04c172": 3, + "6808baf9364a85cccb04c175": 3, + "6808baf9364a85cccb04c178": 4, + "6808baf9364a85cccb04c17b": 3, + "6808baf9364a85cccb04c17e": 4, + "6808baf9364a85cccb04c181": 4, + "6808baf9364a85cccb04c184": 3, + "6808baf9364a85cccb04c187": 1, + "6808baf9364a85cccb04c18a": 4, + "6808baf9364a85cccb04c18d": 4, + "6808baf9364a85cccb04c190": 3, + "6808baf9364a85cccb04c193": 2, + "6808baf9364a85cccb04c196": 3, + "6808baf9364a85cccb04c199": 4, + "6808baf9364a85cccb04c19c": 2, + "6808baf9364a85cccb04c1a5": 1, + "6808baf9364a85cccb04c1ae": 2, + "6808baf9364a85cccb04c1bc": 4, + "6808baf9364a85cccb04c1ca": 3, + "6808baf9364a85cccb04c1cd": 2, + "6808baf9364a85cccb04c1d0": 3, + "6808baf9364a85cccb04c1d3": 2, + "6808baf9364a85cccb04c1d6": 2, + "6808baf9364a85cccb04c1d8": 2, + "6808baf9364a85cccb04c1e6": 2, + "6808bafa364a85cccb04c1e9": 3, + "6808bafa364a85cccb04c1ec": 4, + "6808bafa364a85cccb04c1ef": 3, + "6808bafa364a85cccb04c1f2": 3, + "6808bafa364a85cccb04c1f5": 3, + "6808bafa364a85cccb04c1f8": 4, + "6808bafa364a85cccb04c1fb": 4, + "6808bafa364a85cccb04c1fe": 2, + "6808bafa364a85cccb04c201": 2, + "6808bafa364a85cccb04c204": 3, + "6808bafa364a85cccb04c207": 4, + "6808bafa364a85cccb04c20a": 3, + "6808bafa364a85cccb04c20d": 2, + "6808bafa364a85cccb04c210": 4, + "6808bafa364a85cccb04c213": 4, + "6808bafa364a85cccb04c216": 2, + "6808bafa364a85cccb04c221": 2, + "6808bafa364a85cccb04c22c": 3, + "6808bafa364a85cccb04c22f": 4, + "6808bafa364a85cccb04c232": 3, + "6808bafa364a85cccb04c235": 3, + "6808bafa364a85cccb04c237": 3, + "6808bafa364a85cccb04c249": 3, + "6808bafa364a85cccb04c24c": 3, + "6808bafb364a85cccb04c24f": 3, + "6808bafb364a85cccb04c252": 2, + "6808bafb364a85cccb04c255": 3, + "6808bafb364a85cccb04c258": 1, + "6808bafb364a85cccb04c25b": 4, + "6808bafb364a85cccb04c25e": 4, + "6808bafb364a85cccb04c269": 2, + "6808bafb364a85cccb04c274": 4, + "6808bafb364a85cccb04c277": 4, + "6808bafb364a85cccb04c27a": 3, + "6808bafb364a85cccb04c27d": 2, + "6808bafb364a85cccb04c280": 4, + "6808bafb364a85cccb04c283": 3, + "6808bafb364a85cccb04c291": 4, + "6808bafb364a85cccb04c29f": 4, + "6808bafb364a85cccb04c2a2": 1, + "6808bafb364a85cccb04c2a5": 3, + "6808bafb364a85cccb04c2a8": 3, + "6808bafb364a85cccb04c2ab": 4, + "6808bafb364a85cccb04c2ad": 3, + "6808bafb364a85cccb04c2c0": 3, + "6808bafb364a85cccb04c2ca": 2, + "6808bafb364a85cccb04c2cd": 3, + "6808bafb364a85cccb04c2d0": 3, + "6808bafc364a85cccb04c2d3": 1, + "6808bafc364a85cccb04c2d6": 4, + "6808bafc364a85cccb04c2d8": 4, + "6808bafc364a85cccb04c2e9": 2, + "6808bafc364a85cccb04c2ec": 1, + "6808bafc364a85cccb04c2ef": 4, + "6808bafc364a85cccb04c2f2": 4, + "6808bafc364a85cccb04c2f5": 3, + "6808bafc364a85cccb04c2f8": 2, + "6808bafc364a85cccb04c2fb": 3, + "6808bafc364a85cccb04c2fe": 3, + "6808bafc364a85cccb04c301": 1, + "6808bafc364a85cccb04c304": 3, + "6808bafc364a85cccb04c307": 1, + "6808bafc364a85cccb04c309": 2, + "6808bafc364a85cccb04c315": 3, + "6808bafc364a85cccb04c318": 1, + "6808bafc364a85cccb04c31b": 3, + "6808bafc364a85cccb04c31e": 3, + "6808bafc364a85cccb04c321": 2, + "6808bafc364a85cccb04c324": 3, + "6808bafc364a85cccb04c327": 2, + "6808bafc364a85cccb04c32a": 1, + "6808bafd364a85cccb04c32d": 1, + "6808bafd364a85cccb04c330": 2, + "6808bafd364a85cccb04c333": 2, + "6808bafd364a85cccb04c336": 3, + "6808bafd364a85cccb04c339": 4, + "6808bafd364a85cccb04c33b": 2, + "6808bafd364a85cccb04c346": 1, + "6808bafd364a85cccb04c349": 3, + "6808bafd364a85cccb04c34b": 3, + "6808bafd364a85cccb04c35c": 3, + "6808bafd364a85cccb04c35f": 2, + "6808bafd364a85cccb04c361": 1, + "6808bafd364a85cccb04c36b": 1, + "6808bafd364a85cccb04c36d": 1, + "6808bafd364a85cccb04c376": 1, + "6808bafd364a85cccb04c379": 3, + "6808bafd364a85cccb04c37c": 2, + "6808bafd364a85cccb04c37f": 1, + "6808bafd364a85cccb04c382": 3, + "6808bafd364a85cccb04c385": 4, + "6808bafd364a85cccb04c388": 1, + "6808bafd364a85cccb04c38b": 1, + "6808bafd364a85cccb04c38e": 4, + "6808bafd364a85cccb04c391": 1, + "6808bafe364a85cccb04c394": 4, + "6808bafe364a85cccb04c397": 3, + "6808bafe364a85cccb04c39a": 3, + "6808bafe364a85cccb04c39c": 2, + "6808bafe364a85cccb04c3a5": 3, + "6808bafe364a85cccb04c3a8": 1, + "6808bafe364a85cccb04c3ab": 4, + "6808bafe364a85cccb04c3ae": 2, + "6808bafe364a85cccb04c3b1": 2, + "6808bafe364a85cccb04c3b4": 3, + "6808bafe364a85cccb04c3b7": 2, + "6808bafe364a85cccb04c3ba": 3, + "6808bafe364a85cccb04c3bd": 3, + "6808bafe364a85cccb04c3c0": 3, + "6808bafe364a85cccb04c3c2": 3, + "6808bafe364a85cccb04c3ce": 3, + "6808bafe364a85cccb04c3d1": 3, + "6808bafe364a85cccb04c3d4": 3, + "6808bafe364a85cccb04c3d7": 2, + "6808bafe364a85cccb04c3da": 2, + "6808bafe364a85cccb04c3dd": 4, + "6808bafe364a85cccb04c3e0": 3, + "6808bafe364a85cccb04c3e3": 1, + "6808bafe364a85cccb04c3e6": 4, + "6808bafe364a85cccb04c3e9": 3, + "6808baff364a85cccb04c3ec": 2, + "6808baff364a85cccb04c3ef": 1, + "6808baff364a85cccb04c3f2": 4, + "6808baff364a85cccb04c3f5": 2, + "6808baff364a85cccb04c3f8": 2, + "6808baff364a85cccb04c3fb": 4, + "6808baff364a85cccb04c3fe": 2, + "6808baff364a85cccb04c401": 4, + "6808baff364a85cccb04c404": 1, + "6808baff364a85cccb04c407": 1, + "6808baff364a85cccb04c40a": 1, + "6808baff364a85cccb04c40d": 2, + "6808baff364a85cccb04c410": 3, + "6808baff364a85cccb04c413": 3, + "6808baff364a85cccb04c416": 1, + "6808baff364a85cccb04c419": 1, + "6808baff364a85cccb04c41c": 4, + "6808baff364a85cccb04c41f": 2, + "6808baff364a85cccb04c422": 2, + "6808baff364a85cccb04c425": 4, + "6808baff364a85cccb04c428": 2, + "6808baff364a85cccb04c42b": 2, + "6808baff364a85cccb04c42e": 1, + "6808baff364a85cccb04c431": 2, + "6808bb00364a85cccb04c434": 1, + "6808bb00364a85cccb04c437": 3, + "6808bb00364a85cccb04c43a": 4, + "6808bb00364a85cccb04c43d": 3, + "6808bb00364a85cccb04c440": 3, + "6808bb00364a85cccb04c443": 4, + "6808bb00364a85cccb04c446": 3, + "6808bb00364a85cccb04c449": 2, + "6808bb00364a85cccb04c44c": 1, + "6808bb00364a85cccb04c44f": 1, + "6808bb00364a85cccb04c456": 1, + "6808bb00364a85cccb04c45d": 4, + "6808bb00364a85cccb04c460": 3, + "6808bb00364a85cccb04c463": 2, + "6808bb00364a85cccb04c466": 1, + "6808bb00364a85cccb04c469": 1, + "6808bb00364a85cccb04c46c": 3, + "6808bb00364a85cccb04c46f": 4, + "6808bb00364a85cccb04c472": 4, + "6808bb00364a85cccb04c475": 1, + "6808bb00364a85cccb04c477": 3, + "6808bb00364a85cccb04c487": 1, + "6808bb00364a85cccb04c48a": 1, + "6808bb00364a85cccb04c48d": 2, + "6808bb00364a85cccb04c48f": 1, + "6808bb00364a85cccb04c493": 1, + "6808bb01364a85cccb04c496": 2, + "6808bb01364a85cccb04c499": 3, + "6808bb01364a85cccb04c49c": 4, + "6808bb01364a85cccb04c49f": 3, + "6808bb01364a85cccb04c4a2": 3, + "6808bb01364a85cccb04c4a5": 3, + "6808bb01364a85cccb04c4a8": 3, + "6808bb01364a85cccb04c4ab": 1, + "6808bb01364a85cccb04c4ae": 4, + "6808bb01364a85cccb04c4b1": 1, + "6808bb01364a85cccb04c4c2": 2, + "6808bb01364a85cccb04c4d3": 4, + "6808bb01364a85cccb04c4d6": 1, + "6808bb01364a85cccb04c4d8": 4, + "6808bb01364a85cccb04c4e4": 3, + "6808bb01364a85cccb04c4e7": 2, + "6808bb01364a85cccb04c4ea": 1, + "6808bb01364a85cccb04c4ec": 3, + "6808bb01364a85cccb04c4f6": 2, + "6808bb01364a85cccb04c4f9": 1, + "6808bb01364a85cccb04c4fc": 1, + "6808bb01364a85cccb04c4ff": 4, + "6808bb01364a85cccb04c502": 1, + "6808bb02364a85cccb04c505": 2, + "6808bb02364a85cccb04c508": 2, + "6808bb02364a85cccb04c50b": 3, + "6808bb02364a85cccb04c50e": 1, + "6808bb02364a85cccb04c511": 3, + "6808bb02364a85cccb04c514": 2, + "6808bb02364a85cccb04c517": 3, + "6808bb02364a85cccb04c51a": 2, + "6808bb02364a85cccb04c51c": 4, + "6808bb02364a85cccb04c526": 1, + "6808bb02364a85cccb04c529": 1, + "6808bb02364a85cccb04c52b": 3, + "6808bb02364a85cccb04c534": 3, + "6808bb02364a85cccb04c537": 2, + "6808bb02364a85cccb04c53a": 2, + "6808bb02364a85cccb04c53d": 3, + "6808bb02364a85cccb04c540": 3, + "6808bb02364a85cccb04c543": 2, + "6808bb02364a85cccb04c546": 4, + "6808bb02364a85cccb04c549": 3, + "6808bb02364a85cccb04c54c": 1, + "6808bb02364a85cccb04c54e": 4, + "6808bb03364a85cccb04c564": 4, + "6808bb03364a85cccb04c567": 2, + "6808bb03364a85cccb04c56a": 3, + "6808bb03364a85cccb04c56d": 2, + "6808bb03364a85cccb04c570": 3, + "6808bb03364a85cccb04c573": 4, + "6808bb03364a85cccb04c575": 1, + "6808bb03364a85cccb04c581": 3, + "6808bb03364a85cccb04c584": 1, + "6808bb03364a85cccb04c58c": 2, + "6808bb03364a85cccb04c59a": 1, + "6808bb03364a85cccb04c59d": 2, + "6808bb03364a85cccb04c5a0": 2, + "6808bb03364a85cccb04c5a3": 3, + "6808bb03364a85cccb04c5a6": 1, + "6808bb03364a85cccb04c5a9": 1, + "6808bb03364a85cccb04c5ac": 1, + "6808bb03364a85cccb04c5af": 3, + "6808bb03364a85cccb04c5b2": 3, + "6808bb03364a85cccb04c5b5": 3, + "6808bb03364a85cccb04c5b8": 3, + "6808bb03364a85cccb04c5bb": 4, + "6808bb03364a85cccb04c5be": 2, + "6808bb03364a85cccb04c5c1": 4, + "6808bb04364a85cccb04c5c4": 2, + "6808bb04364a85cccb04c5c7": 1, + "6808bb04364a85cccb04c5ca": 1, + "6808bb04364a85cccb04c5cc": 4, + "6808bb04364a85cccb04c5dc": 4, + "6808bb04364a85cccb04c5f3": 2, + "6808bb04364a85cccb04c5f6": 3, + "6808bb04364a85cccb04c5f9": 2, + "6808bb04364a85cccb04c5fc": 2, + "6808bb04364a85cccb04c5ff": 3, + "6808bb04364a85cccb04c602": 3, + "6808bb04364a85cccb04c605": 3, + "6808bb04364a85cccb04c608": 1, + "6808bb04364a85cccb04c60b": 2, + "6808bb04364a85cccb04c60f": 1, + "6808bb04364a85cccb04c612": 2, + "6808bb04364a85cccb04c614": 4, + "6808bb04364a85cccb04c624": 3, + "6808bb04364a85cccb04c627": 1, + "6808bb04364a85cccb04c62a": 2, + "6808bb04364a85cccb04c62d": 2, + "6808bb04364a85cccb04c630": 3, + "6808bb04364a85cccb04c633": 1, + "6808bb05364a85cccb04c635": 4, + "6808bb05364a85cccb04c63e": 4, + "6808bb05364a85cccb04c657": 2, + "6808bb05364a85cccb04c65a": 3, + "6808bb05364a85cccb04c65d": 2, "64a2e6f09b9ad2b93b0cab9c": 1, "64a2e6f09b9ad2b93b0cab9d": 1, "64a2e6f09b9ad2b93b0cab9e": 1, diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/questassort.json index 3b320b60..cc97a8ce 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5a7c2eca46aef81a7ca2145d/questassort.json @@ -1,52 +1,52 @@ { "started": { - "677536d0b06e57fd5c0e0c19": "5ac346cf86f7741d63233a02", - "677536cdb06e57fd5c0e0b13": "5b47926a86f7747ccc057c15" + "6808baf5364a85cccb04c05a": "5ac346cf86f7741d63233a02", + "6808baf5364a85cccb04c057": "5b47926a86f7747ccc057c15" }, "success": { - "677536e9b06e57fd5c0e1285": "6744af0969a58fceba101fed", - "677536eab06e57fd5c0e129d": "6744af0969a58fceba101fed", - "677536eab06e57fd5c0e1291": "6745cbee909d2013670a4a55", - "677536ebb06e57fd5c0e12e8": "6745cbee909d2013670a4a55", - "677536e2b06e57fd5c0e1020": "5c1128e386f7746565181106", - "677536dcb06e57fd5c0e0e3d": "5c0be13186f7746f016734aa", - "677536d1b06e57fd5c0e0c96": "639872fa9b4fb827b200d8e5", - "677536dbb06e57fd5c0e0db4": "639872fa9b4fb827b200d8e5", - "677536d7b06e57fd5c0e0d74": "5ae327c886f7745c7b3f2f3f", - "677536e8b06e57fd5c0e122b": "676529af9c90953d090882e7", - "677536d2b06e57fd5c0e0cdb": "5c139eb686f7747878361a6f", - "677536d1b06e57fd5c0e0ca8": "5f04886a3937dc337a6b8238", - "677536ccb06e57fd5c0e0b06": "5c0bde0986f77479cf22c2f8", - "677536e7b06e57fd5c0e1175": "639670029113f06a7c3b2377", - "677536e5b06e57fd5c0e10e7": "5b477f7686f7744d1b23c4d2", - "677536ddb06e57fd5c0e0e64": "63987301e11ec11ff5504036", - "677536e0b06e57fd5c0e0f96": "63987301e11ec11ff5504036", - "677536e8b06e57fd5c0e121d": "6179b3bdc7560e13d23eeb8d", - "677536cbb06e57fd5c0e0a89": "6179b3a12153c15e937d52bc", - "677536e0b06e57fd5c0e0fab": "5b47825886f77468074618d3", - "677536e5b06e57fd5c0e1108": "63967028c4a91c5cb76abd81", - "677536d2b06e57fd5c0e0ced": "64f83bcdde58fc437700d8fa", - "677536e5b06e57fd5c0e10ed": "64f83bcdde58fc437700d8fa", - "677536cab06e57fd5c0e0a17": "5b47749f86f7746c5d6a5fd4", - "677536c8b06e57fd5c0e09cc": "5b47749f86f7746c5d6a5fd4", - "677536e3b06e57fd5c0e1085": "5b47749f86f7746c5d6a5fd4", - "677536e2b06e57fd5c0e1041": "5b47749f86f7746c5d6a5fd4", - "677536e6b06e57fd5c0e114c": "63966fbeea19ac7ed845db2e", - "677536cdb06e57fd5c0e0b34": "5b477b6f86f7747290681823", - "677536e5b06e57fd5c0e10d8": "5b477b6f86f7747290681823", - "677536e4b06e57fd5c0e109d": "64f83bd983cfca080a362c82", - "677536e7b06e57fd5c0e11cc": "64f83bd983cfca080a362c82", - "677536e4b06e57fd5c0e10ae": "64f83bb69878a0569d6ecfbe", - "677536cbb06e57fd5c0e0ab0": "5ac244eb86f7741356335af1", - "677536cfb06e57fd5c0e0c08": "5ac2428686f77412450b42bf", - "677536d9b06e57fd5c0e0d9f": "5ae3267986f7742a413592fe", - "677536cdb06e57fd5c0e0b53": "5ac23c6186f7741247042bad", - "677536e0b06e57fd5c0e0f9f": "6391372c8ba6894d155e77d7", - "677536e9b06e57fd5c0e1260": "6744ab1def61d56e020b5c56", + "6808baf1364a85cccb04be85": "5ac23c6186f7741247042bad", + "6808baf6364a85cccb04c0ba": "5ac2428686f77412450b42bf", + "6808baf5364a85cccb04c045": "5ac244eb86f7741356335af1", + "6808baf7364a85cccb04c0e6": "5ae3267986f7742a413592fe", + "6808baf5364a85cccb04c06e": "5ae327c886f7745c7b3f2f3f", + "6808baed364a85cccb04bd10": "5b47749f86f7746c5d6a5fd4", + "6808baee364a85cccb04bd5b": "5b47749f86f7746c5d6a5fd4", + "6808bafe364a85cccb04c3a5": "5b47749f86f7746c5d6a5fd4", + "6808bafe364a85cccb04c3dd": "5b47749f86f7746c5d6a5fd4", + "6808baf0364a85cccb04be34": "5b477b6f86f7747290681823", + "6808bafe364a85cccb04c39a": "5b477b6f86f7747290681823", + "6808bafc364a85cccb04c304": "5b477f7686f7744d1b23c4d2", + "6808bafa364a85cccb04c1f8": "5b47825886f77468074618d3", + "6808baf4364a85cccb04c016": "5c0bde0986f77479cf22c2f8", + "6808bafa364a85cccb04c237": "5c0be13186f7746f016734aa", + "6808bafe364a85cccb04c3c2": "5c1128e386f7746565181106", + "6808baf3364a85cccb04bf87": "5c139eb686f7747878361a6f", + "6808baf5364a85cccb04c048": "5f04886a3937dc337a6b8238", + "6808baf6364a85cccb04c0a8": "6179b3a12153c15e937d52bc", + "6808bb03364a85cccb04c58c": "6179b3bdc7560e13d23eeb8d", + "6808bafc364a85cccb04c2ef": "6391372c8ba6894d155e77d7", + "6808bb00364a85cccb04c46f": "63966fbeea19ac7ed845db2e", + "6808bb00364a85cccb04c443": "639670029113f06a7c3b2377", + "6808bb01364a85cccb04c4ae": "63967028c4a91c5cb76abd81", + "6808baf2364a85cccb04bf2a": "639872fa9b4fb827b200d8e5", + "6808baef364a85cccb04bdb0": "639872fa9b4fb827b200d8e5", + "6808baf8364a85cccb04c148": "63987301e11ec11ff5504036", + "6808baf7364a85cccb04c0fb": "63987301e11ec11ff5504036", "64a2e6f09b9ad2b93b0cab9c": "64916da7ad4e722c106f2345", "64a2e6f09b9ad2b93b0cab9d": "64916da7ad4e722c106f2345", "64a2e6f09b9ad2b93b0cab9e": "64916da7ad4e722c106f2345", - "64a2e6f09b9ad2b93b0cab9f": "64916da7ad4e722c106f2345" + "64a2e6f09b9ad2b93b0cab9f": "64916da7ad4e722c106f2345", + "6808baff364a85cccb04c41c": "64f83bb69878a0569d6ecfbe", + "6808baf2364a85cccb04bf25": "64f83bcdde58fc437700d8fa", + "6808bb01364a85cccb04c49c": "64f83bcdde58fc437700d8fa", + "6808baff364a85cccb04c3f2": "64f83bd983cfca080a362c82", + "6808bb05364a85cccb04c635": "64f83bd983cfca080a362c82", + "6808bb02364a85cccb04c51c": "6744ab1def61d56e020b5c56", + "6808bb03364a85cccb04c567": "6744af0969a58fceba101fed", + "6808bb03364a85cccb04c581": "6744af0969a58fceba101fed", + "6808bb04364a85cccb04c612": "6745cbee909d2013670a4a55", + "6808bb04364a85cccb04c5ff": "6745cbee909d2013670a4a55", + "6808bb04364a85cccb04c60b": "676529af9c90953d090882e7" }, "fail": {} } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/assort.json index 1ee1ece1..0dd9d221 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/assort.json @@ -1,223 +1,7 @@ { "items": [ { - "_id": "67877f67ecc0f8078905fd3f", - "_tpl": "59e7643b86f7742cbf2c109a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f67ecc0f8078905fd45", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f67ecc0f8078905fd46", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "67877f67ecc0f8078905fd45", - "slotId": "Helmet_top" - }, - { - "_id": "67877f67ecc0f8078905fd47", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "67877f67ecc0f8078905fd45", - "slotId": "Helmet_back" - }, - { - "_id": "67877f67ecc0f8078905fd48", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "67877f67ecc0f8078905fd45", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f67ecc0f8078905fd4b", - "_tpl": "592c2d1a86f7746dbe2af32a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f67ecc0f8078905fd51", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f67ecc0f8078905fd52", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "67877f67ecc0f8078905fd51", - "slotId": "Helmet_top" - }, - { - "_id": "67877f67ecc0f8078905fd53", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "67877f67ecc0f8078905fd51", - "slotId": "Helmet_back" - }, - { - "_id": "67877f67ecc0f8078905fd54", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "67877f67ecc0f8078905fd51", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f67ecc0f8078905fd5a", - "_tpl": "5aa7e276e5b5b000171d0647", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f67ecc0f8078905fd5b", - "_tpl": "657bc06daab96fccee08be9b", - "parentId": "67877f67ecc0f8078905fd5a", - "slotId": "Helmet_top" - }, - { - "_id": "67877f67ecc0f8078905fd5c", - "_tpl": "657bc0d8a1c61ee0c303632f", - "parentId": "67877f67ecc0f8078905fd5a", - "slotId": "Helmet_back" - }, - { - "_id": "67877f67ecc0f8078905fd5d", - "_tpl": "657bc107aab96fccee08be9f", - "parentId": "67877f67ecc0f8078905fd5a", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f68ecc0f8078905fd64", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd65", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "67877f68ecc0f8078905fd64", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f68ecc0f8078905fd66", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "67877f68ecc0f8078905fd64", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f68ecc0f8078905fd67", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "67877f68ecc0f8078905fd64", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f68ecc0f8078905fd68", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "67877f68ecc0f8078905fd64", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f68ecc0f8078905fd6b", - "_tpl": "5648a69d4bdc2ded0b8b457b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd6e", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd71", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd77", - "_tpl": "5aa7e4a4e5b5b000137b76f2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd78", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "67877f68ecc0f8078905fd77", - "slotId": "Helmet_top" - }, - { - "_id": "67877f68ecc0f8078905fd79", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "67877f68ecc0f8078905fd77", - "slotId": "Helmet_back" - }, - { - "_id": "67877f68ecc0f8078905fd7a", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "67877f68ecc0f8078905fd77", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f68ecc0f8078905fd80", + "_id": "6808baae364a85cccb04a7e3", "_tpl": "5645bc214bdc2d363b8b4571", "parentId": "hideout", "slotId": "hideout", @@ -229,104 +13,26 @@ } }, { - "_id": "67877f68ecc0f8078905fd81", + "_id": "6808baae364a85cccb04a7e4", "_tpl": "657bae18b7e9ca9a02045c0a", - "parentId": "67877f68ecc0f8078905fd80", + "parentId": "6808baae364a85cccb04a7e3", "slotId": "Helmet_top" }, { - "_id": "67877f68ecc0f8078905fd82", + "_id": "6808baae364a85cccb04a7e5", "_tpl": "657baeaacfcf63c951052db3", - "parentId": "67877f68ecc0f8078905fd80", + "parentId": "6808baae364a85cccb04a7e3", "slotId": "Helmet_back" }, { - "_id": "67877f68ecc0f8078905fd83", + "_id": "6808baae364a85cccb04a7e6", "_tpl": "657baecbc6f689d3a205b863", - "parentId": "67877f68ecc0f8078905fd80", + "parentId": "6808baae364a85cccb04a7e3", "slotId": "Helmet_ears" }, { - "_id": "67877f68ecc0f8078905fd8b", - "_tpl": "544a5caa4bdc2d1a388b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd8c", - "_tpl": "6570e83223c1f638ef0b0ede", - "parentId": "67877f68ecc0f8078905fd8b", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f68ecc0f8078905fd8d", - "_tpl": "6570e87c23c1f638ef0b0ee2", - "parentId": "67877f68ecc0f8078905fd8b", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f68ecc0f8078905fd8e", - "_tpl": "6570e90b3a5689d85f08db97", - "parentId": "67877f68ecc0f8078905fd8b", - "slotId": "Groin" - }, - { - "_id": "67877f68ecc0f8078905fd8f", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f68ecc0f8078905fd8b", - "slotId": "Front_plate" - }, - { - "_id": "67877f68ecc0f8078905fd90", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f68ecc0f8078905fd8b", - "slotId": "Back_plate" - }, - { - "_id": "67877f68ecc0f8078905fd93", - "_tpl": "5929a2a086f7744f4b234d43", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd96", - "_tpl": "5ab8ebf186f7742d8b372e80", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd99", - "_tpl": "544a5cde4bdc2d39388b456b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fd9f", - "_tpl": "5aa7cfc0e5b5b00015693143", + "_id": "6808baae364a85cccb04a7ec", + "_tpl": "59e7711e86f7746cae05fbe1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -337,25 +43,25 @@ } }, { - "_id": "67877f68ecc0f8078905fda0", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "67877f68ecc0f8078905fd9f", + "_id": "6808baae364a85cccb04a7ed", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "6808baae364a85cccb04a7ec", "slotId": "Helmet_top" }, { - "_id": "67877f68ecc0f8078905fda1", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "67877f68ecc0f8078905fd9f", + "_id": "6808baae364a85cccb04a7ee", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "6808baae364a85cccb04a7ec", "slotId": "Helmet_back" }, { - "_id": "67877f68ecc0f8078905fda2", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "67877f68ecc0f8078905fd9f", + "_id": "6808baae364a85cccb04a7ef", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "6808baae364a85cccb04a7ec", "slotId": "Helmet_ears" }, { - "_id": "67877f68ecc0f8078905fda5", + "_id": "6808baae364a85cccb04a7f2", "_tpl": "545cdae64bdc2d39198b4568", "parentId": "hideout", "slotId": "hideout", @@ -367,68 +73,8 @@ } }, { - "_id": "67877f68ecc0f8078905fda8", - "_tpl": "5aa2b986e5b5b00014028f4c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fdab", - "_tpl": "5ab8f4ff86f77431c60d91ba", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fdae", - "_tpl": "5c0e774286f77468413cc5b2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fdb1", - "_tpl": "5ca2113f86f7740b2547e1d2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fdb4", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f68ecc0f8078905fdb7", - "_tpl": "5ac4c50d5acfc40019262e87", + "_id": "6808baae364a85cccb04a7fa", + "_tpl": "544a5caa4bdc2d1a388b4568", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -439,34 +85,64 @@ } }, { - "_id": "67877f68ecc0f8078905fdba", - "_tpl": "5b43271c5acfc432ff4dce65", + "_id": "6808baae364a85cccb04a7fb", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "6808baae364a85cccb04a7fa", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808baae364a85cccb04a7fc", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "6808baae364a85cccb04a7fa", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808baae364a85cccb04a7fd", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "6808baae364a85cccb04a7fa", + "slotId": "Groin" + }, + { + "_id": "6808baae364a85cccb04a7fe", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808baae364a85cccb04a7fa", + "slotId": "Front_plate" + }, + { + "_id": "6808baae364a85cccb04a7ff", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808baae364a85cccb04a7fa", + "slotId": "Back_plate" + }, + { + "_id": "6808baae364a85cccb04a802", + "_tpl": "5ab8ebf186f7742d8b372e80", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f69ecc0f8078905fdbd", - "_tpl": "5b40e61f5acfc4001a599bec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fdc0", + "_id": "6808baae364a85cccb04a805", "_tpl": "592c2d1a86f7746dbe2af32a", "parentId": "hideout", "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a80b", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "parentId": "hideout", + "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, @@ -475,74 +151,146 @@ } }, { - "_id": "67877f69ecc0f8078905fdc3", - "_tpl": "5a16b672fcdbcb001912fa83", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fdc9", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fdca", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "67877f69ecc0f8078905fdc9", + "_id": "6808baae364a85cccb04a80c", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6808baae364a85cccb04a80b", "slotId": "Helmet_top" }, { - "_id": "67877f69ecc0f8078905fdcb", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "67877f69ecc0f8078905fdc9", + "_id": "6808baae364a85cccb04a80d", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6808baae364a85cccb04a80b", "slotId": "Helmet_back" }, { - "_id": "67877f69ecc0f8078905fdcc", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "67877f69ecc0f8078905fdc9", + "_id": "6808baae364a85cccb04a80e", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6808baae364a85cccb04a80b", "slotId": "Helmet_ears" }, { - "_id": "67877f69ecc0f8078905fdcf", - "_tpl": "5d5d940f86f7742797262046", + "_id": "6808baae364a85cccb04a811", + "_tpl": "544a5cde4bdc2d39388b456b", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 8, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f69ecc0f8078905fdd2", - "_tpl": "5aa7e373e5b5b000137b76f0", + "_id": "6808baae364a85cccb04a817", + "_tpl": "5aa7cfc0e5b5b00015693143", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f69ecc0f8078905fdd7", - "_tpl": "5b432d215acfc4771e1c6624", + "_id": "6808baae364a85cccb04a818", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6808baae364a85cccb04a817", + "slotId": "Helmet_top" + }, + { + "_id": "6808baae364a85cccb04a819", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6808baae364a85cccb04a817", + "slotId": "Helmet_back" + }, + { + "_id": "6808baae364a85cccb04a81a", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6808baae364a85cccb04a817", + "slotId": "Helmet_ears" + }, + { + "_id": "6808baae364a85cccb04a81d", + "_tpl": "5929a2a086f7744f4b234d43", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a820", + "_tpl": "5648a69d4bdc2ded0b8b457b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a823", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a826", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a82c", + "_tpl": "5aa7e276e5b5b000171d0647", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baae364a85cccb04a82d", + "_tpl": "657bc06daab96fccee08be9b", + "parentId": "6808baae364a85cccb04a82c", + "slotId": "Helmet_top" + }, + { + "_id": "6808baae364a85cccb04a82e", + "_tpl": "657bc0d8a1c61ee0c303632f", + "parentId": "6808baae364a85cccb04a82c", + "slotId": "Helmet_back" + }, + { + "_id": "6808baae364a85cccb04a82f", + "_tpl": "657bc107aab96fccee08be9f", + "parentId": "6808baae364a85cccb04a82c", + "slotId": "Helmet_ears" + }, + { + "_id": "6808baae364a85cccb04a835", + "_tpl": "5aa7e454e5b5b0214e506fa2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -553,112 +301,40 @@ } }, { - "_id": "67877f69ecc0f8078905fdd8", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "67877f69ecc0f8078905fdd7", + "_id": "6808baae364a85cccb04a836", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6808baae364a85cccb04a835", "slotId": "Helmet_top" }, { - "_id": "67877f69ecc0f8078905fdd9", - "_tpl": "657bb99db30eca976305117f", - "parentId": "67877f69ecc0f8078905fdd7", + "_id": "6808baae364a85cccb04a837", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6808baae364a85cccb04a835", "slotId": "Helmet_back" }, { - "_id": "67877f69ecc0f8078905fddc", - "_tpl": "5b432b965acfc47a8774094e", + "_id": "6808baae364a85cccb04a838", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6808baae364a85cccb04a835", + "slotId": "Helmet_ears" + }, + { + "_id": "6808baae364a85cccb04a83b", + "_tpl": "59e7643b86f7742cbf2c109a", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f69ecc0f8078905fde3", + "_id": "6808baaf364a85cccb04a842", "_tpl": "5648a7494bdc2d9d488b4583", "parentId": "hideout", "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fde4", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "67877f69ecc0f8078905fde3", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f69ecc0f8078905fde5", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "67877f69ecc0f8078905fde3", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f69ecc0f8078905fde6", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "67877f69ecc0f8078905fde3", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f69ecc0f8078905fde7", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "67877f69ecc0f8078905fde3", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f69ecc0f8078905fded", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fdee", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "67877f69ecc0f8078905fded", - "slotId": "helmet_top" - }, - { - "_id": "67877f69ecc0f8078905fdef", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "67877f69ecc0f8078905fded", - "slotId": "helmet_back" - }, - { - "_id": "67877f69ecc0f8078905fdf0", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "67877f69ecc0f8078905fded", - "slotId": "helmet_ears" - }, - { - "_id": "67877f69ecc0f8078905fdf3", - "_tpl": "5aa7e373e5b5b000137b76f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fdf6", - "_tpl": "572b7f1624597762ae139822", - "parentId": "hideout", - "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, @@ -667,91 +343,31 @@ } }, { - "_id": "67877f69ecc0f8078905fdf9", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe00", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe01", - "_tpl": "657044e971369562b300ce9b", - "parentId": "67877f69ecc0f8078905fe00", + "_id": "6808baaf364a85cccb04a843", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6808baaf364a85cccb04a842", "slotId": "Soft_armor_front" }, { - "_id": "67877f69ecc0f8078905fe02", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "67877f69ecc0f8078905fe00", + "_id": "6808baaf364a85cccb04a844", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6808baaf364a85cccb04a842", "slotId": "Soft_armor_back" }, { - "_id": "67877f69ecc0f8078905fe03", - "_tpl": "657045b97e80617cee095bda", - "parentId": "67877f69ecc0f8078905fe00", + "_id": "6808baaf364a85cccb04a845", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6808baaf364a85cccb04a842", "slotId": "Soft_armor_left" }, { - "_id": "67877f69ecc0f8078905fe04", - "_tpl": "6570460471369562b300ce9f", - "parentId": "67877f69ecc0f8078905fe00", + "_id": "6808baaf364a85cccb04a846", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6808baaf364a85cccb04a842", "slotId": "soft_armor_right" }, { - "_id": "67877f69ecc0f8078905fe07", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe0a", - "_tpl": "5b3f16c486f7747c327f55f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe0d", - "_tpl": "5aa7e373e5b5b000137b76f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe2d", + "_id": "6808baaf364a85cccb04a849", "_tpl": "5aa2a7e8e5b5b00016327c16", "parentId": "hideout", "slotId": "hideout", @@ -763,43 +379,7 @@ } }, { - "_id": "67877f69ecc0f8078905fe30", - "_tpl": "5ab8dab586f77441cd04f2a2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe33", - "_tpl": "5b3f3ade86f7746b6b790d8e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe36", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f69ecc0f8078905fe39", + "_id": "6808baaf364a85cccb04a84c", "_tpl": "5b3f3af486f774679e752c1f", "parentId": "hideout", "slotId": "hideout", @@ -811,188 +391,8 @@ } }, { - "_id": "67877f69ecc0f8078905fe3c", - "_tpl": "5b44c8ea86f7742d1627baf1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe3f", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe48", - "_tpl": "5c0e722886f7740458316a57", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe49", - "_tpl": "65730c0e292ecadbfa09ad49", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905fe4a", - "_tpl": "65730c2213a2f660f60bea96", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905fe4b", - "_tpl": "65730c2b292ecadbfa09ad50", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6aecc0f8078905fe4c", - "_tpl": "65730c35292ecadbfa09ad54", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6aecc0f8078905fe4d", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fe4e", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6aecc0f8078905fe48", - "slotId": "Back_plate" - }, - { - "_id": "67877f6aecc0f8078905fe59", - "_tpl": "5c0e5bab86f77461f55ed1f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe5a", - "_tpl": "6571b27a6d84a2b8b6007f92", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905fe5b", - "_tpl": "6571baa74cb80d995d0a1490", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905fe5c", - "_tpl": "6571baac6d84a2b8b6007fa3", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6aecc0f8078905fe5d", - "_tpl": "6571bab0f41985531a038091", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6aecc0f8078905fe5e", - "_tpl": "6571babb4076795e5e07383f", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Collar" - }, - { - "_id": "67877f6aecc0f8078905fe5f", - "_tpl": "6571bac34076795e5e073843", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Groin" - }, - { - "_id": "67877f6aecc0f8078905fe60", - "_tpl": "6571babf4cb80d995d0a1494", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Groin_back" - }, - { - "_id": "67877f6aecc0f8078905fe61", - "_tpl": "654a4dea7c17dec2f50cc86a", - "parentId": "67877f6aecc0f8078905fe59", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fe64", - "_tpl": "5ab8f04f86f774585f4237d8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe67", - "_tpl": "5aa2b9ede5b5b000137b758b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe6a", - "_tpl": "5b40e5e25acfc4001a599bea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe6d", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe70", - "_tpl": "5b4325355acfc40019478126", + "_id": "6808baaf364a85cccb04a84f", + "_tpl": "5b432b2f5acfc4771e1c6622", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1003,8 +403,8 @@ } }, { - "_id": "67877f6aecc0f8078905fe73", - "_tpl": "5c0e6a1586f77404597b4965", + "_id": "6808baaf364a85cccb04a856", + "_tpl": "5648a7494bdc2d9d488b4583", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1015,44 +415,32 @@ } }, { - "_id": "67877f6aecc0f8078905fe76", - "_tpl": "5c165d832e2216398b5a7e36", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808baaf364a85cccb04a857", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6808baaf364a85cccb04a856", + "slotId": "Soft_armor_front" }, { - "_id": "67877f6aecc0f8078905fe7b", - "_tpl": "5b40e4035acfc47a87740943", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } + "_id": "6808baaf364a85cccb04a858", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6808baaf364a85cccb04a856", + "slotId": "Soft_armor_back" }, { - "_id": "67877f6aecc0f8078905fe7c", - "_tpl": "657f95bff92cd718b701550c", - "parentId": "67877f6aecc0f8078905fe7b", - "slotId": "Helmet_top" + "_id": "6808baaf364a85cccb04a859", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6808baaf364a85cccb04a856", + "slotId": "Soft_armor_left" }, { - "_id": "67877f6aecc0f8078905fe7d", - "_tpl": "657f9605f4c82973640b2358", - "parentId": "67877f6aecc0f8078905fe7b", - "slotId": "Helmet_back" + "_id": "6808baaf364a85cccb04a85a", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6808baaf364a85cccb04a856", + "slotId": "soft_armor_right" }, { - "_id": "67877f6aecc0f8078905fe88", - "_tpl": "5c0e51be86f774598e797894", + "_id": "6808baaf364a85cccb04a85d", + "_tpl": "5b432b965acfc47a8774094e", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1063,272 +451,8 @@ } }, { - "_id": "67877f6aecc0f8078905fe89", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905fe8a", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905fe8b", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6aecc0f8078905fe8c", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6aecc0f8078905fe8d", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Collar" - }, - { - "_id": "67877f6aecc0f8078905fe8e", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Groin" - }, - { - "_id": "67877f6aecc0f8078905fe8f", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fe90", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "67877f6aecc0f8078905fe88", - "slotId": "Back_plate" - }, - { - "_id": "67877f6aecc0f8078905fe97", - "_tpl": "5c0e746986f7741453628fe5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fe98", - "_tpl": "6570df294cc0d2ab1e05ed74", - "parentId": "67877f6aecc0f8078905fe97", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905fe99", - "_tpl": "6570df9c615f54368b04fca9", - "parentId": "67877f6aecc0f8078905fe97", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905fe9a", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6aecc0f8078905fe97", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fe9b", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6aecc0f8078905fe97", - "slotId": "Back_plate" - }, - { - "_id": "67877f6aecc0f8078905fe9e", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fea4", - "_tpl": "5b40e2bc5acfc40016388216", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fea5", - "_tpl": "657112234269e9a568089eac", - "parentId": "67877f6aecc0f8078905fea4", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6aecc0f8078905fea6", - "_tpl": "657112a4818110db4600aa66", - "parentId": "67877f6aecc0f8078905fea4", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6aecc0f8078905fea7", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "67877f6aecc0f8078905fea4", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f6aecc0f8078905feaa", - "_tpl": "5c0d32fcd174af02a1659c75", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905feb8", - "_tpl": "5b44cf1486f77431723e3d05", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905feb9", - "_tpl": "6575c3b3dc9932aed601c5f4", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905feba", - "_tpl": "6575c3beefc786cd9101a5ed", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905febb", - "_tpl": "6575c3cdc6700bd6b40e8a90", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6aecc0f8078905febc", - "_tpl": "6575c3dfdc9932aed601c5f8", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6aecc0f8078905febd", - "_tpl": "6575c3ec52b7f8c76a05ee39", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Collar" - }, - { - "_id": "67877f6aecc0f8078905febe", - "_tpl": "6575c3fd52b7f8c76a05ee3d", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Shoulder_l" - }, - { - "_id": "67877f6aecc0f8078905febf", - "_tpl": "6575c40c52b7f8c76a05ee41", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Shoulder_r" - }, - { - "_id": "67877f6aecc0f8078905fec0", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fec1", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Back_plate" - }, - { - "_id": "67877f6aecc0f8078905fec2", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Left_side_plate" - }, - { - "_id": "67877f6aecc0f8078905fec3", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "67877f6aecc0f8078905feb8", - "slotId": "Right_side_plate" - }, - { - "_id": "67877f6aecc0f8078905fec6", - "_tpl": "5b3f3b0186f774021a2afef7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fec9", - "_tpl": "5b44c6ae86f7742d1627baea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fecc", - "_tpl": "5b3f3b0e86f7746752107cda", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fecf", - "_tpl": "5b46238386f7741a693bcf9c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fed9", - "_tpl": "5b44d22286f774172b0c9de8", + "_id": "6808baaf364a85cccb04a860", + "_tpl": "5a16b672fcdbcb001912fa83", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1339,289 +463,7 @@ } }, { - "_id": "67877f6aecc0f8078905feda", - "_tpl": "65704de13e7bba58ea0285c8", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6aecc0f8078905fedb", - "_tpl": "65705c3c14f2ed6d7d0b7738", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6aecc0f8078905fedc", - "_tpl": "65705c777260e1139e091408", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6aecc0f8078905fedd", - "_tpl": "65705cb314f2ed6d7d0b773c", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6aecc0f8078905fede", - "_tpl": "65705cea4916448ae1050897", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Collar" - }, - { - "_id": "67877f6aecc0f8078905fedf", - "_tpl": "656f9d5900d62bcd2e02407c", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Front_plate" - }, - { - "_id": "67877f6aecc0f8078905fee0", - "_tpl": "656f9d5900d62bcd2e02407c", - "parentId": "67877f6aecc0f8078905fed9", - "slotId": "Back_plate" - }, - { - "_id": "67877f6aecc0f8078905fee6", - "_tpl": "5ca20ee186f774799474abc2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905fee7", - "_tpl": "657bbe73a1c61ee0c303632b", - "parentId": "67877f6aecc0f8078905fee6", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6aecc0f8078905fee8", - "_tpl": "657bbed0aab96fccee08be96", - "parentId": "67877f6aecc0f8078905fee6", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6aecc0f8078905fee9", - "_tpl": "657bbefeb30eca9763051189", - "parentId": "67877f6aecc0f8078905fee6", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f6aecc0f8078905feec", - "_tpl": "5bffe7930db834001b734a39", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6aecc0f8078905feef", - "_tpl": "5ab8f85d86f7745cd93a1cf5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905fef2", - "_tpl": "5aa2ba71e5b5b000137b758f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905fef5", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905fef8", - "_tpl": "5b432b6c5acfc4001a599bf0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff08", - "_tpl": "5ca21c6986f77479963115a7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff09", - "_tpl": "6575d9a79e27f4a85e08112d", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6becc0f8078905ff0a", - "_tpl": "6575d9b8945bf78edd04c427", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6becc0f8078905ff0b", - "_tpl": "6575d9c40546f8b1de093dee", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6becc0f8078905ff0c", - "_tpl": "6575d9cf0546f8b1de093df2", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6becc0f8078905ff0d", - "_tpl": "6575d9d8945bf78edd04c42b", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Collar" - }, - { - "_id": "67877f6becc0f8078905ff0e", - "_tpl": "6575da07945bf78edd04c433", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Shoulder_l" - }, - { - "_id": "67877f6becc0f8078905ff0f", - "_tpl": "6575da159e27f4a85e081131", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Shoulder_r" - }, - { - "_id": "67877f6becc0f8078905ff10", - "_tpl": "6575d9e7945bf78edd04c42f", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Groin" - }, - { - "_id": "67877f6becc0f8078905ff11", - "_tpl": "6575d9f816c2762fba00588d", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Groin_back" - }, - { - "_id": "67877f6becc0f8078905ff12", - "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Front_plate" - }, - { - "_id": "67877f6becc0f8078905ff13", - "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Back_plate" - }, - { - "_id": "67877f6becc0f8078905ff14", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Left_side_plate" - }, - { - "_id": "67877f6becc0f8078905ff15", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "67877f6becc0f8078905ff08", - "slotId": "Right_side_plate" - }, - { - "_id": "67877f6becc0f8078905ff1e", - "_tpl": "5ab8dced86f774646209ec87", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff1f", - "_tpl": "6570f6e774d84423df065f21", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6becc0f8078905ff20", - "_tpl": "6570f71dd67d0309980a7af8", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6becc0f8078905ff21", - "_tpl": "6570f74774d84423df065f25", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6becc0f8078905ff22", - "_tpl": "6570f79c4c65ab77a6015121", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6becc0f8078905ff23", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "Front_plate" - }, - { - "_id": "67877f6becc0f8078905ff24", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "67877f6becc0f8078905ff1e", - "slotId": "Back_plate" - }, - { - "_id": "67877f6becc0f8078905ff27", - "_tpl": "5b4327aa5acfc400175496e0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff2c", + "_id": "6808baaf364a85cccb04a865", "_tpl": "5b40e3f35acfc40016388218", "parentId": "hideout", "slotId": "hideout", @@ -1633,20 +475,86 @@ } }, { - "_id": "67877f6becc0f8078905ff2d", + "_id": "6808baaf364a85cccb04a866", "_tpl": "657f95bff92cd718b701550c", - "parentId": "67877f6becc0f8078905ff2c", + "parentId": "6808baaf364a85cccb04a865", "slotId": "Helmet_top" }, { - "_id": "67877f6becc0f8078905ff2e", + "_id": "6808baaf364a85cccb04a867", "_tpl": "657f9605f4c82973640b2358", - "parentId": "67877f6becc0f8078905ff2c", + "parentId": "6808baaf364a85cccb04a865", "slotId": "Helmet_back" }, { - "_id": "67877f6becc0f8078905ff31", - "_tpl": "5b432f3d5acfc4704b4a1dfb", + "_id": "6808baaf364a85cccb04a86a", + "_tpl": "5c0e6a1586f77404597b4965", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a86d", + "_tpl": "5b44c8ea86f7742d1627baf1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a873", + "_tpl": "5ca20ee186f774799474abc2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a874", + "_tpl": "657bbe73a1c61ee0c303632b", + "parentId": "6808baaf364a85cccb04a873", + "slotId": "Helmet_top" + }, + { + "_id": "6808baaf364a85cccb04a875", + "_tpl": "657bbed0aab96fccee08be96", + "parentId": "6808baaf364a85cccb04a873", + "slotId": "Helmet_back" + }, + { + "_id": "6808baaf364a85cccb04a876", + "_tpl": "657bbefeb30eca9763051189", + "parentId": "6808baaf364a85cccb04a873", + "slotId": "Helmet_ears" + }, + { + "_id": "6808baaf364a85cccb04a879", + "_tpl": "5b3f3ade86f7746b6b790d8e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a87c", + "_tpl": "5b43271c5acfc432ff4dce65", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1657,7 +565,271 @@ } }, { - "_id": "67877f6becc0f8078905ff34", + "_id": "6808baaf364a85cccb04a87f", + "_tpl": "5bffe7930db834001b734a39", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a882", + "_tpl": "572b7f1624597762ae139822", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a890", + "_tpl": "5b44cf1486f77431723e3d05", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a891", + "_tpl": "6575c3b3dc9932aed601c5f4", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808baaf364a85cccb04a892", + "_tpl": "6575c3beefc786cd9101a5ed", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808baaf364a85cccb04a893", + "_tpl": "6575c3cdc6700bd6b40e8a90", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808baaf364a85cccb04a894", + "_tpl": "6575c3dfdc9932aed601c5f8", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "soft_armor_right" + }, + { + "_id": "6808baaf364a85cccb04a895", + "_tpl": "6575c3ec52b7f8c76a05ee39", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Collar" + }, + { + "_id": "6808baaf364a85cccb04a896", + "_tpl": "6575c3fd52b7f8c76a05ee3d", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Shoulder_l" + }, + { + "_id": "6808baaf364a85cccb04a897", + "_tpl": "6575c40c52b7f8c76a05ee41", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Shoulder_r" + }, + { + "_id": "6808baaf364a85cccb04a898", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Front_plate" + }, + { + "_id": "6808baaf364a85cccb04a899", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Back_plate" + }, + { + "_id": "6808baaf364a85cccb04a89a", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Left_side_plate" + }, + { + "_id": "6808baaf364a85cccb04a89b", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808baaf364a85cccb04a890", + "slotId": "Right_side_plate" + }, + { + "_id": "6808baaf364a85cccb04a89e", + "_tpl": "5ab8f85d86f7745cd93a1cf5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8a3", + "_tpl": "5b40e4035acfc47a87740943", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8a4", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "6808baaf364a85cccb04a8a3", + "slotId": "Helmet_top" + }, + { + "_id": "6808baaf364a85cccb04a8a5", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "6808baaf364a85cccb04a8a3", + "slotId": "Helmet_back" + }, + { + "_id": "6808baaf364a85cccb04a8a8", + "_tpl": "5aa7e373e5b5b000137b76f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8ab", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8b1", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8b2", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "6808baaf364a85cccb04a8b1", + "slotId": "Helmet_top" + }, + { + "_id": "6808baaf364a85cccb04a8b3", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "6808baaf364a85cccb04a8b1", + "slotId": "Helmet_back" + }, + { + "_id": "6808baaf364a85cccb04a8b4", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "6808baaf364a85cccb04a8b1", + "slotId": "Helmet_ears" + }, + { + "_id": "6808baaf364a85cccb04a8b7", + "_tpl": "5ca2113f86f7740b2547e1d2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baaf364a85cccb04a8ba", + "_tpl": "5b44c6ae86f7742d1627baea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8bd", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8c0", + "_tpl": "5b4325355acfc40019478126", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 7, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8c3", + "_tpl": "5aa7e373e5b5b000137b76f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8c6", + "_tpl": "5ab8f04f86f774585f4237d8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8c9", "_tpl": "5ca20d5986f774331e7c9602", "parentId": "hideout", "slotId": "hideout", @@ -1669,158 +841,8 @@ } }, { - "_id": "67877f6becc0f8078905ff37", - "_tpl": "5ca20abf86f77418567a43f2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff3a", - "_tpl": "5d6d3be5a4b9361bc73bc763", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff3d", - "_tpl": "5d5fca1ea4b93635fd598c07", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff40", - "_tpl": "5c1a1cc52e221602b3136e3d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff4c", - "_tpl": "5d5d85c586f774279a21cbdb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff53", - "_tpl": "5d5d646386f7742797261fd9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff54", - "_tpl": "65764e1e2bc38ef78e076489", - "parentId": "67877f6becc0f8078905ff53", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6becc0f8078905ff55", - "_tpl": "65764fae2bc38ef78e07648d", - "parentId": "67877f6becc0f8078905ff53", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6becc0f8078905ff56", - "_tpl": "6576504b526e320fbe035783", - "parentId": "67877f6becc0f8078905ff53", - "slotId": "Groin" - }, - { - "_id": "67877f6becc0f8078905ff57", - "_tpl": "6576500f526e320fbe03577f", - "parentId": "67877f6becc0f8078905ff53", - "slotId": "Groin_back" - }, - { - "_id": "67877f6becc0f8078905ff5a", - "_tpl": "5df8a42886f77412640e2e75", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff60", - "_tpl": "5d6d3716a4b9361bc8618872", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff61", - "_tpl": "657fa009d4caf976440afe3a", - "parentId": "67877f6becc0f8078905ff60", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6becc0f8078905ff62", - "_tpl": "657fa04ac6679fefb3051e24", - "parentId": "67877f6becc0f8078905ff60", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6becc0f8078905ff63", - "_tpl": "657fa07387e11c61f70bface", - "parentId": "67877f6becc0f8078905ff60", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f6becc0f8078905ff66", - "_tpl": "5f5e46b96bdad616ad46d613", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6becc0f8078905ff69", - "_tpl": "5d6d2ef3a4b93618084f58bd", + "_id": "6808bab0364a85cccb04a8cc", + "_tpl": "5aa2b87de5b5b00016327c25", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1831,8 +853,20 @@ } }, { - "_id": "67877f6becc0f8078905ff6c", - "_tpl": "5d6d3943a4b9360dbc46d0cc", + "_id": "6808bab0364a85cccb04a8cf", + "_tpl": "5b432b6c5acfc4001a599bf0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8d2", + "_tpl": "5c165d832e2216398b5a7e36", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1843,8 +877,20 @@ } }, { - "_id": "67877f6becc0f8078905ff6f", - "_tpl": "5a16bb52fcdbcb001a3b00dc", + "_id": "6808bab0364a85cccb04a8d5", + "_tpl": "5aa2b9ede5b5b000137b758b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8da", + "_tpl": "5b432d215acfc4771e1c6624", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1855,7 +901,775 @@ } }, { - "_id": "67877f6becc0f8078905ff72", + "_id": "6808bab0364a85cccb04a8db", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6808bab0364a85cccb04a8da", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab0364a85cccb04a8dc", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6808bab0364a85cccb04a8da", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab0364a85cccb04a8df", + "_tpl": "5b40e61f5acfc4001a599bec", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8e2", + "_tpl": "5b3f3b0186f774021a2afef7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8e5", + "_tpl": "5c0d32fcd174af02a1659c75", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8f0", + "_tpl": "5c0e51be86f774598e797894", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8f1", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab0364a85cccb04a8f2", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab0364a85cccb04a8f3", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab0364a85cccb04a8f4", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab0364a85cccb04a8f5", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Collar" + }, + { + "_id": "6808bab0364a85cccb04a8f6", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Groin" + }, + { + "_id": "6808bab0364a85cccb04a8f7", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Front_plate" + }, + { + "_id": "6808bab0364a85cccb04a8f8", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "6808bab0364a85cccb04a8f0", + "slotId": "Back_plate" + }, + { + "_id": "6808bab0364a85cccb04a8fb", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a8fe", + "_tpl": "5b3f16c486f7747c327f55f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a904", + "_tpl": "5b40e2bc5acfc40016388216", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a905", + "_tpl": "657112234269e9a568089eac", + "parentId": "6808bab0364a85cccb04a904", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab0364a85cccb04a906", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6808bab0364a85cccb04a904", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab0364a85cccb04a907", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6808bab0364a85cccb04a904", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bab0364a85cccb04a910", + "_tpl": "5c0e722886f7740458316a57", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a911", + "_tpl": "65730c0e292ecadbfa09ad49", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab0364a85cccb04a912", + "_tpl": "65730c2213a2f660f60bea96", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab0364a85cccb04a913", + "_tpl": "65730c2b292ecadbfa09ad50", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab0364a85cccb04a914", + "_tpl": "65730c35292ecadbfa09ad54", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab0364a85cccb04a915", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "Front_plate" + }, + { + "_id": "6808bab0364a85cccb04a916", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab0364a85cccb04a910", + "slotId": "Back_plate" + }, + { + "_id": "6808bab0364a85cccb04a919", + "_tpl": "5b46238386f7741a693bcf9c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a920", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a921", + "_tpl": "657044e971369562b300ce9b", + "parentId": "6808bab0364a85cccb04a920", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab0364a85cccb04a922", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "6808bab0364a85cccb04a920", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab0364a85cccb04a923", + "_tpl": "657045b97e80617cee095bda", + "parentId": "6808bab0364a85cccb04a920", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab0364a85cccb04a924", + "_tpl": "6570460471369562b300ce9f", + "parentId": "6808bab0364a85cccb04a920", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab0364a85cccb04a927", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a92a", + "_tpl": "5aa2ba71e5b5b000137b758f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a92d", + "_tpl": "5ab8f4ff86f77431c60d91ba", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a930", + "_tpl": "5b432f3d5acfc4704b4a1dfb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab0364a85cccb04a933", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a936", + "_tpl": "592c2d1a86f7746dbe2af32a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a939", + "_tpl": "5ab8dab586f77441cd04f2a2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a93f", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a940", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6808bab1364a85cccb04a93f", + "slotId": "helmet_top" + }, + { + "_id": "6808bab1364a85cccb04a941", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6808bab1364a85cccb04a93f", + "slotId": "helmet_back" + }, + { + "_id": "6808bab1364a85cccb04a942", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6808bab1364a85cccb04a93f", + "slotId": "helmet_ears" + }, + { + "_id": "6808bab1364a85cccb04a945", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a948", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a94b", + "_tpl": "5d5d940f86f7742797262046", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a94e", + "_tpl": "5c0e774286f77468413cc5b2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a951", + "_tpl": "5aa2b986e5b5b00014028f4c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a958", + "_tpl": "5c0e746986f7741453628fe5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a959", + "_tpl": "6570df294cc0d2ab1e05ed74", + "parentId": "6808bab1364a85cccb04a958", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab1364a85cccb04a95a", + "_tpl": "6570df9c615f54368b04fca9", + "parentId": "6808bab1364a85cccb04a958", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab1364a85cccb04a95b", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab1364a85cccb04a958", + "slotId": "Front_plate" + }, + { + "_id": "6808bab1364a85cccb04a95c", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab1364a85cccb04a958", + "slotId": "Back_plate" + }, + { + "_id": "6808bab1364a85cccb04a95f", + "_tpl": "5aa7e373e5b5b000137b76f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a962", + "_tpl": "5b3f3b0e86f7746752107cda", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a965", + "_tpl": "5b4327aa5acfc400175496e0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a975", + "_tpl": "5ca21c6986f77479963115a7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a976", + "_tpl": "6575d9a79e27f4a85e08112d", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab1364a85cccb04a977", + "_tpl": "6575d9b8945bf78edd04c427", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab1364a85cccb04a978", + "_tpl": "6575d9c40546f8b1de093dee", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab1364a85cccb04a979", + "_tpl": "6575d9cf0546f8b1de093df2", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab1364a85cccb04a97a", + "_tpl": "6575d9d8945bf78edd04c42b", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Collar" + }, + { + "_id": "6808bab1364a85cccb04a97b", + "_tpl": "6575da07945bf78edd04c433", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Shoulder_l" + }, + { + "_id": "6808bab1364a85cccb04a97c", + "_tpl": "6575da159e27f4a85e081131", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Shoulder_r" + }, + { + "_id": "6808bab1364a85cccb04a97d", + "_tpl": "6575d9e7945bf78edd04c42f", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Groin" + }, + { + "_id": "6808bab1364a85cccb04a97e", + "_tpl": "6575d9f816c2762fba00588d", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Groin_back" + }, + { + "_id": "6808bab1364a85cccb04a97f", + "_tpl": "65573fa5655447403702a816", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Front_plate" + }, + { + "_id": "6808bab1364a85cccb04a980", + "_tpl": "65573fa5655447403702a816", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Back_plate" + }, + { + "_id": "6808bab1364a85cccb04a981", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Left_side_plate" + }, + { + "_id": "6808bab1364a85cccb04a982", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6808bab1364a85cccb04a975", + "slotId": "Right_side_plate" + }, + { + "_id": "6808bab1364a85cccb04a9aa", + "_tpl": "5c0e5bab86f77461f55ed1f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a9ab", + "_tpl": "6571b27a6d84a2b8b6007f92", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab1364a85cccb04a9ac", + "_tpl": "6571baa74cb80d995d0a1490", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab1364a85cccb04a9ad", + "_tpl": "6571baac6d84a2b8b6007fa3", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab1364a85cccb04a9ae", + "_tpl": "6571bab0f41985531a038091", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab1364a85cccb04a9af", + "_tpl": "6571babb4076795e5e07383f", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Collar" + }, + { + "_id": "6808bab1364a85cccb04a9b0", + "_tpl": "6571bac34076795e5e073843", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Groin" + }, + { + "_id": "6808bab1364a85cccb04a9b1", + "_tpl": "6571babf4cb80d995d0a1494", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Groin_back" + }, + { + "_id": "6808bab1364a85cccb04a9b2", + "_tpl": "654a4dea7c17dec2f50cc86a", + "parentId": "6808bab1364a85cccb04a9aa", + "slotId": "Front_plate" + }, + { + "_id": "6808bab1364a85cccb04a9b5", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a9bf", + "_tpl": "5b44d22286f774172b0c9de8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a9c0", + "_tpl": "65704de13e7bba58ea0285c8", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab1364a85cccb04a9c1", + "_tpl": "65705c3c14f2ed6d7d0b7738", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab1364a85cccb04a9c2", + "_tpl": "65705c777260e1139e091408", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab1364a85cccb04a9c3", + "_tpl": "65705cb314f2ed6d7d0b773c", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab1364a85cccb04a9c4", + "_tpl": "65705cea4916448ae1050897", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Collar" + }, + { + "_id": "6808bab1364a85cccb04a9c5", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Front_plate" + }, + { + "_id": "6808bab1364a85cccb04a9c6", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "6808bab1364a85cccb04a9bf", + "slotId": "Back_plate" + }, + { + "_id": "6808bab1364a85cccb04a9cf", + "_tpl": "5ab8dced86f774646209ec87", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab1364a85cccb04a9d0", + "_tpl": "6570f6e774d84423df065f21", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab1364a85cccb04a9d1", + "_tpl": "6570f71dd67d0309980a7af8", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab1364a85cccb04a9d2", + "_tpl": "6570f74774d84423df065f25", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab1364a85cccb04a9d3", + "_tpl": "6570f79c4c65ab77a6015121", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab1364a85cccb04a9d4", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "Front_plate" + }, + { + "_id": "6808bab1364a85cccb04a9d5", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6808bab1364a85cccb04a9cf", + "slotId": "Back_plate" + }, + { + "_id": "6808bab1364a85cccb04a9d8", "_tpl": "5d6d2e22a4b9361bd5780d05", "parentId": "hideout", "slotId": "hideout", @@ -1867,109 +1681,7 @@ } }, { - "_id": "67877f6becc0f8078905ff75", - "_tpl": "618cfae774bb2d036a049e7c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ff7d", - "_tpl": "544a5caa4bdc2d1a388b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ff7e", - "_tpl": "6570e83223c1f638ef0b0ede", - "parentId": "67877f6cecc0f8078905ff7d", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ff7f", - "_tpl": "6570e87c23c1f638ef0b0ee2", - "parentId": "67877f6cecc0f8078905ff7d", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ff80", - "_tpl": "6570e90b3a5689d85f08db97", - "parentId": "67877f6cecc0f8078905ff7d", - "slotId": "Groin" - }, - { - "_id": "67877f6cecc0f8078905ff81", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f6cecc0f8078905ff7d", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078905ff82", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f6cecc0f8078905ff7d", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078905ff89", - "_tpl": "5c0e446786f7742013381639", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ff8a", - "_tpl": "657087577f6d4590ac0d2109", - "parentId": "67877f6cecc0f8078905ff89", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ff8b", - "_tpl": "6570880f4a747dbb63005ee5", - "parentId": "67877f6cecc0f8078905ff89", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ff8c", - "_tpl": "65708afe4a747dbb63005eee", - "parentId": "67877f6cecc0f8078905ff89", - "slotId": "Collar" - }, - { - "_id": "67877f6cecc0f8078905ff8d", - "_tpl": "65708b4c4a747dbb63005ef3", - "parentId": "67877f6cecc0f8078905ff89", - "slotId": "Groin" - }, - { - "_id": "67877f6cecc0f8078905ff90", - "_tpl": "6034d103ca006d2dca39b3f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ff93", + "_id": "6808bab1364a85cccb04a9db", "_tpl": "618bb76513f5097c8d5aa2d5", "parentId": "hideout", "slotId": "hideout", @@ -1981,31 +1693,31 @@ } }, { - "_id": "67877f6cecc0f8078905ff96", + "_id": "6808bab1364a85cccb04a9de", + "_tpl": "5d6d3943a4b9360dbc46d0cc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04a9e1", "_tpl": "5d6d3829a4b9361bc8618943", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f6cecc0f8078905ff99", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ff9c", + "_id": "6808bab2364a85cccb04a9e4", "_tpl": "60a2828e8689911a226117f9", "parentId": "hideout", "slotId": "hideout", @@ -2017,32 +1729,8 @@ } }, { - "_id": "67877f6cecc0f8078905ff9f", - "_tpl": "5d6d3829a4b9361bc8618943", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffa2", - "_tpl": "6034d0230ca681766b6a0fb5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffa5", - "_tpl": "619cf0335771dd3c390269ae", + "_id": "6808bab2364a85cccb04a9e7", + "_tpl": "5c1a1cc52e221602b3136e3d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2053,8 +1741,8 @@ } }, { - "_id": "67877f6cecc0f8078905ffa8", - "_tpl": "6034d2d697633951dc245ea6", + "_id": "6808bab2364a85cccb04a9ea", + "_tpl": "5df8a42886f77412640e2e75", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2065,7 +1753,283 @@ } }, { - "_id": "67877f6cecc0f8078905ffab", + "_id": "6808bab2364a85cccb04a9f2", + "_tpl": "544a5caa4bdc2d1a388b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04a9f3", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "6808bab2364a85cccb04a9f2", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab2364a85cccb04a9f4", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "6808bab2364a85cccb04a9f2", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab2364a85cccb04a9f5", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "6808bab2364a85cccb04a9f2", + "slotId": "Groin" + }, + { + "_id": "6808bab2364a85cccb04a9f6", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808bab2364a85cccb04a9f2", + "slotId": "Front_plate" + }, + { + "_id": "6808bab2364a85cccb04a9f7", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808bab2364a85cccb04a9f2", + "slotId": "Back_plate" + }, + { + "_id": "6808bab2364a85cccb04a9fa", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa00", + "_tpl": "5d6d3716a4b9361bc8618872", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa01", + "_tpl": "657fa009d4caf976440afe3a", + "parentId": "6808bab2364a85cccb04aa00", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab2364a85cccb04aa02", + "_tpl": "657fa04ac6679fefb3051e24", + "parentId": "6808bab2364a85cccb04aa00", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab2364a85cccb04aa03", + "_tpl": "657fa07387e11c61f70bface", + "parentId": "6808bab2364a85cccb04aa00", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bab2364a85cccb04aa0a", + "_tpl": "5d5d646386f7742797261fd9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa0b", + "_tpl": "65764e1e2bc38ef78e076489", + "parentId": "6808bab2364a85cccb04aa0a", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab2364a85cccb04aa0c", + "_tpl": "65764fae2bc38ef78e07648d", + "parentId": "6808bab2364a85cccb04aa0a", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab2364a85cccb04aa0d", + "_tpl": "6576504b526e320fbe035783", + "parentId": "6808bab2364a85cccb04aa0a", + "slotId": "Groin" + }, + { + "_id": "6808bab2364a85cccb04aa0e", + "_tpl": "6576500f526e320fbe03577f", + "parentId": "6808bab2364a85cccb04aa0a", + "slotId": "Groin_back" + }, + { + "_id": "6808bab2364a85cccb04aa11", + "_tpl": "5d6d3be5a4b9361bc73bc763", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa14", + "_tpl": "618cfae774bb2d036a049e7c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa17", + "_tpl": "5d6d2ef3a4b93618084f58bd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa1a", + "_tpl": "5d5d85c586f774279a21cbdb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa26", + "_tpl": "5f5e46b96bdad616ad46d613", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa29", + "_tpl": "6034d103ca006d2dca39b3f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa2c", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa2f", + "_tpl": "5d5fca1ea4b93635fd598c07", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa32", + "_tpl": "5d6d3829a4b9361bc8618943", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa39", + "_tpl": "5c0e446786f7742013381639", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa3a", + "_tpl": "657087577f6d4590ac0d2109", + "parentId": "6808bab2364a85cccb04aa39", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab2364a85cccb04aa3b", + "_tpl": "6570880f4a747dbb63005ee5", + "parentId": "6808bab2364a85cccb04aa39", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab2364a85cccb04aa3c", + "_tpl": "65708afe4a747dbb63005eee", + "parentId": "6808bab2364a85cccb04aa39", + "slotId": "Collar" + }, + { + "_id": "6808bab2364a85cccb04aa3d", + "_tpl": "65708b4c4a747dbb63005ef3", + "parentId": "6808bab2364a85cccb04aa39", + "slotId": "Groin" + }, + { + "_id": "6808bab2364a85cccb04aa40", + "_tpl": "5a16bb52fcdbcb001a3b00dc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab2364a85cccb04aa43", "_tpl": "60b52e5bc7d8103275739d67", "parentId": "hideout", "slotId": "hideout", @@ -2077,331 +2041,7 @@ } }, { - "_id": "67877f6cecc0f8078905ffb4", - "_tpl": "609e8540d5c319764c2bc2e9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffb5", - "_tpl": "6572e5221b5bc1185508c24f", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ffb6", - "_tpl": "6572e52f73c0eabb700109a0", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ffb7", - "_tpl": "6572e53c73c0eabb700109a4", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6cecc0f8078905ffb8", - "_tpl": "6572e54873c0eabb700109a8", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6cecc0f8078905ffb9", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078905ffba", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "67877f6cecc0f8078905ffb4", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078905ffbd", - "_tpl": "639346cc1c8f182ad90c8972", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffc0", - "_tpl": "5f60e7788adaa7100c3adb49", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffc3", - "_tpl": "5f60e784f2bcbb675b00dac7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffcc", - "_tpl": "64abd93857958b4249003418", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffcd", - "_tpl": "6570f30b0921c914bf07964c", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ffce", - "_tpl": "6570f35cd67d0309980a7acb", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ffcf", - "_tpl": "6570f3890b4ae5847f060dad", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6cecc0f8078905ffd0", - "_tpl": "6570f3bb0b4ae5847f060db2", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6cecc0f8078905ffd1", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078905ffd2", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "67877f6cecc0f8078905ffcc", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078905ffd9", - "_tpl": "5c0e655586f774045612eeb2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffda", - "_tpl": "6570e025615f54368b04fcb0", - "parentId": "67877f6cecc0f8078905ffd9", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ffdb", - "_tpl": "6570e0610b57c03ec90b96ef", - "parentId": "67877f6cecc0f8078905ffd9", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ffdc", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "67877f6cecc0f8078905ffd9", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078905ffdd", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "67877f6cecc0f8078905ffd9", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078905ffe9", - "_tpl": "60a3c70cde5f453f634816a3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f8078905ffea", - "_tpl": "6570fae34c65ab77a6015146", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f8078905ffeb", - "_tpl": "6570fa1f4c65ab77a601512f", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f8078905ffec", - "_tpl": "6570fb22584a51c23e03251f", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6cecc0f8078905ffed", - "_tpl": "6570fb6ad3eefd23430f8c7c", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6cecc0f8078905ffee", - "_tpl": "6570fb8f4c65ab77a601514d", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Collar" - }, - { - "_id": "67877f6cecc0f8078905ffef", - "_tpl": "6570fbdd74d84423df065f60", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Shoulder_l" - }, - { - "_id": "67877f6cecc0f8078905fff0", - "_tpl": "6570fc41d3eefd23430f8c83", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Shoulder_r" - }, - { - "_id": "67877f6cecc0f8078905fff1", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078905fff2", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "67877f6cecc0f8078905ffe9", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078905fff5", - "_tpl": "6038d614d10cbf667352dd44", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f80789060001", - "_tpl": "5ca2151486f774244a3b8d30", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f80789060002", - "_tpl": "6575dd3e9e27f4a85e081142", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6cecc0f80789060003", - "_tpl": "6575dd519e27f4a85e081146", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6cecc0f80789060004", - "_tpl": "6575dd64945bf78edd04c438", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6cecc0f80789060005", - "_tpl": "6575dd6e9d3a0ddf660b9047", - "parentId": "67877f6cecc0f80789060001", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6cecc0f80789060006", - "_tpl": "6575dd769d3a0ddf660b904b", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Collar" - }, - { - "_id": "67877f6cecc0f80789060007", - "_tpl": "6575dd800546f8b1de093df6", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Groin" - }, - { - "_id": "67877f6cecc0f80789060008", - "_tpl": "6575dd94945bf78edd04c43c", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Groin_back" - }, - { - "_id": "67877f6cecc0f80789060009", - "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Front_plate" - }, - { - "_id": "67877f6cecc0f8078906000a", - "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6cecc0f80789060001", - "slotId": "Back_plate" - }, - { - "_id": "67877f6cecc0f8078906000d", - "_tpl": "62a1b7fbc30cfa1d366af586", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6cecc0f80789060010", + "_id": "6808bab2364a85cccb04aa46", "_tpl": "603648ff5a45383c122086ac", "parentId": "hideout", "slotId": "hideout", @@ -2413,8 +2053,80 @@ } }, { - "_id": "67877f6decc0f80789060013", - "_tpl": "5e4abc1f86f774069619fbaa", + "_id": "6808bab2364a85cccb04aa49", + "_tpl": "5f60e784f2bcbb675b00dac7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aa4c", + "_tpl": "619cf0335771dd3c390269ae", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aa55", + "_tpl": "64abd93857958b4249003418", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aa56", + "_tpl": "6570f30b0921c914bf07964c", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aa57", + "_tpl": "6570f35cd67d0309980a7acb", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aa58", + "_tpl": "6570f3890b4ae5847f060dad", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab3364a85cccb04aa59", + "_tpl": "6570f3bb0b4ae5847f060db2", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab3364a85cccb04aa5a", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aa5b", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "6808bab3364a85cccb04aa55", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aa5e", + "_tpl": "6034d2d697633951dc245ea6", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2425,8 +2137,8 @@ } }, { - "_id": "67877f6decc0f80789060018", - "_tpl": "63737f448b28897f2802b874", + "_id": "6808bab3364a85cccb04aa67", + "_tpl": "609e8540d5c319764c2bc2e9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2437,73 +2149,79 @@ } }, { - "_id": "67877f6decc0f80789060019", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "67877f6decc0f80789060018", - "slotId": "Front_plate" - }, - { - "_id": "67877f6decc0f8078906001a", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "67877f6decc0f80789060018", - "slotId": "Back_plate" - }, - { - "_id": "67877f6decc0f80789060024", - "_tpl": "61bcc89aef0f505f0c6cd0fc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f80789060025", - "_tpl": "6572eb0e55beba16bc04079f", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa68", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "Soft_armor_front" }, { - "_id": "67877f6decc0f80789060026", - "_tpl": "6572eb1b04ee6483ef039882", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa69", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "Soft_armor_back" }, { - "_id": "67877f6decc0f80789060027", - "_tpl": "6572eb3004ee6483ef039886", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa6a", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "Soft_armor_left" }, { - "_id": "67877f6decc0f80789060028", - "_tpl": "6572eb3b04ee6483ef03988a", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa6b", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "soft_armor_right" }, { - "_id": "67877f6decc0f80789060029", - "_tpl": "6572eb865b5eac12f10a03ee", - "parentId": "67877f6decc0f80789060024", - "slotId": "Groin" - }, - { - "_id": "67877f6decc0f8078906002a", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa6c", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "Front_plate" }, { - "_id": "67877f6decc0f8078906002b", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "67877f6decc0f80789060024", + "_id": "6808bab3364a85cccb04aa6d", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6808bab3364a85cccb04aa67", "slotId": "Back_plate" }, { - "_id": "67877f6decc0f80789060036", + "_id": "6808bab3364a85cccb04aa74", + "_tpl": "5c0e655586f774045612eeb2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aa75", + "_tpl": "6570e025615f54368b04fcb0", + "parentId": "6808bab3364a85cccb04aa74", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aa76", + "_tpl": "6570e0610b57c03ec90b96ef", + "parentId": "6808bab3364a85cccb04aa74", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aa77", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bab3364a85cccb04aa74", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aa78", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bab3364a85cccb04aa74", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aa83", "_tpl": "5e9dacf986f774054d6b89f4", "parentId": "hideout", "slotId": "hideout", @@ -2515,68 +2233,56 @@ } }, { - "_id": "67877f6decc0f80789060037", + "_id": "6808bab3364a85cccb04aa84", "_tpl": "65732de75d3a3129fb05f3dd", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Soft_armor_front" }, { - "_id": "67877f6decc0f80789060038", + "_id": "6808bab3364a85cccb04aa85", "_tpl": "65732df4d0acf75aea06c87b", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Soft_armor_back" }, { - "_id": "67877f6decc0f80789060039", + "_id": "6808bab3364a85cccb04aa86", "_tpl": "65732e05d0acf75aea06c87f", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Soft_armor_left" }, { - "_id": "67877f6decc0f8078906003a", + "_id": "6808bab3364a85cccb04aa87", "_tpl": "65732e0f6784ca384b0167ad", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "soft_armor_right" }, { - "_id": "67877f6decc0f8078906003b", + "_id": "6808bab3364a85cccb04aa88", "_tpl": "65732e215d3a3129fb05f3e1", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Collar" }, { - "_id": "67877f6decc0f8078906003c", + "_id": "6808bab3364a85cccb04aa89", "_tpl": "65732e30dd8739f6440ef383", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Groin" }, { - "_id": "67877f6decc0f8078906003d", + "_id": "6808bab3364a85cccb04aa8a", "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Front_plate" }, { - "_id": "67877f6decc0f8078906003e", + "_id": "6808bab3364a85cccb04aa8b", "_tpl": "65573fa5655447403702a816", - "parentId": "67877f6decc0f80789060036", + "parentId": "6808bab3364a85cccb04aa83", "slotId": "Back_plate" }, { - "_id": "67877f6decc0f80789060041", - "_tpl": "5f60c85b58eff926626a60f7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f8078906004a", - "_tpl": "628d0618d1ba6e4fa07ce5a4", + "_id": "6808bab3364a85cccb04aa8e", + "_tpl": "62a1b7fbc30cfa1d366af586", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2587,104 +2293,8 @@ } }, { - "_id": "67877f6decc0f8078906004b", - "_tpl": "657322988c1cc6dcd9098b2d", - "parentId": "67877f6decc0f8078906004a", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6decc0f8078906004c", - "_tpl": "657322a4cea9255e21023651", - "parentId": "67877f6decc0f8078906004a", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6decc0f8078906004d", - "_tpl": "657322acd9d89ff7ac0d961b", - "parentId": "67877f6decc0f8078906004a", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6decc0f8078906004e", - "_tpl": "657322b7d9d89ff7ac0d961f", - "parentId": "67877f6decc0f8078906004a", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6decc0f8078906004f", - "_tpl": "656f664200d62bcd2e024077", - "parentId": "67877f6decc0f8078906004a", - "slotId": "Front_plate" - }, - { - "_id": "67877f6decc0f80789060050", - "_tpl": "657b2797c3dbcb01d60c35ea", - "parentId": "67877f6decc0f8078906004a", - "slotId": "Back_plate" - }, - { - "_id": "67877f6decc0f80789060059", - "_tpl": "639343fce101f4caa40a4ef3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f8078906005a", - "_tpl": "6573101e292ecadbfa09b389", - "parentId": "67877f6decc0f80789060059", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6decc0f8078906005b", - "_tpl": "6573102b292ecadbfa09b38d", - "parentId": "67877f6decc0f80789060059", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6decc0f8078906005c", - "_tpl": "65731038292ecadbfa09b391", - "parentId": "67877f6decc0f80789060059", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6decc0f8078906005d", - "_tpl": "65731045f31d5be00e08a75a", - "parentId": "67877f6decc0f80789060059", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6decc0f8078906005e", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "67877f6decc0f80789060059", - "slotId": "Front_plate" - }, - { - "_id": "67877f6decc0f8078906005f", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "67877f6decc0f80789060059", - "slotId": "Back_plate" - }, - { - "_id": "67877f6decc0f80789060062", - "_tpl": "5fd4c60f875c30179f5d04c2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f8078906006c", - "_tpl": "628dc750b910320f4c27a732", + "_id": "6808bab3364a85cccb04aa93", + "_tpl": "63737f448b28897f2802b874", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2695,50 +2305,140 @@ } }, { - "_id": "67877f6decc0f8078906006d", - "_tpl": "6572f1ca4c8d903cc60c874e", - "parentId": "67877f6decc0f8078906006c", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6decc0f8078906006e", - "_tpl": "6572f1d60103b4a3270332db", - "parentId": "67877f6decc0f8078906006c", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6decc0f8078906006f", - "_tpl": "6572f1e10103b4a3270332df", - "parentId": "67877f6decc0f8078906006c", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6decc0f80789060070", - "_tpl": "6572f1edea457732140ce875", - "parentId": "67877f6decc0f8078906006c", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6decc0f80789060071", - "_tpl": "6572f1f7ea457732140ce879", - "parentId": "67877f6decc0f8078906006c", - "slotId": "Groin" - }, - { - "_id": "67877f6decc0f80789060072", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "67877f6decc0f8078906006c", + "_id": "6808bab3364a85cccb04aa94", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6808bab3364a85cccb04aa93", "slotId": "Front_plate" }, { - "_id": "67877f6decc0f80789060073", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "67877f6decc0f8078906006c", + "_id": "6808bab3364a85cccb04aa95", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6808bab3364a85cccb04aa93", "slotId": "Back_plate" }, { - "_id": "67877f6decc0f80789060076", - "_tpl": "5f60e6403b85f6263c14558c", + "_id": "6808bab3364a85cccb04aaa1", + "_tpl": "60a3c70cde5f453f634816a3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aaa2", + "_tpl": "6570fae34c65ab77a6015146", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aaa3", + "_tpl": "6570fa1f4c65ab77a601512f", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aaa4", + "_tpl": "6570fb22584a51c23e03251f", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab3364a85cccb04aaa5", + "_tpl": "6570fb6ad3eefd23430f8c7c", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab3364a85cccb04aaa6", + "_tpl": "6570fb8f4c65ab77a601514d", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Collar" + }, + { + "_id": "6808bab3364a85cccb04aaa7", + "_tpl": "6570fbdd74d84423df065f60", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Shoulder_l" + }, + { + "_id": "6808bab3364a85cccb04aaa8", + "_tpl": "6570fc41d3eefd23430f8c83", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Shoulder_r" + }, + { + "_id": "6808bab3364a85cccb04aaa9", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aaaa", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6808bab3364a85cccb04aaa1", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aab4", + "_tpl": "61bcc89aef0f505f0c6cd0fc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aab5", + "_tpl": "6572eb0e55beba16bc04079f", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aab6", + "_tpl": "6572eb1b04ee6483ef039882", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aab7", + "_tpl": "6572eb3004ee6483ef039886", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab3364a85cccb04aab8", + "_tpl": "6572eb3b04ee6483ef03988a", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab3364a85cccb04aab9", + "_tpl": "6572eb865b5eac12f10a03ee", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Groin" + }, + { + "_id": "6808bab3364a85cccb04aaba", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aabb", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6808bab3364a85cccb04aab4", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aabe", + "_tpl": "6038d614d10cbf667352dd44", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2749,19 +2449,85 @@ } }, { - "_id": "67877f6decc0f80789060079", - "_tpl": "60a6220e953894617404b00a", + "_id": "6808bab3364a85cccb04aac1", + "_tpl": "5e4abc1f86f774069619fbaa", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f6decc0f8078906007c", + "_id": "6808bab3364a85cccb04aacd", + "_tpl": "5ca2151486f774244a3b8d30", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aace", + "_tpl": "6575dd3e9e27f4a85e081142", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aacf", + "_tpl": "6575dd519e27f4a85e081146", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aad0", + "_tpl": "6575dd64945bf78edd04c438", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab3364a85cccb04aad1", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab3364a85cccb04aad2", + "_tpl": "6575dd769d3a0ddf660b904b", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Collar" + }, + { + "_id": "6808bab3364a85cccb04aad3", + "_tpl": "6575dd800546f8b1de093df6", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Groin" + }, + { + "_id": "6808bab3364a85cccb04aad4", + "_tpl": "6575dd94945bf78edd04c43c", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Groin_back" + }, + { + "_id": "6808bab3364a85cccb04aad5", + "_tpl": "65573fa5655447403702a816", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aad6", + "_tpl": "65573fa5655447403702a816", + "parentId": "6808bab3364a85cccb04aacd", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aad9", "_tpl": "60a621c49c197e4e8c4455e6", "parentId": "hideout", "slotId": "hideout", @@ -2773,7 +2539,133 @@ } }, { - "_id": "67877f6decc0f80789060083", + "_id": "6808bab3364a85cccb04aae3", + "_tpl": "628dc750b910320f4c27a732", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aae4", + "_tpl": "6572f1ca4c8d903cc60c874e", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab3364a85cccb04aae5", + "_tpl": "6572f1d60103b4a3270332db", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab3364a85cccb04aae6", + "_tpl": "6572f1e10103b4a3270332df", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab3364a85cccb04aae7", + "_tpl": "6572f1edea457732140ce875", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab3364a85cccb04aae8", + "_tpl": "6572f1f7ea457732140ce879", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Groin" + }, + { + "_id": "6808bab3364a85cccb04aae9", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Front_plate" + }, + { + "_id": "6808bab3364a85cccb04aaea", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6808bab3364a85cccb04aae3", + "slotId": "Back_plate" + }, + { + "_id": "6808bab3364a85cccb04aaed", + "_tpl": "5fd4c60f875c30179f5d04c2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 8, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aaf0", + "_tpl": "5f60e6403b85f6263c14558c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aaf3", + "_tpl": "6034d0230ca681766b6a0fb5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aaf6", + "_tpl": "5f60c85b58eff926626a60f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aaf9", + "_tpl": "639346cc1c8f182ad90c8972", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04aafc", + "_tpl": "5f60e7788adaa7100c3adb49", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab3364a85cccb04ab03", "_tpl": "5d5d646386f7742797261fd9", "parentId": "hideout", "slotId": "hideout", @@ -2785,31 +2677,139 @@ } }, { - "_id": "67877f6decc0f80789060084", + "_id": "6808bab3364a85cccb04ab04", "_tpl": "65764e1e2bc38ef78e076489", - "parentId": "67877f6decc0f80789060083", + "parentId": "6808bab3364a85cccb04ab03", "slotId": "Soft_armor_front" }, { - "_id": "67877f6decc0f80789060085", + "_id": "6808bab3364a85cccb04ab05", "_tpl": "65764fae2bc38ef78e07648d", - "parentId": "67877f6decc0f80789060083", + "parentId": "6808bab3364a85cccb04ab03", "slotId": "Soft_armor_back" }, { - "_id": "67877f6decc0f80789060086", + "_id": "6808bab3364a85cccb04ab06", "_tpl": "6576504b526e320fbe035783", - "parentId": "67877f6decc0f80789060083", + "parentId": "6808bab3364a85cccb04ab03", "slotId": "Groin" }, { - "_id": "67877f6decc0f80789060087", + "_id": "6808bab3364a85cccb04ab07", "_tpl": "6576500f526e320fbe03577f", - "parentId": "67877f6decc0f80789060083", + "parentId": "6808bab3364a85cccb04ab03", "slotId": "Groin_back" }, { - "_id": "67877f6decc0f8078906008a", + "_id": "6808bab4364a85cccb04ab0a", + "_tpl": "60a6220e953894617404b00a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab13", + "_tpl": "639343fce101f4caa40a4ef3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab14", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab4364a85cccb04ab15", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab4364a85cccb04ab16", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab4364a85cccb04ab17", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab4364a85cccb04ab18", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "Front_plate" + }, + { + "_id": "6808bab4364a85cccb04ab19", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6808bab4364a85cccb04ab13", + "slotId": "Back_plate" + }, + { + "_id": "6808bab4364a85cccb04ab22", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab23", + "_tpl": "657322988c1cc6dcd9098b2d", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab4364a85cccb04ab24", + "_tpl": "657322a4cea9255e21023651", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab4364a85cccb04ab25", + "_tpl": "657322acd9d89ff7ac0d961b", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab4364a85cccb04ab26", + "_tpl": "657322b7d9d89ff7ac0d961f", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab4364a85cccb04ab27", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "Front_plate" + }, + { + "_id": "6808bab4364a85cccb04ab28", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "6808bab4364a85cccb04ab22", + "slotId": "Back_plate" + }, + { + "_id": "6808bab4364a85cccb04ab2b", "_tpl": "56e33680d2720be2748b4576", "parentId": "hideout", "slotId": "hideout", @@ -2821,79 +2821,7 @@ } }, { - "_id": "67877f6decc0f8078906008d", - "_tpl": "65719f9ef392ad76c50a2ec8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f80789060090", - "_tpl": "64be7110bf597ba84a0a41ea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f80789060095", - "_tpl": "65709d2d21b9f815e208ff95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f80789060096", - "_tpl": "657f9eb7e9433140ad0baf86", - "parentId": "67877f6decc0f80789060095", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6decc0f80789060097", - "_tpl": "657f9ef6c6679fefb3051e1f", - "parentId": "67877f6decc0f80789060095", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6decc0f8078906009c", - "_tpl": "64be79c487d1510151095552", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f8078906009d", - "_tpl": "6570495b45d573133d0d6adb", - "parentId": "67877f6decc0f8078906009c", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6decc0f8078906009e", - "_tpl": "657049d23425b19bbc0502f0", - "parentId": "67877f6decc0f8078906009c", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6decc0f807890600a1", + "_id": "6808bab4364a85cccb04ab2e", "_tpl": "657089638db3adca1009f4ca", "parentId": "hideout", "slotId": "hideout", @@ -2905,103 +2833,7 @@ } }, { - "_id": "67877f6decc0f807890600a4", - "_tpl": "5aa2ba71e5b5b000137b758f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f807890600a9", - "_tpl": "5ea17ca01412a1425304d1c0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f807890600aa", - "_tpl": "657f9a55c6679fefb3051e19", - "parentId": "67877f6decc0f807890600a9", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6decc0f807890600ab", - "_tpl": "657f9a94ada5fadd1f07a589", - "parentId": "67877f6decc0f807890600a9", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6decc0f807890600ae", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6decc0f807890600b1", - "_tpl": "656ddcf0f02d7bcea90bf395", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600b4", - "_tpl": "6570aead4d84f81fd002a033", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600b7", - "_tpl": "5991b51486f77447b112d44f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600bb", - "_tpl": "656e0436d44a1bb4220303a0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600be", + "_id": "6808bab4364a85cccb04ab31", "_tpl": "6571bde39837cc51b800c212", "parentId": "hideout", "slotId": "hideout", @@ -3013,19 +2845,7 @@ } }, { - "_id": "67877f6eecc0f807890600c1", - "_tpl": "5e9db13186f7742f845ee9d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600c4", + "_id": "6808bab4364a85cccb04ab34", "_tpl": "656f198fb27298d6fd005466", "parentId": "hideout", "slotId": "hideout", @@ -3037,7 +2857,115 @@ } }, { - "_id": "67877f6eecc0f807890600ca", + "_id": "6808bab4364a85cccb04ab37", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab3a", + "_tpl": "64be7110bf597ba84a0a41ea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab3d", + "_tpl": "65719f9ef392ad76c50a2ec8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab40", + "_tpl": "656e0436d44a1bb4220303a0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab43", + "_tpl": "5991b51486f77447b112d44f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab49", + "_tpl": "64be79c487d1510151095552", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab4a", + "_tpl": "6570495b45d573133d0d6adb", + "parentId": "6808bab4364a85cccb04ab49", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab4364a85cccb04ab4b", + "_tpl": "657049d23425b19bbc0502f0", + "parentId": "6808bab4364a85cccb04ab49", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab4364a85cccb04ab50", + "_tpl": "5ea17ca01412a1425304d1c0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab51", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6808bab4364a85cccb04ab50", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab4364a85cccb04ab52", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6808bab4364a85cccb04ab50", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab4364a85cccb04ab58", "_tpl": "65719f0775149d62ce0a670b", "parentId": "hideout", "slotId": "hideout", @@ -3049,37 +2977,25 @@ } }, { - "_id": "67877f6eecc0f807890600cb", + "_id": "6808bab4364a85cccb04ab59", "_tpl": "657fa0fcd4caf976440afe3e", - "parentId": "67877f6eecc0f807890600ca", + "parentId": "6808bab4364a85cccb04ab58", "slotId": "Helmet_top" }, { - "_id": "67877f6eecc0f807890600cc", + "_id": "6808bab4364a85cccb04ab5a", "_tpl": "657fa168e9433140ad0baf8e", - "parentId": "67877f6eecc0f807890600ca", + "parentId": "6808bab4364a85cccb04ab58", "slotId": "Helmet_back" }, { - "_id": "67877f6eecc0f807890600cd", + "_id": "6808bab4364a85cccb04ab5b", "_tpl": "657fa186d4caf976440afe42", - "parentId": "67877f6eecc0f807890600ca", + "parentId": "6808bab4364a85cccb04ab58", "slotId": "Helmet_ears" }, { - "_id": "67877f6eecc0f807890600d0", - "_tpl": "64be7095047e826eae02b0c1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f807890600d3", + "_id": "6808bab4364a85cccb04ab5e", "_tpl": "65573fa5655447403702a816", "parentId": "hideout", "slotId": "hideout", @@ -3091,32 +3007,44 @@ } }, { - "_id": "67877f6eecc0f807890600d8", - "_tpl": "6759655674aa5e0825040d62", + "_id": "6808bab4364a85cccb04ab61", + "_tpl": "5aa2ba71e5b5b000137b758f", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f6eecc0f807890600d9", - "_tpl": "676307c004856a0b3c0dfffd", - "parentId": "67877f6eecc0f807890600d8", + "_id": "6808bab4364a85cccb04ab66", + "_tpl": "65709d2d21b9f815e208ff95", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab4364a85cccb04ab67", + "_tpl": "657f9eb7e9433140ad0baf86", + "parentId": "6808bab4364a85cccb04ab66", "slotId": "Helmet_top" }, { - "_id": "67877f6eecc0f807890600da", - "_tpl": "676307b4d9ec0af3d9001fa8", - "parentId": "67877f6eecc0f807890600d8", + "_id": "6808bab4364a85cccb04ab68", + "_tpl": "657f9ef6c6679fefb3051e1f", + "parentId": "6808bab4364a85cccb04ab66", "slotId": "Helmet_back" }, { - "_id": "67877f6eecc0f807890600dc", - "_tpl": "5ab8e79e86f7742d8b372e78", + "_id": "6808bab4364a85cccb04ab6b", + "_tpl": "6570aead4d84f81fd002a033", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3127,38 +3055,20 @@ } }, { - "_id": "67877f6eecc0f807890600dd", - "_tpl": "65732688d9d89ff7ac0d9c4c", - "parentId": "67877f6eecc0f807890600dc", - "slotId": "Soft_armor_front" + "_id": "6808bab4364a85cccb04ab6e", + "_tpl": "5e9db13186f7742f845ee9d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "67877f6eecc0f807890600de", - "_tpl": "657326978c1cc6dcd9098b56", - "parentId": "67877f6eecc0f807890600dc", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6eecc0f807890600df", - "_tpl": "657326a28c1cc6dcd9098b5a", - "parentId": "67877f6eecc0f807890600dc", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6eecc0f807890600e0", - "_tpl": "657326b08c1cc6dcd9098b5e", - "parentId": "67877f6eecc0f807890600dc", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6eecc0f807890600e1", - "_tpl": "657326bc5d3a3129fb05f36b", - "parentId": "67877f6eecc0f807890600dc", - "slotId": "Collar" - }, - { - "_id": "67877f6eecc0f807890600e6", - "_tpl": "67597d241d5a44f2f605df06", + "_id": "6808bab4364a85cccb04ab71", + "_tpl": "656ddcf0f02d7bcea90bf395", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3169,133 +3079,19 @@ } }, { - "_id": "67877f6eecc0f807890600e7", - "_tpl": "676307ded8b241b4f703a3e8", - "parentId": "67877f6eecc0f807890600e6", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6eecc0f807890600e8", - "_tpl": "676307d3d9ec0af3d9001fac", - "parentId": "67877f6eecc0f807890600e6", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6eecc0f807890600ed", - "_tpl": "67597ceea35600b4c10cea86", + "_id": "6808bab4364a85cccb04ab74", + "_tpl": "64be7095047e826eae02b0c1", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "67877f6eecc0f807890600ee", - "_tpl": "676307ded8b241b4f703a3e8", - "parentId": "67877f6eecc0f807890600ed", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6eecc0f807890600ef", - "_tpl": "676307d3d9ec0af3d9001fac", - "parentId": "67877f6eecc0f807890600ed", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6eecc0f80789060102", - "_tpl": "5b44cd8b86f774503d30cba2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060103", - "_tpl": "6575c2adefc786cd9101a5d9", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6eecc0f80789060104", - "_tpl": "6575c2be52b7f8c76a05ee25", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6eecc0f80789060105", - "_tpl": "6575c2cd52b7f8c76a05ee29", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6eecc0f80789060106", - "_tpl": "6575c2d852b7f8c76a05ee2d", - "parentId": "67877f6eecc0f80789060102", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6eecc0f80789060107", - "_tpl": "6575c2e4efc786cd9101a5dd", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Collar" - }, - { - "_id": "67877f6eecc0f80789060108", - "_tpl": "6575c2f7efc786cd9101a5e1", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Shoulder_l" - }, - { - "_id": "67877f6eecc0f80789060109", - "_tpl": "6575c30352b7f8c76a05ee31", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Shoulder_r" - }, - { - "_id": "67877f6eecc0f8078906010a", - "_tpl": "6575c31b52b7f8c76a05ee35", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Groin" - }, - { - "_id": "67877f6eecc0f8078906010b", - "_tpl": "6575c326c6700bd6b40e8a80", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Groin_back" - }, - { - "_id": "67877f6eecc0f8078906010c", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Front_plate" - }, - { - "_id": "67877f6eecc0f8078906010d", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Back_plate" - }, - { - "_id": "67877f6eecc0f8078906010e", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Left_side_plate" - }, - { - "_id": "67877f6eecc0f8078906010f", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "67877f6eecc0f80789060102", - "slotId": "Right_side_plate" - }, - { - "_id": "67877f6eecc0f80789060114", + "_id": "6808bab4364a85cccb04ab79", "_tpl": "66b6295a8ca68c6461709efa", "parentId": "hideout", "slotId": "hideout", @@ -3307,31 +3103,19 @@ } }, { - "_id": "67877f6eecc0f80789060115", + "_id": "6808bab4364a85cccb04ab7a", "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "67877f6eecc0f80789060114", + "parentId": "6808bab4364a85cccb04ab79", "slotId": "Front_plate" }, { - "_id": "67877f6eecc0f80789060116", + "_id": "6808bab4364a85cccb04ab7b", "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "67877f6eecc0f80789060114", + "parentId": "6808bab4364a85cccb04ab79", "slotId": "Back_plate" }, { - "_id": "67877f6eecc0f80789060119", - "_tpl": "66b5f68de98be930d701c00e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f8078906011c", + "_id": "6808bab5364a85cccb04ab7e", "_tpl": "675ac888803644528007b3f6", "parentId": "hideout", "slotId": "hideout", @@ -3343,181 +3127,7 @@ } }, { - "_id": "67877f6eecc0f80789060121", - "_tpl": "675956062f6ddfe8ff0e2806", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060122", - "_tpl": "676307c004856a0b3c0dfffd", - "parentId": "67877f6eecc0f80789060121", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6eecc0f80789060123", - "_tpl": "676307b4d9ec0af3d9001fa8", - "parentId": "67877f6eecc0f80789060121", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6eecc0f80789060126", - "_tpl": "674589d98dd67746010329e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060129", - "_tpl": "66b5f22b78bbc0200425f904", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060131", - "_tpl": "5b4329f05acfc47a86086aa1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060132", - "_tpl": "65711b07a330b8c9060f7b01", - "parentId": "67877f6eecc0f80789060131", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6eecc0f80789060133", - "_tpl": "65711b489eb8c145180dbb9d", - "parentId": "67877f6eecc0f80789060131", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6eecc0f80789060134", - "_tpl": "65711b9b65daf6aa960c9b1b", - "parentId": "67877f6eecc0f80789060131", - "slotId": "helmet_eyes" - }, - { - "_id": "67877f6eecc0f80789060135", - "_tpl": "65711bc79eb8c145180dbba1", - "parentId": "67877f6eecc0f80789060131", - "slotId": "helmet_jaw" - }, - { - "_id": "67877f6eecc0f80789060136", - "_tpl": "65711b706d197c216005b31c", - "parentId": "67877f6eecc0f80789060131", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f6eecc0f80789060140", - "_tpl": "66b6296d7994640992013b17", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6eecc0f80789060141", - "_tpl": "66b884f4c5d72b02774886eb", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Soft_armor_front" - }, - { - "_id": "67877f6eecc0f80789060142", - "_tpl": "66b884eaacff495a29492849", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Soft_armor_back" - }, - { - "_id": "67877f6eecc0f80789060143", - "_tpl": "66b8851678bbc0200425fa03", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Soft_armor_left" - }, - { - "_id": "67877f6eecc0f80789060144", - "_tpl": "66b88521a7f72d197e70be3b", - "parentId": "67877f6eecc0f80789060140", - "slotId": "soft_armor_right" - }, - { - "_id": "67877f6eecc0f80789060145", - "_tpl": "66b884fd7994640992013b37", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Groin" - }, - { - "_id": "67877f6eecc0f80789060146", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Front_plate" - }, - { - "_id": "67877f6eecc0f80789060147", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "67877f6eecc0f80789060140", - "slotId": "Back_plate" - }, - { - "_id": "67877f6fecc0f8078906014d", - "_tpl": "6745895717824b1ec20570a6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "67877f6fecc0f8078906014e", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "67877f6fecc0f8078906014d", - "slotId": "Helmet_top" - }, - { - "_id": "67877f6fecc0f8078906014f", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "67877f6fecc0f8078906014d", - "slotId": "Helmet_back" - }, - { - "_id": "67877f6fecc0f80789060150", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "67877f6fecc0f8078906014d", - "slotId": "Helmet_ears" - }, - { - "_id": "67877f6fecc0f80789060156", + "_id": "6808bab5364a85cccb04ab81", "_tpl": "67458794e21e5d724e066976", "parentId": "hideout", "slotId": "hideout", @@ -3529,7 +3139,295 @@ } }, { - "_id": "67877f6fecc0f8078906015f", + "_id": "6808bab5364a85cccb04ab84", + "_tpl": "66b5f22b78bbc0200425f904", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04ab89", + "_tpl": "675956062f6ddfe8ff0e2806", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04ab8a", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "6808bab5364a85cccb04ab89", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04ab8b", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "6808bab5364a85cccb04ab89", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04ab8d", + "_tpl": "5ab8e79e86f7742d8b372e78", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04ab8e", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "6808bab5364a85cccb04ab8d", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab5364a85cccb04ab8f", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "6808bab5364a85cccb04ab8d", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab5364a85cccb04ab90", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "6808bab5364a85cccb04ab8d", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab5364a85cccb04ab91", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "6808bab5364a85cccb04ab8d", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab5364a85cccb04ab92", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "6808bab5364a85cccb04ab8d", + "slotId": "Collar" + }, + { + "_id": "6808bab5364a85cccb04ab97", + "_tpl": "67597ceea35600b4c10cea86", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04ab98", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "6808bab5364a85cccb04ab97", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04ab99", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "6808bab5364a85cccb04ab97", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04ab9c", + "_tpl": "66b5f68de98be930d701c00e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04aba2", + "_tpl": "6745895717824b1ec20570a6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04aba3", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6808bab5364a85cccb04aba2", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04aba4", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6808bab5364a85cccb04aba2", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04aba5", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6808bab5364a85cccb04aba2", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bab5364a85cccb04abad", + "_tpl": "5b4329f05acfc47a86086aa1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abae", + "_tpl": "65711b07a330b8c9060f7b01", + "parentId": "6808bab5364a85cccb04abad", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04abaf", + "_tpl": "65711b489eb8c145180dbb9d", + "parentId": "6808bab5364a85cccb04abad", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04abb0", + "_tpl": "65711b9b65daf6aa960c9b1b", + "parentId": "6808bab5364a85cccb04abad", + "slotId": "helmet_eyes" + }, + { + "_id": "6808bab5364a85cccb04abb1", + "_tpl": "65711bc79eb8c145180dbba1", + "parentId": "6808bab5364a85cccb04abad", + "slotId": "helmet_jaw" + }, + { + "_id": "6808bab5364a85cccb04abb2", + "_tpl": "65711b706d197c216005b31c", + "parentId": "6808bab5364a85cccb04abad", + "slotId": "Helmet_ears" + }, + { + "_id": "6808bab5364a85cccb04abc2", + "_tpl": "5b44cd8b86f774503d30cba2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abc3", + "_tpl": "6575c2adefc786cd9101a5d9", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab5364a85cccb04abc4", + "_tpl": "6575c2be52b7f8c76a05ee25", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab5364a85cccb04abc5", + "_tpl": "6575c2cd52b7f8c76a05ee29", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab5364a85cccb04abc6", + "_tpl": "6575c2d852b7f8c76a05ee2d", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab5364a85cccb04abc7", + "_tpl": "6575c2e4efc786cd9101a5dd", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Collar" + }, + { + "_id": "6808bab5364a85cccb04abc8", + "_tpl": "6575c2f7efc786cd9101a5e1", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Shoulder_l" + }, + { + "_id": "6808bab5364a85cccb04abc9", + "_tpl": "6575c30352b7f8c76a05ee31", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Shoulder_r" + }, + { + "_id": "6808bab5364a85cccb04abca", + "_tpl": "6575c31b52b7f8c76a05ee35", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Groin" + }, + { + "_id": "6808bab5364a85cccb04abcb", + "_tpl": "6575c326c6700bd6b40e8a80", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Groin_back" + }, + { + "_id": "6808bab5364a85cccb04abcc", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Front_plate" + }, + { + "_id": "6808bab5364a85cccb04abcd", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Back_plate" + }, + { + "_id": "6808bab5364a85cccb04abce", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Left_side_plate" + }, + { + "_id": "6808bab5364a85cccb04abcf", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6808bab5364a85cccb04abc2", + "slotId": "Right_side_plate" + }, + { + "_id": "6808bab5364a85cccb04abd2", + "_tpl": "674589d98dd67746010329e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abd8", "_tpl": "5df8a58286f77412631087ed", "parentId": "hideout", "slotId": "hideout", @@ -3541,122 +3439,224 @@ } }, { - "_id": "67877f6fecc0f80789060160", + "_id": "6808bab5364a85cccb04abd9", "_tpl": "657ba096e57570b7f80a17fb", - "parentId": "67877f6fecc0f8078906015f", + "parentId": "6808bab5364a85cccb04abd8", "slotId": "Helmet_top" }, { - "_id": "67877f6fecc0f80789060161", + "_id": "6808bab5364a85cccb04abda", "_tpl": "657ba145e57570b7f80a17ff", - "parentId": "67877f6fecc0f8078906015f", + "parentId": "6808bab5364a85cccb04abd8", "slotId": "Helmet_back" }, { - "_id": "67877f6fecc0f80789060162", + "_id": "6808bab5364a85cccb04abdb", "_tpl": "657ba18923918923cb0df568", - "parentId": "67877f6fecc0f8078906015f", + "parentId": "6808bab5364a85cccb04abd8", "slotId": "Helmet_ears" }, { - "_id": "67e5337781a202dc180bc022", + "_id": "6808bab5364a85cccb04abe5", + "_tpl": "66b6296d7994640992013b17", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abe6", + "_tpl": "66b884f4c5d72b02774886eb", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Soft_armor_front" + }, + { + "_id": "6808bab5364a85cccb04abe7", + "_tpl": "66b884eaacff495a29492849", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Soft_armor_back" + }, + { + "_id": "6808bab5364a85cccb04abe8", + "_tpl": "66b8851678bbc0200425fa03", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Soft_armor_left" + }, + { + "_id": "6808bab5364a85cccb04abe9", + "_tpl": "66b88521a7f72d197e70be3b", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "soft_armor_right" + }, + { + "_id": "6808bab5364a85cccb04abea", + "_tpl": "66b884fd7994640992013b37", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Groin" + }, + { + "_id": "6808bab5364a85cccb04abeb", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Front_plate" + }, + { + "_id": "6808bab5364a85cccb04abec", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6808bab5364a85cccb04abe5", + "slotId": "Back_plate" + }, + { + "_id": "6808bab5364a85cccb04abf1", + "_tpl": "6759655674aa5e0825040d62", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abf2", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "6808bab5364a85cccb04abf1", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04abf3", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "6808bab5364a85cccb04abf1", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04abf8", + "_tpl": "67597d241d5a44f2f605df06", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bab5364a85cccb04abf9", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "6808bab5364a85cccb04abf8", + "slotId": "Helmet_top" + }, + { + "_id": "6808bab5364a85cccb04abfa", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "6808bab5364a85cccb04abf8", + "slotId": "Helmet_back" + }, + { + "_id": "6808bab5364a85cccb04abfd", "_tpl": "679b9819a2f2dd4da9023512", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "67eb506040b1947a72103c2e", + "_id": "680496b2f9c573e9ef0ea5a1", "_tpl": "5b44cf1486f77431723e3d05", "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 940000, + "StackObjectsCount": 20200, "BuyRestrictionMax": 1 } }, { "_id": "6576eb0d424f2c87d30c760e", "_tpl": "6575c3b3dc9932aed601c5f4", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Soft_armor_front" }, { "_id": "6576eb0d424f2c87d30c760f", "_tpl": "6575c3beefc786cd9101a5ed", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Soft_armor_back" }, { "_id": "6576eb0d424f2c87d30c7610", "_tpl": "6575c3cdc6700bd6b40e8a90", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Soft_armor_left" }, { "_id": "6576eb0d424f2c87d30c7611", "_tpl": "6575c3dfdc9932aed601c5f8", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "soft_armor_right" }, { "_id": "6576eb0d424f2c87d30c7612", "_tpl": "6575c3ec52b7f8c76a05ee39", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Collar" }, { "_id": "6576eb0d424f2c87d30c7613", "_tpl": "6575c3fd52b7f8c76a05ee3d", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Shoulder_l" }, { "_id": "6576eb0d424f2c87d30c7614", "_tpl": "6575c40c52b7f8c76a05ee41", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Shoulder_r" }, { "_id": "6576eb0d424f2c87d30c7615", "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Front_plate" }, { "_id": "6576eb0d424f2c87d30c7616", "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Back_plate" }, { "_id": "6576eb0d424f2c87d30c7617", "_tpl": "6557458f83942d705f0c4962", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Left_side_plate" }, { "_id": "6576eb0d424f2c87d30c7618", "_tpl": "6557458f83942d705f0c4962", - "parentId": "67eb506040b1947a72103c2e", + "parentId": "680496b2f9c573e9ef0ea5a1", "slotId": "Right_side_plate" } ], "barter_scheme": { - "67877f67ecc0f8078905fd3f": [ + "6808baae364a85cccb04a7e3": [ [ { - "count": 10673, + "count": 34545, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f67ecc0f8078905fd45": [ + "6808baae364a85cccb04a7ec": [ [ { "count": 8879, @@ -3664,7 +3664,31 @@ } ] ], - "67877f67ecc0f8078905fd4b": [ + "6808baae364a85cccb04a7f2": [ + [ + { + "count": 57861, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a7fa": [ + [ + { + "count": 105574, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a802": [ + [ + { + "count": 1, + "_tpl": "5c1267ee86f77416ec610f72" + } + ] + ], + "6808baae364a85cccb04a805": [ [ { "count": 47598, @@ -3672,15 +3696,63 @@ } ] ], - "67877f67ecc0f8078905fd51": [ + "6808baae364a85cccb04a80b": [ [ { - "count": 54312, + "count": 49505, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f67ecc0f8078905fd5a": [ + "6808baae364a85cccb04a811": [ + [ + { + "count": 20336, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a817": [ + [ + { + "count": 2, + "_tpl": "59e3556c86f7741776641ac2" + } + ] + ], + "6808baae364a85cccb04a81d": [ + [ + { + "count": 23780, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a820": [ + [ + { + "count": 45177, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a823": [ + [ + { + "count": 42236, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a826": [ + [ + { + "count": 1853, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a82c": [ [ { "count": 3, @@ -3696,7 +3768,23 @@ } ] ], - "67877f68ecc0f8078905fd64": [ + "6808baae364a85cccb04a835": [ + [ + { + "count": 54312, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baae364a85cccb04a83b": [ + [ + { + "count": 10673, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a842": [ [ { "count": 29152, @@ -3704,297 +3792,7 @@ } ] ], - "67877f68ecc0f8078905fd6b": [ - [ - { - "count": 45177, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd6e": [ - [ - { - "count": 1853, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd71": [ - [ - { - "count": 42236, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd77": [ - [ - { - "count": 49505, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd80": [ - [ - { - "count": 34545, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd8b": [ - [ - { - "count": 105574, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd93": [ - [ - { - "count": 23780, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd96": [ - [ - { - "count": 1, - "_tpl": "5c1267ee86f77416ec610f72" - } - ] - ], - "67877f68ecc0f8078905fd99": [ - [ - { - "count": 20336, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fd9f": [ - [ - { - "count": 2, - "_tpl": "59e3556c86f7741776641ac2" - } - ] - ], - "67877f68ecc0f8078905fda5": [ - [ - { - "count": 57861, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fda8": [ - [ - { - "count": 2252, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fdab": [ - [ - { - "count": 7535, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fdae": [ - [ - { - "count": 1, - "_tpl": "5c05300686f7746dce784e5d" - } - ] - ], - "67877f68ecc0f8078905fdb1": [ - [ - { - "count": 5, - "_tpl": "59e366c186f7741778269d85" - }, - { - "count": 1, - "_tpl": "62a09f32621468534a797acb" - } - ] - ], - "67877f68ecc0f8078905fdb4": [ - [ - { - "count": 1916, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fdb7": [ - [ - { - "count": 5385, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f68ecc0f8078905fdba": [ - [ - { - "count": 2215, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdbd": [ - [ - { - "count": 1923, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdc0": [ - [ - { - "count": 5, - "_tpl": "57347c1124597737fb1379e3" - }, - { - "count": 1, - "_tpl": "59faf98186f774067b6be103" - } - ] - ], - "67877f69ecc0f8078905fdc3": [ - [ - { - "count": 14932, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdc9": [ - [ - { - "count": 29084, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdcf": [ - [ - { - "count": 67446, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdd2": [ - [ - { - "count": 6, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 20, - "side": "Any" - } - ] - ], - "67877f69ecc0f8078905fdd7": [ - [ - { - "count": 35681, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fddc": [ - [ - { - "count": 3, - "_tpl": "5c13cef886f774072e618e82" - } - ] - ], - "67877f69ecc0f8078905fde3": [ - [ - { - "count": 3, - "_tpl": "572b7fa524597762b747ce82" - } - ] - ], - "67877f69ecc0f8078905fded": [ - [ - { - "count": 2, - "_tpl": "59e770b986f7742cbd762754" - } - ] - ], - "67877f69ecc0f8078905fdf3": [ - [ - { - "count": 3, - "_tpl": "5aa7e373e5b5b000137b76f0" - } - ] - ], - "67877f69ecc0f8078905fdf6": [ - [ - { - "count": 2874, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fdf9": [ - [ - { - "count": 23882, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe00": [ - [ - { - "count": 2, - "_tpl": "5751435d24597720a27126d1" - } - ] - ], - "67877f69ecc0f8078905fe07": [ - [ - { - "count": 8325, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe0a": [ - [ - { - "count": 810, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe0d": [ - [ - { - "count": 4, - "_tpl": "59e366c186f7741778269d85" - } - ] - ], - "67877f69ecc0f8078905fe2d": [ + "6808baaf364a85cccb04a849": [ [ { "count": 1823, @@ -4002,31 +3800,7 @@ } ] ], - "67877f69ecc0f8078905fe30": [ - [ - { - "count": 41024, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe33": [ - [ - { - "count": 993, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe36": [ - [ - { - "count": 2268, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f69ecc0f8078905fe39": [ + "6808baaf364a85cccb04a84c": [ [ { "count": 637, @@ -4034,83 +3808,47 @@ } ] ], - "67877f69ecc0f8078905fe3c": [ + "6808baaf364a85cccb04a84f": [ [ { - "count": 31766, + "count": 8325, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6aecc0f8078905fe3f": [ + "6808baaf364a85cccb04a856": [ [ { - "count": 2, - "_tpl": "59e366c186f7741778269d85" + "count": 3, + "_tpl": "572b7fa524597762b747ce82" } ] ], - "67877f6aecc0f8078905fe48": [ + "6808baaf364a85cccb04a85d": [ [ { - "count": 2, - "_tpl": "5e8f3423fd7471236e6e3b64" - }, - { - "count": 1, - "_tpl": "5c0fa877d174af02a012e1cf" + "count": 3, + "_tpl": "5c13cef886f774072e618e82" } ] ], - "67877f6aecc0f8078905fe59": [ + "6808baaf364a85cccb04a860": [ [ { - "count": 41620, + "count": 14932, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6aecc0f8078905fe64": [ + "6808baaf364a85cccb04a865": [ [ { - "count": 6660, + "count": 57898, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6aecc0f8078905fe67": [ - [ - { - "count": 1, - "_tpl": "5e2af29386f7746d4159f077" - } - ] - ], - "67877f6aecc0f8078905fe6a": [ - [ - { - "count": 2028, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe6d": [ - [ - { - "count": 5007, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe70": [ - [ - { - "count": 4485, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe73": [ + "6808baaf364a85cccb04a86a": [ [ { "count": 1, @@ -4118,111 +3856,15 @@ } ] ], - "67877f6aecc0f8078905fe76": [ + "6808baaf364a85cccb04a86d": [ [ { - "count": 49395, + "count": 31766, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6aecc0f8078905fe7b": [ - [ - { - "count": 58875, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe88": [ - [ - { - "count": 64269, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe97": [ - [ - { - "count": 90132, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fe9e": [ - [ - { - "count": 4793, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fea4": [ - [ - { - "count": 97043, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905feaa": [ - [ - { - "count": 3552, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905feb8": [ - [ - { - "count": 205349, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fec6": [ - [ - { - "count": 585, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fec9": [ - [ - { - "count": 76009, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fecc": [ - [ - { - "count": 593, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fecf": [ - [ - { - "count": 27828, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fed9": [ - [ - { - "count": 50949, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6aecc0f8078905fee6": [ + "6808baaf364a85cccb04a873": [ [ { "count": 1, @@ -4230,7 +3872,23 @@ } ] ], - "67877f6aecc0f8078905feec": [ + "6808baaf364a85cccb04a879": [ + [ + { + "count": 993, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a87c": [ + [ + { + "count": 2215, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a87f": [ [ { "count": 1, @@ -4246,7 +3904,23 @@ } ] ], - "67877f6aecc0f8078905feef": [ + "6808baaf364a85cccb04a882": [ + [ + { + "count": 2874, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a890": [ + [ + { + "count": 205349, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a89e": [ [ { "count": 4727, @@ -4254,15 +3928,59 @@ } ] ], - "67877f6becc0f8078905fef2": [ + "6808baaf364a85cccb04a8a3": [ [ { - "count": 49980, + "count": 58875, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6becc0f8078905fef5": [ + "6808baaf364a85cccb04a8a8": [ + [ + { + "count": 3, + "_tpl": "5aa7e373e5b5b000137b76f0" + } + ] + ], + "6808baaf364a85cccb04a8ab": [ + [ + { + "count": 5385, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a8b1": [ + [ + { + "count": 29084, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baaf364a85cccb04a8b7": [ + [ + { + "count": 5, + "_tpl": "59e366c186f7741778269d85" + }, + { + "count": 1, + "_tpl": "62a09f32621468534a797acb" + } + ] + ], + "6808baaf364a85cccb04a8ba": [ + [ + { + "count": 76009, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8bd": [ [ { "count": 2, @@ -4270,7 +3988,47 @@ } ] ], - "67877f6becc0f8078905fef8": [ + "6808bab0364a85cccb04a8c0": [ + [ + { + "count": 4485, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8c3": [ + [ + { + "count": 4, + "_tpl": "59e366c186f7741778269d85" + } + ] + ], + "6808bab0364a85cccb04a8c6": [ + [ + { + "count": 6660, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8c9": [ + [ + { + "count": 24509, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8cc": [ + [ + { + "count": 1916, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8cf": [ [ { "count": 7584, @@ -4278,7 +4036,257 @@ } ] ], - "67877f6becc0f8078905ff08": [ + "6808bab0364a85cccb04a8d2": [ + [ + { + "count": 49395, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8d5": [ + [ + { + "count": 1, + "_tpl": "5e2af29386f7746d4159f077" + } + ] + ], + "6808bab0364a85cccb04a8da": [ + [ + { + "count": 35681, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8df": [ + [ + { + "count": 1923, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8e2": [ + [ + { + "count": 585, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8e5": [ + [ + { + "count": 3552, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8f0": [ + [ + { + "count": 64269, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8fb": [ + [ + { + "count": 2028, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a8fe": [ + [ + { + "count": 810, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a904": [ + [ + { + "count": 97043, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a910": [ + [ + { + "count": 2, + "_tpl": "5e8f3423fd7471236e6e3b64" + }, + { + "count": 1, + "_tpl": "5c0fa877d174af02a012e1cf" + } + ] + ], + "6808bab0364a85cccb04a919": [ + [ + { + "count": 27828, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a920": [ + [ + { + "count": 2, + "_tpl": "5751435d24597720a27126d1" + } + ] + ], + "6808bab0364a85cccb04a927": [ + [ + { + "count": 5007, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a92a": [ + [ + { + "count": 49980, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a92d": [ + [ + { + "count": 7535, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a930": [ + [ + { + "count": 3565, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab0364a85cccb04a933": [ + [ + { + "count": 2268, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a936": [ + [ + { + "count": 5, + "_tpl": "57347c1124597737fb1379e3" + }, + { + "count": 1, + "_tpl": "59faf98186f774067b6be103" + } + ] + ], + "6808bab1364a85cccb04a939": [ + [ + { + "count": 41024, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a93f": [ + [ + { + "count": 2, + "_tpl": "59e770b986f7742cbd762754" + } + ] + ], + "6808bab1364a85cccb04a945": [ + [ + { + "count": 23882, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a948": [ + [ + { + "count": 4793, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a94b": [ + [ + { + "count": 67446, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a94e": [ + [ + { + "count": 1, + "_tpl": "5c05300686f7746dce784e5d" + } + ] + ], + "6808bab1364a85cccb04a951": [ + [ + { + "count": 2252, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a958": [ + [ + { + "count": 90132, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a95f": [ + [ + { + "count": 6, + "_tpl": "59f32c3b86f77472a31742f0", + "level": 20, + "side": "Any" + } + ] + ], + "6808bab1364a85cccb04a962": [ + [ + { + "count": 593, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a965": [ + [ + { + "count": 2409, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a975": [ [ { "count": 3, @@ -4286,7 +4294,31 @@ } ] ], - "67877f6becc0f8078905ff1e": [ + "6808bab1364a85cccb04a9aa": [ + [ + { + "count": 41620, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a9b5": [ + [ + { + "count": 2, + "_tpl": "59e366c186f7741778269d85" + } + ] + ], + "6808bab1364a85cccb04a9bf": [ + [ + { + "count": 50949, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab1364a85cccb04a9cf": [ [ { "count": 10, @@ -4296,135 +4328,7 @@ } ] ], - "67877f6becc0f8078905ff27": [ - [ - { - "count": 2409, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff2c": [ - [ - { - "count": 57898, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff31": [ - [ - { - "count": 3565, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff34": [ - [ - { - "count": 24509, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff37": [ - [ - { - "count": 26443, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff3a": [ - [ - { - "count": 36852, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff3d": [ - [ - { - "count": 3885, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff40": [ - [ - { - "count": 5217, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff4c": [ - [ - { - "count": 35076, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff53": [ - [ - { - "count": 2, - "_tpl": "5d5d646386f7742797261fd9" - } - ] - ], - "67877f6becc0f8078905ff5a": [ - [ - { - "count": 3, - "_tpl": "5734773724597737fd047c14" - } - ] - ], - "67877f6becc0f8078905ff60": [ - [ - { - "count": 86801, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff66": [ - [ - { - "count": 90390, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff69": [ - [ - { - "count": 7437, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff6c": [ - [ - { - "count": 1665, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff6f": [ - [ - { - "count": 16859, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6becc0f8078905ff72": [ + "6808bab1364a85cccb04a9d8": [ [ { "count": 6216, @@ -4432,15 +4336,55 @@ } ] ], - "67877f6becc0f8078905ff75": [ + "6808bab1364a85cccb04a9db": [ [ { - "count": 1, - "_tpl": "5e2af41e86f774755a234b67" + "count": 32646, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ff7d": [ + "6808bab1364a85cccb04a9de": [ + [ + { + "count": 1665, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04a9e1": [ + [ + { + "count": 3, + "_tpl": "59e366c186f7741778269d85" + } + ] + ], + "6808bab2364a85cccb04a9e4": [ + [ + { + "count": 1, + "_tpl": "573478bc24597738002c6175" + } + ] + ], + "6808bab2364a85cccb04a9e7": [ + [ + { + "count": 5217, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04a9ea": [ + [ + { + "count": 3, + "_tpl": "5734773724597737fd047c14" + } + ] + ], + "6808bab2364a85cccb04a9f2": [ [ { "count": 2, @@ -4452,15 +4396,71 @@ } ] ], - "67877f6cecc0f8078905ff89": [ + "6808bab2364a85cccb04a9fa": [ [ { - "count": 64536, + "count": 26443, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ff90": [ + "6808bab2364a85cccb04aa00": [ + [ + { + "count": 86801, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa0a": [ + [ + { + "count": 2, + "_tpl": "5d5d646386f7742797261fd9" + } + ] + ], + "6808bab2364a85cccb04aa11": [ + [ + { + "count": 36852, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa14": [ + [ + { + "count": 1, + "_tpl": "5e2af41e86f774755a234b67" + } + ] + ], + "6808bab2364a85cccb04aa17": [ + [ + { + "count": 7437, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa1a": [ + [ + { + "count": 35076, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa26": [ + [ + { + "count": 90390, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa29": [ [ { "count": 30094, @@ -4468,23 +4468,7 @@ } ] ], - "67877f6cecc0f8078905ff93": [ - [ - { - "count": 32646, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6cecc0f8078905ff96": [ - [ - { - "count": 37019, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6cecc0f8078905ff99": [ + "6808bab2364a85cccb04aa2c": [ [ { "count": 1, @@ -4492,47 +4476,39 @@ } ] ], - "67877f6cecc0f8078905ff9c": [ + "6808bab2364a85cccb04aa2f": [ [ { - "count": 1, - "_tpl": "573478bc24597738002c6175" - } - ] - ], - "67877f6cecc0f8078905ff9f": [ - [ - { - "count": 3, - "_tpl": "59e366c186f7741778269d85" - } - ] - ], - "67877f6cecc0f8078905ffa2": [ - [ - { - "count": 11369, + "count": 3885, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ffa5": [ + "6808bab2364a85cccb04aa32": [ [ { - "count": 32646, + "count": 37019, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ffa8": [ + "6808bab2364a85cccb04aa39": [ [ { - "count": 60939, + "count": 64536, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ffab": [ + "6808bab2364a85cccb04aa40": [ + [ + { + "count": 16859, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab2364a85cccb04aa43": [ [ { "count": 3519, @@ -4540,35 +4516,15 @@ } ] ], - "67877f6cecc0f8078905ffb4": [ + "6808bab2364a85cccb04aa46": [ [ { - "count": 2, - "_tpl": "590c651286f7741e566b6461" - } - ] - ], - "67877f6cecc0f8078905ffbd": [ - [ - { - "count": 2, - "_tpl": "5734773724597737fd047c14" - }, - { - "count": 1, - "_tpl": "575146b724597720a27126d5" - } - ] - ], - "67877f6cecc0f8078905ffc0": [ - [ - { - "count": 26418, + "count": 33465, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6cecc0f8078905ffc3": [ + "6808bab2364a85cccb04aa49": [ [ { "count": 13517, @@ -4576,7 +4532,15 @@ } ] ], - "67877f6cecc0f8078905ffcc": [ + "6808bab3364a85cccb04aa4c": [ + [ + { + "count": 32646, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aa55": [ [ { "count": 1, @@ -4584,7 +4548,23 @@ } ] ], - "67877f6cecc0f8078905ffd9": [ + "6808bab3364a85cccb04aa5e": [ + [ + { + "count": 60939, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aa67": [ + [ + { + "count": 2, + "_tpl": "590c651286f7741e566b6461" + } + ] + ], + "6808bab3364a85cccb04aa74": [ [ { "count": 3, @@ -4592,35 +4572,15 @@ } ] ], - "67877f6cecc0f8078905ffe9": [ + "6808bab3364a85cccb04aa83": [ [ { - "count": 92019, - "_tpl": "5449016a4bdc2d6f028b456f" + "count": 1, + "_tpl": "63a0b208f444d32d6f03ea1e" } ] ], - "67877f6cecc0f8078905fff5": [ - [ - { - "count": 30094, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6cecc0f80789060001": [ - [ - { - "count": 2, - "_tpl": "5bc9c049d4351e44f824d360" - }, - { - "count": 4, - "_tpl": "590c639286f774151567fa95" - } - ] - ], - "67877f6cecc0f8078906000d": [ + "6808bab3364a85cccb04aa8e": [ [ { "count": 10, @@ -4630,23 +4590,7 @@ } ] ], - "67877f6cecc0f80789060010": [ - [ - { - "count": 33465, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060013": [ - [ - { - "count": 8192, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060018": [ + "6808bab3364a85cccb04aa93": [ [ { "count": 3, @@ -4654,7 +4598,15 @@ } ] ], - "67877f6decc0f80789060024": [ + "6808bab3364a85cccb04aaa1": [ + [ + { + "count": 92019, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aab4": [ [ { "count": 1, @@ -4670,15 +4622,75 @@ } ] ], - "67877f6decc0f80789060036": [ + "6808bab3364a85cccb04aabe": [ [ { - "count": 1, - "_tpl": "63a0b208f444d32d6f03ea1e" + "count": 30094, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6decc0f80789060041": [ + "6808bab3364a85cccb04aac1": [ + [ + { + "count": 8192, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aacd": [ + [ + { + "count": 2, + "_tpl": "5bc9c049d4351e44f824d360" + }, + { + "count": 4, + "_tpl": "590c639286f774151567fa95" + } + ] + ], + "6808bab3364a85cccb04aad9": [ + [ + { + "count": 37463, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aae3": [ + [ + { + "count": 86038, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aaed": [ + [ + { + "count": 26654, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aaf0": [ + [ + { + "count": 18315, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aaf3": [ + [ + { + "count": 11369, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab3364a85cccb04aaf6": [ [ { "count": 4, @@ -4690,67 +4702,27 @@ } ] ], - "67877f6decc0f8078906004a": [ + "6808bab3364a85cccb04aaf9": [ [ { - "count": 145413, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060059": [ - [ - { - "count": 1, - "_tpl": "62a09e974f842e1bd12da3f0" + "count": 2, + "_tpl": "5734773724597737fd047c14" }, { "count": 1, - "_tpl": "60098b1705871270cd5352a1" + "_tpl": "575146b724597720a27126d5" } ] ], - "67877f6decc0f80789060062": [ + "6808bab3364a85cccb04aafc": [ [ { - "count": 26654, + "count": 26418, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6decc0f8078906006c": [ - [ - { - "count": 86038, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060076": [ - [ - { - "count": 18315, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060079": [ - [ - { - "count": 35964, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f8078906007c": [ - [ - { - "count": 37463, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060083": [ + "6808bab3364a85cccb04ab03": [ [ { "count": 3, @@ -4762,7 +4734,35 @@ } ] ], - "67877f6decc0f8078906008a": [ + "6808bab4364a85cccb04ab0a": [ + [ + { + "count": 35964, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab13": [ + [ + { + "count": 1, + "_tpl": "62a09e974f842e1bd12da3f0" + }, + { + "count": 1, + "_tpl": "60098b1705871270cd5352a1" + } + ] + ], + "6808bab4364a85cccb04ab22": [ + [ + { + "count": 145413, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab2b": [ [ { "count": 11489, @@ -4770,39 +4770,7 @@ } ] ], - "67877f6decc0f8078906008d": [ - [ - { - "count": 35565, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060090": [ - [ - { - "count": 12443, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f80789060095": [ - [ - { - "count": 90303, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f8078906009c": [ - [ - { - "count": 1, - "_tpl": "5e54f62086f774219b0f1937" - } - ] - ], - "67877f6decc0f807890600a1": [ + "6808bab4364a85cccb04ab2e": [ [ { "count": 83031, @@ -4810,63 +4778,7 @@ } ] ], - "67877f6decc0f807890600a4": [ - [ - { - "count": 1, - "_tpl": "5f745ee30acaeb0d490d8c5b" - } - ] - ], - "67877f6decc0f807890600a9": [ - [ - { - "count": 66095, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6decc0f807890600ae": [ - [ - { - "count": 1, - "_tpl": "62a0a098de7ac8199358053b" - } - ] - ], - "67877f6decc0f807890600b1": [ - [ - { - "count": 30360, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600b4": [ - [ - { - "count": 57865, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600b7": [ - [ - { - "count": 116.2, - "_tpl": "569668774bdc2da2298b4568" - } - ] - ], - "67877f6eecc0f807890600bb": [ - [ - { - "count": 99983, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600be": [ + "6808bab4364a85cccb04ab31": [ [ { "count": 7241, @@ -4874,7 +4786,111 @@ } ] ], - "67877f6eecc0f807890600c1": [ + "6808bab4364a85cccb04ab34": [ + [ + { + "count": 33772, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab37": [ + [ + { + "count": 1, + "_tpl": "62a0a098de7ac8199358053b" + } + ] + ], + "6808bab4364a85cccb04ab3a": [ + [ + { + "count": 12443, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab3d": [ + [ + { + "count": 35565, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab40": [ + [ + { + "count": 99983, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab43": [ + [ + { + "count": 116.2, + "_tpl": "569668774bdc2da2298b4568" + } + ] + ], + "6808bab4364a85cccb04ab49": [ + [ + { + "count": 1, + "_tpl": "5e54f62086f774219b0f1937" + } + ] + ], + "6808bab4364a85cccb04ab50": [ + [ + { + "count": 66095, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab58": [ + [ + { + "count": 58476, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab5e": [ + [ + { + "count": 1, + "_tpl": "59e3647686f774176a362507" + } + ] + ], + "6808bab4364a85cccb04ab61": [ + [ + { + "count": 1, + "_tpl": "5f745ee30acaeb0d490d8c5b" + } + ] + ], + "6808bab4364a85cccb04ab66": [ + [ + { + "count": 90303, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab6b": [ + [ + { + "count": 57865, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab4364a85cccb04ab6e": [ [ { "count": 1, @@ -4886,23 +4902,15 @@ } ] ], - "67877f6eecc0f807890600c4": [ + "6808bab4364a85cccb04ab71": [ [ { - "count": 33772, + "count": 30360, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "67877f6eecc0f807890600ca": [ - [ - { - "count": 58476, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600d0": [ + "6808bab4364a85cccb04ab74": [ [ { "count": 8954, @@ -4910,63 +4918,7 @@ } ] ], - "67877f6eecc0f807890600d3": [ - [ - { - "count": 1, - "_tpl": "59e3647686f774176a362507" - } - ] - ], - "67877f6eecc0f807890600d8": [ - [ - { - "count": 108253, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600dc": [ - [ - { - "count": 1, - "_tpl": "5734758f24597738025ee253" - }, - { - "count": 2, - "_tpl": "5af0484c86f7740f02001f7f" - } - ] - ], - "67877f6eecc0f807890600e6": [ - [ - { - "count": 113591, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f807890600ed": [ - [ - { - "count": 113591, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f80789060102": [ - [ - { - "count": 2, - "_tpl": "5c05300686f7746dce784e5d" - }, - { - "count": 2, - "_tpl": "590c37d286f77443be3d7827" - } - ] - ], - "67877f6eecc0f80789060114": [ + "6808bab4364a85cccb04ab79": [ [ { "count": 3, @@ -4978,15 +4930,7 @@ } ] ], - "67877f6eecc0f80789060119": [ - [ - { - "count": 47003, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f8078906011c": [ + "6808bab5364a85cccb04ab7e": [ [ { "count": 3081, @@ -4994,55 +4938,7 @@ } ] ], - "67877f6eecc0f80789060121": [ - [ - { - "count": 119079, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f80789060126": [ - [ - { - "count": 8647, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f80789060129": [ - [ - { - "count": 61264, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f80789060131": [ - [ - { - "count": 111767, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "67877f6eecc0f80789060140": [ - [ - { - "count": 2, - "_tpl": "66b37eb4acff495a29492407" - } - ] - ], - "67877f6fecc0f8078906014d": [ - [ - { - "count": 2, - "_tpl": "59e3556c86f7741776641ac2" - } - ] - ], - "67877f6fecc0f80789060156": [ + "6808bab5364a85cccb04ab81": [ [ { "count": 1, @@ -5050,7 +4946,87 @@ } ] ], - "67877f6fecc0f8078906015f": [ + "6808bab5364a85cccb04ab84": [ + [ + { + "count": 61264, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04ab89": [ + [ + { + "count": 119079, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04ab8d": [ + [ + { + "count": 1, + "_tpl": "5734758f24597738025ee253" + }, + { + "count": 2, + "_tpl": "5af0484c86f7740f02001f7f" + } + ] + ], + "6808bab5364a85cccb04ab97": [ + [ + { + "count": 113591, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04ab9c": [ + [ + { + "count": 47003, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04aba2": [ + [ + { + "count": 2, + "_tpl": "59e3556c86f7741776641ac2" + } + ] + ], + "6808bab5364a85cccb04abad": [ + [ + { + "count": 111767, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04abc2": [ + [ + { + "count": 2, + "_tpl": "5c05300686f7746dce784e5d" + }, + { + "count": 2, + "_tpl": "590c37d286f77443be3d7827" + } + ] + ], + "6808bab5364a85cccb04abd2": [ + [ + { + "count": 8647, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04abd8": [ [ { "count": 6660, @@ -5058,205 +5034,229 @@ } ] ], - "67e5337781a202dc180bc022": [ + "6808bab5364a85cccb04abe5": [ [ - { - "count": 4, - "_tpl": "5734758f24597738025ee253" - }, { "count": 2, - "_tpl": "5c12688486f77426843c7d32" - }, - { - "count": 1, - "_tpl": "61bf83814088ec1a363d7097" + "_tpl": "66b37eb4acff495a29492407" } ] ], - "67eb506040b1947a72103c2e": [ + "6808bab5364a85cccb04abf1": [ [ { - "count": 205349, + "count": 108253, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04abf8": [ + [ + { + "count": 113591, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bab5364a85cccb04abfd": [ + [ + { + "count": 8, + "_tpl": "5734758f24597738025ee253" + }, + { + "count": 4, + "_tpl": "5c12688486f77426843c7d32" + }, + { + "count": 4, + "_tpl": "61bf83814088ec1a363d7097" + }, + { + "count": 2, + "_tpl": "59e3556c86f7741776641ac2" + } + ] + ], + "680496b2f9c573e9ef0ea5a1": [ + [ + { + "count": 205400, "_tpl": "5449016a4bdc2d6f028b456f" } ] ] }, "loyal_level_items": { - "67877f67ecc0f8078905fd3f": 1, - "67877f67ecc0f8078905fd45": 1, - "67877f67ecc0f8078905fd4b": 3, - "67877f67ecc0f8078905fd51": 2, - "67877f67ecc0f8078905fd5a": 4, - "67877f68ecc0f8078905fd64": 1, - "67877f68ecc0f8078905fd6b": 3, - "67877f68ecc0f8078905fd6e": 1, - "67877f68ecc0f8078905fd71": 2, - "67877f68ecc0f8078905fd77": 3, - "67877f68ecc0f8078905fd80": 1, - "67877f68ecc0f8078905fd8b": 4, - "67877f68ecc0f8078905fd93": 2, - "67877f68ecc0f8078905fd96": 4, - "67877f68ecc0f8078905fd99": 2, - "67877f68ecc0f8078905fd9f": 2, - "67877f68ecc0f8078905fda5": 3, - "67877f68ecc0f8078905fda8": 1, - "67877f68ecc0f8078905fdab": 4, - "67877f68ecc0f8078905fdae": 4, - "67877f68ecc0f8078905fdb1": 4, - "67877f68ecc0f8078905fdb4": 1, - "67877f68ecc0f8078905fdb7": 1, - "67877f68ecc0f8078905fdba": 1, - "67877f69ecc0f8078905fdbd": 1, - "67877f69ecc0f8078905fdc0": 2, - "67877f69ecc0f8078905fdc3": 2, - "67877f69ecc0f8078905fdc9": 1, - "67877f69ecc0f8078905fdcf": 2, - "67877f69ecc0f8078905fdd2": 4, - "67877f69ecc0f8078905fdd7": 2, - "67877f69ecc0f8078905fddc": 1, - "67877f69ecc0f8078905fde3": 1, - "67877f69ecc0f8078905fded": 2, - "67877f69ecc0f8078905fdf3": 3, - "67877f69ecc0f8078905fdf6": 1, - "67877f69ecc0f8078905fdf9": 3, - "67877f69ecc0f8078905fe00": 1, - "67877f69ecc0f8078905fe07": 4, - "67877f69ecc0f8078905fe0a": 1, - "67877f69ecc0f8078905fe0d": 4, - "67877f69ecc0f8078905fe1d": 4, - "67877f69ecc0f8078905fe2d": 1, - "67877f69ecc0f8078905fe30": 3, - "67877f69ecc0f8078905fe33": 1, - "67877f69ecc0f8078905fe36": 2, - "67877f69ecc0f8078905fe39": 1, - "67877f69ecc0f8078905fe3c": 2, - "67877f6aecc0f8078905fe3f": 2, - "67877f6aecc0f8078905fe48": 3, - "67877f6aecc0f8078905fe59": 2, - "67877f6aecc0f8078905fe64": 1, - "67877f6aecc0f8078905fe67": 3, - "67877f6aecc0f8078905fe6a": 1, - "67877f6aecc0f8078905fe6d": 2, - "67877f6aecc0f8078905fe70": 2, - "67877f6aecc0f8078905fe73": 3, - "67877f6aecc0f8078905fe76": 4, - "67877f6aecc0f8078905fe7b": 3, - "67877f6aecc0f8078905fe88": 2, - "67877f6aecc0f8078905fe97": 4, - "67877f6aecc0f8078905fe9e": 2, - "67877f6aecc0f8078905fea4": 4, - "67877f6aecc0f8078905feaa": 3, - "67877f6aecc0f8078905feb8": 4, - "67877f6aecc0f8078905fec6": 1, - "67877f6aecc0f8078905fec9": 3, - "67877f6aecc0f8078905fecc": 1, - "67877f6aecc0f8078905fecf": 2, - "67877f6aecc0f8078905fed9": 2, - "67877f6aecc0f8078905fee6": 4, - "67877f6aecc0f8078905feec": 4, - "67877f6aecc0f8078905feef": 3, - "67877f6becc0f8078905fef2": 3, - "67877f6becc0f8078905fef5": 2, - "67877f6becc0f8078905fef8": 4, - "67877f6becc0f8078905ff08": 4, - "67877f6becc0f8078905ff1e": 4, - "67877f6becc0f8078905ff27": 1, - "67877f6becc0f8078905ff2c": 3, - "67877f6becc0f8078905ff31": 3, - "67877f6becc0f8078905ff34": 2, - "67877f6becc0f8078905ff37": 2, - "67877f6becc0f8078905ff3a": 4, - "67877f6becc0f8078905ff3d": 2, - "67877f6becc0f8078905ff40": 4, - "67877f6becc0f8078905ff46": 4, - "67877f6becc0f8078905ff4c": 2, - "67877f6becc0f8078905ff53": 2, - "67877f6becc0f8078905ff5a": 3, - "67877f6becc0f8078905ff60": 4, - "67877f6becc0f8078905ff66": 4, - "67877f6becc0f8078905ff69": 4, - "67877f6becc0f8078905ff6c": 3, - "67877f6becc0f8078905ff6f": 2, - "67877f6becc0f8078905ff72": 3, - "67877f6becc0f8078905ff75": 2, - "67877f6cecc0f8078905ff7d": 4, - "67877f6cecc0f8078905ff89": 2, - "67877f6cecc0f8078905ff90": 3, - "67877f6cecc0f8078905ff93": 3, - "67877f6cecc0f8078905ff96": 4, - "67877f6cecc0f8078905ff99": 2, - "67877f6cecc0f8078905ff9c": 2, - "67877f6cecc0f8078905ff9f": 3, - "67877f6cecc0f8078905ffa2": 1, - "67877f6cecc0f8078905ffa5": 3, - "67877f6cecc0f8078905ffa8": 4, - "67877f6cecc0f8078905ffab": 2, - "67877f6cecc0f8078905ffb4": 2, - "67877f6cecc0f8078905ffbd": 4, - "67877f6cecc0f8078905ffc0": 3, - "67877f6cecc0f8078905ffc3": 2, - "67877f6cecc0f8078905ffcc": 2, - "67877f6cecc0f8078905ffd9": 4, - "67877f6cecc0f8078905ffe9": 3, - "67877f6cecc0f8078905fff5": 2, - "67877f6cecc0f80789060001": 4, - "67877f6cecc0f8078906000d": 3, - "67877f6cecc0f80789060010": 2, - "67877f6decc0f80789060013": 1, - "67877f6decc0f80789060018": 4, - "67877f6decc0f80789060024": 3, - "67877f6decc0f80789060036": 4, - "67877f6decc0f80789060041": 4, - "67877f6decc0f8078906004a": 4, - "67877f6decc0f80789060059": 3, - "67877f6decc0f80789060062": 2, - "67877f6decc0f8078906006c": 3, - "67877f6decc0f80789060076": 3, - "67877f6decc0f80789060079": 2, - "67877f6decc0f8078906007c": 3, - "67877f6decc0f80789060083": 2, - "67877f6decc0f8078906008a": 1, - "67877f6decc0f8078906008d": 3, - "67877f6decc0f80789060090": 1, - "67877f6decc0f80789060095": 3, - "67877f6decc0f8078906009c": 1, - "67877f6decc0f807890600a1": 4, - "67877f6decc0f807890600a4": 2, - "67877f6decc0f807890600a9": 3, - "67877f6decc0f807890600ae": 1, - "67877f6decc0f807890600b1": 2, - "67877f6eecc0f807890600b4": 4, - "67877f6eecc0f807890600b7": 1, - "67877f6eecc0f807890600bb": 4, - "67877f6eecc0f807890600be": 3, - "67877f6eecc0f807890600c1": 4, - "67877f6eecc0f807890600c4": 3, - "67877f6eecc0f807890600ca": 3, - "67877f6eecc0f807890600d0": 1, - "67877f6eecc0f807890600d3": 4, - "67877f6eecc0f807890600d8": 4, - "67877f6eecc0f807890600dc": 3, - "67877f6eecc0f807890600e6": 4, - "67877f6eecc0f807890600ed": 4, - "67877f6eecc0f807890600f2": 1, - "67877f6eecc0f80789060102": 4, - "67877f6eecc0f80789060114": 4, - "67877f6eecc0f80789060119": 3, - "67877f6eecc0f8078906011c": 1, - "67877f6eecc0f80789060121": 4, - "67877f6eecc0f80789060126": 1, - "67877f6eecc0f80789060129": 3, - "67877f6eecc0f80789060131": 4, - "67877f6eecc0f80789060140": 3, - "67877f6fecc0f8078906014d": 2, - "67877f6fecc0f80789060153": 1, - "67877f6fecc0f80789060156": 2, - "67877f6fecc0f80789060159": 1, - "67877f6fecc0f8078906015f": 1, - "67877f6fecc0f80789060165": 2, - "67e5337781a202dc180bc022": 1, - "67eb506040b1947a72103c2e": 4 + "6808baae364a85cccb04a7e3": 1, + "6808baae364a85cccb04a7ec": 1, + "6808baae364a85cccb04a7f2": 3, + "6808baae364a85cccb04a7fa": 4, + "6808baae364a85cccb04a802": 4, + "6808baae364a85cccb04a805": 3, + "6808baae364a85cccb04a80b": 3, + "6808baae364a85cccb04a811": 2, + "6808baae364a85cccb04a817": 2, + "6808baae364a85cccb04a81d": 2, + "6808baae364a85cccb04a820": 3, + "6808baae364a85cccb04a823": 2, + "6808baae364a85cccb04a826": 1, + "6808baae364a85cccb04a82c": 4, + "6808baae364a85cccb04a835": 2, + "6808baae364a85cccb04a83b": 1, + "6808baaf364a85cccb04a842": 1, + "6808baaf364a85cccb04a849": 1, + "6808baaf364a85cccb04a84c": 1, + "6808baaf364a85cccb04a84f": 4, + "6808baaf364a85cccb04a856": 1, + "6808baaf364a85cccb04a85d": 1, + "6808baaf364a85cccb04a860": 2, + "6808baaf364a85cccb04a865": 3, + "6808baaf364a85cccb04a86a": 3, + "6808baaf364a85cccb04a86d": 2, + "6808baaf364a85cccb04a873": 4, + "6808baaf364a85cccb04a879": 1, + "6808baaf364a85cccb04a87c": 1, + "6808baaf364a85cccb04a87f": 4, + "6808baaf364a85cccb04a882": 1, + "6808baaf364a85cccb04a890": 4, + "6808baaf364a85cccb04a89e": 3, + "6808baaf364a85cccb04a8a3": 3, + "6808baaf364a85cccb04a8a8": 3, + "6808baaf364a85cccb04a8ab": 1, + "6808baaf364a85cccb04a8b1": 1, + "6808baaf364a85cccb04a8b7": 4, + "6808baaf364a85cccb04a8ba": 3, + "6808bab0364a85cccb04a8bd": 2, + "6808bab0364a85cccb04a8c0": 2, + "6808bab0364a85cccb04a8c3": 4, + "6808bab0364a85cccb04a8c6": 1, + "6808bab0364a85cccb04a8c9": 2, + "6808bab0364a85cccb04a8cc": 1, + "6808bab0364a85cccb04a8cf": 4, + "6808bab0364a85cccb04a8d2": 4, + "6808bab0364a85cccb04a8d5": 3, + "6808bab0364a85cccb04a8da": 2, + "6808bab0364a85cccb04a8df": 1, + "6808bab0364a85cccb04a8e2": 1, + "6808bab0364a85cccb04a8e5": 3, + "6808bab0364a85cccb04a8f0": 2, + "6808bab0364a85cccb04a8fb": 1, + "6808bab0364a85cccb04a8fe": 1, + "6808bab0364a85cccb04a904": 4, + "6808bab0364a85cccb04a910": 3, + "6808bab0364a85cccb04a919": 2, + "6808bab0364a85cccb04a920": 1, + "6808bab0364a85cccb04a927": 2, + "6808bab0364a85cccb04a92a": 3, + "6808bab0364a85cccb04a92d": 4, + "6808bab0364a85cccb04a930": 3, + "6808bab0364a85cccb04a933": 2, + "6808bab1364a85cccb04a936": 2, + "6808bab1364a85cccb04a939": 3, + "6808bab1364a85cccb04a93f": 2, + "6808bab1364a85cccb04a945": 3, + "6808bab1364a85cccb04a948": 2, + "6808bab1364a85cccb04a94b": 2, + "6808bab1364a85cccb04a94e": 4, + "6808bab1364a85cccb04a951": 1, + "6808bab1364a85cccb04a958": 4, + "6808bab1364a85cccb04a95f": 4, + "6808bab1364a85cccb04a962": 1, + "6808bab1364a85cccb04a965": 1, + "6808bab1364a85cccb04a975": 4, + "6808bab1364a85cccb04a992": 4, + "6808bab1364a85cccb04a9aa": 2, + "6808bab1364a85cccb04a9b5": 2, + "6808bab1364a85cccb04a9bf": 2, + "6808bab1364a85cccb04a9cf": 4, + "6808bab1364a85cccb04a9d8": 3, + "6808bab1364a85cccb04a9db": 3, + "6808bab1364a85cccb04a9de": 3, + "6808bab2364a85cccb04a9e1": 3, + "6808bab2364a85cccb04a9e4": 2, + "6808bab2364a85cccb04a9e7": 4, + "6808bab2364a85cccb04a9ea": 3, + "6808bab2364a85cccb04a9f2": 4, + "6808bab2364a85cccb04a9fa": 2, + "6808bab2364a85cccb04aa00": 4, + "6808bab2364a85cccb04aa0a": 2, + "6808bab2364a85cccb04aa11": 4, + "6808bab2364a85cccb04aa14": 2, + "6808bab2364a85cccb04aa17": 4, + "6808bab2364a85cccb04aa1a": 2, + "6808bab2364a85cccb04aa20": 4, + "6808bab2364a85cccb04aa26": 4, + "6808bab2364a85cccb04aa29": 3, + "6808bab2364a85cccb04aa2c": 2, + "6808bab2364a85cccb04aa2f": 2, + "6808bab2364a85cccb04aa32": 4, + "6808bab2364a85cccb04aa39": 2, + "6808bab2364a85cccb04aa40": 2, + "6808bab2364a85cccb04aa43": 2, + "6808bab2364a85cccb04aa46": 2, + "6808bab2364a85cccb04aa49": 2, + "6808bab3364a85cccb04aa4c": 3, + "6808bab3364a85cccb04aa55": 2, + "6808bab3364a85cccb04aa5e": 4, + "6808bab3364a85cccb04aa67": 2, + "6808bab3364a85cccb04aa74": 4, + "6808bab3364a85cccb04aa83": 4, + "6808bab3364a85cccb04aa8e": 3, + "6808bab3364a85cccb04aa93": 4, + "6808bab3364a85cccb04aaa1": 3, + "6808bab3364a85cccb04aab4": 3, + "6808bab3364a85cccb04aabe": 2, + "6808bab3364a85cccb04aac1": 1, + "6808bab3364a85cccb04aacd": 4, + "6808bab3364a85cccb04aad9": 3, + "6808bab3364a85cccb04aae3": 3, + "6808bab3364a85cccb04aaed": 2, + "6808bab3364a85cccb04aaf0": 3, + "6808bab3364a85cccb04aaf3": 1, + "6808bab3364a85cccb04aaf6": 4, + "6808bab3364a85cccb04aaf9": 4, + "6808bab3364a85cccb04aafc": 3, + "6808bab3364a85cccb04ab03": 2, + "6808bab4364a85cccb04ab0a": 2, + "6808bab4364a85cccb04ab13": 3, + "6808bab4364a85cccb04ab22": 4, + "6808bab4364a85cccb04ab2b": 1, + "6808bab4364a85cccb04ab2e": 4, + "6808bab4364a85cccb04ab31": 3, + "6808bab4364a85cccb04ab34": 3, + "6808bab4364a85cccb04ab37": 1, + "6808bab4364a85cccb04ab3a": 1, + "6808bab4364a85cccb04ab3d": 3, + "6808bab4364a85cccb04ab40": 4, + "6808bab4364a85cccb04ab43": 1, + "6808bab4364a85cccb04ab49": 1, + "6808bab4364a85cccb04ab50": 3, + "6808bab4364a85cccb04ab58": 3, + "6808bab4364a85cccb04ab5e": 4, + "6808bab4364a85cccb04ab61": 2, + "6808bab4364a85cccb04ab66": 3, + "6808bab4364a85cccb04ab6b": 4, + "6808bab4364a85cccb04ab6e": 4, + "6808bab4364a85cccb04ab71": 2, + "6808bab4364a85cccb04ab74": 1, + "6808bab4364a85cccb04ab79": 4, + "6808bab5364a85cccb04ab7e": 1, + "6808bab5364a85cccb04ab81": 2, + "6808bab5364a85cccb04ab84": 3, + "6808bab5364a85cccb04ab89": 4, + "6808bab5364a85cccb04ab8d": 3, + "6808bab5364a85cccb04ab97": 4, + "6808bab5364a85cccb04ab9c": 3, + "6808bab5364a85cccb04aba2": 2, + "6808bab5364a85cccb04abad": 4, + "6808bab5364a85cccb04abc2": 4, + "6808bab5364a85cccb04abd2": 1, + "6808bab5364a85cccb04abd8": 1, + "6808bab5364a85cccb04abe5": 3, + "6808bab5364a85cccb04abf1": 4, + "6808bab5364a85cccb04abf8": 4, + "6808bab5364a85cccb04abfd": 1, + "680496b2f9c573e9ef0ea5a1": 4 } } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/questassort.json index cbb57c26..6ccd2b03 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5ac3b934156ae10c4430e83c/questassort.json @@ -1,28 +1,28 @@ { "started": {}, "success": { - "67877f6cecc0f80789060001": "5ae4499a86f77449783815db", - "67877f6becc0f8078905ff08": "5ae449d986f774453a54a7e1", - "67877f6aecc0f8078905fea4": "5ae449c386f7744bde357697", - "67877f6eecc0f807890600d3": "5ae449c386f7744bde357697", - "67877f67ecc0f8078905fd5a": "60e71d23c1bfa3050473b8e6", - "67877f6cecc0f8078905ffcc": "5b478d0f86f7744d190d91b5", - "67877f68ecc0f8078905fdae": "5b478b1886f7744d1b23c57d", - "67877f6decc0f807890600a1": "63966fccac6f8f3c677b9d89", - "67877f6eecc0f80789060131": "63966fd9ea19ac7ed845db30", - "67877f6becc0f8078905ff53": "5ae4493d86f7744b8e15aa8f", - "67877f6cecc0f8078905fff5": "5ae448f286f77448d73c0131", - "67877f6cecc0f8078905ffb4": "5ae4493486f7744efa289417", - "67877f6cecc0f8078905ffe9": "639135bbc115f907b14700a6", - "67877f6cecc0f8078905ffd9": "5c10f94386f774227172c572", - "67877f6aecc0f8078905feec": "5c112d7e86f7740d6f647486", - "67877f6aecc0f8078905feb8": "5e383a6386f77465910ce1f3", - "67877f6aecc0f8078905fe88": "638fcd23dc65553116701d33", - "67877f68ecc0f8078905fda5": "608974af4b05530f55550c21", - "67877f6eecc0f80789060129": "608974af4b05530f55550c21", - "67877f6cecc0f8078905ff89": "639135a7e705511c8a4a1b78", - "67e5337781a202dc180bc022": "67a096f605d1611ed90be75a", - "67eb506040b1947a72103c2e": "5e381b0286f77420e3417a74" + "6808bab3364a85cccb04aabe": "5ae448f286f77448d73c0131", + "6808bab3364a85cccb04aa67": "5ae4493486f7744efa289417", + "6808bab2364a85cccb04aa0a": "5ae4493d86f7744b8e15aa8f", + "6808bab3364a85cccb04aacd": "5ae4499a86f77449783815db", + "6808bab0364a85cccb04a904": "5ae449c386f7744bde357697", + "6808bab4364a85cccb04ab5e": "5ae449c386f7744bde357697", + "6808bab1364a85cccb04a975": "5ae449d986f774453a54a7e1", + "6808bab1364a85cccb04a94e": "5b478b1886f7744d1b23c57d", + "6808bab3364a85cccb04aa55": "5b478d0f86f7744d190d91b5", + "6808bab3364a85cccb04aa74": "5c10f94386f774227172c572", + "6808baaf364a85cccb04a87f": "5c112d7e86f7740d6f647486", + "6808baaf364a85cccb04a890": "5e381b0286f77420e3417a74", + "680496b2f9c573e9ef0ea5a1": "5e383a6386f77465910ce1f3", + "6808baae364a85cccb04a7f2": "608974af4b05530f55550c21", + "6808bab5364a85cccb04ab84": "608974af4b05530f55550c21", + "6808baae364a85cccb04a82c": "60e71d23c1bfa3050473b8e6", + "6808bab0364a85cccb04a8f0": "638fcd23dc65553116701d33", + "6808bab2364a85cccb04aa39": "639135a7e705511c8a4a1b78", + "6808bab3364a85cccb04aaa1": "639135bbc115f907b14700a6", + "6808bab4364a85cccb04ab2e": "63966fccac6f8f3c677b9d89", + "6808bab5364a85cccb04abad": "63966fd9ea19ac7ed845db30", + "6808bab5364a85cccb04abfd": "67a096f605d1611ed90be75a" }, "fail": {} } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/assort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/assort.json index 5be33935..f1cd5c67 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/assort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/assort.json @@ -1,217 +1,7 @@ { "items": [ { - "_id": "677536b3b06e57fd5c0e03be", - "_tpl": "576165642459773c7a400233", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03bf", - "_tpl": "576169e62459773c69055191", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_handguard" - }, - { - "_id": "677536b3b06e57fd5c0e03c0", - "_tpl": "576167ab2459773cad038c43", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_muzzle" - }, - { - "_id": "677536b3b06e57fd5c0e03c1", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536b3b06e57fd5c0e03c2", - "_tpl": "57616c112459773cce774d66", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_reciever" - }, - { - "_id": "677536b3b06e57fd5c0e03c3", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536b3b06e57fd5c0e03c4", - "_tpl": "57616ca52459773c69055192", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_stock" - }, - { - "_id": "677536b3b06e57fd5c0e03c5", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "677536b3b06e57fd5c0e03be", - "slotId": "mod_magazine" - }, - { - "_id": "677536b3b06e57fd5c0e03ce", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03d2", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03d6", - "_tpl": "588200af24597742fa221dfb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03d8", - "_tpl": "56dee2bdd2720bc8328b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03d9", - "_tpl": "56deec93d2720bec348b4568", - "parentId": "677536b3b06e57fd5c0e03d8", - "slotId": "mod_barrel" - }, - { - "_id": "677536b3b06e57fd5c0e03da", - "_tpl": "56deed6ed2720b4c698b4583", - "parentId": "677536b3b06e57fd5c0e03d8", - "slotId": "mod_handguard" - }, - { - "_id": "677536b3b06e57fd5c0e03db", - "_tpl": "56deee15d2720bee328b4567", - "parentId": "677536b3b06e57fd5c0e03d8", - "slotId": "mod_magazine" - }, - { - "_id": "677536b3b06e57fd5c0e03dc", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "677536b3b06e57fd5c0e03d8", - "slotId": "mod_stock" - }, - { - "_id": "677536b3b06e57fd5c0e03e1", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03e5", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03e9", - "_tpl": "55d48ebc4bdc2d8c2f8b456c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03ec", - "_tpl": "57c5ac0824597754771e88a9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03ef", - "_tpl": "591c4efa86f7741030027726", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b3b06e57fd5c0e03f3", - "_tpl": "572b7adb24597762ae139821", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e03f6", - "_tpl": "55d449444bdc2d962f8b456d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e03f9", + "_id": "6808badc364a85cccb04b703", "_tpl": "56deec93d2720bec348b4568", "parentId": "hideout", "slotId": "hideout", @@ -223,92 +13,8 @@ } }, { - "_id": "677536b4b06e57fd5c0e03fc", - "_tpl": "55d485804bdc2d8c2f8b456b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0400", - "_tpl": "57acb6222459771ec34b5cb0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0403", - "_tpl": "55d448594bdc2d8c2f8b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0406", - "_tpl": "5608373c4bdc2dc8488b4570", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0409", - "_tpl": "588200c224597743990da9ed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e040c", - "_tpl": "591ee00d86f774592f7b841e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e040f", - "_tpl": "560836fb4bdc2d773f8b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0412", - "_tpl": "59e6927d86f77411da468256", + "_id": "6808badc364a85cccb04b706", + "_tpl": "573602322459776445391df1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -319,92 +25,8 @@ } }, { - "_id": "677536b4b06e57fd5c0e0416", - "_tpl": "576169e62459773c69055191", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0419", - "_tpl": "560837544bdc2de22e8b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e041c", - "_tpl": "588200cf2459774414733d55", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e041f", - "_tpl": "59e6658b86f77411d949b250", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0423", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e0427", - "_tpl": "5a1ead28fcdbcb001912fa9f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e042a", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b4b06e57fd5c0e042e", - "_tpl": "57616a9e2459773c7a400234", + "_id": "6808badc364a85cccb04b70a", + "_tpl": "5882163e24597758206fee8c", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -415,289 +37,7 @@ } }, { - "_id": "677536b4b06e57fd5c0e0431", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0435", - "_tpl": "57616ca52459773c69055192", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0438", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e043b", - "_tpl": "5882163224597757561aa920", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e043f", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0442", - "_tpl": "560837824bdc2d57468b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0445", - "_tpl": "5608379a4bdc2d26448b4569", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0448", - "_tpl": "56083a334bdc2dc8488b4571", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e044b", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e044f", - "_tpl": "56deeefcd2720bc8328b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0452", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0453", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "677536b5b06e57fd5c0e0452", - "slotId": "mod_magazine" - }, - { - "_id": "677536b5b06e57fd5c0e0454", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "677536b5b06e57fd5c0e0452", - "slotId": "mod_stock" - }, - { - "_id": "677536b5b06e57fd5c0e0455", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "677536b5b06e57fd5c0e0454", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536b5b06e57fd5c0e045a", - "_tpl": "5a38ed75c4a28232996e40c6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e045e", - "_tpl": "560835c74bdc2dc8488b456f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0461", - "_tpl": "560837154bdc2da74d8b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0464", - "_tpl": "57ae0171245977343c27bfcf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0468", - "_tpl": "587e08ee245977446b4410cf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e046b", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e046d", - "_tpl": "54491c4f4bdc2db1078b4568", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e046e", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "677536b5b06e57fd5c0e046d", - "slotId": "mod_barrel" - }, - { - "_id": "677536b5b06e57fd5c0e046f", - "_tpl": "55d45d3f4bdc2d972f8b456c", - "parentId": "677536b5b06e57fd5c0e046d", - "slotId": "mod_handguard" - }, - { - "_id": "677536b5b06e57fd5c0e0470", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "677536b5b06e57fd5c0e046d", - "slotId": "mod_magazine" - }, - { - "_id": "677536b5b06e57fd5c0e0471", - "_tpl": "56083cba4bdc2de22e8b456f", - "parentId": "677536b5b06e57fd5c0e046d", - "slotId": "mod_stock" - }, - { - "_id": "677536b5b06e57fd5c0e0475", - "_tpl": "573601b42459776410737435", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b5b06e57fd5c0e0479", - "_tpl": "593d1fa786f7746da62d61ac", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e047c", + "_id": "6808badc364a85cccb04b70e", "_tpl": "5882163824597757561aa922", "parentId": "hideout", "slotId": "hideout", @@ -709,7 +49,577 @@ } }, { - "_id": "677536b6b06e57fd5c0e047f", + "_id": "6808badc364a85cccb04b712", + "_tpl": "560837154bdc2da74d8b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badc364a85cccb04b715", + "_tpl": "588200cf2459774414733d55", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badc364a85cccb04b718", + "_tpl": "59e6927d86f77411da468256", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badc364a85cccb04b71c", + "_tpl": "57c69dd424597774c03b7bbc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badc364a85cccb04b71f", + "_tpl": "57c5ac0824597754771e88a9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badc364a85cccb04b722", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 400, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b726", + "_tpl": "5882163224597757561aa920", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b72a", + "_tpl": "59eb7ebe86f7740b373438ce", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b72c", + "_tpl": "56dee2bdd2720bc8328b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b72d", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "6808badd364a85cccb04b72c", + "slotId": "mod_barrel" + }, + { + "_id": "6808badd364a85cccb04b72e", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "6808badd364a85cccb04b72c", + "slotId": "mod_handguard" + }, + { + "_id": "6808badd364a85cccb04b72f", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "6808badd364a85cccb04b72c", + "slotId": "mod_magazine" + }, + { + "_id": "6808badd364a85cccb04b730", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "6808badd364a85cccb04b72c", + "slotId": "mod_stock" + }, + { + "_id": "6808badd364a85cccb04b735", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b739", + "_tpl": "573601b42459776410737435", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b73d", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b740", + "_tpl": "587e08ee245977446b4410cf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b743", + "_tpl": "57616ca52459773c69055192", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b746", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b74a", + "_tpl": "59e6658b86f77411d949b250", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b74e", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b750", + "_tpl": "54491c4f4bdc2db1078b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b751", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "6808badd364a85cccb04b750", + "slotId": "mod_barrel" + }, + { + "_id": "6808badd364a85cccb04b752", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "6808badd364a85cccb04b750", + "slotId": "mod_handguard" + }, + { + "_id": "6808badd364a85cccb04b753", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "6808badd364a85cccb04b750", + "slotId": "mod_magazine" + }, + { + "_id": "6808badd364a85cccb04b754", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "6808badd364a85cccb04b750", + "slotId": "mod_stock" + }, + { + "_id": "6808badd364a85cccb04b759", + "_tpl": "588200c224597743990da9ed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b75c", + "_tpl": "560837824bdc2d57468b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b75f", + "_tpl": "560835c74bdc2dc8488b456f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b762", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b765", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b769", + "_tpl": "5608379a4bdc2d26448b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b76c", + "_tpl": "5a38ed75c4a28232996e40c6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b770", + "_tpl": "572b7adb24597762ae139821", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b773", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b777", + "_tpl": "55d485804bdc2d8c2f8b456b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b77b", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b77e", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badd364a85cccb04b77f", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "6808badd364a85cccb04b77e", + "slotId": "mod_magazine" + }, + { + "_id": "6808badd364a85cccb04b780", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "6808badd364a85cccb04b77e", + "slotId": "mod_stock" + }, + { + "_id": "6808badd364a85cccb04b781", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "6808badd364a85cccb04b780", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808badd364a85cccb04b786", + "_tpl": "560837544bdc2de22e8b456e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b789", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b78d", + "_tpl": "591ee00d86f774592f7b841e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b790", + "_tpl": "5a1ead28fcdbcb001912fa9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b793", + "_tpl": "560836fb4bdc2d773f8b4569", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b796", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b79a", + "_tpl": "576169e62459773c69055191", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b79e", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7a2", + "_tpl": "5a37ca54c4a282000d72296a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7a5", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7a9", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7ac", + "_tpl": "56deeefcd2720bc8328b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7af", "_tpl": "587e02ff24597743df3deaeb", "parentId": "hideout", "slotId": "hideout", @@ -728,68 +638,80 @@ } }, { - "_id": "677536b6b06e57fd5c0e0480", + "_id": "6808bade364a85cccb04b7b0", "_tpl": "587e0531245977466077a0f7", - "parentId": "677536b6b06e57fd5c0e047f", + "parentId": "6808bade364a85cccb04b7af", "slotId": "mod_stock" }, { - "_id": "677536b6b06e57fd5c0e0481", + "_id": "6808bade364a85cccb04b7b1", "_tpl": "634eff66517ccc8a960fc735", - "parentId": "677536b6b06e57fd5c0e047f", + "parentId": "6808bade364a85cccb04b7af", "slotId": "mod_barrel" }, { - "_id": "677536b6b06e57fd5c0e0482", + "_id": "6808bade364a85cccb04b7b2", "_tpl": "634f05a21f9f536910079b56", - "parentId": "677536b6b06e57fd5c0e0481", + "parentId": "6808bade364a85cccb04b7b1", "slotId": "mod_mount_000" }, { - "_id": "677536b6b06e57fd5c0e0483", + "_id": "6808bade364a85cccb04b7b3", "_tpl": "634f036a517ccc8a960fc746", - "parentId": "677536b6b06e57fd5c0e0482", + "parentId": "6808bade364a85cccb04b7b2", "slotId": "mod_gas_block" }, { - "_id": "677536b6b06e57fd5c0e0484", + "_id": "6808bade364a85cccb04b7b4", "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "677536b6b06e57fd5c0e0483", + "parentId": "6808bade364a85cccb04b7b3", "slotId": "mod_mount_000" }, { - "_id": "677536b6b06e57fd5c0e0485", + "_id": "6808bade364a85cccb04b7b5", "_tpl": "574db213245977459a2f3f5d", - "parentId": "677536b6b06e57fd5c0e0482", + "parentId": "6808bade364a85cccb04b7b2", "slotId": "mod_sight_rear" }, { - "_id": "677536b6b06e57fd5c0e0486", + "_id": "6808bade364a85cccb04b7b6", "_tpl": "587df3a12459772c28142567", - "parentId": "677536b6b06e57fd5c0e047f", + "parentId": "6808bade364a85cccb04b7af", "slotId": "mod_magazine" }, { - "_id": "677536b6b06e57fd5c0e0487", + "_id": "6808bade364a85cccb04b7b7", "_tpl": "634f06262e5def262d0b30ca", - "parentId": "677536b6b06e57fd5c0e047f", + "parentId": "6808bade364a85cccb04b7af", "slotId": "mod_reciever" }, { - "_id": "677536b6b06e57fd5c0e0490", - "_tpl": "59eb7ebe86f7740b373438ce", + "_id": "6808bade364a85cccb04b7c0", + "_tpl": "57ae0171245977343c27bfcf", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b6b06e57fd5c0e0493", - "_tpl": "5a37ca54c4a282000d72296a", + "_id": "6808bade364a85cccb04b7c4", + "_tpl": "5608373c4bdc2dc8488b4570", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7c6", + "_tpl": "576165642459773c7a400233", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -800,44 +722,62 @@ } }, { - "_id": "677536b6b06e57fd5c0e0496", - "_tpl": "57c69dd424597774c03b7bbc", + "_id": "6808bade364a85cccb04b7c7", + "_tpl": "576169e62459773c69055191", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_handguard" + }, + { + "_id": "6808bade364a85cccb04b7c8", + "_tpl": "576167ab2459773cad038c43", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bade364a85cccb04b7c9", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bade364a85cccb04b7ca", + "_tpl": "57616c112459773cce774d66", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_reciever" + }, + { + "_id": "6808bade364a85cccb04b7cb", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bade364a85cccb04b7cc", + "_tpl": "57616ca52459773c69055192", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_stock" + }, + { + "_id": "6808bade364a85cccb04b7cd", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "6808bade364a85cccb04b7c6", + "slotId": "mod_magazine" + }, + { + "_id": "6808bade364a85cccb04b7d4", + "_tpl": "591c4efa86f7741030027726", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b6b06e57fd5c0e0499", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e049d", - "_tpl": "573602322459776445391df1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04a1", - "_tpl": "5882163e24597758206fee8c", + "_id": "6808bade364a85cccb04b7d8", + "_tpl": "55d484b44bdc2d1d4e8b456d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -848,20 +788,44 @@ } }, { - "_id": "677536b6b06e57fd5c0e04a5", - "_tpl": "56dff216d2720bbd668b4568", + "_id": "6808bade364a85cccb04b7db", + "_tpl": "55d449444bdc2d962f8b456d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b6b06e57fd5c0e04a9", - "_tpl": "5b3b6dc75acfc47a8773fb1e", + "_id": "6808bade364a85cccb04b7de", + "_tpl": "56083a334bdc2dc8488b4571", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7e1", + "_tpl": "588200af24597742fa221dfb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bade364a85cccb04b7e4", + "_tpl": "593d1fa786f7746da62d61ac", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -872,8 +836,8 @@ } }, { - "_id": "677536b6b06e57fd5c0e04ac", - "_tpl": "57616c112459773cce774d66", + "_id": "6808bade364a85cccb04b7e7", + "_tpl": "55d448594bdc2d8c2f8b4569", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -884,139 +848,19 @@ } }, { - "_id": "677536b6b06e57fd5c0e04af", - "_tpl": "5b3b6e495acfc4330140bd88", + "_id": "6808bade364a85cccb04b7ea", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b6b06e57fd5c0e04b2", - "_tpl": "5b86a0e586f7745b600ccb23", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04b5", - "_tpl": "5adf23995acfc400185c2aeb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04b8", - "_tpl": "5ab8ee7786f7742d8f33f0b9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04bb", - "_tpl": "5bfd4cc90db834001d23e846", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04be", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04c1", - "_tpl": "5b3cbc235acfc4001863ac44", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04c5", - "_tpl": "5b3b99265acfc4704b4a1afb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b6b06e57fd5c0e04c8", - "_tpl": "5bbde409d4351e003562b036", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04cb", - "_tpl": "5bfebc5e0db834001a6694e5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04ce", - "_tpl": "5c093db286f7740a1b2617e3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04d1", + "_id": "6808badf364a85cccb04b7ed", "_tpl": "5aa66a9be5b5b0214e506e89", "parentId": "hideout", "slotId": "hideout", @@ -1028,151 +872,7 @@ } }, { - "_id": "677536b7b06e57fd5c0e04d4", - "_tpl": "5bfd4cbe0db834001b73449f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04d7", - "_tpl": "59e8977386f77415a553c453", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04db", - "_tpl": "5b2389515acfc4771e1be0c0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04de", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 15, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04e2", - "_tpl": "5bfeaa0f0db834001b734927", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04e6", - "_tpl": "5aa66be6e5b5b0214e506e97", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04e9", - "_tpl": "5bae13bad4351e00320204af", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04ec", - "_tpl": "5bae13ded4351e44f824bf38", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04f0", - "_tpl": "5bc5a372d4351e44f824d17f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04f3", - "_tpl": "5bfd384c0db834001a6691d3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04f6", - "_tpl": "5bfd36ad0db834001c38ef66", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04f9", - "_tpl": "5bc5a351d4351e003477a414", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e04fd", + "_id": "6808badf364a85cccb04b7f0", "_tpl": "5c0111ab0db834001966914d", "parentId": "hideout", "slotId": "hideout", @@ -1184,127 +884,7 @@ } }, { - "_id": "677536b7b06e57fd5c0e0501", - "_tpl": "5bfd4c980db834001b73449d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e0505", - "_tpl": "5a966f51a2750c00156aacf6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e0509", - "_tpl": "5bfd37c80db834001d23e842", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e050c", - "_tpl": "5aa66c72e5b5b00016327c93", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e050f", - "_tpl": "5aa66be6e5b5b0214e506e97", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b7b06e57fd5c0e0512", - "_tpl": "5bbdb870d4351e00367fb67d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e0515", - "_tpl": "5bbdb83fd4351e44f824c44b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e0519", - "_tpl": "5aa66a9be5b5b0214e506e89", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e051c", - "_tpl": "5bbde41ed4351e003562b038", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e0520", - "_tpl": "5bbdb811d4351e45020113c7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e0523", + "_id": "6808badf364a85cccb04b7f4", "_tpl": "5bc5a35cd4351e450201232f", "parentId": "hideout", "slotId": "hideout", @@ -1316,14 +896,11 @@ } }, { - "_id": "677536b8b06e57fd5c0e0526", - "_tpl": "5c501a4d2e221602b412b540", + "_id": "6808badf364a85cccb04b7f8", + "_tpl": "5bfd37c80db834001d23e842", "parentId": "hideout", "slotId": "hideout", "upd": { - "FireMode": { - "FireMode": "single" - }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 3, @@ -1331,98 +908,128 @@ } }, { - "_id": "677536b8b06e57fd5c0e0527", - "_tpl": "5c5039be2e221602b177c9ff", - "parentId": "677536b8b06e57fd5c0e0526", - "slotId": "mod_gas_block" - }, - { - "_id": "677536b8b06e57fd5c0e0528", - "_tpl": "5c503d0a2e221602b542b7ef", - "parentId": "677536b8b06e57fd5c0e0526", - "slotId": "mod_reciever" - }, - { - "_id": "677536b8b06e57fd5c0e0529", - "_tpl": "5c503b1c2e221602b21d6e9d", - "parentId": "677536b8b06e57fd5c0e0526", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536b8b06e57fd5c0e052a", - "_tpl": "5c503af12e221602b177ca02", - "parentId": "677536b8b06e57fd5c0e0526", - "slotId": "mod_stock" - }, - { - "_id": "677536b8b06e57fd5c0e052b", - "_tpl": "5c503ac82e221602b21d6e9a", - "parentId": "677536b8b06e57fd5c0e0526", - "slotId": "mod_magazine" - }, - { - "_id": "677536b8b06e57fd5c0e0533", - "_tpl": "5c503ac82e221602b21d6e9a", + "_id": "6808badf364a85cccb04b7fb", + "_tpl": "5b3b99265acfc4704b4a1afb", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 15, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e0536", - "_tpl": "5d6e68dea4b9361bcc29e659", + "_id": "6808badf364a85cccb04b7fe", + "_tpl": "5bbde41ed4351e003562b038", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e053a", - "_tpl": "5d6e68c4a4b9361b93413f79", + "_id": "6808badf364a85cccb04b802", + "_tpl": "5b86a0e586f7745b600ccb23", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 50, + "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e053e", - "_tpl": "5d6e6806a4b936088465b17e", + "_id": "6808badf364a85cccb04b805", + "_tpl": "5bbdb811d4351e45020113c7", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 80, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e0542", - "_tpl": "5d6e68d1a4b93622fe60e845", + "_id": "6808badf364a85cccb04b808", + "_tpl": "5a966f51a2750c00156aacf6", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 60, + "BuyRestrictionMax": 10, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e0546", - "_tpl": "5d235bb686f77443f4331278", + "_id": "6808badf364a85cccb04b80c", + "_tpl": "5bfd4cbe0db834001b73449f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b80f", + "_tpl": "5b3b6e495acfc4330140bd88", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b812", + "_tpl": "5bfd4cc90db834001d23e846", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b815", + "_tpl": "5bbde409d4351e003562b036", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b818", + "_tpl": "5ab8ee7786f7742d8f33f0b9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b81b", + "_tpl": "5c093db286f7740a1b2617e3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1433,8 +1040,20 @@ } }, { - "_id": "677536b8b06e57fd5c0e0549", - "_tpl": "5d024f5cd7ad1a04a067e91a", + "_id": "6808badf364a85cccb04b81e", + "_tpl": "5bbdb870d4351e00367fb67d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b821", + "_tpl": "5aa66a9be5b5b0214e506e89", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1445,92 +1064,20 @@ } }, { - "_id": "677536b8b06e57fd5c0e054b", - "_tpl": "56dee2bdd2720bc8328b4567", + "_id": "6808badf364a85cccb04b824", + "_tpl": "5bc5a351d4351e003477a414", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b8b06e57fd5c0e054c", - "_tpl": "56deec93d2720bec348b4568", - "parentId": "677536b8b06e57fd5c0e054b", - "slotId": "mod_barrel" - }, - { - "_id": "677536b8b06e57fd5c0e054d", - "_tpl": "56deed6ed2720b4c698b4583", - "parentId": "677536b8b06e57fd5c0e054b", - "slotId": "mod_handguard" - }, - { - "_id": "677536b8b06e57fd5c0e054e", - "_tpl": "56deee15d2720bee328b4567", - "parentId": "677536b8b06e57fd5c0e054b", - "slotId": "mod_magazine" - }, - { - "_id": "677536b8b06e57fd5c0e054f", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "677536b8b06e57fd5c0e054b", - "slotId": "mod_stock" - }, - { - "_id": "677536b8b06e57fd5c0e0552", - "_tpl": "5d6e689ca4b9361bc8618956", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 500, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e0556", - "_tpl": "5d6e69b9a4b9361bc8618958", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e055a", - "_tpl": "59e89d0986f77427600d226e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b8b06e57fd5c0e055d", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e0561", - "_tpl": "5c503ad32e2216398b5aada2", + "_id": "6808badf364a85cccb04b828", + "_tpl": "5bfea7ad0db834001c38f1ee", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -1541,7 +1088,247 @@ } }, { - "_id": "677536b9b06e57fd5c0e0565", + "_id": "6808badf364a85cccb04b82c", + "_tpl": "5b3cbc235acfc4001863ac44", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b830", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b833", + "_tpl": "5b3b6dc75acfc47a8773fb1e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b836", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b839", + "_tpl": "57616c112459773cce774d66", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808badf364a85cccb04b83c", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b83f", + "_tpl": "5bae13ded4351e44f824bf38", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b843", + "_tpl": "5bae13bad4351e00320204af", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b846", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b849", + "_tpl": "5bbdb83fd4351e44f824c44b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b84d", + "_tpl": "59e8977386f77415a553c453", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b851", + "_tpl": "5bfd36ad0db834001c38ef66", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b854", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b857", + "_tpl": "5bfd4c980db834001b73449d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b85b", + "_tpl": "5b2389515acfc4771e1be0c0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b85e", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b862", + "_tpl": "5bc5a372d4351e44f824d17f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b865", + "_tpl": "5adf23995acfc400185c2aeb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b868", + "_tpl": "5bfd384c0db834001a6691d3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b86b", + "_tpl": "5c61627a2e22160012542c55", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b86e", "_tpl": "5c012ffc0db834001d23f03f", "parentId": "hideout", "slotId": "hideout", @@ -1553,7 +1340,175 @@ } }, { - "_id": "677536b9b06e57fd5c0e0567", + "_id": "6808bae0364a85cccb04b871", + "_tpl": "5fc382b6d6fa9c00c571bbc3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 80, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b875", + "_tpl": "5d6e695fa4b936359b35d852", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b879", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 80, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b87d", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b881", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b884", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b888", + "_tpl": "5cf67cadd7f00c065a5abab7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b88c", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 15, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b890", + "_tpl": "5d6e69c7a4b9360b6c0d54e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae0364a85cccb04b894", + "_tpl": "5cf67a1bd7f00c06585fb6f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b898", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b89c", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b89f", + "_tpl": "5d6e69b9a4b9361bc8618958", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8a3", + "_tpl": "587df3a12459772c28142567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8a5", "_tpl": "59e6687d86f77411d949b251", "parentId": "hideout", "slotId": "hideout", @@ -1569,115 +1524,67 @@ } }, { - "_id": "677536b9b06e57fd5c0e0568", + "_id": "6808bae1364a85cccb04b8a6", "_tpl": "59e649f986f77411d949b246", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_gas_block" }, { - "_id": "677536b9b06e57fd5c0e0569", + "_id": "6808bae1364a85cccb04b8a7", "_tpl": "59e898ee86f77427614bd225", - "parentId": "677536b9b06e57fd5c0e0568", + "parentId": "6808bae1364a85cccb04b8a6", "slotId": "mod_handguard" }, { - "_id": "677536b9b06e57fd5c0e056a", + "_id": "6808bae1364a85cccb04b8a8", "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_muzzle" }, { - "_id": "677536b9b06e57fd5c0e056b", + "_id": "6808bae1364a85cccb04b8a9", "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_pistol_grip" }, { - "_id": "677536b9b06e57fd5c0e056c", + "_id": "6808bae1364a85cccb04b8aa", "_tpl": "59e6449086f7746c9f75e822", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_reciever" }, { - "_id": "677536b9b06e57fd5c0e056d", + "_id": "6808bae1364a85cccb04b8ab", "_tpl": "59e8977386f77415a553c453", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_sight_rear" }, { - "_id": "677536b9b06e57fd5c0e056e", + "_id": "6808bae1364a85cccb04b8ac", "_tpl": "59e89d0986f77427600d226e", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_stock" }, { - "_id": "677536b9b06e57fd5c0e056f", + "_id": "6808bae1364a85cccb04b8ad", "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "677536b9b06e57fd5c0e0567", + "parentId": "6808bae1364a85cccb04b8a5", "slotId": "mod_magazine" }, { - "_id": "677536b9b06e57fd5c0e0579", - "_tpl": "56083cba4bdc2de22e8b456f", + "_id": "6808bae1364a85cccb04b8b7", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, + "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536b9b06e57fd5c0e057c", - "_tpl": "5dff772da3651922b360bf91", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e057f", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e0583", - "_tpl": "5cf67a1bd7f00c06585fb6f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e0587", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e058b", + "_id": "6808bae1364a85cccb04b8ba", "_tpl": "5fc382c1016cce60e8341b20", "parentId": "hideout", "slotId": "hideout", @@ -1689,7 +1596,43 @@ } }, { - "_id": "677536b9b06e57fd5c0e058f", + "_id": "6808bae1364a85cccb04b8be", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8c2", + "_tpl": "5dfe14f30b92095fd441edaf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8c5", + "_tpl": "5d2dc3e548f035404a1a4798", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8c8", "_tpl": "5d1b36a186f7742523398433", "parentId": "hideout", "slotId": "hideout", @@ -1701,7 +1644,341 @@ } }, { - "_id": "677536b9b06e57fd5c0e0592", + "_id": "6808bae1364a85cccb04b8cb", + "_tpl": "5d6e68dea4b9361bcc29e659", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8cf", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8d2", + "_tpl": "56dee2bdd2720bc8328b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8d3", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "6808bae1364a85cccb04b8d2", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae1364a85cccb04b8d4", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "6808bae1364a85cccb04b8d2", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae1364a85cccb04b8d5", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "6808bae1364a85cccb04b8d2", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae1364a85cccb04b8d6", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "6808bae1364a85cccb04b8d2", + "slotId": "mod_stock" + }, + { + "_id": "6808bae1364a85cccb04b8d9", + "_tpl": "5c0126f40db834002a125382", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8dc", + "_tpl": "5448ba0b4bdc2d02308b456c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8df", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 30, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8e3", + "_tpl": "560836484bdc2d20478b456e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8e6", + "_tpl": "5d6e689ca4b9361bc8618956", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 500, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8ea", + "_tpl": "5d6e68c4a4b9361b93413f79", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 50, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8ed", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bae1364a85cccb04b8ee", + "_tpl": "5d25a4a98abbc30b917421a4", + "parentId": "6808bae1364a85cccb04b8ed", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae1364a85cccb04b8ef", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "parentId": "6808bae1364a85cccb04b8ed", + "slotId": "mod_stock" + }, + { + "_id": "6808bae1364a85cccb04b8f0", + "_tpl": "671126a210d67adb5b08e925", + "parentId": "6808bae1364a85cccb04b8ef", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bae1364a85cccb04b8f1", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6808bae1364a85cccb04b8ed", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae1364a85cccb04b8f2", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6808bae1364a85cccb04b8f1", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae1364a85cccb04b8f7", + "_tpl": "5c110624d174af029e69734c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae1364a85cccb04b8fa", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b8fe", + "_tpl": "5c99f3592e221644fc633070", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b901", + "_tpl": "560836b64bdc2d57468b4567", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b904", + "_tpl": "5d6e67fba4b9361bc73bc779", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b908", + "_tpl": "5dff77c759400025ea5150cf", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b90b", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b90f", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b912", + "_tpl": "5d235bb686f77443f4331278", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b915", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b918", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b91c", + "_tpl": "5cf79599d7f00c10875d9212", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b920", + "_tpl": "5c6162682e22160010261a2b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b923", "_tpl": "5d02797c86f774203f38e30a", "parentId": "hideout", "slotId": "hideout", @@ -1713,7 +1990,408 @@ } }, { - "_id": "677536b9b06e57fd5c0e0594", + "_id": "6808bae2364a85cccb04b926", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b92a", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b92e", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 60, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b932", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b935", + "_tpl": "5c86592b2e2216000e69e77c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b938", + "_tpl": "5c503ad32e2216398b5aada2", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 15, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b93c", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b940", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b943", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b944", + "_tpl": "5d25af8f8abbc3055079fec5", + "parentId": "6808bae2364a85cccb04b943", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae2364a85cccb04b945", + "_tpl": "5cf13123d7f00c1085616a50", + "parentId": "6808bae2364a85cccb04b943", + "slotId": "mod_stock" + }, + { + "_id": "6808bae2364a85cccb04b946", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6808bae2364a85cccb04b943", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae2364a85cccb04b947", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6808bae2364a85cccb04b946", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae2364a85cccb04b94b", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b94d", + "_tpl": "5c501a4d2e221602b412b540", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae2364a85cccb04b94e", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "6808bae2364a85cccb04b94d", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bae2364a85cccb04b94f", + "_tpl": "5c503d0a2e221602b542b7ef", + "parentId": "6808bae2364a85cccb04b94d", + "slotId": "mod_reciever" + }, + { + "_id": "6808bae2364a85cccb04b950", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "6808bae2364a85cccb04b94d", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bae2364a85cccb04b951", + "_tpl": "5c503af12e221602b177ca02", + "parentId": "6808bae2364a85cccb04b94d", + "slotId": "mod_stock" + }, + { + "_id": "6808bae2364a85cccb04b952", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "6808bae2364a85cccb04b94d", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae2364a85cccb04b958", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 200, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b95c", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b960", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 100, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b964", + "_tpl": "5dfe6104585a0c3e995c7b82", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b966", + "_tpl": "5de652c31b7e3716273428be", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b967", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "6808bae3364a85cccb04b966", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae3364a85cccb04b968", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "6808bae3364a85cccb04b966", + "slotId": "mod_stock" + }, + { + "_id": "6808bae3364a85cccb04b969", + "_tpl": "5de65547883dde217541644b", + "parentId": "6808bae3364a85cccb04b966", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae3364a85cccb04b96a", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "6808bae3364a85cccb04b969", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae3364a85cccb04b96b", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "6808bae3364a85cccb04b966", + "slotId": "mod_mount" + }, + { + "_id": "6808bae3364a85cccb04b96f", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "StackObjectsCount": 2000, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b970", + "_tpl": "5d25a6538abbc306c62e630d", + "parentId": "6808bae3364a85cccb04b96f", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae3364a85cccb04b971", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "6808bae3364a85cccb04b96f", + "slotId": "mod_stock" + }, + { + "_id": "6808bae3364a85cccb04b972", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "6808bae3364a85cccb04b971", + "slotId": "mod_stock" + }, + { + "_id": "6808bae3364a85cccb04b973", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "6808bae3364a85cccb04b972", + "slotId": "mod_stock" + }, + { + "_id": "6808bae3364a85cccb04b974", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6808bae3364a85cccb04b971", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bae3364a85cccb04b975", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "6808bae3364a85cccb04b971", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae3364a85cccb04b976", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6808bae3364a85cccb04b975", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bae3364a85cccb04b977", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6808bae3364a85cccb04b975", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bae3364a85cccb04b978", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "6808bae3364a85cccb04b975", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bae3364a85cccb04b979", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "6808bae3364a85cccb04b975", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bae3364a85cccb04b97a", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6808bae3364a85cccb04b96f", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae3364a85cccb04b97b", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6808bae3364a85cccb04b97a", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae3364a85cccb04b97c", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "6808bae3364a85cccb04b96f", + "slotId": "mod_mount" + }, + { + "_id": "6808bae3364a85cccb04b97f", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 500, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b983", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae3364a85cccb04b985", "_tpl": "576165642459773c7a400233", "parentId": "hideout", "slotId": "hideout", @@ -1731,333 +2409,237 @@ } }, { - "_id": "677536b9b06e57fd5c0e0595", + "_id": "6808bae3364a85cccb04b986", "_tpl": "5c90c3622e221601da359851", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_mount_000" }, { - "_id": "677536b9b06e57fd5c0e0596", + "_id": "6808bae3364a85cccb04b987", "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "677536b9b06e57fd5c0e0595", + "parentId": "6808bae3364a85cccb04b986", "slotId": "mod_scope" }, { - "_id": "677536b9b06e57fd5c0e0597", + "_id": "6808bae3364a85cccb04b988", "_tpl": "58272b392459774b4c7b3ccd", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_handguard" }, { - "_id": "677536b9b06e57fd5c0e0598", + "_id": "6808bae3364a85cccb04b989", "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "677536b9b06e57fd5c0e0597", + "parentId": "6808bae3364a85cccb04b988", "slotId": "mod_foregrip" }, { - "_id": "677536b9b06e57fd5c0e0599", + "_id": "6808bae3364a85cccb04b98a", "_tpl": "5c5952732e2216398b5abda2", - "parentId": "677536b9b06e57fd5c0e0597", + "parentId": "6808bae3364a85cccb04b988", "slotId": "mod_tactical_000" }, { - "_id": "677536b9b06e57fd5c0e059a", + "_id": "6808bae3364a85cccb04b98b", "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "677536b9b06e57fd5c0e0597", + "parentId": "6808bae3364a85cccb04b988", "slotId": "mod_tactical_001" }, { - "_id": "677536b9b06e57fd5c0e059b", + "_id": "6808bae3364a85cccb04b98c", "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "677536b9b06e57fd5c0e0597", + "parentId": "6808bae3364a85cccb04b988", "slotId": "mod_tactical_002" }, { - "_id": "677536b9b06e57fd5c0e059c", + "_id": "6808bae3364a85cccb04b98d", "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_muzzle" }, { - "_id": "677536b9b06e57fd5c0e059d", + "_id": "6808bae3364a85cccb04b98e", "_tpl": "5947f92f86f77427344a76b1", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_pistol_grip" }, { - "_id": "677536b9b06e57fd5c0e059e", + "_id": "6808bae3364a85cccb04b98f", "_tpl": "57616c112459773cce774d66", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_reciever" }, { - "_id": "677536b9b06e57fd5c0e059f", + "_id": "6808bae3364a85cccb04b990", "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_sight_rear" }, { - "_id": "677536b9b06e57fd5c0e05a0", + "_id": "6808bae3364a85cccb04b991", "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_stock" }, { - "_id": "677536b9b06e57fd5c0e05a1", + "_id": "6808bae3364a85cccb04b992", "_tpl": "58d2946c86f7744e271174b5", - "parentId": "677536b9b06e57fd5c0e05a0", + "parentId": "6808bae3364a85cccb04b991", "slotId": "mod_stock" }, { - "_id": "677536b9b06e57fd5c0e05a2", + "_id": "6808bae3364a85cccb04b993", "_tpl": "58d2912286f7744e27117493", - "parentId": "677536b9b06e57fd5c0e05a1", + "parentId": "6808bae3364a85cccb04b992", "slotId": "mod_stock" }, { - "_id": "677536b9b06e57fd5c0e05a3", + "_id": "6808bae3364a85cccb04b994", "_tpl": "5cf8f3b0d7f00c00217872ef", - "parentId": "677536b9b06e57fd5c0e0594", + "parentId": "6808bae3364a85cccb04b985", "slotId": "mod_magazine" }, { - "_id": "677536b9b06e57fd5c0e05a4", + "_id": "6808bae3364a85cccb04b995", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 0 }, { - "_id": "677536b9b06e57fd5c0e05a5", + "_id": "6808bae3364a85cccb04b996", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 1 }, { - "_id": "677536b9b06e57fd5c0e05a6", + "_id": "6808bae3364a85cccb04b997", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 2 }, { - "_id": "677536b9b06e57fd5c0e05a7", + "_id": "6808bae3364a85cccb04b998", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 3 }, { - "_id": "677536b9b06e57fd5c0e05a8", + "_id": "6808bae3364a85cccb04b999", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 4 }, { - "_id": "677536b9b06e57fd5c0e05a9", + "_id": "6808bae3364a85cccb04b99a", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 5 }, { - "_id": "677536b9b06e57fd5c0e05aa", + "_id": "6808bae3364a85cccb04b99b", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 6 }, { - "_id": "677536b9b06e57fd5c0e05ab", + "_id": "6808bae3364a85cccb04b99c", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 7 }, { - "_id": "677536b9b06e57fd5c0e05ac", + "_id": "6808bae3364a85cccb04b99d", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 8 }, { - "_id": "677536b9b06e57fd5c0e05ad", + "_id": "6808bae3364a85cccb04b99e", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 9 }, { - "_id": "677536b9b06e57fd5c0e05ae", + "_id": "6808bae3364a85cccb04b99f", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 10 }, { - "_id": "677536b9b06e57fd5c0e05af", + "_id": "6808bae3364a85cccb04b9a0", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 11 }, { - "_id": "677536b9b06e57fd5c0e05b0", + "_id": "6808bae3364a85cccb04b9a1", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 12 }, { - "_id": "677536b9b06e57fd5c0e05b1", + "_id": "6808bae3364a85cccb04b9a2", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 13 }, { - "_id": "677536b9b06e57fd5c0e05b2", + "_id": "6808bae3364a85cccb04b9a3", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 14 }, { - "_id": "677536b9b06e57fd5c0e05b3", + "_id": "6808bae3364a85cccb04b9a4", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 15 }, { - "_id": "677536b9b06e57fd5c0e05b4", + "_id": "6808bae3364a85cccb04b9a5", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 16 }, { - "_id": "677536b9b06e57fd5c0e05b5", + "_id": "6808bae3364a85cccb04b9a6", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 17 }, { - "_id": "677536b9b06e57fd5c0e05b6", + "_id": "6808bae3364a85cccb04b9a7", "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 18 }, { - "_id": "677536b9b06e57fd5c0e05b7", + "_id": "6808bae3364a85cccb04b9a8", "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "677536b9b06e57fd5c0e05a3", + "parentId": "6808bae3364a85cccb04b994", "slotId": "cartridges", "location": 19 }, { - "_id": "677536b9b06e57fd5c0e05ba", - "_tpl": "5d2dc3e548f035404a1a4798", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e05bd", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 30, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e05c1", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536b9b06e57fd5c0e05c4", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05c8", - "_tpl": "5d6e69c7a4b9360b6c0d54e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05cc", - "_tpl": "5dfe6104585a0c3e995c7b82", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05cf", - "_tpl": "5c503b1c2e221602b21d6e9d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05d2", - "_tpl": "5c99f3592e221644fc633070", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05d4", + "_id": "6808bae3364a85cccb04b9aa", "_tpl": "5bfea6e90db834001b7347f3", "parentId": "hideout", "slotId": "hideout", @@ -2072,348 +2654,67 @@ } }, { - "_id": "677536bab06e57fd5c0e05d5", - "_tpl": "5d25af8f8abbc3055079fec5", - "parentId": "677536bab06e57fd5c0e05d4", + "_id": "6808bae3364a85cccb04b9ab", + "_tpl": "5ce69cbad7f00c00b61c5098", + "parentId": "6808bae3364a85cccb04b9aa", "slotId": "mod_magazine" }, { - "_id": "677536bab06e57fd5c0e05d6", - "_tpl": "5cf13123d7f00c1085616a50", - "parentId": "677536bab06e57fd5c0e05d4", + "_id": "6808bae3364a85cccb04b9ac", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "6808bae3364a85cccb04b9aa", "slotId": "mod_stock" }, { - "_id": "677536bab06e57fd5c0e05d7", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536bab06e57fd5c0e05d4", - "slotId": "mod_barrel" - }, - { - "_id": "677536bab06e57fd5c0e05d8", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "677536bab06e57fd5c0e05d7", - "slotId": "mod_muzzle" - }, - { - "_id": "677536bab06e57fd5c0e05dd", - "_tpl": "5fc382b6d6fa9c00c571bbc3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 80, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05e1", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 500, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05e5", - "_tpl": "5c6162682e22160010261a2b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05e8", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05ec", - "_tpl": "5c0126f40db834002a125382", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05ef", - "_tpl": "560836484bdc2d20478b456e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05f2", - "_tpl": "5cf79599d7f00c10875d9212", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05f5", - "_tpl": "5bfea6e90db834001b7347f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "StackObjectsCount": 2000, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e05f6", - "_tpl": "5d25a6538abbc306c62e630d", - "parentId": "677536bab06e57fd5c0e05f5", - "slotId": "mod_magazine" - }, - { - "_id": "677536bab06e57fd5c0e05f7", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "677536bab06e57fd5c0e05f5", + "_id": "6808bae3364a85cccb04b9ad", + "_tpl": "5cdeac42d7f00c000d36ba73", + "parentId": "6808bae3364a85cccb04b9ac", "slotId": "mod_stock" }, { - "_id": "677536bab06e57fd5c0e05f8", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "677536bab06e57fd5c0e05f7", - "slotId": "mod_stock" - }, - { - "_id": "677536bab06e57fd5c0e05f9", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "677536bab06e57fd5c0e05f8", - "slotId": "mod_stock" - }, - { - "_id": "677536bab06e57fd5c0e05fa", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "677536bab06e57fd5c0e05f7", + "_id": "6808bae3364a85cccb04b9ae", + "_tpl": "5cdeac5cd7f00c000f261694", + "parentId": "6808bae3364a85cccb04b9ac", "slotId": "mod_pistol_grip" }, { - "_id": "677536bab06e57fd5c0e05fb", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "677536bab06e57fd5c0e05f7", - "slotId": "mod_handguard" - }, - { - "_id": "677536bab06e57fd5c0e05fc", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "677536bab06e57fd5c0e05fb", + "_id": "6808bae3364a85cccb04b9af", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "6808bae3364a85cccb04b9ac", "slotId": "mod_mount_000" }, { - "_id": "677536bab06e57fd5c0e05fd", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "677536bab06e57fd5c0e05fb", + "_id": "6808bae3364a85cccb04b9b0", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808bae3364a85cccb04b9ac", "slotId": "mod_mount_001" }, { - "_id": "677536bab06e57fd5c0e05fe", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "677536bab06e57fd5c0e05fb", + "_id": "6808bae3364a85cccb04b9b1", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808bae3364a85cccb04b9ac", "slotId": "mod_mount_002" }, { - "_id": "677536bab06e57fd5c0e05ff", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "677536bab06e57fd5c0e05fb", - "slotId": "mod_foregrip" + "_id": "6808bae3364a85cccb04b9b2", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6808bae3364a85cccb04b9ac", + "slotId": "mod_mount_003" }, { - "_id": "677536bab06e57fd5c0e0600", + "_id": "6808bae3364a85cccb04b9b3", "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536bab06e57fd5c0e05f5", + "parentId": "6808bae3364a85cccb04b9aa", "slotId": "mod_barrel" }, { - "_id": "677536bab06e57fd5c0e0601", + "_id": "6808bae3364a85cccb04b9b4", "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "677536bab06e57fd5c0e0600", + "parentId": "6808bae3364a85cccb04b9b3", "slotId": "mod_muzzle" }, { - "_id": "677536bab06e57fd5c0e0602", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "677536bab06e57fd5c0e05f5", - "slotId": "mod_mount" - }, - { - "_id": "677536bab06e57fd5c0e0605", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e0608", - "_tpl": "5de652c31b7e3716273428be", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e0609", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "677536bab06e57fd5c0e0608", - "slotId": "mod_magazine" - }, - { - "_id": "677536bab06e57fd5c0e060a", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "677536bab06e57fd5c0e0608", - "slotId": "mod_stock" - }, - { - "_id": "677536bab06e57fd5c0e060b", - "_tpl": "5de65547883dde217541644b", - "parentId": "677536bab06e57fd5c0e0608", - "slotId": "mod_barrel" - }, - { - "_id": "677536bab06e57fd5c0e060c", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "677536bab06e57fd5c0e060b", - "slotId": "mod_muzzle" - }, - { - "_id": "677536bab06e57fd5c0e060d", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "677536bab06e57fd5c0e0608", - "slotId": "mod_mount" - }, - { - "_id": "677536bab06e57fd5c0e0612", - "_tpl": "5c86592b2e2216000e69e77c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bab06e57fd5c0e0615", - "_tpl": "5c61627a2e22160012542c55", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0618", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e061c", - "_tpl": "587df3a12459772c28142567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e061f", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0623", - "_tpl": "5cf67cadd7f00c065a5abab7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0627", - "_tpl": "5d6e67fba4b9361bc73bc779", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e062b", + "_id": "6808bae3364a85cccb04b9b9", "_tpl": "5c6161fb2e221600113fbde5", "parentId": "hideout", "slotId": "hideout", @@ -2425,209 +2726,7 @@ } }, { - "_id": "677536bbb06e57fd5c0e062f", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0633", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0636", - "_tpl": "5dff77c759400025ea5150cf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0639", - "_tpl": "560836b64bdc2d57468b4567", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e063c", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0640", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0643", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0647", - "_tpl": "5448ba0b4bdc2d02308b456c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e064a", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e064c", - "_tpl": "5bfea6e90db834001b7347f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536bbb06e57fd5c0e064d", - "_tpl": "5d25a4a98abbc30b917421a4", - "parentId": "677536bbb06e57fd5c0e064c", - "slotId": "mod_magazine" - }, - { - "_id": "677536bbb06e57fd5c0e064e", - "_tpl": "5d25d0ac8abbc3054f3e61f7", - "parentId": "677536bbb06e57fd5c0e064c", - "slotId": "mod_stock" - }, - { - "_id": "677536bbb06e57fd5c0e064f", - "_tpl": "671126a210d67adb5b08e925", - "parentId": "677536bbb06e57fd5c0e064e", - "slotId": "mod_mount_000" - }, - { - "_id": "677536bbb06e57fd5c0e0650", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536bbb06e57fd5c0e064c", - "slotId": "mod_barrel" - }, - { - "_id": "677536bbb06e57fd5c0e0651", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "677536bbb06e57fd5c0e0650", - "slotId": "mod_muzzle" - }, - { - "_id": "677536bbb06e57fd5c0e0655", - "_tpl": "5c110624d174af029e69734c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0658", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e065c", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bbb06e57fd5c0e0660", - "_tpl": "5dfe14f30b92095fd441edaf", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0663", + "_id": "6808bae3364a85cccb04b9bd", "_tpl": "59e898ee86f77427614bd225", "parentId": "hideout", "slotId": "hideout", @@ -2639,8 +2738,8 @@ } }, { - "_id": "677536bcb06e57fd5c0e0666", - "_tpl": "5d02778e86f774203e7dedbe", + "_id": "6808bae3364a85cccb04b9c0", + "_tpl": "5d024f5cd7ad1a04a067e91a", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -2651,398 +2750,7 @@ } }, { - "_id": "677536bcb06e57fd5c0e0668", - "_tpl": "5bfea6e90db834001b7347f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0669", - "_tpl": "5ce69cbad7f00c00b61c5098", - "parentId": "677536bcb06e57fd5c0e0668", - "slotId": "mod_magazine" - }, - { - "_id": "677536bcb06e57fd5c0e066a", - "_tpl": "5cdeac22d7f00c000f26168f", - "parentId": "677536bcb06e57fd5c0e0668", - "slotId": "mod_stock" - }, - { - "_id": "677536bcb06e57fd5c0e066b", - "_tpl": "5cdeac42d7f00c000d36ba73", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_stock" - }, - { - "_id": "677536bcb06e57fd5c0e066c", - "_tpl": "5cdeac5cd7f00c000f261694", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536bcb06e57fd5c0e066d", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_mount_000" - }, - { - "_id": "677536bcb06e57fd5c0e066e", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_mount_001" - }, - { - "_id": "677536bcb06e57fd5c0e066f", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_mount_002" - }, - { - "_id": "677536bcb06e57fd5c0e0670", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "677536bcb06e57fd5c0e066a", - "slotId": "mod_mount_003" - }, - { - "_id": "677536bcb06e57fd5c0e0671", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536bcb06e57fd5c0e0668", - "slotId": "mod_barrel" - }, - { - "_id": "677536bcb06e57fd5c0e0672", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "677536bcb06e57fd5c0e0671", - "slotId": "mod_muzzle" - }, - { - "_id": "677536bcb06e57fd5c0e0677", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e067b", - "_tpl": "5d6e695fa4b936359b35d852", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e067f", - "_tpl": "5d95d6fa86f77424484aa5e9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0682", - "_tpl": "5f4f9eb969cdc30ff33f09db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0686", - "_tpl": "59e3577886f774176a362503", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0689", - "_tpl": "60785ce5132d4d12c81fd918", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e068c", - "_tpl": "609a4b4fe2ff132951242d04", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e068f", - "_tpl": "62330c40bdd19b369e1e53d1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0693", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e0696", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e069a", - "_tpl": "60785c0d232e5a31c233d51c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e069e", - "_tpl": "606ef0812535c57a13424d20", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e06a1", - "_tpl": "5c093e3486f77430cb02e593", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e06a3", - "_tpl": "5bfea6e90db834001b7347f3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "677536bcb06e57fd5c0e06a4", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "677536bcb06e57fd5c0e06a3", - "slotId": "mod_magazine" - }, - { - "_id": "677536bcb06e57fd5c0e06a5", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "677536bcb06e57fd5c0e06a3", - "slotId": "mod_stock" - }, - { - "_id": "677536bcb06e57fd5c0e06a6", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "677536bcb06e57fd5c0e06a3", - "slotId": "mod_barrel" - }, - { - "_id": "677536bcb06e57fd5c0e06a7", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "677536bcb06e57fd5c0e06a6", - "slotId": "mod_muzzle" - }, - { - "_id": "677536bcb06e57fd5c0e06aa", - "_tpl": "6034cf5fffd42c541047f72e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bcb06e57fd5c0e06ad", - "_tpl": "606f2696f2cb2e02a42aceb1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06b0", - "_tpl": "590c657e86f77412b013051d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06b3", - "_tpl": "609bab8b455afd752b2e6138", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06b6", - "_tpl": "61605e13ffa6e502ac5e7eef", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06ba", - "_tpl": "5c0d591486f7744c505b416f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 50, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06be", - "_tpl": "5f63405df5750b524b45f114", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06c1", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06c4", - "_tpl": "61713cc4d8e3106d9806c109", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06c7", - "_tpl": "617130016c780c1e710c9a24", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06ca", + "_id": "6808bae3364a85cccb04b9c2", "_tpl": "624c2e8614da335f1e034d8c", "parentId": "hideout", "slotId": "hideout", @@ -3057,38 +2765,26 @@ } }, { - "_id": "677536bdb06e57fd5c0e06cb", + "_id": "6808bae3364a85cccb04b9c3", "_tpl": "624c3074dbbd335e8e6becf3", - "parentId": "677536bdb06e57fd5c0e06ca", + "parentId": "6808bae3364a85cccb04b9c2", "slotId": "mod_magazine" }, { - "_id": "677536bdb06e57fd5c0e06cc", + "_id": "6808bae3364a85cccb04b9c4", "_tpl": "619f4d304c58466fe1228437", - "parentId": "677536bdb06e57fd5c0e06ca", + "parentId": "6808bae3364a85cccb04b9c2", "slotId": "mod_sight_front" }, { - "_id": "677536bdb06e57fd5c0e06cd", + "_id": "6808bae3364a85cccb04b9c5", "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "677536bdb06e57fd5c0e06ca", + "parentId": "6808bae3364a85cccb04b9c2", "slotId": "mod_pistol_grip" }, { - "_id": "677536bdb06e57fd5c0e06d4", - "_tpl": "57c69dd424597774c03b7bbc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06d7", - "_tpl": "6171407e50224f204c1da3c5", + "_id": "6808bae3364a85cccb04b9cc", + "_tpl": "61702be9faa1272e431522c3", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3099,68 +2795,8 @@ } }, { - "_id": "677536bdb06e57fd5c0e06da", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06dd", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 80, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06e1", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06e4", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06e8", - "_tpl": "606f26752535c57a13424d22", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06ec", - "_tpl": "5ad5cfbd86f7742c825d6104", + "_id": "6808bae3364a85cccb04b9cf", + "_tpl": "59e3577886f774176a362503", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3171,118 +2807,7 @@ } }, { - "_id": "677536bdb06e57fd5c0e06ef", - "_tpl": "5780cf7f2459777de4559322", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06f1", - "_tpl": "606dae0ab0e443224b421bb7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bdb06e57fd5c0e06f2", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "677536bdb06e57fd5c0e06f1", - "slotId": "mod_barrel" - }, - { - "_id": "677536bdb06e57fd5c0e06f3", - "_tpl": "607d5aa50494a626335e12ed", - "parentId": "677536bdb06e57fd5c0e06f1", - "slotId": "mod_handguard" - }, - { - "_id": "677536bdb06e57fd5c0e06f4", - "_tpl": "6076c87f232e5a31c233d50e", - "parentId": "677536bdb06e57fd5c0e06f1", - "slotId": "mod_magazine" - }, - { - "_id": "677536bdb06e57fd5c0e06f5", - "_tpl": "607d5a891246154cad35d6aa", - "parentId": "677536bdb06e57fd5c0e06f1", - "slotId": "mod_stock" - }, - { - "_id": "677536beb06e57fd5c0e06fa", - "_tpl": "5b6d9ce188a4501afc1b2b25", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e06fd", - "_tpl": "617153016c780c1e710c9a2f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0700", - "_tpl": "611a31ce5b7ffe001b4649d1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0703", - "_tpl": "606eef756d0bd7580617baf8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0706", - "_tpl": "606eef46232e5a31c233d500", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e070a", + "_id": "6808bae3364a85cccb04b9d2", "_tpl": "617154aa1cb55961fa0fdb3b", "parentId": "hideout", "slotId": "hideout", @@ -3294,47 +2819,8 @@ } }, { - "_id": "677536beb06e57fd5c0e070c", - "_tpl": "5580223e4bdc2d1c128b457f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e070d", - "_tpl": "55d447bb4bdc2d892f8b456f", - "parentId": "677536beb06e57fd5c0e070c", - "slotId": "mod_barrel" - }, - { - "_id": "677536beb06e57fd5c0e070e", - "_tpl": "611a31ce5b7ffe001b4649d1", - "parentId": "677536beb06e57fd5c0e070c", - "slotId": "mod_stock" - }, - { - "_id": "677536beb06e57fd5c0e0711", - "_tpl": "6113d6c3290d254f5e6b27db", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0715", - "_tpl": "5d02797c86f774203f38e30a", + "_id": "6808bae3364a85cccb04b9d5", + "_tpl": "5d95d6fa86f77424484aa5e9", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3345,254 +2831,8 @@ } }, { - "_id": "677536beb06e57fd5c0e0718", - "_tpl": "59fb023c86f7746d0d4b423c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e071b", - "_tpl": "5913915886f774123603c392", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e071e", - "_tpl": "5e2af55f86f7746d4159f07c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0721", - "_tpl": "61714b2467085e45ef140b2c", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0724", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 70, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0727", - "_tpl": "60db29ce99594040e04c4a27", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0728", - "_tpl": "60dc519adf4c47305f6d410d", - "parentId": "677536beb06e57fd5c0e0727", - "slotId": "mod_magazine" - }, - { - "_id": "677536beb06e57fd5c0e0729", - "_tpl": "612368f58b401f4f51239b33", - "parentId": "677536beb06e57fd5c0e0727", - "slotId": "mod_barrel" - }, - { - "_id": "677536beb06e57fd5c0e072a", - "_tpl": "619d36da53b4d42ee724fae4", - "parentId": "677536beb06e57fd5c0e0729", - "slotId": "mod_muzzle" - }, - { - "_id": "677536beb06e57fd5c0e072b", - "_tpl": "612781056f3d944a17348d60", - "parentId": "677536beb06e57fd5c0e0727", - "slotId": "mod_stock" - }, - { - "_id": "677536beb06e57fd5c0e072c", - "_tpl": "6123649463849f3d843da7c4", - "parentId": "677536beb06e57fd5c0e0727", - "slotId": "mod_handguard" - }, - { - "_id": "677536beb06e57fd5c0e0733", - "_tpl": "5580169d4bdc2d9d138b4585", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0735", - "_tpl": "5fc22d7c187fea44d52eda44", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536beb06e57fd5c0e0736", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "677536beb06e57fd5c0e0735", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536beb06e57fd5c0e0737", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "677536beb06e57fd5c0e0735", - "slotId": "mod_magazine" - }, - { - "_id": "677536beb06e57fd5c0e0738", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "677536beb06e57fd5c0e0735", - "slotId": "mod_stock_001" - }, - { - "_id": "677536beb06e57fd5c0e0739", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "677536beb06e57fd5c0e0738", - "slotId": "mod_stock_000" - }, - { - "_id": "677536beb06e57fd5c0e073a", - "_tpl": "5fc278107283c4046c581489", - "parentId": "677536beb06e57fd5c0e0735", - "slotId": "mod_reciever" - }, - { - "_id": "677536beb06e57fd5c0e073b", - "_tpl": "5fc23678ab884124df0cd590", - "parentId": "677536beb06e57fd5c0e073a", - "slotId": "mod_barrel" - }, - { - "_id": "677536beb06e57fd5c0e073c", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "677536beb06e57fd5c0e073b", - "slotId": "mod_muzzle" - }, - { - "_id": "677536beb06e57fd5c0e073d", - "_tpl": "5fc2360f900b1d5091531e19", - "parentId": "677536beb06e57fd5c0e073b", - "slotId": "mod_gas_block" - }, - { - "_id": "677536beb06e57fd5c0e073e", - "_tpl": "5fc235db2770a0045c59c683", - "parentId": "677536beb06e57fd5c0e073a", - "slotId": "mod_handguard" - }, - { - "_id": "677536bfb06e57fd5c0e0746", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0749", - "_tpl": "607d5a891246154cad35d6aa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e074c", - "_tpl": "609b9e31506cf869cf3eaf41", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0750", - "_tpl": "606f263a8900dc2d9a55b68d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0753", - "_tpl": "617155ee50224f204c1da3cd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0756", - "_tpl": "62330b3ed4dc74626d570b95", + "_id": "6808bae3364a85cccb04b9d8", + "_tpl": "62330c18744e5e31df12f516", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3603,32 +2843,8 @@ } }, { - "_id": "677536bfb06e57fd5c0e075a", - "_tpl": "62330bfadc5883093563729b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e075e", - "_tpl": "5a1eacb3fcdbcb09800872be", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0762", - "_tpl": "5ad7247386f7747487619dc3", + "_id": "6808bae3364a85cccb04b9dc", + "_tpl": "618ba27d9008e4636a67f61d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3639,91 +2855,7 @@ } }, { - "_id": "677536bfb06e57fd5c0e0765", - "_tpl": "607d5aa50494a626335e12ed", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0768", - "_tpl": "606ee5c81246154cad35d65e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e076c", - "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e076f", - "_tpl": "61605d88ffa6e502ac5e7eeb", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0773", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0776", - "_tpl": "55d447bb4bdc2d892f8b456f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e0779", - "_tpl": "611a30addbdd8440277441dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536bfb06e57fd5c0e077b", + "_id": "6808bae4364a85cccb04b9de", "_tpl": "6176aca650224f204c1da3fb", "parentId": "hideout", "slotId": "hideout", @@ -3738,116 +2870,191 @@ } }, { - "_id": "677536bfb06e57fd5c0e077c", + "_id": "6808bae4364a85cccb04b9df", "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "677536bfb06e57fd5c0e077b", + "parentId": "6808bae4364a85cccb04b9de", "slotId": "mod_pistol_grip" }, { - "_id": "677536bfb06e57fd5c0e077d", + "_id": "6808bae4364a85cccb04b9e0", "_tpl": "617131a4568c120fdd29482d", - "parentId": "677536bfb06e57fd5c0e077b", + "parentId": "6808bae4364a85cccb04b9de", "slotId": "mod_magazine" }, { - "_id": "677536bfb06e57fd5c0e077e", + "_id": "6808bae4364a85cccb04b9e1", "_tpl": "617153016c780c1e710c9a2f", - "parentId": "677536bfb06e57fd5c0e077b", + "parentId": "6808bae4364a85cccb04b9de", "slotId": "mod_stock" }, { - "_id": "677536bfb06e57fd5c0e077f", + "_id": "6808bae4364a85cccb04b9e2", "_tpl": "617155ee50224f204c1da3cd", - "parentId": "677536bfb06e57fd5c0e077e", + "parentId": "6808bae4364a85cccb04b9e1", "slotId": "mod_stock_000" }, { - "_id": "677536bfb06e57fd5c0e0780", + "_id": "6808bae4364a85cccb04b9e3", "_tpl": "61715e7e67085e45ef140b33", - "parentId": "677536bfb06e57fd5c0e077f", + "parentId": "6808bae4364a85cccb04b9e2", "slotId": "mod_stock_000" }, { - "_id": "677536bfb06e57fd5c0e0781", + "_id": "6808bae4364a85cccb04b9e4", "_tpl": "61713a8fd92c473c770214a4", - "parentId": "677536bfb06e57fd5c0e077b", + "parentId": "6808bae4364a85cccb04b9de", "slotId": "mod_reciever" }, { - "_id": "677536bfb06e57fd5c0e0782", + "_id": "6808bae4364a85cccb04b9e5", "_tpl": "61713cc4d8e3106d9806c109", - "parentId": "677536bfb06e57fd5c0e0781", + "parentId": "6808bae4364a85cccb04b9e4", "slotId": "mod_scope" }, { - "_id": "677536bfb06e57fd5c0e0783", + "_id": "6808bae4364a85cccb04b9e6", "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "677536bfb06e57fd5c0e0782", + "parentId": "6808bae4364a85cccb04b9e5", "slotId": "mod_scope_000" }, { - "_id": "677536bfb06e57fd5c0e0784", + "_id": "6808bae4364a85cccb04b9e7", "_tpl": "61714b2467085e45ef140b2c", - "parentId": "677536bfb06e57fd5c0e0782", + "parentId": "6808bae4364a85cccb04b9e5", "slotId": "mod_scope_001" }, { - "_id": "677536bfb06e57fd5c0e0785", + "_id": "6808bae4364a85cccb04b9e8", "_tpl": "58d399e486f77442e0016fe7", - "parentId": "677536bfb06e57fd5c0e0784", + "parentId": "6808bae4364a85cccb04b9e7", "slotId": "mod_scope" }, { - "_id": "677536bfb06e57fd5c0e0786", + "_id": "6808bae4364a85cccb04b9e9", "_tpl": "61702be9faa1272e431522c3", - "parentId": "677536bfb06e57fd5c0e0781", + "parentId": "6808bae4364a85cccb04b9e4", "slotId": "mod_barrel" }, { - "_id": "677536bfb06e57fd5c0e0787", + "_id": "6808bae4364a85cccb04b9ea", "_tpl": "61713308d92c473c770214a0", - "parentId": "677536bfb06e57fd5c0e0786", + "parentId": "6808bae4364a85cccb04b9e9", "slotId": "mod_muzzle" }, { - "_id": "677536bfb06e57fd5c0e0788", + "_id": "6808bae4364a85cccb04b9eb", "_tpl": "6171367e1cb55961fa0fdb36", - "parentId": "677536bfb06e57fd5c0e0787", + "parentId": "6808bae4364a85cccb04b9ea", "slotId": "mod_muzzle" }, { - "_id": "677536bfb06e57fd5c0e0789", + "_id": "6808bae4364a85cccb04b9ec", "_tpl": "61702f1b67085e45ef140b26", - "parentId": "677536bfb06e57fd5c0e0786", + "parentId": "6808bae4364a85cccb04b9e9", "slotId": "mod_gas_block" }, { - "_id": "677536bfb06e57fd5c0e078a", + "_id": "6808bae4364a85cccb04b9ed", "_tpl": "61703001d92c473c77021497", - "parentId": "677536bfb06e57fd5c0e0781", + "parentId": "6808bae4364a85cccb04b9e4", "slotId": "mod_handguard" }, { - "_id": "677536bfb06e57fd5c0e078b", + "_id": "6808bae4364a85cccb04b9ee", "_tpl": "619386379fb0c665d5490dbe", - "parentId": "677536bfb06e57fd5c0e078a", + "parentId": "6808bae4364a85cccb04b9ed", "slotId": "mod_foregrip" }, { - "_id": "677536bfb06e57fd5c0e078c", + "_id": "6808bae4364a85cccb04b9ef", "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "677536bfb06e57fd5c0e0781", + "parentId": "6808bae4364a85cccb04b9e4", "slotId": "mod_sight_rear" }, { - "_id": "677536bfb06e57fd5c0e078d", + "_id": "6808bae4364a85cccb04b9f0", "_tpl": "61702d8a67085e45ef140b24", - "parentId": "677536bfb06e57fd5c0e077b", + "parentId": "6808bae4364a85cccb04b9de", "slotId": "mod_charge" }, { - "_id": "677536bfb06e57fd5c0e079b", - "_tpl": "5e4abfed86f77406a2713cf7", + "_id": "6808bae4364a85cccb04b9fe", + "_tpl": "59fb023c86f7746d0d4b423c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba00", + "_tpl": "5580223e4bdc2d1c128b457f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba01", + "_tpl": "55d447bb4bdc2d892f8b456f", + "parentId": "6808bae4364a85cccb04ba00", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae4364a85cccb04ba02", + "_tpl": "611a31ce5b7ffe001b4649d1", + "parentId": "6808bae4364a85cccb04ba00", + "slotId": "mod_stock" + }, + { + "_id": "6808bae4364a85cccb04ba05", + "_tpl": "5f63405df5750b524b45f114", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba08", + "_tpl": "607d5aa50494a626335e12ed", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba0c", + "_tpl": "6034cf5fffd42c541047f72e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba0f", + "_tpl": "5fc23636016cce60e8341b05", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3858,7 +3065,367 @@ } }, { - "_id": "677536c0b06e57fd5c0e079e", + "_id": "6808bae4364a85cccb04ba13", + "_tpl": "60785ce5132d4d12c81fd918", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba16", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 80, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba1a", + "_tpl": "5b6d9ce188a4501afc1b2b25", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba1d", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba21", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba24", + "_tpl": "5c093e3486f77430cb02e593", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba27", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba2a", + "_tpl": "609b9e31506cf869cf3eaf41", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba2d", + "_tpl": "606dae0ab0e443224b421bb7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba2e", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "6808bae4364a85cccb04ba2d", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae4364a85cccb04ba2f", + "_tpl": "607d5aa50494a626335e12ed", + "parentId": "6808bae4364a85cccb04ba2d", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae4364a85cccb04ba30", + "_tpl": "6076c87f232e5a31c233d50e", + "parentId": "6808bae4364a85cccb04ba2d", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae4364a85cccb04ba31", + "_tpl": "607d5a891246154cad35d6aa", + "parentId": "6808bae4364a85cccb04ba2d", + "slotId": "mod_stock" + }, + { + "_id": "6808bae4364a85cccb04ba35", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba38", + "_tpl": "606ee5c81246154cad35d65e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba3c", + "_tpl": "6171407e50224f204c1da3c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba3f", + "_tpl": "61715e7e67085e45ef140b33", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba42", + "_tpl": "61714eec290d254f5e6b2ffc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba45", + "_tpl": "617130016c780c1e710c9a24", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba49", + "_tpl": "62330c40bdd19b369e1e53d1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae4364a85cccb04ba4d", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba50", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba52", + "_tpl": "5fc22d7c187fea44d52eda44", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba53", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "6808bae5364a85cccb04ba52", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bae5364a85cccb04ba54", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "6808bae5364a85cccb04ba52", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae5364a85cccb04ba55", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6808bae5364a85cccb04ba52", + "slotId": "mod_stock_001" + }, + { + "_id": "6808bae5364a85cccb04ba56", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "6808bae5364a85cccb04ba55", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bae5364a85cccb04ba57", + "_tpl": "5fc278107283c4046c581489", + "parentId": "6808bae5364a85cccb04ba52", + "slotId": "mod_reciever" + }, + { + "_id": "6808bae5364a85cccb04ba58", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "6808bae5364a85cccb04ba57", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae5364a85cccb04ba59", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "6808bae5364a85cccb04ba58", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae5364a85cccb04ba5a", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "6808bae5364a85cccb04ba58", + "slotId": "mod_gas_block" + }, + { + "_id": "6808bae5364a85cccb04ba5b", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "6808bae5364a85cccb04ba57", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae5364a85cccb04ba62", + "_tpl": "606f2696f2cb2e02a42aceb1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba65", + "_tpl": "611a30addbdd8440277441dc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba68", + "_tpl": "606ef0812535c57a13424d20", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba6b", + "_tpl": "5780cf7f2459777de4559322", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba6e", "_tpl": "6076c87f232e5a31c233d50e", "parentId": "hideout", "slotId": "hideout", @@ -3870,7 +3437,368 @@ } }, { - "_id": "677536c0b06e57fd5c0e07a1", + "_id": "6808bae5364a85cccb04ba71", + "_tpl": "606f26752535c57a13424d22", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba75", + "_tpl": "61605e13ffa6e502ac5e7eef", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba78", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6808bae5364a85cccb04ba79", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "6808bae5364a85cccb04ba78", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae5364a85cccb04ba7a", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6808bae5364a85cccb04ba78", + "slotId": "mod_stock" + }, + { + "_id": "6808bae5364a85cccb04ba7b", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6808bae5364a85cccb04ba78", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae5364a85cccb04ba7c", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "6808bae5364a85cccb04ba7b", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae5364a85cccb04ba7f", + "_tpl": "606eef46232e5a31c233d500", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba83", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba87", + "_tpl": "607d5a891246154cad35d6aa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba8a", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba8d", + "_tpl": "60785c0d232e5a31c233d51c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba91", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1000, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba95", + "_tpl": "5c0d591486f7744c505b416f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 50, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba99", + "_tpl": "5e4abfed86f77406a2713cf7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04ba9c", + "_tpl": "5f4f9eb969cdc30ff33f09db", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04baa0", + "_tpl": "606eef756d0bd7580617baf8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04baa3", + "_tpl": "62330bfadc5883093563729b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 120, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae5364a85cccb04baa7", + "_tpl": "5ad5cfbd86f7742c825d6104", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baaa", + "_tpl": "609bab8b455afd752b2e6138", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baac", + "_tpl": "60db29ce99594040e04c4a27", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baad", + "_tpl": "60dc519adf4c47305f6d410d", + "parentId": "6808bae6364a85cccb04baac", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae6364a85cccb04baae", + "_tpl": "612368f58b401f4f51239b33", + "parentId": "6808bae6364a85cccb04baac", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae6364a85cccb04baaf", + "_tpl": "619d36da53b4d42ee724fae4", + "parentId": "6808bae6364a85cccb04baae", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae6364a85cccb04bab0", + "_tpl": "612781056f3d944a17348d60", + "parentId": "6808bae6364a85cccb04baac", + "slotId": "mod_stock" + }, + { + "_id": "6808bae6364a85cccb04bab1", + "_tpl": "6123649463849f3d843da7c4", + "parentId": "6808bae6364a85cccb04baac", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae6364a85cccb04bab8", + "_tpl": "617155ee50224f204c1da3cd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04babb", + "_tpl": "6113d6c3290d254f5e6b27db", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04babf", + "_tpl": "617153016c780c1e710c9a2f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bac2", + "_tpl": "61713cc4d8e3106d9806c109", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bac5", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 70, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bac9", + "_tpl": "5ad7247386f7747487619dc3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bacc", + "_tpl": "606f263a8900dc2d9a55b68d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bacf", + "_tpl": "57c69dd424597774c03b7bbc", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bad2", "_tpl": "607ea812232e5a31c233d53c", "parentId": "hideout", "slotId": "hideout", @@ -3882,8 +3810,8 @@ } }, { - "_id": "677536c0b06e57fd5c0e07a4", - "_tpl": "606f262c6d0bd7580617bafa", + "_id": "6808bae6364a85cccb04bad5", + "_tpl": "5580169d4bdc2d9d138b4585", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3894,7 +3822,91 @@ } }, { - "_id": "677536c0b06e57fd5c0e07a7", + "_id": "6808bae6364a85cccb04bad8", + "_tpl": "590c657e86f77412b013051d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04badb", + "_tpl": "5913915886f774123603c392", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bade", + "_tpl": "611a31ce5b7ffe001b4649d1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bae1", + "_tpl": "55d447bb4bdc2d892f8b456f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bae4", + "_tpl": "5d02797c86f774203f38e30a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04bae7", + "_tpl": "609a4b4fe2ff132951242d04", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baea", + "_tpl": "5e2af55f86f7746d4159f07c", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baed", "_tpl": "6197b229af1f5202c57a9bea", "parentId": "hideout", "slotId": "hideout", @@ -3906,7 +3918,31 @@ } }, { - "_id": "677536c0b06e57fd5c0e07a9", + "_id": "6808bae6364a85cccb04baf0", + "_tpl": "5a1eacb3fcdbcb09800872be", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baf4", + "_tpl": "606f262c6d0bd7580617bafa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae6364a85cccb04baf6", "_tpl": "61a4c8884f95bc3b2c5dc96f", "parentId": "hideout", "slotId": "hideout", @@ -3921,32 +3957,56 @@ } }, { - "_id": "677536c0b06e57fd5c0e07aa", + "_id": "6808bae6364a85cccb04baf7", "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "677536c0b06e57fd5c0e07a9", + "parentId": "6808bae6364a85cccb04baf6", "slotId": "mod_magazine" }, { - "_id": "677536c0b06e57fd5c0e07ab", + "_id": "6808bae6364a85cccb04baf8", "_tpl": "619f4cee4c58466fe1228435", - "parentId": "677536c0b06e57fd5c0e07a9", + "parentId": "6808bae6364a85cccb04baf6", "slotId": "mod_sight_rear" }, { - "_id": "677536c0b06e57fd5c0e07ac", + "_id": "6808bae6364a85cccb04baf9", "_tpl": "619f4d304c58466fe1228437", - "parentId": "677536c0b06e57fd5c0e07a9", + "parentId": "6808bae6364a85cccb04baf6", "slotId": "mod_sight_front" }, { - "_id": "677536c0b06e57fd5c0e07ad", + "_id": "6808bae6364a85cccb04bafa", "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "677536c0b06e57fd5c0e07a9", + "parentId": "6808bae6364a85cccb04baf6", "slotId": "mod_pistol_grip" }, { - "_id": "677536c0b06e57fd5c0e07b3", - "_tpl": "618ba27d9008e4636a67f61d", + "_id": "6808bae6364a85cccb04bb00", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb03", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb07", + "_tpl": "63fc44e2429a8a166c7f61e6", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3957,8 +4017,8 @@ } }, { - "_id": "677536c0b06e57fd5c0e07b6", - "_tpl": "61715e7e67085e45ef140b33", + "_id": "6808bae7364a85cccb04bb0a", + "_tpl": "628120dd308cb521f87a8fa1", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3969,8 +4029,8 @@ } }, { - "_id": "677536c0b06e57fd5c0e07b9", - "_tpl": "61702be9faa1272e431522c3", + "_id": "6808bae7364a85cccb04bb0d", + "_tpl": "628120d309427b40ab14e76d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -3981,184 +4041,7 @@ } }, { - "_id": "677536c0b06e57fd5c0e07bc", - "_tpl": "625eb0faa6e3a82193267ad9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07bf", - "_tpl": "6259c3387d6aab70bc23a18d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07c2", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07c5", - "_tpl": "62389be94d5d474bf712e709", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07c9", - "_tpl": "62389aaba63f32501b1b444f", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07cc", - "_tpl": "6259bdcabd28e4721447a2aa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07cf", - "_tpl": "61f7c9e189e6fb1a5e3ea78d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07d0", - "_tpl": "61f4012adfc9f01a816adda1", - "parentId": "677536c0b06e57fd5c0e07cf", - "slotId": "mod_barrel" - }, - { - "_id": "677536c0b06e57fd5c0e07d1", - "_tpl": "61f7b85367ddd414173fdb36", - "parentId": "677536c0b06e57fd5c0e07d0", - "slotId": "mod_handguard" - }, - { - "_id": "677536c0b06e57fd5c0e07d2", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "677536c0b06e57fd5c0e07cf", - "slotId": "mod_stock" - }, - { - "_id": "677536c0b06e57fd5c0e07d6", - "_tpl": "61f8024263dc1250e26eb029", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07da", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07dd", - "_tpl": "625ec45bb14d7326ac20f572", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07e1", - "_tpl": "6388c4478d895f557a0c6512", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c0b06e57fd5c0e07e4", - "_tpl": "63920105a83e15700a00f168", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e07e7", - "_tpl": "6415c694da439c6a97048b56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e07eb", + "_id": "6808bae7364a85cccb04bb10", "_tpl": "6281212a09427b40ab14e770", "parentId": "hideout", "slotId": "hideout", @@ -4170,8 +4053,44 @@ } }, { - "_id": "677536c1b06e57fd5c0e07ef", - "_tpl": "625ff3046d721f05d93bf2ee", + "_id": "6808bae7364a85cccb04bb13", + "_tpl": "54491c4f4bdc2db1078b4568", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb14", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "6808bae7364a85cccb04bb13", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae7364a85cccb04bb15", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "6808bae7364a85cccb04bb13", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae7364a85cccb04bb16", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "6808bae7364a85cccb04bb13", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae7364a85cccb04bb17", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "6808bae7364a85cccb04bb13", + "slotId": "mod_stock" + }, + { + "_id": "6808bae7364a85cccb04bb1a", + "_tpl": "61f7b234ea4ab34f2f59c3ec", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4182,8 +4101,8 @@ } }, { - "_id": "677536c1b06e57fd5c0e07f3", - "_tpl": "61f7b85367ddd414173fdb36", + "_id": "6808bae7364a85cccb04bb1d", + "_tpl": "653ecef836fae5a82f02b869", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4194,8 +4113,8 @@ } }, { - "_id": "677536c1b06e57fd5c0e07f6", - "_tpl": "620109578d82e67e7911abf2", + "_id": "6808bae7364a85cccb04bb20", + "_tpl": "6478641c19d732620e045e17", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4206,7 +4125,423 @@ } }, { - "_id": "677536c1b06e57fd5c0e07f8", + "_id": "6808bae7364a85cccb04bb23", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb26", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb29", + "_tpl": "63920105a83e15700a00f168", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb2c", + "_tpl": "628121434fa03b6b6c35dc6a", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb2f", + "_tpl": "653ecc425a1690d9d90491e4", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb33", + "_tpl": "6217726288ed9f0845317459", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb37", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb3a", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb3e", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 6, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb42", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb46", + "_tpl": "62811e2510e26c1f344e6554", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb49", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb4d", + "_tpl": "62389be94d5d474bf712e709", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb51", + "_tpl": "6281209662cba23f6c4d7a19", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae7364a85cccb04bb55", + "_tpl": "6415c694da439c6a97048b56", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb59", + "_tpl": "62850c28da09541f43158cca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb5c", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb5e", + "_tpl": "55801eed4bdc2d89578b4588", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb5f", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6808bae8364a85cccb04bb5e", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae8364a85cccb04bb60", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "6808bae8364a85cccb04bb5e", + "slotId": "mod_sight_rear" + }, + { + "_id": "6808bae8364a85cccb04bb61", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "6808bae8364a85cccb04bb5e", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae8364a85cccb04bb62", + "_tpl": "623b2e9d11c3296b440d1638", + "parentId": "6808bae8364a85cccb04bb5e", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6808bae8364a85cccb04bb63", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "6808bae8364a85cccb04bb62", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae8364a85cccb04bb64", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "6808bae8364a85cccb04bb63", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bae8364a85cccb04bb65", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "6808bae8364a85cccb04bb63", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bae8364a85cccb04bb66", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "6808bae8364a85cccb04bb63", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bae8364a85cccb04bb67", + "_tpl": "623c3be0484b5003161840dc", + "parentId": "6808bae8364a85cccb04bb62", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6808bae8364a85cccb04bb68", + "_tpl": "624c29ce09cd027dff2f8cd7", + "parentId": "6808bae8364a85cccb04bb62", + "slotId": "mod_stock_000" + }, + { + "_id": "6808bae8364a85cccb04bb6f", + "_tpl": "6388c4ac8d895f557a0c6515", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb72", + "_tpl": "63fc4533b10b17385349b565", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb76", + "_tpl": "6388c4478d895f557a0c6512", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb79", + "_tpl": "62812081d23f207deb0ab216", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb7d", + "_tpl": "62811f828193841aca4a45c3", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb80", + "_tpl": "6388c5d19c00405f4717c0f0", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb83", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb86", + "_tpl": "63fc44e2429a8a166c7f61e6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb89", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb8c", + "_tpl": "62811f461d5df4475f46a332", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb8f", + "_tpl": "62811cd7308cb521f87a8f99", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bb92", "_tpl": "64748cb8de82c85eaf0a273a", "parentId": "hideout", "slotId": "hideout", @@ -4222,371 +4557,13 @@ } }, { - "_id": "677536c1b06e57fd5c0e07f9", + "_id": "6808bae8364a85cccb04bb93", "_tpl": "64748d02d1c009260702b526", - "parentId": "677536c1b06e57fd5c0e07f8", + "parentId": "6808bae8364a85cccb04bb92", "slotId": "mod_barrel" }, { - "_id": "677536c1b06e57fd5c0e07fc", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e07ff", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0802", - "_tpl": "627e14b21713922ded6f2c15", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0803", - "_tpl": "628120fd5631d45211793c9f", - "parentId": "677536c1b06e57fd5c0e0802", - "slotId": "mod_magazine" - }, - { - "_id": "677536c1b06e57fd5c0e0804", - "_tpl": "62811e2510e26c1f344e6554", - "parentId": "677536c1b06e57fd5c0e0802", - "slotId": "mod_pistol_grip", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "677536c1b06e57fd5c0e0805", - "_tpl": "62811f828193841aca4a45c3", - "parentId": "677536c1b06e57fd5c0e0804", - "slotId": "mod_stock" - }, - { - "_id": "677536c1b06e57fd5c0e0806", - "_tpl": "6281204f308cb521f87a8f9b", - "parentId": "677536c1b06e57fd5c0e0804", - "slotId": "mod_reciever" - }, - { - "_id": "677536c1b06e57fd5c0e0807", - "_tpl": "6281209662cba23f6c4d7a19", - "parentId": "677536c1b06e57fd5c0e0806", - "slotId": "mod_handguard" - }, - { - "_id": "677536c1b06e57fd5c0e0808", - "_tpl": "628120c21d5df4475f46a337", - "parentId": "677536c1b06e57fd5c0e0807", - "slotId": "mod_mount_000" - }, - { - "_id": "677536c1b06e57fd5c0e0809", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "677536c1b06e57fd5c0e0807", - "slotId": "mod_mount_001" - }, - { - "_id": "677536c1b06e57fd5c0e080a", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "677536c1b06e57fd5c0e0807", - "slotId": "mod_mount_002" - }, - { - "_id": "677536c1b06e57fd5c0e080b", - "_tpl": "628120dd308cb521f87a8fa1", - "parentId": "677536c1b06e57fd5c0e0807", - "slotId": "mod_mount_003" - }, - { - "_id": "677536c1b06e57fd5c0e080c", - "_tpl": "6281212a09427b40ab14e770", - "parentId": "677536c1b06e57fd5c0e0806", - "slotId": "mod_foregrip" - }, - { - "_id": "677536c1b06e57fd5c0e080d", - "_tpl": "62811fbf09427b40ab14e767", - "parentId": "677536c1b06e57fd5c0e0806", - "slotId": "mod_reciever" - }, - { - "_id": "677536c1b06e57fd5c0e080e", - "_tpl": "628121434fa03b6b6c35dc6a", - "parentId": "677536c1b06e57fd5c0e080d", - "slotId": "mod_barrel" - }, - { - "_id": "677536c1b06e57fd5c0e080f", - "_tpl": "62812081d23f207deb0ab216", - "parentId": "677536c1b06e57fd5c0e080e", - "slotId": "mod_muzzle" - }, - { - "_id": "677536c1b06e57fd5c0e0810", - "_tpl": "628120621d5df4475f46a335", - "parentId": "677536c1b06e57fd5c0e080f", - "slotId": "mod_muzzle" - }, - { - "_id": "677536c1b06e57fd5c0e0811", - "_tpl": "62811cd7308cb521f87a8f99", - "parentId": "677536c1b06e57fd5c0e0802", - "slotId": "mod_charge" - }, - { - "_id": "677536c1b06e57fd5c0e081b", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e081e", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0821", - "_tpl": "624c29ce09cd027dff2f8cd7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0823", - "_tpl": "55801eed4bdc2d89578b4588", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0824", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "677536c1b06e57fd5c0e0823", - "slotId": "mod_magazine" - }, - { - "_id": "677536c1b06e57fd5c0e0825", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "677536c1b06e57fd5c0e0823", - "slotId": "mod_sight_rear" - }, - { - "_id": "677536c1b06e57fd5c0e0826", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "677536c1b06e57fd5c0e0823", - "slotId": "mod_muzzle" - }, - { - "_id": "677536c1b06e57fd5c0e0827", - "_tpl": "623b2e9d11c3296b440d1638", - "parentId": "677536c1b06e57fd5c0e0823", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "677536c1b06e57fd5c0e0828", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "677536c1b06e57fd5c0e0827", - "slotId": "mod_handguard" - }, - { - "_id": "677536c1b06e57fd5c0e0829", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "677536c1b06e57fd5c0e0828", - "slotId": "mod_mount_000" - }, - { - "_id": "677536c1b06e57fd5c0e082a", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "677536c1b06e57fd5c0e0828", - "slotId": "mod_mount_001" - }, - { - "_id": "677536c1b06e57fd5c0e082b", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "677536c1b06e57fd5c0e0828", - "slotId": "mod_mount_002" - }, - { - "_id": "677536c1b06e57fd5c0e082c", - "_tpl": "623c3be0484b5003161840dc", - "parentId": "677536c1b06e57fd5c0e0827", - "slotId": "mod_pistol_grip" - }, - { - "_id": "677536c1b06e57fd5c0e082d", - "_tpl": "624c29ce09cd027dff2f8cd7", - "parentId": "677536c1b06e57fd5c0e0827", - "slotId": "mod_stock_000" - }, - { - "_id": "677536c1b06e57fd5c0e0834", - "_tpl": "6576f96220d53a5b8f3e395e", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e0838", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e083b", - "_tpl": "62811e2510e26c1f344e6554", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c1b06e57fd5c0e083e", - "_tpl": "6217726288ed9f0845317459", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0842", - "_tpl": "628120c21d5df4475f46a337", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0845", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0848", - "_tpl": "623b2e9d11c3296b440d1638", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e084b", - "_tpl": "625ebcef6f53af4aa66b44dc", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e084f", - "_tpl": "6259c2c1d714855d182bad85", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0852", + "_id": "6808bae8364a85cccb04bb96", "_tpl": "625ff31daaaa8c1130599f64", "parentId": "hideout", "slotId": "hideout", @@ -4598,8 +4575,8 @@ } }, { - "_id": "677536c2b06e57fd5c0e0856", - "_tpl": "61f4012adfc9f01a816adda1", + "_id": "6808bae8364a85cccb04bb9a", + "_tpl": "6259c3387d6aab70bc23a18d", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4610,8 +4587,8 @@ } }, { - "_id": "677536c2b06e57fd5c0e0859", - "_tpl": "6259c3d8012d6678ec38eeb8", + "_id": "6808bae8364a85cccb04bb9d", + "_tpl": "628120621d5df4475f46a335", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4622,44 +4599,8 @@ } }, { - "_id": "677536c2b06e57fd5c0e085d", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0860", - "_tpl": "64b8f7c241772715af0f9c3d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1000, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0864", - "_tpl": "63fc449f5bd61c6cf3784a88", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0867", - "_tpl": "6478641c19d732620e045e17", + "_id": "6808bae8364a85cccb04bba1", + "_tpl": "620109578d82e67e7911abf2", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -4670,19 +4611,67 @@ } }, { - "_id": "677536c2b06e57fd5c0e086a", - "_tpl": "6281209662cba23f6c4d7a19", + "_id": "6808bae8364a85cccb04bba4", + "_tpl": "61f803b8ced75b2e852e35f8", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c2b06e57fd5c0e086c", + "_id": "6808bae8364a85cccb04bba7", + "_tpl": "625eb0faa6e3a82193267ad9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bbaa", + "_tpl": "6576f96220d53a5b8f3e395e", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 300, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae8364a85cccb04bbae", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbb1", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbb3", "_tpl": "6259b864ebedf17603599e88", "parentId": "hideout", "slotId": "hideout", @@ -4697,27 +4686,27 @@ } }, { - "_id": "677536c2b06e57fd5c0e086d", + "_id": "6808bae9364a85cccb04bbb4", "_tpl": "6259c2c1d714855d182bad85", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_barrel" }, { - "_id": "677536c2b06e57fd5c0e086e", + "_id": "6808bae9364a85cccb04bbb5", "_tpl": "6259c4347d6aab70bc23a190", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_handguard" }, { - "_id": "677536c2b06e57fd5c0e086f", + "_id": "6808bae9364a85cccb04bbb6", "_tpl": "625ff2ccb8c587128c1a01dd", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_magazine" }, { - "_id": "677536c2b06e57fd5c0e0870", + "_id": "6808bae9364a85cccb04bbb7", "_tpl": "6259c3387d6aab70bc23a18d", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_stock", "upd": { "Foldable": { @@ -4726,119 +4715,38 @@ } }, { - "_id": "677536c2b06e57fd5c0e0871", + "_id": "6808bae9364a85cccb04bbb8", "_tpl": "6259c3d8012d6678ec38eeb8", - "parentId": "677536c2b06e57fd5c0e0870", + "parentId": "6808bae9364a85cccb04bbb7", "slotId": "mod_pistol_grip" }, { - "_id": "677536c2b06e57fd5c0e0872", + "_id": "6808bae9364a85cccb04bbb9", "_tpl": "625ed7c64d9b6612df732146", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_mount" }, { - "_id": "677536c2b06e57fd5c0e0873", + "_id": "6808bae9364a85cccb04bbba", "_tpl": "625ebcef6f53af4aa66b44dc", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_sight_rear" }, { - "_id": "677536c2b06e57fd5c0e0874", + "_id": "6808bae9364a85cccb04bbbb", "_tpl": "625ec45bb14d7326ac20f572", - "parentId": "677536c2b06e57fd5c0e086c", + "parentId": "6808bae9364a85cccb04bbb3", "slotId": "mod_charge" }, { - "_id": "677536c2b06e57fd5c0e0879", - "_tpl": "625ff2eb9f5537057932257d", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e087d", - "_tpl": "61f804acfcba9556ea304cb8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0880", - "_tpl": "6388c4ac8d895f557a0c6515", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0883", - "_tpl": "63fc4533b10b17385349b565", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c2b06e57fd5c0e0887", - "_tpl": "653ecc425a1690d9d90491e4", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e088b", - "_tpl": "61f803b8ced75b2e852e35f8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e088e", - "_tpl": "628120621d5df4475f46a335", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e0891", - "_tpl": "62850c28da09541f43158cca", + "_id": "6808bae9364a85cccb04bbbf", + "_tpl": "627e14b21713922ded6f2c15", "parentId": "hideout", "slotId": "hideout", "upd": { + "FireMode": { + "FireMode": "single" + }, "UnlimitedCount": true, "StackObjectsCount": 9999999, "BuyRestrictionMax": 1, @@ -4846,199 +4754,126 @@ } }, { - "_id": "677536c3b06e57fd5c0e0894", - "_tpl": "62812081d23f207deb0ab216", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e0897", - "_tpl": "62811f461d5df4475f46a332", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e089a", - "_tpl": "626a8ae89e664a2e2a75f409", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e089d", - "_tpl": "5d80cb8786f774405611c7d9", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08a0", - "_tpl": "62811cd7308cb521f87a8f99", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08a3", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08a6", - "_tpl": "62811f828193841aca4a45c3", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08a9", - "_tpl": "628121434fa03b6b6c35dc6a", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08ac", - "_tpl": "625ed7c64d9b6612df732146", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08af", - "_tpl": "6388c5d19c00405f4717c0f0", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08b2", - "_tpl": "63fc44e2429a8a166c7f61e6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c3b06e57fd5c0e08b5", + "_id": "6808bae9364a85cccb04bbc0", "_tpl": "628120fd5631d45211793c9f", - "parentId": "hideout", - "slotId": "hideout", + "parentId": "6808bae9364a85cccb04bbbf", + "slotId": "mod_magazine" + }, + { + "_id": "6808bae9364a85cccb04bbc1", + "_tpl": "62811e2510e26c1f344e6554", + "parentId": "6808bae9364a85cccb04bbbf", + "slotId": "mod_pistol_grip", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + } } }, { - "_id": "677536c3b06e57fd5c0e08b8", - "_tpl": "625ff2ccb8c587128c1a01dd", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bae9364a85cccb04bbc2", + "_tpl": "62811f828193841aca4a45c3", + "parentId": "6808bae9364a85cccb04bbc1", + "slotId": "mod_stock" }, { - "_id": "677536c3b06e57fd5c0e08bb", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bae9364a85cccb04bbc3", + "_tpl": "6281204f308cb521f87a8f9b", + "parentId": "6808bae9364a85cccb04bbc1", + "slotId": "mod_reciever" }, { - "_id": "677536c3b06e57fd5c0e08be", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } + "_id": "6808bae9364a85cccb04bbc4", + "_tpl": "6281209662cba23f6c4d7a19", + "parentId": "6808bae9364a85cccb04bbc3", + "slotId": "mod_handguard" }, { - "_id": "677536c3b06e57fd5c0e08c1", + "_id": "6808bae9364a85cccb04bbc5", + "_tpl": "628120c21d5df4475f46a337", + "parentId": "6808bae9364a85cccb04bbc4", + "slotId": "mod_mount_000" + }, + { + "_id": "6808bae9364a85cccb04bbc6", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6808bae9364a85cccb04bbc4", + "slotId": "mod_mount_001" + }, + { + "_id": "6808bae9364a85cccb04bbc7", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6808bae9364a85cccb04bbc4", + "slotId": "mod_mount_002" + }, + { + "_id": "6808bae9364a85cccb04bbc8", "_tpl": "628120dd308cb521f87a8fa1", + "parentId": "6808bae9364a85cccb04bbc4", + "slotId": "mod_mount_003" + }, + { + "_id": "6808bae9364a85cccb04bbc9", + "_tpl": "6281212a09427b40ab14e770", + "parentId": "6808bae9364a85cccb04bbc3", + "slotId": "mod_foregrip" + }, + { + "_id": "6808bae9364a85cccb04bbca", + "_tpl": "62811fbf09427b40ab14e767", + "parentId": "6808bae9364a85cccb04bbc3", + "slotId": "mod_reciever" + }, + { + "_id": "6808bae9364a85cccb04bbcb", + "_tpl": "628121434fa03b6b6c35dc6a", + "parentId": "6808bae9364a85cccb04bbca", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae9364a85cccb04bbcc", + "_tpl": "62812081d23f207deb0ab216", + "parentId": "6808bae9364a85cccb04bbcb", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae9364a85cccb04bbcd", + "_tpl": "628120621d5df4475f46a335", + "parentId": "6808bae9364a85cccb04bbcc", + "slotId": "mod_muzzle" + }, + { + "_id": "6808bae9364a85cccb04bbce", + "_tpl": "62811cd7308cb521f87a8f99", + "parentId": "6808bae9364a85cccb04bbbf", + "slotId": "mod_charge" + }, + { + "_id": "6808bae9364a85cccb04bbd3", + "_tpl": "625ebcef6f53af4aa66b44dc", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c3b06e57fd5c0e08c4", + "_id": "6808bae9364a85cccb04bbd6", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbd9", "_tpl": "63888bbd28e5cc32cc09d2b6", "parentId": "hideout", "slotId": "hideout", @@ -5050,44 +4885,44 @@ } }, { - "_id": "677536c4b06e57fd5c0e08c7", - "_tpl": "54491c4f4bdc2db1078b4568", + "_id": "6808bae9364a85cccb04bbdd", + "_tpl": "64b8f7c241772715af0f9c3d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 2, + "BuyRestrictionMax": 1000, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c4b06e57fd5c0e08c8", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "677536c4b06e57fd5c0e08c7", - "slotId": "mod_barrel" + "_id": "6808bae9364a85cccb04bbe1", + "_tpl": "625ff3046d721f05d93bf2ee", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "677536c4b06e57fd5c0e08c9", - "_tpl": "55d45d3f4bdc2d972f8b456c", - "parentId": "677536c4b06e57fd5c0e08c7", - "slotId": "mod_handguard" + "_id": "6808bae9364a85cccb04bbe5", + "_tpl": "6259bdcabd28e4721447a2aa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } }, { - "_id": "677536c4b06e57fd5c0e08ca", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "677536c4b06e57fd5c0e08c7", - "slotId": "mod_magazine" - }, - { - "_id": "677536c4b06e57fd5c0e08cb", - "_tpl": "56083cba4bdc2de22e8b456f", - "parentId": "677536c4b06e57fd5c0e08c7", - "slotId": "mod_stock" - }, - { - "_id": "677536c4b06e57fd5c0e08ce", - "_tpl": "63fc44e2429a8a166c7f61e6", + "_id": "6808bae9364a85cccb04bbe9", + "_tpl": "62389aaba63f32501b1b444f", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5098,20 +4933,8 @@ } }, { - "_id": "677536c4b06e57fd5c0e08d1", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08d4", - "_tpl": "6281204f308cb521f87a8f9b", + "_id": "6808bae9364a85cccb04bbec", + "_tpl": "624c29ce09cd027dff2f8cd7", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5122,43 +4945,7 @@ } }, { - "_id": "677536c4b06e57fd5c0e08d7", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08da", - "_tpl": "6259c4347d6aab70bc23a190", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08dd", - "_tpl": "653ecef836fae5a82f02b869", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08e0", + "_id": "6808bae9364a85cccb04bbef", "_tpl": "62811fbf09427b40ab14e767", "parentId": "hideout", "slotId": "hideout", @@ -5170,7 +4957,184 @@ } }, { - "_id": "677536c4b06e57fd5c0e08e3", + "_id": "6808bae9364a85cccb04bbf2", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbf5", + "_tpl": "61f7b85367ddd414173fdb36", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbf8", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bbf9", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "6808bae9364a85cccb04bbf8", + "slotId": "mod_barrel" + }, + { + "_id": "6808bae9364a85cccb04bbfa", + "_tpl": "61f7b85367ddd414173fdb36", + "parentId": "6808bae9364a85cccb04bbf9", + "slotId": "mod_handguard" + }, + { + "_id": "6808bae9364a85cccb04bbfb", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "parentId": "6808bae9364a85cccb04bbf8", + "slotId": "mod_stock" + }, + { + "_id": "6808bae9364a85cccb04bbfe", + "_tpl": "6281204f308cb521f87a8f9b", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc01", + "_tpl": "628120c21d5df4475f46a337", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc04", + "_tpl": "61f804acfcba9556ea304cb8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc07", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc0a", + "_tpl": "61f8024263dc1250e26eb029", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc0e", + "_tpl": "63fc449f5bd61c6cf3784a88", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc11", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 2, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc14", + "_tpl": "5d80cb8786f774405611c7d9", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 1, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808bae9364a85cccb04bc17", + "_tpl": "626a8ae89e664a2e2a75f409", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc1a", + "_tpl": "623b2e9d11c3296b440d1638", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc1d", "_tpl": "576167ab2459773cad038c43", "parentId": "hideout", "slotId": "hideout", @@ -5182,19 +5146,43 @@ } }, { - "_id": "677536c4b06e57fd5c0e08e6", - "_tpl": "5a1eacb3fcdbcb09800872be", + "_id": "6808baea364a85cccb04bc20", + "_tpl": "625ff2eb9f5537057932257d", "parentId": "hideout", "slotId": "hideout", "upd": { "UnlimitedCount": true, "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, + "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0 } }, { - "_id": "677536c4b06e57fd5c0e08e8", + "_id": "6808baea364a85cccb04bc24", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc27", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc29", "_tpl": "669fa409933e898cce0c2166", "parentId": "hideout", "slotId": "hideout", @@ -5210,204 +5198,43 @@ } }, { - "_id": "677536c4b06e57fd5c0e08e9", + "_id": "6808baea364a85cccb04bc2a", "_tpl": "669fa4c61bd4416eaa09b3ca", - "parentId": "677536c4b06e57fd5c0e08e8", + "parentId": "6808baea364a85cccb04bc29", "slotId": "mod_barrel" }, { - "_id": "677536c4b06e57fd5c0e08ea", + "_id": "6808baea364a85cccb04bc2b", "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "677536c4b06e57fd5c0e08e9", + "parentId": "6808baea364a85cccb04bc2a", "slotId": "mod_sight_front" }, { - "_id": "677536c4b06e57fd5c0e08eb", + "_id": "6808baea364a85cccb04bc2c", "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "677536c4b06e57fd5c0e08e8", + "parentId": "6808baea364a85cccb04bc29", "slotId": "mod_pistolgrip" }, { - "_id": "677536c4b06e57fd5c0e08ec", + "_id": "6808baea364a85cccb04bc2d", "_tpl": "669fa5127a09bc295603b499", - "parentId": "677536c4b06e57fd5c0e08e8", + "parentId": "6808baea364a85cccb04bc29", "slotId": "mod_reciever" }, { - "_id": "677536c4b06e57fd5c0e08ed", + "_id": "6808baea364a85cccb04bc2e", "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "677536c4b06e57fd5c0e08ec", + "parentId": "6808baea364a85cccb04bc2d", "slotId": "mod_sight_rear" }, { - "_id": "677536c4b06e57fd5c0e08ee", + "_id": "6808baea364a85cccb04bc2f", "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "677536c4b06e57fd5c0e08e8", + "parentId": "6808baea364a85cccb04bc29", "slotId": "mod_magazine" }, { - "_id": "677536c4b06e57fd5c0e08f1", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08f5", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08f8", - "_tpl": "669fa4c61bd4416eaa09b3ca", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08fb", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 70, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e08ff", - "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e0902", - "_tpl": "666b11055a706400b717cfa5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e0906", - "_tpl": "6710cea62bb09af72f0e6bf8", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e0909", - "_tpl": "61f4012adfc9f01a816adda1", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e090e", - "_tpl": "67657773b83469e4f102dc27", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c4b06e57fd5c0e090f", - "_tpl": "660137ef76c1b56143052be8", - "parentId": "677536c4b06e57fd5c0e090e", - "slotId": "cartridges", - "location": 0, - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "677536c4b06e57fd5c0e0910", - "_tpl": "660137ef76c1b56143052be8", - "parentId": "677536c4b06e57fd5c0e090e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - }, - { - "_id": "677536c5b06e57fd5c0e0913", - "_tpl": "66a0d1f88486c69fce00fdf6", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e0917", - "_tpl": "62811e335631d45211793c95", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e091a", - "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e091e", + "_id": "6808baea364a85cccb04bc32", "_tpl": "669fa5019aa2a422600442f6", "parentId": "hideout", "slotId": "hideout", @@ -5419,8 +5246,8 @@ } }, { - "_id": "677536c5b06e57fd5c0e093c", - "_tpl": "5c5039be2e221602b177c9ff", + "_id": "6808baea364a85cccb04bc36", + "_tpl": "62811e335631d45211793c95", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5431,8 +5258,8 @@ } }, { - "_id": "677536c5b06e57fd5c0e093f", - "_tpl": "5de6556a205ddc616a6bc4f7", + "_id": "6808baea364a85cccb04bc39", + "_tpl": "61f7b234ea4ab34f2f59c3ec", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5443,19 +5270,7 @@ } }, { - "_id": "677536c5b06e57fd5c0e094f", - "_tpl": "671126a210d67adb5b08e925", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e0952", + "_id": "6808baea364a85cccb04bc49", "_tpl": "669fa5127a09bc295603b499", "parentId": "hideout", "slotId": "hideout", @@ -5467,8 +5282,8 @@ } }, { - "_id": "677536c5b06e57fd5c0e0956", - "_tpl": "669fa4ba1bd4416eaa09b3c6", + "_id": "6808baea364a85cccb04bc4d", + "_tpl": "61f7b234ea4ab34f2f59c3ec", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5479,8 +5294,8 @@ } }, { - "_id": "677536c5b06e57fd5c0e0959", - "_tpl": "65f064eec4da400cbb0dc1fe", + "_id": "6808baea364a85cccb04bc50", + "_tpl": "676175bb48fa5c377e06fc36", "parentId": "hideout", "slotId": "hideout", "upd": { @@ -5491,31 +5306,7 @@ } }, { - "_id": "677536c5b06e57fd5c0e095c", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e0960", - "_tpl": "671126b049e181972e0681fa", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c5b06e57fd5c0e0963", + "_id": "6808baea364a85cccb04bc53", "_tpl": "67112695fe5c8bf33f02476d", "parentId": "hideout", "slotId": "hideout", @@ -5527,7 +5318,62 @@ } }, { - "_id": "677536c5b06e57fd5c0e0966", + "_id": "6808baea364a85cccb04bc56", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc5c", + "_tpl": "67657764c832f8c59c016d45", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc5d", + "_tpl": "660137d8481cc6907a0c5cda", + "parentId": "6808baea364a85cccb04bc5c", + "slotId": "cartridges", + "location": 0, + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "6808baea364a85cccb04bc5e", + "_tpl": "660137d8481cc6907a0c5cda", + "parentId": "6808baea364a85cccb04bc5c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "6808baea364a85cccb04bc61", + "_tpl": "669fa435803b94fb5d0e3a76", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 20000, + "BuyRestrictionMax": 10, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baea364a85cccb04bc65", "_tpl": "6761759e7ee06333f108bf86", "parentId": "hideout", "slotId": "hideout", @@ -5539,7 +5385,19 @@ } }, { - "_id": "677536c5b06e57fd5c0e0969", + "_id": "6808baeb364a85cccb04bc68", + "_tpl": "65f064eec4da400cbb0dc1fe", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc6b", "_tpl": "65f05b9d39dab9e9ec049cfd", "parentId": "hideout", "slotId": "hideout", @@ -5551,7 +5409,77 @@ } }, { - "_id": "677536c5b06e57fd5c0e096c", + "_id": "6808baeb364a85cccb04bc7d", + "_tpl": "676175789dcee773150c6925", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc80", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 20000, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc84", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc87", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc8a", + "_tpl": "666b11055a706400b717cfa5", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 19900, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc8e", + "_tpl": "6710cea62bb09af72f0e6bf8", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bc90", "_tpl": "669fa3f88abd2662d80eee77", "parentId": "hideout", "slotId": "hideout", @@ -5567,134 +5495,43 @@ } }, { - "_id": "677536c5b06e57fd5c0e096d", + "_id": "6808baeb364a85cccb04bc91", "_tpl": "669fa4ba1bd4416eaa09b3c6", - "parentId": "677536c5b06e57fd5c0e096c", + "parentId": "6808baeb364a85cccb04bc90", "slotId": "mod_barrel" }, { - "_id": "677536c5b06e57fd5c0e096e", + "_id": "6808baeb364a85cccb04bc92", "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "677536c5b06e57fd5c0e096d", + "parentId": "6808baeb364a85cccb04bc91", "slotId": "mod_sight_front" }, { - "_id": "677536c5b06e57fd5c0e096f", + "_id": "6808baeb364a85cccb04bc93", "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "677536c5b06e57fd5c0e096c", + "parentId": "6808baeb364a85cccb04bc90", "slotId": "mod_pistolgrip" }, { - "_id": "677536c5b06e57fd5c0e0970", + "_id": "6808baeb364a85cccb04bc94", "_tpl": "669fa5019aa2a422600442f6", - "parentId": "677536c5b06e57fd5c0e096c", + "parentId": "6808baeb364a85cccb04bc90", "slotId": "mod_reciever" }, { - "_id": "677536c5b06e57fd5c0e0971", + "_id": "6808baeb364a85cccb04bc95", "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "677536c5b06e57fd5c0e0970", + "parentId": "6808baeb364a85cccb04bc94", "slotId": "mod_sight_rear" }, { - "_id": "677536c5b06e57fd5c0e0972", + "_id": "6808baeb364a85cccb04bc96", "_tpl": "668fe5c5f35310705d02b696", - "parentId": "677536c5b06e57fd5c0e096c", + "parentId": "6808baeb364a85cccb04bc90", "slotId": "mod_magazine" }, { - "_id": "677536c6b06e57fd5c0e0975", - "_tpl": "676175789dcee773150c6925", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e0978", - "_tpl": "66a0d1c87d0d369e270bb9de", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20000, - "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e097c", - "_tpl": "676177b09cfcc4c25b027446", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e097f", - "_tpl": "676175bb48fa5c377e06fc36", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e0984", - "_tpl": "67657764c832f8c59c016d45", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e0985", - "_tpl": "660137d8481cc6907a0c5cda", - "parentId": "677536c6b06e57fd5c0e0984", - "slotId": "cartridges", - "location": 0, - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "677536c6b06e57fd5c0e0986", - "_tpl": "660137d8481cc6907a0c5cda", - "parentId": "677536c6b06e57fd5c0e0984", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - }, - { - "_id": "677536c6b06e57fd5c0e0989", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "hideout", - "slotId": "hideout", - "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 9999999, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 - } - }, - { - "_id": "677536c6b06e57fd5c0e098e", + "_id": "6808baeb364a85cccb04bc9b", "_tpl": "676577166d874f6502106a21", "parentId": "hideout", "slotId": "hideout", @@ -5706,9 +5543,9 @@ } }, { - "_id": "677536c6b06e57fd5c0e098f", + "_id": "6808baeb364a85cccb04bc9c", "_tpl": "6601380580e77cfd080e3418", - "parentId": "677536c6b06e57fd5c0e098e", + "parentId": "6808baeb364a85cccb04bc9b", "slotId": "cartridges", "location": 0, "upd": { @@ -5716,15 +5553,178 @@ } }, { - "_id": "677536c6b06e57fd5c0e0990", + "_id": "6808baeb364a85cccb04bc9d", "_tpl": "6601380580e77cfd080e3418", - "parentId": "677536c6b06e57fd5c0e098e", + "parentId": "6808baeb364a85cccb04bc9b", "slotId": "cartridges", "location": 1, "upd": { "StackObjectsCount": 5 } }, + { + "_id": "6808baeb364a85cccb04bca0", + "_tpl": "671126b049e181972e0681fa", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bca3", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bca6", + "_tpl": "669fa4c61bd4416eaa09b3ca", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bca9", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 70, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcad", + "_tpl": "66a0d1f88486c69fce00fdf6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcb1", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcb4", + "_tpl": "676177b09cfcc4c25b027446", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcd3", + "_tpl": "67657773b83469e4f102dc27", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 4, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcd4", + "_tpl": "660137ef76c1b56143052be8", + "parentId": "6808baeb364a85cccb04bcd3", + "slotId": "cartridges", + "location": 0, + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "6808baeb364a85cccb04bcd5", + "_tpl": "660137ef76c1b56143052be8", + "parentId": "6808baeb364a85cccb04bcd3", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "6808baeb364a85cccb04bcd8", + "_tpl": "66a0d1c87d0d369e270bb9de", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 19500, + "BuyRestrictionMax": 150, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcdc", + "_tpl": "669fa4ba1bd4416eaa09b3c6", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bcdf", + "_tpl": "671126a210d67adb5b08e925", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 5, + "BuyRestrictionCurrent": 0 + } + }, + { + "_id": "6808baeb364a85cccb04bce2", + "_tpl": "5a1eacb3fcdbcb09800872be", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "UnlimitedCount": true, + "StackObjectsCount": 9999999, + "BuyRestrictionMax": 3, + "BuyRestrictionCurrent": 0 + } + }, { "_id": "6492e44bf4287b13040fcd1e", "_tpl": "59e0d99486f7744a32234762", @@ -5737,103 +5737,7 @@ } ], "barter_scheme": { - "677536b3b06e57fd5c0e03be": [ - [ - { - "count": 25572, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03ce": [ - [ - { - "count": 1318, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03d2": [ - [ - { - "count": 84, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03d6": [ - [ - { - "count": 7539, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03d8": [ - [ - { - "count": 29431, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03e1": [ - [ - { - "count": 77, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03e5": [ - [ - { - "count": 525, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03e9": [ - [ - { - "count": 2718, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03ec": [ - [ - { - "count": 43697, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03ef": [ - [ - { - "count": 14700, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b3b06e57fd5c0e03f3": [ - [ - { - "count": 1, - "_tpl": "544fb6cc4bdc2d34748b456e" - } - ] - ], - "677536b4b06e57fd5c0e03f6": [ - [ - { - "count": 5359, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e03f9": [ + "6808badc364a85cccb04b703": [ [ { "count": 8000, @@ -5841,343 +5745,7 @@ } ] ], - "677536b4b06e57fd5c0e03fc": [ - [ - { - "count": 2410, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0400": [ - [ - { - "count": 5374, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0403": [ - [ - { - "count": 5148, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0406": [ - [ - { - "count": 6430, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0409": [ - [ - { - "count": 7538, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e040c": [ - [ - { - "count": 5568, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e040f": [ - [ - { - "count": 5256, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0412": [ - [ - { - "count": 53, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0416": [ - [ - { - "count": 1467, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0419": [ - [ - { - "count": 7306, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e041c": [ - [ - { - "count": 7856, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e041f": [ - [ - { - "count": 79, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0423": [ - [ - { - "count": 26, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0427": [ - [ - { - "count": 4, - "_tpl": "5672cb304bdc2dc2088b456a" - } - ] - ], - "677536b4b06e57fd5c0e042a": [ - [ - { - "count": 9608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e042e": [ - [ - { - "count": 1779, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b4b06e57fd5c0e0431": [ - [ - { - "count": 116, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0435": [ - [ - { - "count": 1745, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0438": [ - [ - { - "count": 3450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e043b": [ - [ - { - "count": 1747, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e043f": [ - [ - { - "count": 4207, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0442": [ - [ - { - "count": 7416, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0445": [ - [ - { - "count": 8064, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0448": [ - [ - { - "count": 6836, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e044b": [ - [ - { - "count": 4249, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e044f": [ - [ - { - "count": 2229, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0452": [ - [ - { - "count": 7080, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e045a": [ - [ - { - "count": 1129, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e045e": [ - [ - { - "count": 4221, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0461": [ - [ - { - "count": 5777, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0464": [ - [ - { - "count": 8400, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0468": [ - [ - { - "count": 6318, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e046b": [ - [ - { - "count": 825, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e046d": [ - [ - { - "count": 23869, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0475": [ - [ - { - "count": 51, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b5b06e57fd5c0e0479": [ - [ - { - "count": 12568, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e047c": [ - [ - { - "count": 1283, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e047f": [ - [ - { - "count": 36719, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e0490": [ - [ - { - "count": 7922, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e0493": [ - [ - { - "count": 10735, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e0496": [ - [ - { - "count": 4291, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e0499": [ - [ - { - "count": 52, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b6b06e57fd5c0e049d": [ + "6808badc364a85cccb04b706": [ [ { "count": 72, @@ -6185,7 +5753,7 @@ } ] ], - "677536b6b06e57fd5c0e04a1": [ + "6808badc364a85cccb04b70a": [ [ { "count": 948, @@ -6193,7 +5761,31 @@ } ] ], - "677536b6b06e57fd5c0e04a5": [ + "6808badc364a85cccb04b70e": [ + [ + { + "count": 1283, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badc364a85cccb04b712": [ + [ + { + "count": 5777, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badc364a85cccb04b715": [ + [ + { + "count": 7856, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badc364a85cccb04b718": [ [ { "count": 53, @@ -6201,47 +5793,327 @@ } ] ], - "677536b6b06e57fd5c0e04a9": [ + "6808badc364a85cccb04b71c": [ [ { - "count": 2644, + "count": 4291, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04ac": [ + "6808badc364a85cccb04b71f": [ [ { - "count": 1255, + "count": 43697, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04af": [ + "6808badc364a85cccb04b722": [ [ { - "count": 49298, + "count": 77, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04b2": [ + "6808badd364a85cccb04b726": [ [ { - "count": 2, - "_tpl": "590c5d4b86f774784e1b9c45" - } - ] - ], - "677536b6b06e57fd5c0e04b5": [ - [ - { - "count": 2576, + "count": 1747, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04b8": [ + "6808badd364a85cccb04b72a": [ + [ + { + "count": 7922, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b72c": [ + [ + { + "count": 29431, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b735": [ + [ + { + "count": 116, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b739": [ + [ + { + "count": 51, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b73d": [ + [ + { + "count": 5374, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b740": [ + [ + { + "count": 6318, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b743": [ + [ + { + "count": 1745, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b746": [ + [ + { + "count": 1779, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b74a": [ + [ + { + "count": 79, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b74e": [ + [ + { + "count": 3450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b750": [ + [ + { + "count": 23869, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b759": [ + [ + { + "count": 7538, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b75c": [ + [ + { + "count": 7416, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b75f": [ + [ + { + "count": 4221, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b762": [ + [ + { + "count": 4207, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b765": [ + [ + { + "count": 9608, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b769": [ + [ + { + "count": 8064, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b76c": [ + [ + { + "count": 1129, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b770": [ + [ + { + "count": 1, + "_tpl": "544fb6cc4bdc2d34748b456e" + } + ] + ], + "6808badd364a85cccb04b773": [ + [ + { + "count": 4249, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b777": [ + [ + { + "count": 2410, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b77b": [ + [ + { + "count": 52, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b77e": [ + [ + { + "count": 7080, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badd364a85cccb04b786": [ + [ + { + "count": 7306, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b789": [ + [ + { + "count": 53, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b78d": [ + [ + { + "count": 5568, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b790": [ + [ + { + "count": 4, + "_tpl": "5672cb304bdc2dc2088b456a" + } + ] + ], + "6808bade364a85cccb04b793": [ + [ + { + "count": 5256, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b796": [ + [ + { + "count": 525, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b79a": [ + [ + { + "count": 1467, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b79e": [ + [ + { + "count": 84, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7a2": [ + [ + { + "count": 10735, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7a5": [ + [ + { + "count": 26, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7a9": [ + [ + { + "count": 825, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7ac": [ + [ + { + "count": 2229, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7af": [ + [ + { + "count": 36719, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7c0": [ [ { "count": 8400, @@ -6249,31 +6121,119 @@ } ] ], - "677536b6b06e57fd5c0e04bb": [ + "6808bade364a85cccb04b7c4": [ [ { - "count": 2205, + "count": 6430, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04be": [ + "6808bade364a85cccb04b7c6": [ [ { - "count": 315, + "count": 25572, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04c1": [ + "6808bade364a85cccb04b7d4": [ [ { - "count": 740, + "count": 14700, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b6b06e57fd5c0e04c5": [ + "6808bade364a85cccb04b7d8": [ + [ + { + "count": 1318, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7db": [ + [ + { + "count": 5359, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7de": [ + [ + { + "count": 6836, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7e1": [ + [ + { + "count": 7539, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7e4": [ + [ + { + "count": 12568, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7e7": [ + [ + { + "count": 5148, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bade364a85cccb04b7ea": [ + [ + { + "count": 2718, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b7ed": [ + [ + { + "count": 1, + "_tpl": "59fafb5d86f774067a6f2084" + } + ] + ], + "6808badf364a85cccb04b7f0": [ + [ + { + "count": 2258, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b7f4": [ + [ + { + "count": 10733, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b7f8": [ + [ + { + "count": 3759, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b7fb": [ [ { "count": 6313, @@ -6281,7 +6241,63 @@ } ] ], - "677536b6b06e57fd5c0e04c8": [ + "6808badf364a85cccb04b7fe": [ + [ + { + "count": 2377, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b802": [ + [ + { + "count": 2, + "_tpl": "590c5d4b86f774784e1b9c45" + } + ] + ], + "6808badf364a85cccb04b805": [ + [ + { + "count": 3376, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b808": [ + [ + { + "count": 3885, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b80c": [ + [ + { + "count": 4116, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b80f": [ + [ + { + "count": 49298, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b812": [ + [ + { + "count": 2205, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b815": [ [ { "count": 4084, @@ -6289,15 +6305,15 @@ } ] ], - "677536b7b06e57fd5c0e04cb": [ + "6808badf364a85cccb04b818": [ [ { - "count": 3570, + "count": 8400, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e04ce": [ + "6808badf364a85cccb04b81b": [ [ { "count": 10, @@ -6317,39 +6333,31 @@ } ] ], - "677536b7b06e57fd5c0e04d1": [ + "6808badf364a85cccb04b81e": [ [ { - "count": 1, - "_tpl": "59fafb5d86f774067a6f2084" - } - ] - ], - "677536b7b06e57fd5c0e04d4": [ - [ - { - "count": 4116, + "count": 11296, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e04d7": [ + "6808badf364a85cccb04b821": [ [ { - "count": 494, + "count": 9985, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e04db": [ + "6808badf364a85cccb04b824": [ [ { - "count": 10068, + "count": 7094, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e04de": [ + "6808badf364a85cccb04b828": [ [ { "count": 1943, @@ -6357,15 +6365,103 @@ } ] ], - "677536b7b06e57fd5c0e04e2": [ + "6808badf364a85cccb04b82c": [ [ { - "count": 3675, + "count": 740, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e04e6": [ + "6808badf364a85cccb04b830": [ + [ + { + "count": 3570, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b833": [ + [ + { + "count": 2644, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b836": [ + [ + { + "count": 6611, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b839": [ + [ + { + "count": 1255, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808badf364a85cccb04b83c": [ + [ + { + "count": 92187, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b83f": [ + [ + { + "count": 6436, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b843": [ + [ + { + "count": 21579, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b846": [ + [ + { + "count": 315, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b849": [ + [ + { + "count": 3717, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b84d": [ + [ + { + "count": 494, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b851": [ + [ + { + "count": 1680, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b854": [ [ { "count": 1, @@ -6381,63 +6477,7 @@ } ] ], - "677536b7b06e57fd5c0e04e9": [ - [ - { - "count": 21579, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04ec": [ - [ - { - "count": 6436, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04f0": [ - [ - { - "count": 1902, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04f3": [ - [ - { - "count": 3486, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04f6": [ - [ - { - "count": 1680, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04f9": [ - [ - { - "count": 7094, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e04fd": [ - [ - { - "count": 2258, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b7b06e57fd5c0e0501": [ + "6808bae0364a85cccb04b857": [ [ { "count": 840, @@ -6445,119 +6485,87 @@ } ] ], - "677536b7b06e57fd5c0e0505": [ + "6808bae0364a85cccb04b85b": [ [ { - "count": 3885, + "count": 10068, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e0509": [ + "6808bae0364a85cccb04b85e": [ [ { - "count": 3759, + "count": 3675, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e050c": [ + "6808bae0364a85cccb04b862": [ [ { - "count": 6611, + "count": 1902, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e050f": [ + "6808bae0364a85cccb04b865": [ [ { - "count": 92187, + "count": 2576, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b7b06e57fd5c0e0512": [ + "6808bae0364a85cccb04b868": [ [ { - "count": 11296, + "count": 3486, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b8b06e57fd5c0e0515": [ + "6808bae0364a85cccb04b86b": [ [ { - "count": 3717, + "count": 2415, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b8b06e57fd5c0e0519": [ + "6808bae0364a85cccb04b86e": [ [ { - "count": 9985, + "count": 5, + "_tpl": "57347c93245977448d35f6e3" + }, + { + "count": 5, + "_tpl": "5c13cef886f774072e618e82" + }, + { + "count": 2, + "_tpl": "59e361e886f774176c10a2a5" + } + ] + ], + "6808bae0364a85cccb04b871": [ + [ + { + "count": 714, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b8b06e57fd5c0e051c": [ + "6808bae0364a85cccb04b875": [ [ { - "count": 2377, + "count": 21, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b8b06e57fd5c0e0520": [ - [ - { - "count": 3376, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e0523": [ - [ - { - "count": 10733, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e0526": [ - [ - { - "count": 48302, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e0533": [ - [ - { - "count": 1155, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e0536": [ - [ - { - "count": 72, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e053a": [ - [ - { - "count": 420, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e053e": [ + "6808bae0364a85cccb04b879": [ [ { "count": 200, @@ -6565,15 +6573,323 @@ } ] ], - "677536b8b06e57fd5c0e0542": [ + "6808bae0364a85cccb04b87d": [ [ { - "count": 202, + "count": 32, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b8b06e57fd5c0e0546": [ + "6808bae0364a85cccb04b881": [ + [ + { + "count": 166824, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b884": [ + [ + { + "count": 75, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b888": [ + [ + { + "count": 1943, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b88c": [ + [ + { + "count": 1155, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b890": [ + [ + { + "count": 40, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae0364a85cccb04b894": [ + [ + { + "count": 1995, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b898": [ + [ + { + "count": 51, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b89c": [ + [ + { + "count": 3, + "_tpl": "5d40425986f7743185265461" + } + ] + ], + "6808bae1364a85cccb04b89f": [ + [ + { + "count": 32, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8a3": [ + [ + { + "count": 1680, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8a5": [ + [ + { + "count": 31217, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8b7": [ + [ + { + "count": 676550, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8ba": [ + [ + { + "count": 872, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8be": [ + [ + { + "count": 87, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8c2": [ + [ + { + "count": 2100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8c5": [ + [ + { + "count": 38850, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8c8": [ + [ + { + "count": 12, + "_tpl": "57347b8b24597737dd42e192" + }, + { + "count": 5, + "_tpl": "5e2af2bc86f7746d3f3c33fc" + } + ] + ], + "6808bae1364a85cccb04b8cb": [ + [ + { + "count": 72, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8cf": [ + [ + { + "count": 70, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8d2": [ + [ + { + "count": 2, + "_tpl": "590c311186f77424d1667482" + }, + { + "count": 2, + "_tpl": "590c2d8786f774245b1f03f3" + } + ] + ], + "6808bae1364a85cccb04b8d9": [ + [ + { + "count": 15, + "_tpl": "59fafb5d86f774067a6f2084" + }, + { + "count": 10, + "_tpl": "5b43575a86f77424f443fe62" + }, + { + "count": 15, + "_tpl": "590a373286f774287540368b" + } + ] + ], + "6808bae1364a85cccb04b8dc": [ + [ + { + "count": 1, + "_tpl": "5448ba0b4bdc2d02308b456c" + }, + { + "count": 3, + "_tpl": "590c5d4b86f774784e1b9c45" + }, + { + "count": 1, + "_tpl": "590c5f0d86f77413997acfab" + } + ] + ], + "6808bae1364a85cccb04b8df": [ + [ + { + "count": 1890, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8e3": [ + [ + { + "count": 4095, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8e6": [ + [ + { + "count": 72, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8ea": [ + [ + { + "count": 420, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8ed": [ + [ + { + "count": 70198, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8f7": [ + [ + { + "count": 17388000, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae1364a85cccb04b8fa": [ + [ + { + "count": 59, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b8fe": [ + [ + { + "count": 5093, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b901": [ + [ + { + "count": 4410, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b904": [ + [ + { + "count": 41, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b908": [ + [ + { + "count": 1733, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b90b": [ + [ + { + "count": 1575, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b90f": [ + [ + { + "count": 10, + "_tpl": "59e3577886f774176a362503" + }, + { + "count": 6, + "_tpl": "5c0fa877d174af02a012e1cf" + } + ] + ], + "6808bae2364a85cccb04b912": [ [ { "count": 12, @@ -6593,43 +6909,7 @@ } ] ], - "677536b8b06e57fd5c0e0549": [ - [ - { - "count": 2573, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e054b": [ - [ - { - "count": 2, - "_tpl": "590c311186f77424d1667482" - }, - { - "count": 2, - "_tpl": "590c2d8786f774245b1f03f3" - } - ] - ], - "677536b8b06e57fd5c0e0552": [ - [ - { - "count": 72, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e0556": [ - [ - { - "count": 32, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b8b06e57fd5c0e055a": [ + "6808bae2364a85cccb04b915": [ [ { "count": 1911, @@ -6637,107 +6917,31 @@ } ] ], - "677536b8b06e57fd5c0e055d": [ + "6808bae2364a85cccb04b918": [ [ { - "count": 86, + "count": 37, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b9b06e57fd5c0e0561": [ + "6808bae2364a85cccb04b91c": [ [ { - "count": 4043, + "count": 3098, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b9b06e57fd5c0e0565": [ + "6808bae2364a85cccb04b920": [ [ { - "count": 5, - "_tpl": "57347c93245977448d35f6e3" - }, - { - "count": 5, - "_tpl": "5c13cef886f774072e618e82" - }, - { - "count": 2, - "_tpl": "59e361e886f774176c10a2a5" - } - ] - ], - "677536b9b06e57fd5c0e0567": [ - [ - { - "count": 31217, + "count": 1155, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536b9b06e57fd5c0e0579": [ - [ - { - "count": 1574, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e057c": [ - [ - { - "count": 15192, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e057f": [ - [ - { - "count": 87, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e0583": [ - [ - { - "count": 1995, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e0587": [ - [ - { - "count": 1575, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e058b": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e058f": [ - [ - { - "count": 12, - "_tpl": "57347b8b24597737dd42e192" - }, - { - "count": 5, - "_tpl": "5e2af2bc86f7746d3f3c33fc" - } - ] - ], - "677536b9b06e57fd5c0e0592": [ + "6808bae2364a85cccb04b923": [ [ { "count": 75600, @@ -6745,7 +6949,163 @@ } ] ], - "677536b9b06e57fd5c0e0594": [ + "6808bae2364a85cccb04b926": [ + [ + { + "count": 315, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b92a": [ + [ + { + "count": 129, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b92e": [ + [ + { + "count": 202, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b932": [ + [ + { + "count": 52920, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b935": [ + [ + { + "count": 8925, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b938": [ + [ + { + "count": 4043, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b93c": [ + [ + { + "count": 69, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b940": [ + [ + { + "count": 189, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b943": [ + [ + { + "count": 65377, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b94b": [ + [ + { + "count": 15192, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b94d": [ + [ + { + "count": 48302, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae2364a85cccb04b958": [ + [ + { + "count": 86, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b95c": [ + [ + { + "count": 127, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b960": [ + [ + { + "count": 252, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b964": [ + [ + { + "count": 53912, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b966": [ + [ + { + "count": 18585, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b96f": [ + [ + { + "count": 1, + "_tpl": "5d1b317c86f7742523398392" + }, + { + "count": 1, + "_tpl": "5e2af37686f774755a234b65" + } + ] + ], + "6808bae3364a85cccb04b97f": [ + [ + { + "count": 54, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b983": [ + [ + { + "count": 1574, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b985": [ [ { "count": 10, @@ -6761,375 +7121,7 @@ } ] ], - "677536b9b06e57fd5c0e05ba": [ - [ - { - "count": 38850, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e05bd": [ - [ - { - "count": 1890, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e05c1": [ - [ - { - "count": 166824, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536b9b06e57fd5c0e05c4": [ - [ - { - "count": 32, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05c8": [ - [ - { - "count": 40, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05cc": [ - [ - { - "count": 53912, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05cf": [ - [ - { - "count": 315, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05d2": [ - [ - { - "count": 5093, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05d4": [ - [ - { - "count": 65377, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05dd": [ - [ - { - "count": 714, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05e1": [ - [ - { - "count": 54, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05e5": [ - [ - { - "count": 1155, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05e8": [ - [ - { - "count": 51, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05ec": [ - [ - { - "count": 15, - "_tpl": "59fafb5d86f774067a6f2084" - }, - { - "count": 10, - "_tpl": "5b43575a86f77424f443fe62" - }, - { - "count": 15, - "_tpl": "590a373286f774287540368b" - } - ] - ], - "677536bab06e57fd5c0e05ef": [ - [ - { - "count": 4095, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05f2": [ - [ - { - "count": 3098, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e05f5": [ - [ - { - "count": 1, - "_tpl": "5d1b317c86f7742523398392" - }, - { - "count": 1, - "_tpl": "5e2af37686f774755a234b65" - } - ] - ], - "677536bab06e57fd5c0e0605": [ - [ - { - "count": 70, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e0608": [ - [ - { - "count": 18585, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e0612": [ - [ - { - "count": 8925, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bab06e57fd5c0e0615": [ - [ - { - "count": 2415, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0618": [ - [ - { - "count": 252, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e061c": [ - [ - { - "count": 1680, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e061f": [ - [ - { - "count": 59, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0623": [ - [ - { - "count": 1943, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0627": [ - [ - { - "count": 41, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e062b": [ - [ - { - "count": 1481, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e062f": [ - [ - { - "count": 75, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0633": [ - [ - { - "count": 3, - "_tpl": "5d40425986f7743185265461" - } - ] - ], - "677536bbb06e57fd5c0e0636": [ - [ - { - "count": 1733, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0639": [ - [ - { - "count": 4410, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e063c": [ - [ - { - "count": 127, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0640": [ - [ - { - "count": 10, - "_tpl": "59e3577886f774176a362503" - }, - { - "count": 6, - "_tpl": "5c0fa877d174af02a012e1cf" - } - ] - ], - "677536bbb06e57fd5c0e0643": [ - [ - { - "count": 129, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0647": [ - [ - { - "count": 1, - "_tpl": "5448ba0b4bdc2d02308b456c" - }, - { - "count": 3, - "_tpl": "590c5d4b86f774784e1b9c45" - }, - { - "count": 1, - "_tpl": "590c5f0d86f77413997acfab" - } - ] - ], - "677536bbb06e57fd5c0e064a": [ - [ - { - "count": 676550, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e064c": [ - [ - { - "count": 70198, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0655": [ - [ - { - "count": 17388000, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0658": [ - [ - { - "count": 69, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e065c": [ - [ - { - "count": 189, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bbb06e57fd5c0e0660": [ - [ - { - "count": 2100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e0663": [ - [ - { - "count": 853, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e0666": [ - [ - { - "count": 52920, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e0668": [ + "6808bae3364a85cccb04b9aa": [ [ { "count": 72728, @@ -7137,23 +7129,63 @@ } ] ], - "677536bcb06e57fd5c0e0677": [ + "6808bae3364a85cccb04b9b9": [ [ { - "count": 37, + "count": 1481, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bcb06e57fd5c0e067b": [ + "6808bae3364a85cccb04b9bd": [ [ { - "count": 21, + "count": 853, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bcb06e57fd5c0e067f": [ + "6808bae3364a85cccb04b9c0": [ + [ + { + "count": 2573, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b9c2": [ + [ + { + "count": 8245, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b9cc": [ + [ + { + "count": 30450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b9cf": [ + [ + { + "count": 5, + "_tpl": "5751487e245977207e26a315" + } + ] + ], + "6808bae3364a85cccb04b9d2": [ + [ + { + "count": 9660, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae3364a85cccb04b9d5": [ [ { "count": 7, @@ -7165,223 +7197,7 @@ } ] ], - "677536bcb06e57fd5c0e0682": [ - [ - { - "count": 203506, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e0686": [ - [ - { - "count": 5, - "_tpl": "5751487e245977207e26a315" - } - ] - ], - "677536bcb06e57fd5c0e0689": [ - [ - { - "count": 6195, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e068c": [ - [ - { - "count": 3048, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e068f": [ - [ - { - "count": 105, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e0693": [ - [ - { - "count": 1, - "_tpl": "57347b8b24597737dd42e192" - }, - { - "count": 1, - "_tpl": "573475fb24597737fb1379e1" - } - ] - ], - "677536bcb06e57fd5c0e0696": [ - [ - { - "count": 74, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e069a": [ - [ - { - "count": 1550, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e069e": [ - [ - { - "count": 2343, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e06a1": [ - [ - { - "count": 1, - "_tpl": "62a09e974f842e1bd12da3f0" - }, - { - "count": 1, - "_tpl": "62a0a16d0b9d3c46de5b6e97" - } - ] - ], - "677536bcb06e57fd5c0e06a3": [ - [ - { - "count": 2, - "_tpl": "5e2aef7986f7746d3f3c33f5" - } - ] - ], - "677536bcb06e57fd5c0e06aa": [ - [ - { - "count": 26985, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bcb06e57fd5c0e06ad": [ - [ - { - "count": 2, - "_tpl": "5d1b2ffd86f77425243e8d17" - } - ] - ], - "677536bdb06e57fd5c0e06b0": [ - [ - { - "count": 1, - "_tpl": "635a758bfefc88a93f021b8a" - }, - { - "count": 1, - "_tpl": "5448ff904bdc2d6f028b456e" - } - ] - ], - "677536bdb06e57fd5c0e06b3": [ - [ - { - "count": 1, - "_tpl": "62a09f32621468534a797acb" - } - ] - ], - "677536bdb06e57fd5c0e06b6": [ - [ - { - "count": 9450, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06ba": [ - [ - { - "count": 735, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06be": [ - [ - { - "count": 5670, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06c1": [ - [ - { - "count": 7357, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06c4": [ - [ - { - "count": 8505, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06c7": [ - [ - { - "count": 2205, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06ca": [ - [ - { - "count": 8245, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06d4": [ - [ - { - "count": 1, - "_tpl": "5c13cef886f774072e618e82" - }, - { - "count": 1, - "_tpl": "59148f8286f7741b951ea113" - } - ] - ], - "677536bdb06e57fd5c0e06d7": [ - [ - { - "count": 7770, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06da": [ - [ - { - "count": 1575, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bdb06e57fd5c0e06dd": [ + "6808bae3364a85cccb04b9d8": [ [ { "count": 196, @@ -7389,15 +7205,67 @@ } ] ], - "677536bdb06e57fd5c0e06e1": [ + "6808bae3364a85cccb04b9dc": [ [ { - "count": 1260, + "count": 5, + "_tpl": "5b43575a86f77424f443fe62" + } + ] + ], + "6808bae4364a85cccb04b9de": [ + [ + { + "count": 253019, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bdb06e57fd5c0e06e4": [ + "6808bae4364a85cccb04b9fe": [ + [ + { + "count": 5, + "_tpl": "567143bf4bdc2d1a0f8b4567" + }, + { + "count": 5, + "_tpl": "5d1b371186f774253763a656" + } + ] + ], + "6808bae4364a85cccb04ba00": [ + [ + { + "count": 8820, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba05": [ + [ + { + "count": 5670, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba08": [ + [ + { + "count": 1921, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba0c": [ + [ + { + "count": 26985, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba0f": [ [ { "count": 8526, @@ -7405,55 +7273,23 @@ } ] ], - "677536bdb06e57fd5c0e06e8": [ + "6808bae4364a85cccb04ba13": [ [ { - "count": 1865, + "count": 6195, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bdb06e57fd5c0e06ec": [ + "6808bae4364a85cccb04ba16": [ [ { - "count": 4, - "_tpl": "5e2af2bc86f7746d3f3c33fc" - }, - { - "count": 2, - "_tpl": "5e2af37686f774755a234b65" - }, - { - "count": 1, - "_tpl": "590a373286f774287540368b" - } - ] - ], - "677536bdb06e57fd5c0e06ef": [ - [ - { - "count": 1, - "_tpl": "5d80c62a86f7744036212b3f" - }, - { - "count": 1, - "_tpl": "5ede7a8229445733cb4c18e2" - }, - { - "count": 1, - "_tpl": "5d80c60f86f77440373c4ece" - } - ] - ], - "677536bdb06e57fd5c0e06f1": [ - [ - { - "count": 34945, + "count": 150, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536beb06e57fd5c0e06fa": [ + "6808bae4364a85cccb04ba1a": [ [ { "count": 2, @@ -7469,155 +7305,7 @@ } ] ], - "677536beb06e57fd5c0e06fd": [ - [ - { - "count": 1365, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0700": [ - [ - { - "count": 1260, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0703": [ - [ - { - "count": 3451, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0706": [ - [ - { - "count": 2739, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e070a": [ - [ - { - "count": 9660, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e070c": [ - [ - { - "count": 8820, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0711": [ - [ - { - "count": 5355, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0715": [ - [ - { - "count": 1, - "_tpl": "590de7e986f7741b096e5f32" - } - ] - ], - "677536beb06e57fd5c0e0718": [ - [ - { - "count": 5, - "_tpl": "567143bf4bdc2d1a0f8b4567" - }, - { - "count": 5, - "_tpl": "5d1b371186f774253763a656" - } - ] - ], - "677536beb06e57fd5c0e071b": [ - [ - { - "count": 2, - "_tpl": "590c639286f774151567fa95" - }, - { - "count": 4, - "_tpl": "5d40407c86f774318526545a" - }, - { - "count": 2, - "_tpl": "57347d7224597744596b4e72" - } - ] - ], - "677536beb06e57fd5c0e071e": [ - [ - { - "count": 5, - "_tpl": "5e2af37686f774755a234b65" - }, - { - "count": 15, - "_tpl": "5e2af2bc86f7746d3f3c33fc" - }, - { - "count": 8, - "_tpl": "5e2aef7986f7746d3f3c33f5" - } - ] - ], - "677536beb06e57fd5c0e0721": [ - [ - { - "count": 2415, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0724": [ - [ - { - "count": 231, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0727": [ - [ - { - "count": 21316, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0733": [ - [ - { - "count": 2940, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536beb06e57fd5c0e0735": [ - [ - { - "count": 301068, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e0746": [ + "6808bae4364a85cccb04ba1d": [ [ { "count": 16863, @@ -7625,15 +7313,35 @@ } ] ], - "677536bfb06e57fd5c0e0749": [ + "6808bae4364a85cccb04ba21": [ [ { - "count": 1364, + "count": 3, + "_tpl": "5e8f3423fd7471236e6e3b64" + } + ] + ], + "6808bae4364a85cccb04ba24": [ + [ + { + "count": 1, + "_tpl": "62a09e974f842e1bd12da3f0" + }, + { + "count": 1, + "_tpl": "62a0a16d0b9d3c46de5b6e97" + } + ] + ], + "6808bae4364a85cccb04ba27": [ + [ + { + "count": 1575, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e074c": [ + "6808bae4364a85cccb04ba2a": [ [ { "count": 9206, @@ -7641,31 +7349,251 @@ } ] ], - "677536bfb06e57fd5c0e0750": [ + "6808bae4364a85cccb04ba2d": [ [ { - "count": 6543, + "count": 34945, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e0753": [ + "6808bae4364a85cccb04ba35": [ [ { - "count": 12705, + "count": 7357, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e0756": [ + "6808bae4364a85cccb04ba38": [ [ { - "count": 150, + "count": 4608, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e075a": [ + "6808bae4364a85cccb04ba3c": [ + [ + { + "count": 7770, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba3f": [ + [ + { + "count": 6300, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba42": [ + [ + { + "count": 68250, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba45": [ + [ + { + "count": 2205, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba49": [ + [ + { + "count": 105, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae4364a85cccb04ba4d": [ + [ + { + "count": 1, + "_tpl": "57347b8b24597737dd42e192" + }, + { + "count": 1, + "_tpl": "573475fb24597737fb1379e1" + } + ] + ], + "6808bae5364a85cccb04ba50": [ + [ + { + "count": 1260, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba52": [ + [ + { + "count": 301068, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba62": [ + [ + { + "count": 2, + "_tpl": "5d1b2ffd86f77425243e8d17" + } + ] + ], + "6808bae5364a85cccb04ba65": [ + [ + { + "count": 4305, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba68": [ + [ + { + "count": 2343, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba6b": [ + [ + { + "count": 1, + "_tpl": "5d80c62a86f7744036212b3f" + }, + { + "count": 1, + "_tpl": "5ede7a8229445733cb4c18e2" + }, + { + "count": 1, + "_tpl": "5d80c60f86f77440373c4ece" + } + ] + ], + "6808bae5364a85cccb04ba6e": [ + [ + { + "count": 1283, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba71": [ + [ + { + "count": 1865, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba75": [ + [ + { + "count": 9450, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba78": [ + [ + { + "count": 2, + "_tpl": "5e2aef7986f7746d3f3c33f5" + } + ] + ], + "6808bae5364a85cccb04ba7f": [ + [ + { + "count": 2739, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba83": [ + [ + { + "count": 23100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba87": [ + [ + { + "count": 1364, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba8a": [ + [ + { + "count": 2415, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba8d": [ + [ + { + "count": 1550, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba91": [ + [ + { + "count": 74, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba95": [ + [ + { + "count": 735, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04ba99": [ + [ + { + "count": 1, + "_tpl": "5e2af2bc86f7746d3f3c33fc" + } + ] + ], + "6808bae5364a85cccb04ba9c": [ + [ + { + "count": 203506, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04baa0": [ + [ + { + "count": 3451, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae5364a85cccb04baa3": [ [ { "count": 129, @@ -7673,15 +7601,79 @@ } ] ], - "677536bfb06e57fd5c0e075e": [ + "6808bae5364a85cccb04baa7": [ [ { - "count": 374, + "count": 4, + "_tpl": "5e2af2bc86f7746d3f3c33fc" + }, + { + "count": 2, + "_tpl": "5e2af37686f774755a234b65" + }, + { + "count": 1, + "_tpl": "590a373286f774287540368b" + } + ] + ], + "6808bae6364a85cccb04baaa": [ + [ + { + "count": 1, + "_tpl": "62a09f32621468534a797acb" + } + ] + ], + "6808bae6364a85cccb04baac": [ + [ + { + "count": 21316, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e0762": [ + "6808bae6364a85cccb04bab8": [ + [ + { + "count": 12705, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04babb": [ + [ + { + "count": 5355, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04babf": [ + [ + { + "count": 1365, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04bac2": [ + [ + { + "count": 8505, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04bac5": [ + [ + { + "count": 231, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04bac9": [ [ { "count": 6, @@ -7701,87 +7693,27 @@ } ] ], - "677536bfb06e57fd5c0e0765": [ + "6808bae6364a85cccb04bacc": [ [ { - "count": 1921, + "count": 6543, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536bfb06e57fd5c0e0768": [ - [ - { - "count": 4608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e076c": [ - [ - { - "count": 68250, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e076f": [ - [ - { - "count": 23100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e0773": [ - [ - { - "count": 3, - "_tpl": "5e8f3423fd7471236e6e3b64" - } - ] - ], - "677536bfb06e57fd5c0e0776": [ - [ - { - "count": 3675, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e0779": [ - [ - { - "count": 4305, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e077b": [ - [ - { - "count": 253019, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536bfb06e57fd5c0e079b": [ + "6808bae6364a85cccb04bacf": [ [ { "count": 1, - "_tpl": "5e2af2bc86f7746d3f3c33fc" - } - ] - ], - "677536c0b06e57fd5c0e079e": [ - [ + "_tpl": "5c13cef886f774072e618e82" + }, { - "count": 1283, - "_tpl": "5449016a4bdc2d6f028b456f" + "count": 1, + "_tpl": "59148f8286f7741b951ea113" } ] ], - "677536c0b06e57fd5c0e07a1": [ + "6808bae6364a85cccb04bad2": [ [ { "count": 1050, @@ -7789,15 +7721,51 @@ } ] ], - "677536c0b06e57fd5c0e07a4": [ + "6808bae6364a85cccb04bad5": [ [ { - "count": 3393, + "count": 2940, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07a7": [ + "6808bae6364a85cccb04bad8": [ + [ + { + "count": 1, + "_tpl": "635a758bfefc88a93f021b8a" + }, + { + "count": 1, + "_tpl": "5448ff904bdc2d6f028b456e" + } + ] + ], + "6808bae6364a85cccb04badb": [ + [ + { + "count": 2, + "_tpl": "590c639286f774151567fa95" + }, + { + "count": 4, + "_tpl": "5d40407c86f774318526545a" + }, + { + "count": 2, + "_tpl": "57347d7224597744596b4e72" + } + ] + ], + "6808bae6364a85cccb04bade": [ + [ + { + "count": 1260, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04bae1": [ [ { "count": 3675, @@ -7805,7 +7773,63 @@ } ] ], - "677536c0b06e57fd5c0e07a9": [ + "6808bae6364a85cccb04bae4": [ + [ + { + "count": 1, + "_tpl": "590de7e986f7741b096e5f32" + } + ] + ], + "6808bae6364a85cccb04bae7": [ + [ + { + "count": 3048, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04baea": [ + [ + { + "count": 5, + "_tpl": "5e2af37686f774755a234b65" + }, + { + "count": 15, + "_tpl": "5e2af2bc86f7746d3f3c33fc" + }, + { + "count": 8, + "_tpl": "5e2aef7986f7746d3f3c33f5" + } + ] + ], + "6808bae6364a85cccb04baed": [ + [ + { + "count": 3675, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04baf0": [ + [ + { + "count": 374, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04baf4": [ + [ + { + "count": 3393, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae6364a85cccb04baf6": [ [ { "count": 14069, @@ -7813,47 +7837,87 @@ } ] ], - "677536c0b06e57fd5c0e07b3": [ + "6808bae6364a85cccb04bb00": [ [ { - "count": 5, - "_tpl": "5b43575a86f77424f443fe62" - } - ] - ], - "677536c0b06e57fd5c0e07b6": [ - [ - { - "count": 6300, + "count": 1165, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07b9": [ + "6808bae7364a85cccb04bb03": [ [ { - "count": 30450, + "count": 2100, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07bc": [ + "6808bae7364a85cccb04bb07": [ [ { - "count": 6930, + "count": 10, + "_tpl": "5fc64ea372b0dd78d51159dc" + } + ] + ], + "6808bae7364a85cccb04bb0a": [ + [ + { + "count": 2295, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07bf": [ + "6808bae7364a85cccb04bb0d": [ [ { - "count": 3150, + "count": 2114, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07c2": [ + "6808bae7364a85cccb04bb10": [ + [ + { + "count": 3019, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb13": [ + [ + { + "count": 1, + "_tpl": "6389c6463485cf0eeb260715" + } + ] + ], + "6808bae7364a85cccb04bb1a": [ + [ + { + "count": 1470, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb1d": [ + [ + { + "count": 13240, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb20": [ + [ + { + "count": 512657, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb23": [ [ { "count": 1060, @@ -7861,71 +7925,15 @@ } ] ], - "677536c0b06e57fd5c0e07c5": [ + "6808bae7364a85cccb04bb26": [ [ { - "count": 3376, + "count": 1060, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c0b06e57fd5c0e07c9": [ - [ - { - "count": 1, - "_tpl": "6389c6c7dbfd5e4b95197e68" - } - ] - ], - "677536c0b06e57fd5c0e07cc": [ - [ - { - "count": 2415, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07cf": [ - [ - { - "count": 16065, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07d6": [ - [ - { - "count": 2625, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07da": [ - [ - { - "count": 420, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07dd": [ - [ - { - "count": 1365, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07e1": [ - [ - { - "count": 1866, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c0b06e57fd5c0e07e4": [ + "6808bae7364a85cccb04bb29": [ [ { "count": 1, @@ -7941,7 +7949,95 @@ } ] ], - "677536c1b06e57fd5c0e07e7": [ + "6808bae7364a85cccb04bb2c": [ + [ + { + "count": 70035, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb2f": [ + [ + { + "count": 1665, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb33": [ + [ + { + "count": 6019, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb37": [ + [ + { + "count": 1844, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb3a": [ + [ + { + "count": 1575, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb3e": [ + [ + { + "count": 13750, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb42": [ + [ + { + "count": 2205, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb46": [ + [ + { + "count": 3623, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb49": [ + [ + { + "count": 10080, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb4d": [ + [ + { + "count": 3376, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb51": [ + [ + { + "count": 19320, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae7364a85cccb04bb55": [ [ { "count": 10670, @@ -7949,31 +8045,151 @@ } ] ], - "677536c1b06e57fd5c0e07eb": [ + "6808bae8364a85cccb04bb59": [ [ { - "count": 3019, + "count": 99750, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c1b06e57fd5c0e07ef": [ + "6808bae8364a85cccb04bb5c": [ [ { - "count": 3780, + "count": 14175, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c1b06e57fd5c0e07f3": [ + "6808bae8364a85cccb04bb5e": [ [ { - "count": 2100, + "count": 78973, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c1b06e57fd5c0e07f6": [ + "6808bae8364a85cccb04bb6f": [ + [ + { + "count": 2232, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb72": [ + [ + { + "count": 803, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb76": [ + [ + { + "count": 1866, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb79": [ + [ + { + "count": 13125, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb7d": [ + [ + { + "count": 3767, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb80": [ + [ + { + "count": 1608, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb83": [ + [ + { + "count": 4305, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb86": [ + [ + { + "count": 1, + "_tpl": "5c0530ee86f774697952d952" + } + ] + ], + "6808bae8364a85cccb04bb89": [ + [ + { + "count": 1838, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb8c": [ + [ + { + "count": 8610, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb8f": [ + [ + { + "count": 15698, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb92": [ + [ + { + "count": 10158, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb96": [ + [ + { + "count": 4988, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb9a": [ + [ + { + "count": 3150, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bb9d": [ + [ + { + "count": 840, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bba1": [ [ { "count": 3, @@ -7989,255 +8205,7 @@ } ] ], - "677536c1b06e57fd5c0e07f8": [ - [ - { - "count": 10158, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e07fc": [ - [ - { - "count": 1165, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e07ff": [ - [ - { - "count": 10080, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e0802": [ - [ - { - "count": 227580, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e081b": [ - [ - { - "count": 24392, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e081e": [ - [ - { - "count": 7781, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e0821": [ - [ - { - "count": 6678, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e0823": [ - [ - { - "count": 78973, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e0834": [ - [ - { - "count": 147, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e0838": [ - [ - { - "count": 2114, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e083b": [ - [ - { - "count": 3623, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c1b06e57fd5c0e083e": [ - [ - { - "count": 6019, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0842": [ - [ - { - "count": 1849, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0845": [ - [ - { - "count": 4116, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0848": [ - [ - { - "count": 30870, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e084b": [ - [ - { - "count": 840, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e084f": [ - [ - { - "count": 14175, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0852": [ - [ - { - "count": 4988, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0856": [ - [ - { - "count": 4305, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0859": [ - [ - { - "count": 2205, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e085d": [ - [ - { - "count": 1060, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0860": [ - [ - { - "count": 200, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0864": [ - [ - { - "count": 2686, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0867": [ - [ - { - "count": 512657, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e086a": [ - [ - { - "count": 19320, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e086c": [ - [ - { - "count": 41740, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0879": [ - [ - { - "count": 2625, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e087d": [ - [ - { - "count": 3990, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0880": [ - [ - { - "count": 2232, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0883": [ - [ - { - "count": 803, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c2b06e57fd5c0e0887": [ - [ - { - "count": 1665, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e088b": [ + "6808bae8364a85cccb04bba4": [ [ { "count": 1785, @@ -8245,7 +8213,55 @@ } ] ], - "677536c3b06e57fd5c0e088e": [ + "6808bae8364a85cccb04bba7": [ + [ + { + "count": 6930, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bbaa": [ + [ + { + "count": 147, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae8364a85cccb04bbae": [ + [ + { + "count": 24392, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbb1": [ + [ + { + "count": 7781, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbb3": [ + [ + { + "count": 41740, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbbf": [ + [ + { + "count": 227580, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbd3": [ [ { "count": 840, @@ -8253,31 +8269,7 @@ } ] ], - "677536c3b06e57fd5c0e0891": [ - [ - { - "count": 99750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e0894": [ - [ - { - "count": 13125, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e0897": [ - [ - { - "count": 8610, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e089a": [ + "6808bae9364a85cccb04bbd6": [ [ { "count": 1365, @@ -8285,7 +8277,143 @@ } ] ], - "677536c3b06e57fd5c0e089d": [ + "6808bae9364a85cccb04bbd9": [ + [ + { + "count": 33600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbdd": [ + [ + { + "count": 200, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbe1": [ + [ + { + "count": 3780, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbe5": [ + [ + { + "count": 2415, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbe9": [ + [ + { + "count": 1, + "_tpl": "6389c6c7dbfd5e4b95197e68" + } + ] + ], + "6808bae9364a85cccb04bbec": [ + [ + { + "count": 6678, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbef": [ + [ + { + "count": 8453, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbf2": [ + [ + { + "count": 4116, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbf5": [ + [ + { + "count": 2100, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbf8": [ + [ + { + "count": 16065, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bbfe": [ + [ + { + "count": 6642, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc01": [ + [ + { + "count": 1849, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc04": [ + [ + { + "count": 3990, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc07": [ + [ + { + "count": 420, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc0a": [ + [ + { + "count": 2625, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc0e": [ + [ + { + "count": 2686, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808bae9364a85cccb04bc11": [ + [ + { + "count": 2, + "_tpl": "57513fcc24597720a31c09a6" + } + ] + ], + "6808bae9364a85cccb04bc14": [ [ { "count": 4, @@ -8301,175 +8429,23 @@ } ] ], - "677536c3b06e57fd5c0e08a0": [ + "6808bae9364a85cccb04bc17": [ [ { - "count": 15698, + "count": 1365, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c3b06e57fd5c0e08a3": [ + "6808baea364a85cccb04bc1a": [ [ { - "count": 878, + "count": 30870, "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c3b06e57fd5c0e08a6": [ - [ - { - "count": 3767, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08a9": [ - [ - { - "count": 70035, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08ac": [ - [ - { - "count": 1523, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08af": [ - [ - { - "count": 1608, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08b2": [ - [ - { - "count": 1, - "_tpl": "5c0530ee86f774697952d952" - } - ] - ], - "677536c3b06e57fd5c0e08b5": [ - [ - { - "count": 13750, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08b8": [ - [ - { - "count": 1575, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08bb": [ - [ - { - "count": 2, - "_tpl": "57513fcc24597720a31c09a6" - } - ] - ], - "677536c3b06e57fd5c0e08be": [ - [ - { - "count": 1844, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08c1": [ - [ - { - "count": 2295, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c3b06e57fd5c0e08c4": [ - [ - { - "count": 33600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08c7": [ - [ - { - "count": 1, - "_tpl": "6389c6463485cf0eeb260715" - } - ] - ], - "677536c4b06e57fd5c0e08ce": [ - [ - { - "count": 10, - "_tpl": "5fc64ea372b0dd78d51159dc" - } - ] - ], - "677536c4b06e57fd5c0e08d1": [ - [ - { - "count": 1838, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08d4": [ - [ - { - "count": 6642, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08d7": [ - [ - { - "count": 1470, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08da": [ - [ - { - "count": 2100, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08dd": [ - [ - { - "count": 13240, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08e0": [ - [ - { - "count": 8453, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08e3": [ + "6808baea364a85cccb04bc1d": [ [ { "count": 737, @@ -8477,15 +8453,31 @@ } ] ], - "677536c4b06e57fd5c0e08e6": [ + "6808baea364a85cccb04bc20": [ [ { - "count": 1, - "_tpl": "56742c284bdc2d98058b456d" + "count": 2625, + "_tpl": "5449016a4bdc2d6f028b456f" } ] ], - "677536c4b06e57fd5c0e08e8": [ + "6808baea364a85cccb04bc24": [ + [ + { + "count": 878, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc27": [ + [ + { + "count": 1523, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc29": [ [ { "count": 1, @@ -8493,103 +8485,7 @@ } ] ], - "677536c4b06e57fd5c0e08f1": [ - [ - { - "count": 1417, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08f5": [ - [ - { - "count": 1470, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08f8": [ - [ - { - "count": 2055, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08fb": [ - [ - { - "count": 439, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e08ff": [ - [ - { - "count": 7718, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e0902": [ - [ - { - "count": 24581, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e0906": [ - [ - { - "count": 3018, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e0909": [ - [ - { - "count": 4305, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c4b06e57fd5c0e090e": [ - [ - { - "count": 1, - "_tpl": "59e35abd86f7741778269d82" - } - ] - ], - "677536c5b06e57fd5c0e0913": [ - [ - { - "count": 185, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0917": [ - [ - { - "count": 1, - "_tpl": "65815f0e647e3d7246384e14" - } - ] - ], - "677536c5b06e57fd5c0e091a": [ - [ - { - "count": 1306, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e091e": [ + "6808baea364a85cccb04bc32": [ [ { "count": 3265, @@ -8597,143 +8493,15 @@ } ] ], - "677536c5b06e57fd5c0e093c": [ - [ - { - "count": 1838, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e093f": [ - [ - { - "count": 210, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e094f": [ - [ - { - "count": 1652, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0952": [ - [ - { - "count": 3984, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0956": [ - [ - { - "count": 2030, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0959": [ - [ - { - "count": 2369, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e095c": [ - [ - { - "count": 3675, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0960": [ - [ - { - "count": 1158, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0963": [ - [ - { - "count": 1311, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0966": [ - [ - { - "count": 8031, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e0969": [ - [ - { - "count": 3693, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c5b06e57fd5c0e096c": [ + "6808baea364a85cccb04bc36": [ [ { "count": 1, - "_tpl": "5b43575a86f77424f443fe62" + "_tpl": "65815f0e647e3d7246384e14" } ] ], - "677536c6b06e57fd5c0e0975": [ - [ - { - "count": 2, - "_tpl": "67586af7036d7f3da60c3612" - } - ] - ], - "677536c6b06e57fd5c0e0978": [ - [ - { - "count": 224, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c6b06e57fd5c0e097c": [ - [ - { - "count": 1600, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c6b06e57fd5c0e097f": [ - [ - { - "count": 1107, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "677536c6b06e57fd5c0e0984": [ - [ - { - "count": 1, - "_tpl": "5e2aef7986f7746d3f3c33f5" - } - ] - ], - "677536c6b06e57fd5c0e0989": [ + "6808baea364a85cccb04bc39": [ [ { "count": 1470, @@ -8741,7 +8509,143 @@ } ] ], - "677536c6b06e57fd5c0e098e": [ + "6808baea364a85cccb04bc49": [ + [ + { + "count": 3984, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc4d": [ + [ + { + "count": 1470, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc50": [ + [ + { + "count": 1107, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc53": [ + [ + { + "count": 1311, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc56": [ + [ + { + "count": 3675, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc5c": [ + [ + { + "count": 1, + "_tpl": "5e2aef7986f7746d3f3c33f5" + } + ] + ], + "6808baea364a85cccb04bc61": [ + [ + { + "count": 1306, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baea364a85cccb04bc65": [ + [ + { + "count": 8031, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc68": [ + [ + { + "count": 2369, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc6b": [ + [ + { + "count": 3693, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc7d": [ + [ + { + "count": 2, + "_tpl": "67586af7036d7f3da60c3612" + } + ] + ], + "6808baeb364a85cccb04bc80": [ + [ + { + "count": 1417, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc84": [ + [ + { + "count": 210, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc87": [ + [ + { + "count": 4305, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc8a": [ + [ + { + "count": 24581, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc8e": [ + [ + { + "count": 3018, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bc90": [ + [ + { + "count": 1, + "_tpl": "5b43575a86f77424f443fe62" + } + ] + ], + "6808baeb364a85cccb04bc9b": [ [ { "count": 1, @@ -8749,6 +8653,102 @@ } ] ], + "6808baeb364a85cccb04bca0": [ + [ + { + "count": 1158, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bca3": [ + [ + { + "count": 7718, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bca6": [ + [ + { + "count": 2055, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bca9": [ + [ + { + "count": 439, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcad": [ + [ + { + "count": 185, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcb1": [ + [ + { + "count": 1838, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcb4": [ + [ + { + "count": 1600, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcd3": [ + [ + { + "count": 1, + "_tpl": "59e35abd86f7741778269d82" + } + ] + ], + "6808baeb364a85cccb04bcd8": [ + [ + { + "count": 224, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcdc": [ + [ + { + "count": 2030, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bcdf": [ + [ + { + "count": 1652, + "_tpl": "5449016a4bdc2d6f028b456f" + } + ] + ], + "6808baeb364a85cccb04bce2": [ + [ + { + "count": 1, + "_tpl": "56742c284bdc2d98058b456d" + } + ] + ], "6492e44bf4287b13040fcd1e": [ [ { @@ -8759,363 +8759,364 @@ ] }, "loyal_level_items": { - "677536b3b06e57fd5c0e03be": 2, - "677536b3b06e57fd5c0e03ce": 1, - "677536b3b06e57fd5c0e03d2": 1, - "677536b3b06e57fd5c0e03d6": 3, - "677536b3b06e57fd5c0e03d8": 2, - "677536b3b06e57fd5c0e03e1": 2, - "677536b3b06e57fd5c0e03e5": 1, - "677536b3b06e57fd5c0e03e9": 2, - "677536b3b06e57fd5c0e03ec": 4, - "677536b3b06e57fd5c0e03ef": 1, - "677536b3b06e57fd5c0e03f3": 1, - "677536b4b06e57fd5c0e03f6": 2, - "677536b4b06e57fd5c0e03f9": 1, - "677536b4b06e57fd5c0e03fc": 3, - "677536b4b06e57fd5c0e0400": 2, - "677536b4b06e57fd5c0e0403": 2, - "677536b4b06e57fd5c0e0406": 1, - "677536b4b06e57fd5c0e0409": 2, - "677536b4b06e57fd5c0e040c": 1, - "677536b4b06e57fd5c0e040f": 1, - "677536b4b06e57fd5c0e0412": 1, - "677536b4b06e57fd5c0e0416": 1, - "677536b4b06e57fd5c0e0419": 1, - "677536b4b06e57fd5c0e041c": 1, - "677536b4b06e57fd5c0e041f": 1, - "677536b4b06e57fd5c0e0423": 1, - "677536b4b06e57fd5c0e0427": 2, - "677536b4b06e57fd5c0e042a": 2, - "677536b4b06e57fd5c0e042e": 1, - "677536b4b06e57fd5c0e0431": 2, - "677536b5b06e57fd5c0e0435": 1, - "677536b5b06e57fd5c0e0438": 2, - "677536b5b06e57fd5c0e043b": 2, - "677536b5b06e57fd5c0e043f": 3, - "677536b5b06e57fd5c0e0442": 1, - "677536b5b06e57fd5c0e0445": 1, - "677536b5b06e57fd5c0e0448": 1, - "677536b5b06e57fd5c0e044b": 2, - "677536b5b06e57fd5c0e044f": 3, - "677536b5b06e57fd5c0e0452": 1, - "677536b5b06e57fd5c0e045a": 1, - "677536b5b06e57fd5c0e045e": 3, - "677536b5b06e57fd5c0e0461": 1, - "677536b5b06e57fd5c0e0464": 1, - "677536b5b06e57fd5c0e0468": 1, - "677536b5b06e57fd5c0e046b": 1, - "677536b5b06e57fd5c0e046d": 1, - "677536b5b06e57fd5c0e0475": 1, - "677536b5b06e57fd5c0e0479": 2, - "677536b6b06e57fd5c0e047c": 1, - "677536b6b06e57fd5c0e047f": 1, - "677536b6b06e57fd5c0e0490": 4, - "677536b6b06e57fd5c0e0493": 3, - "677536b6b06e57fd5c0e0496": 2, - "677536b6b06e57fd5c0e0499": 1, - "677536b6b06e57fd5c0e049d": 1, - "677536b6b06e57fd5c0e04a1": 1, - "677536b6b06e57fd5c0e04a5": 1, - "677536b6b06e57fd5c0e04a9": 1, - "677536b6b06e57fd5c0e04ac": 1, - "677536b6b06e57fd5c0e04af": 2, - "677536b6b06e57fd5c0e04b2": 3, - "677536b6b06e57fd5c0e04b5": 1, - "677536b6b06e57fd5c0e04b8": 1, - "677536b6b06e57fd5c0e04bb": 2, - "677536b6b06e57fd5c0e04be": 1, - "677536b6b06e57fd5c0e04c1": 2, - "677536b6b06e57fd5c0e04c5": 3, - "677536b6b06e57fd5c0e04c8": 2, - "677536b7b06e57fd5c0e04cb": 3, - "677536b7b06e57fd5c0e04ce": 2, - "677536b7b06e57fd5c0e04d1": 2, - "677536b7b06e57fd5c0e04d4": 1, - "677536b7b06e57fd5c0e04d7": 1, - "677536b7b06e57fd5c0e04db": 4, - "677536b7b06e57fd5c0e04de": 2, - "677536b7b06e57fd5c0e04e2": 3, - "677536b7b06e57fd5c0e04e6": 2, - "677536b7b06e57fd5c0e04e9": 4, - "677536b7b06e57fd5c0e04ec": 4, - "677536b7b06e57fd5c0e04f0": 1, - "677536b7b06e57fd5c0e04f3": 1, - "677536b7b06e57fd5c0e04f6": 2, - "677536b7b06e57fd5c0e04f9": 3, - "677536b7b06e57fd5c0e04fd": 1, - "677536b7b06e57fd5c0e0501": 1, - "677536b7b06e57fd5c0e0505": 2, - "677536b7b06e57fd5c0e0509": 1, - "677536b7b06e57fd5c0e050c": 4, - "677536b7b06e57fd5c0e050f": 4, - "677536b7b06e57fd5c0e0512": 3, - "677536b8b06e57fd5c0e0515": 2, - "677536b8b06e57fd5c0e0519": 4, - "677536b8b06e57fd5c0e051c": 2, - "677536b8b06e57fd5c0e0520": 2, - "677536b8b06e57fd5c0e0523": 3, - "677536b8b06e57fd5c0e0526": 2, - "677536b8b06e57fd5c0e0533": 1, - "677536b8b06e57fd5c0e0536": 1, - "677536b8b06e57fd5c0e053a": 3, - "677536b8b06e57fd5c0e053e": 3, - "677536b8b06e57fd5c0e0542": 2, - "677536b8b06e57fd5c0e0546": 4, - "677536b8b06e57fd5c0e0549": 1, - "677536b8b06e57fd5c0e054b": 1, - "677536b8b06e57fd5c0e0552": 2, - "677536b8b06e57fd5c0e0556": 2, - "677536b8b06e57fd5c0e055a": 1, - "677536b8b06e57fd5c0e055d": 3, - "677536b9b06e57fd5c0e0561": 3, - "677536b9b06e57fd5c0e0565": 3, - "677536b9b06e57fd5c0e0567": 1, - "677536b9b06e57fd5c0e0579": 1, - "677536b9b06e57fd5c0e057c": 1, - "677536b9b06e57fd5c0e057f": 2, - "677536b9b06e57fd5c0e0583": 2, - "677536b9b06e57fd5c0e0587": 1, - "677536b9b06e57fd5c0e058b": 3, - "677536b9b06e57fd5c0e058f": 1, - "677536b9b06e57fd5c0e0592": 3, - "677536b9b06e57fd5c0e0594": 3, - "677536b9b06e57fd5c0e05ba": 2, - "677536b9b06e57fd5c0e05bd": 4, - "677536b9b06e57fd5c0e05c1": 2, - "677536b9b06e57fd5c0e05c4": 1, - "677536bab06e57fd5c0e05c8": 2, - "677536bab06e57fd5c0e05cc": 4, - "677536bab06e57fd5c0e05cf": 3, - "677536bab06e57fd5c0e05d2": 2, - "677536bab06e57fd5c0e05d4": 3, - "677536bab06e57fd5c0e05dd": 2, - "677536bab06e57fd5c0e05e1": 1, - "677536bab06e57fd5c0e05e5": 1, - "677536bab06e57fd5c0e05e8": 1, - "677536bab06e57fd5c0e05ec": 3, - "677536bab06e57fd5c0e05ef": 2, - "677536bab06e57fd5c0e05f2": 2, - "677536bab06e57fd5c0e05f5": 4, - "677536bab06e57fd5c0e0605": 1, - "677536bab06e57fd5c0e0608": 1, - "677536bab06e57fd5c0e0612": 3, - "677536bab06e57fd5c0e0615": 1, - "677536bbb06e57fd5c0e0618": 3, - "677536bbb06e57fd5c0e061c": 1, - "677536bbb06e57fd5c0e061f": 1, - "677536bbb06e57fd5c0e0623": 2, - "677536bbb06e57fd5c0e0627": 1, - "677536bbb06e57fd5c0e062b": 2, - "677536bbb06e57fd5c0e062f": 2, - "677536bbb06e57fd5c0e0633": 1, - "677536bbb06e57fd5c0e0636": 1, - "677536bbb06e57fd5c0e0639": 2, - "677536bbb06e57fd5c0e063c": 1, - "677536bbb06e57fd5c0e0640": 3, - "677536bbb06e57fd5c0e0643": 1, - "677536bbb06e57fd5c0e0647": 2, - "677536bbb06e57fd5c0e064a": 4, - "677536bbb06e57fd5c0e064c": 3, - "677536bbb06e57fd5c0e0655": 4, - "677536bbb06e57fd5c0e0658": 1, - "677536bbb06e57fd5c0e065c": 3, - "677536bbb06e57fd5c0e0660": 1, - "677536bcb06e57fd5c0e0663": 1, - "677536bcb06e57fd5c0e0666": 2, - "677536bcb06e57fd5c0e0668": 4, - "677536bcb06e57fd5c0e0677": 1, - "677536bcb06e57fd5c0e067b": 1, - "677536bcb06e57fd5c0e067f": 4, - "677536bcb06e57fd5c0e0682": 1, - "677536bcb06e57fd5c0e0686": 2, - "677536bcb06e57fd5c0e0689": 3, - "677536bcb06e57fd5c0e068c": 1, - "677536bcb06e57fd5c0e068f": 1, - "677536bcb06e57fd5c0e0693": 1, - "677536bcb06e57fd5c0e0696": 1, - "677536bcb06e57fd5c0e069a": 2, - "677536bcb06e57fd5c0e069e": 2, - "677536bcb06e57fd5c0e06a1": 1, - "677536bcb06e57fd5c0e06a3": 2, - "677536bcb06e57fd5c0e06aa": 1, - "677536bcb06e57fd5c0e06ad": 4, - "677536bdb06e57fd5c0e06b0": 2, - "677536bdb06e57fd5c0e06b3": 3, - "677536bdb06e57fd5c0e06b6": 1, - "677536bdb06e57fd5c0e06ba": 4, - "677536bdb06e57fd5c0e06be": 2, - "677536bdb06e57fd5c0e06c1": 2, - "677536bdb06e57fd5c0e06c4": 3, - "677536bdb06e57fd5c0e06c7": 3, - "677536bdb06e57fd5c0e06ca": 1, - "677536bdb06e57fd5c0e06d4": 1, - "677536bdb06e57fd5c0e06d7": 3, - "677536bdb06e57fd5c0e06da": 1, - "677536bdb06e57fd5c0e06dd": 2, - "677536bdb06e57fd5c0e06e1": 1, - "677536bdb06e57fd5c0e06e4": 4, - "677536bdb06e57fd5c0e06e8": 2, - "677536bdb06e57fd5c0e06ec": 3, - "677536bdb06e57fd5c0e06ef": 3, - "677536bdb06e57fd5c0e06f1": 2, - "677536beb06e57fd5c0e06fa": 4, - "677536beb06e57fd5c0e06fd": 4, - "677536beb06e57fd5c0e0700": 1, - "677536beb06e57fd5c0e0703": 2, - "677536beb06e57fd5c0e0706": 2, - "677536beb06e57fd5c0e070a": 4, - "677536beb06e57fd5c0e070c": 1, - "677536beb06e57fd5c0e0711": 1, - "677536beb06e57fd5c0e0715": 2, - "677536beb06e57fd5c0e0718": 4, - "677536beb06e57fd5c0e071b": 2, - "677536beb06e57fd5c0e071e": 3, - "677536beb06e57fd5c0e0721": 3, - "677536beb06e57fd5c0e0724": 2, - "677536beb06e57fd5c0e0727": 1, - "677536beb06e57fd5c0e0733": 1, - "677536beb06e57fd5c0e0735": 4, - "677536bfb06e57fd5c0e0746": 4, - "677536bfb06e57fd5c0e0749": 2, - "677536bfb06e57fd5c0e074c": 1, - "677536bfb06e57fd5c0e0750": 3, - "677536bfb06e57fd5c0e0753": 4, - "677536bfb06e57fd5c0e0756": 2, - "677536bfb06e57fd5c0e075a": 1, - "677536bfb06e57fd5c0e075e": 3, - "677536bfb06e57fd5c0e0762": 3, - "677536bfb06e57fd5c0e0765": 2, - "677536bfb06e57fd5c0e0768": 2, - "677536bfb06e57fd5c0e076c": 4, - "677536bfb06e57fd5c0e076f": 3, - "677536bfb06e57fd5c0e0773": 2, - "677536bfb06e57fd5c0e0776": 1, - "677536bfb06e57fd5c0e0779": 1, - "677536bfb06e57fd5c0e077b": 4, - "677536bfb06e57fd5c0e079b": 2, - "677536c0b06e57fd5c0e079e": 2, - "677536c0b06e57fd5c0e07a1": 3, - "677536c0b06e57fd5c0e07a4": 3, - "677536c0b06e57fd5c0e07a7": 2, - "677536c0b06e57fd5c0e07a9": 2, - "677536c0b06e57fd5c0e07b3": 4, - "677536c0b06e57fd5c0e07b6": 4, - "677536c0b06e57fd5c0e07b9": 4, - "677536c0b06e57fd5c0e07bc": 3, - "677536c0b06e57fd5c0e07bf": 3, - "677536c0b06e57fd5c0e07c2": 3, - "677536c0b06e57fd5c0e07c5": 1, - "677536c0b06e57fd5c0e07c9": 2, - "677536c0b06e57fd5c0e07cc": 3, - "677536c0b06e57fd5c0e07cf": 1, - "677536c0b06e57fd5c0e07d6": 2, - "677536c0b06e57fd5c0e07da": 1, - "677536c0b06e57fd5c0e07dd": 3, - "677536c0b06e57fd5c0e07e1": 3, - "677536c0b06e57fd5c0e07e4": 4, - "677536c1b06e57fd5c0e07e7": 2, - "677536c1b06e57fd5c0e07eb": 4, - "677536c1b06e57fd5c0e07ef": 3, - "677536c1b06e57fd5c0e07f3": 1, - "677536c1b06e57fd5c0e07f6": 3, - "677536c1b06e57fd5c0e07f8": 2, - "677536c1b06e57fd5c0e07fc": 1, - "677536c1b06e57fd5c0e07ff": 3, - "677536c1b06e57fd5c0e0802": 4, - "677536c1b06e57fd5c0e081b": 2, - "677536c1b06e57fd5c0e081e": 2, - "677536c1b06e57fd5c0e0821": 3, - "677536c1b06e57fd5c0e0823": 3, - "677536c1b06e57fd5c0e0834": 1, - "677536c1b06e57fd5c0e0838": 4, - "677536c1b06e57fd5c0e083b": 4, - "677536c1b06e57fd5c0e083e": 1, - "677536c2b06e57fd5c0e0842": 4, - "677536c2b06e57fd5c0e0845": 1, - "677536c2b06e57fd5c0e0848": 3, - "677536c2b06e57fd5c0e084b": 3, - "677536c2b06e57fd5c0e084f": 3, - "677536c2b06e57fd5c0e0852": 4, - "677536c2b06e57fd5c0e0856": 1, - "677536c2b06e57fd5c0e0859": 3, - "677536c2b06e57fd5c0e085d": 3, - "677536c2b06e57fd5c0e0860": 1, - "677536c2b06e57fd5c0e0864": 4, - "677536c2b06e57fd5c0e0867": 4, - "677536c2b06e57fd5c0e086a": 4, - "677536c2b06e57fd5c0e086c": 2, - "677536c2b06e57fd5c0e0879": 3, - "677536c2b06e57fd5c0e087d": 2, - "677536c2b06e57fd5c0e0880": 3, - "677536c2b06e57fd5c0e0883": 4, - "677536c2b06e57fd5c0e0887": 2, - "677536c3b06e57fd5c0e088b": 2, - "677536c3b06e57fd5c0e088e": 3, - "677536c3b06e57fd5c0e0891": 3, - "677536c3b06e57fd5c0e0894": 3, - "677536c3b06e57fd5c0e0897": 3, - "677536c3b06e57fd5c0e089a": 1, - "677536c3b06e57fd5c0e089d": 4, - "677536c3b06e57fd5c0e08a0": 4, - "677536c3b06e57fd5c0e08a3": 1, - "677536c3b06e57fd5c0e08a6": 4, - "677536c3b06e57fd5c0e08a9": 4, - "677536c3b06e57fd5c0e08ac": 3, - "677536c3b06e57fd5c0e08af": 3, - "677536c3b06e57fd5c0e08b2": 4, - "677536c3b06e57fd5c0e08b5": 4, - "677536c3b06e57fd5c0e08b8": 3, - "677536c3b06e57fd5c0e08bb": 2, - "677536c3b06e57fd5c0e08be": 1, - "677536c3b06e57fd5c0e08c1": 4, - "677536c3b06e57fd5c0e08c4": 3, - "677536c4b06e57fd5c0e08c7": 1, - "677536c4b06e57fd5c0e08ce": 4, - "677536c4b06e57fd5c0e08d1": 1, - "677536c4b06e57fd5c0e08d4": 4, - "677536c4b06e57fd5c0e08d7": 1, - "677536c4b06e57fd5c0e08da": 3, - "677536c4b06e57fd5c0e08dd": 2, - "677536c4b06e57fd5c0e08e0": 4, - "677536c4b06e57fd5c0e08e3": 1, - "677536c4b06e57fd5c0e08e6": 3, - "677536c4b06e57fd5c0e08e8": 2, - "677536c4b06e57fd5c0e08f1": 3, - "677536c4b06e57fd5c0e08f5": 1, - "677536c4b06e57fd5c0e08f8": 2, - "677536c4b06e57fd5c0e08fb": 3, - "677536c4b06e57fd5c0e08ff": 2, - "677536c4b06e57fd5c0e0902": 1, - "677536c4b06e57fd5c0e0906": 2, - "677536c4b06e57fd5c0e0909": 1, - "677536c4b06e57fd5c0e090e": 2, - "677536c5b06e57fd5c0e0913": 1, - "677536c5b06e57fd5c0e0917": 4, - "677536c5b06e57fd5c0e091a": 2, - "677536c5b06e57fd5c0e091e": 3, - "677536c5b06e57fd5c0e0921": 4, - "677536c5b06e57fd5c0e093c": 2, - "677536c5b06e57fd5c0e093f": 1, - "677536c5b06e57fd5c0e0941": 4, - "677536c5b06e57fd5c0e094f": 1, - "677536c5b06e57fd5c0e0952": 2, - "677536c5b06e57fd5c0e0956": 3, - "677536c5b06e57fd5c0e0959": 1, - "677536c5b06e57fd5c0e095c": 1, - "677536c5b06e57fd5c0e0960": 1, - "677536c5b06e57fd5c0e0963": 1, - "677536c5b06e57fd5c0e0966": 4, - "677536c5b06e57fd5c0e0969": 1, - "677536c5b06e57fd5c0e096c": 3, - "677536c6b06e57fd5c0e0975": 4, - "677536c6b06e57fd5c0e0978": 2, - "677536c6b06e57fd5c0e097c": 1, - "677536c6b06e57fd5c0e097f": 2, - "677536c6b06e57fd5c0e0984": 3, - "677536c6b06e57fd5c0e0989": 1, - "677536c6b06e57fd5c0e098e": 3, - "677536c6b06e57fd5c0e0992": 3, + "6808badc364a85cccb04b703": 1, + "6808badc364a85cccb04b706": 1, + "6808badc364a85cccb04b70a": 1, + "6808badc364a85cccb04b70e": 1, + "6808badc364a85cccb04b712": 1, + "6808badc364a85cccb04b715": 1, + "6808badc364a85cccb04b718": 1, + "6808badc364a85cccb04b71c": 2, + "6808badc364a85cccb04b71f": 4, + "6808badc364a85cccb04b722": 2, + "6808badd364a85cccb04b726": 2, + "6808badd364a85cccb04b72a": 4, + "6808badd364a85cccb04b72c": 2, + "6808badd364a85cccb04b735": 2, + "6808badd364a85cccb04b739": 1, + "6808badd364a85cccb04b73d": 2, + "6808badd364a85cccb04b740": 1, + "6808badd364a85cccb04b743": 1, + "6808badd364a85cccb04b746": 1, + "6808badd364a85cccb04b74a": 1, + "6808badd364a85cccb04b74e": 2, + "6808badd364a85cccb04b750": 1, + "6808badd364a85cccb04b759": 2, + "6808badd364a85cccb04b75c": 1, + "6808badd364a85cccb04b75f": 3, + "6808badd364a85cccb04b762": 3, + "6808badd364a85cccb04b765": 2, + "6808badd364a85cccb04b769": 1, + "6808badd364a85cccb04b76c": 1, + "6808badd364a85cccb04b770": 1, + "6808badd364a85cccb04b773": 2, + "6808badd364a85cccb04b777": 3, + "6808badd364a85cccb04b77b": 1, + "6808badd364a85cccb04b77e": 1, + "6808badd364a85cccb04b786": 1, + "6808bade364a85cccb04b789": 1, + "6808bade364a85cccb04b78d": 1, + "6808bade364a85cccb04b790": 2, + "6808bade364a85cccb04b793": 1, + "6808bade364a85cccb04b796": 1, + "6808bade364a85cccb04b79a": 1, + "6808bade364a85cccb04b79e": 1, + "6808bade364a85cccb04b7a2": 3, + "6808bade364a85cccb04b7a5": 1, + "6808bade364a85cccb04b7a9": 1, + "6808bade364a85cccb04b7ac": 3, + "6808bade364a85cccb04b7af": 1, + "6808bade364a85cccb04b7c0": 1, + "6808bade364a85cccb04b7c4": 1, + "6808bade364a85cccb04b7c6": 2, + "6808bade364a85cccb04b7d4": 1, + "6808bade364a85cccb04b7d8": 1, + "6808bade364a85cccb04b7db": 2, + "6808bade364a85cccb04b7de": 1, + "6808bade364a85cccb04b7e1": 3, + "6808bade364a85cccb04b7e4": 2, + "6808bade364a85cccb04b7e7": 2, + "6808bade364a85cccb04b7ea": 2, + "6808badf364a85cccb04b7ed": 2, + "6808badf364a85cccb04b7f0": 1, + "6808badf364a85cccb04b7f4": 3, + "6808badf364a85cccb04b7f8": 1, + "6808badf364a85cccb04b7fb": 3, + "6808badf364a85cccb04b7fe": 2, + "6808badf364a85cccb04b802": 3, + "6808badf364a85cccb04b805": 2, + "6808badf364a85cccb04b808": 2, + "6808badf364a85cccb04b80c": 1, + "6808badf364a85cccb04b80f": 2, + "6808badf364a85cccb04b812": 2, + "6808badf364a85cccb04b815": 2, + "6808badf364a85cccb04b818": 1, + "6808badf364a85cccb04b81b": 2, + "6808badf364a85cccb04b81e": 3, + "6808badf364a85cccb04b821": 4, + "6808badf364a85cccb04b824": 3, + "6808badf364a85cccb04b828": 2, + "6808badf364a85cccb04b82c": 2, + "6808badf364a85cccb04b830": 3, + "6808badf364a85cccb04b833": 1, + "6808badf364a85cccb04b836": 4, + "6808badf364a85cccb04b839": 1, + "6808badf364a85cccb04b83c": 4, + "6808bae0364a85cccb04b83f": 4, + "6808bae0364a85cccb04b843": 4, + "6808bae0364a85cccb04b846": 1, + "6808bae0364a85cccb04b849": 2, + "6808bae0364a85cccb04b84d": 1, + "6808bae0364a85cccb04b851": 2, + "6808bae0364a85cccb04b854": 2, + "6808bae0364a85cccb04b857": 1, + "6808bae0364a85cccb04b85b": 4, + "6808bae0364a85cccb04b85e": 3, + "6808bae0364a85cccb04b862": 1, + "6808bae0364a85cccb04b865": 1, + "6808bae0364a85cccb04b868": 1, + "6808bae0364a85cccb04b86b": 1, + "6808bae0364a85cccb04b86e": 3, + "6808bae0364a85cccb04b871": 2, + "6808bae0364a85cccb04b875": 1, + "6808bae0364a85cccb04b879": 3, + "6808bae0364a85cccb04b87d": 1, + "6808bae0364a85cccb04b881": 2, + "6808bae0364a85cccb04b884": 2, + "6808bae0364a85cccb04b888": 2, + "6808bae0364a85cccb04b88c": 1, + "6808bae0364a85cccb04b890": 2, + "6808bae0364a85cccb04b894": 2, + "6808bae1364a85cccb04b898": 1, + "6808bae1364a85cccb04b89c": 1, + "6808bae1364a85cccb04b89f": 2, + "6808bae1364a85cccb04b8a3": 1, + "6808bae1364a85cccb04b8a5": 1, + "6808bae1364a85cccb04b8b7": 4, + "6808bae1364a85cccb04b8ba": 3, + "6808bae1364a85cccb04b8be": 2, + "6808bae1364a85cccb04b8c2": 1, + "6808bae1364a85cccb04b8c5": 2, + "6808bae1364a85cccb04b8c8": 1, + "6808bae1364a85cccb04b8cb": 1, + "6808bae1364a85cccb04b8cf": 1, + "6808bae1364a85cccb04b8d2": 1, + "6808bae1364a85cccb04b8d9": 3, + "6808bae1364a85cccb04b8dc": 2, + "6808bae1364a85cccb04b8df": 4, + "6808bae1364a85cccb04b8e3": 2, + "6808bae1364a85cccb04b8e6": 2, + "6808bae1364a85cccb04b8ea": 3, + "6808bae1364a85cccb04b8ed": 3, + "6808bae1364a85cccb04b8f7": 4, + "6808bae1364a85cccb04b8fa": 1, + "6808bae2364a85cccb04b8fe": 2, + "6808bae2364a85cccb04b901": 2, + "6808bae2364a85cccb04b904": 1, + "6808bae2364a85cccb04b908": 1, + "6808bae2364a85cccb04b90b": 1, + "6808bae2364a85cccb04b90f": 3, + "6808bae2364a85cccb04b912": 4, + "6808bae2364a85cccb04b915": 1, + "6808bae2364a85cccb04b918": 1, + "6808bae2364a85cccb04b91c": 2, + "6808bae2364a85cccb04b920": 1, + "6808bae2364a85cccb04b923": 3, + "6808bae2364a85cccb04b926": 3, + "6808bae2364a85cccb04b92a": 1, + "6808bae2364a85cccb04b92e": 2, + "6808bae2364a85cccb04b932": 2, + "6808bae2364a85cccb04b935": 3, + "6808bae2364a85cccb04b938": 3, + "6808bae2364a85cccb04b93c": 1, + "6808bae2364a85cccb04b940": 3, + "6808bae2364a85cccb04b943": 3, + "6808bae2364a85cccb04b94b": 1, + "6808bae2364a85cccb04b94d": 2, + "6808bae2364a85cccb04b958": 3, + "6808bae3364a85cccb04b95c": 1, + "6808bae3364a85cccb04b960": 3, + "6808bae3364a85cccb04b964": 4, + "6808bae3364a85cccb04b966": 1, + "6808bae3364a85cccb04b96f": 4, + "6808bae3364a85cccb04b97f": 1, + "6808bae3364a85cccb04b983": 1, + "6808bae3364a85cccb04b985": 3, + "6808bae3364a85cccb04b9aa": 4, + "6808bae3364a85cccb04b9b9": 2, + "6808bae3364a85cccb04b9bd": 1, + "6808bae3364a85cccb04b9c0": 1, + "6808bae3364a85cccb04b9c2": 1, + "6808bae3364a85cccb04b9cc": 4, + "6808bae3364a85cccb04b9cf": 2, + "6808bae3364a85cccb04b9d2": 4, + "6808bae3364a85cccb04b9d5": 4, + "6808bae3364a85cccb04b9d8": 2, + "6808bae3364a85cccb04b9dc": 4, + "6808bae4364a85cccb04b9de": 4, + "6808bae4364a85cccb04b9fe": 4, + "6808bae4364a85cccb04ba00": 1, + "6808bae4364a85cccb04ba05": 2, + "6808bae4364a85cccb04ba08": 2, + "6808bae4364a85cccb04ba0c": 1, + "6808bae4364a85cccb04ba0f": 4, + "6808bae4364a85cccb04ba13": 3, + "6808bae4364a85cccb04ba16": 2, + "6808bae4364a85cccb04ba1a": 4, + "6808bae4364a85cccb04ba1d": 4, + "6808bae4364a85cccb04ba21": 2, + "6808bae4364a85cccb04ba24": 1, + "6808bae4364a85cccb04ba27": 1, + "6808bae4364a85cccb04ba2a": 1, + "6808bae4364a85cccb04ba2d": 2, + "6808bae4364a85cccb04ba35": 2, + "6808bae4364a85cccb04ba38": 2, + "6808bae4364a85cccb04ba3c": 3, + "6808bae4364a85cccb04ba3f": 4, + "6808bae4364a85cccb04ba42": 4, + "6808bae4364a85cccb04ba45": 3, + "6808bae4364a85cccb04ba49": 1, + "6808bae4364a85cccb04ba4d": 1, + "6808bae5364a85cccb04ba50": 1, + "6808bae5364a85cccb04ba52": 4, + "6808bae5364a85cccb04ba62": 4, + "6808bae5364a85cccb04ba65": 1, + "6808bae5364a85cccb04ba68": 2, + "6808bae5364a85cccb04ba6b": 3, + "6808bae5364a85cccb04ba6e": 2, + "6808bae5364a85cccb04ba71": 2, + "6808bae5364a85cccb04ba75": 1, + "6808bae5364a85cccb04ba78": 2, + "6808bae5364a85cccb04ba7f": 2, + "6808bae5364a85cccb04ba83": 3, + "6808bae5364a85cccb04ba87": 2, + "6808bae5364a85cccb04ba8a": 3, + "6808bae5364a85cccb04ba8d": 2, + "6808bae5364a85cccb04ba91": 1, + "6808bae5364a85cccb04ba95": 4, + "6808bae5364a85cccb04ba99": 2, + "6808bae5364a85cccb04ba9c": 1, + "6808bae5364a85cccb04baa0": 2, + "6808bae5364a85cccb04baa3": 1, + "6808bae5364a85cccb04baa7": 3, + "6808bae6364a85cccb04baaa": 3, + "6808bae6364a85cccb04baac": 1, + "6808bae6364a85cccb04bab8": 4, + "6808bae6364a85cccb04babb": 1, + "6808bae6364a85cccb04babf": 4, + "6808bae6364a85cccb04bac2": 3, + "6808bae6364a85cccb04bac5": 2, + "6808bae6364a85cccb04bac9": 3, + "6808bae6364a85cccb04bacc": 3, + "6808bae6364a85cccb04bacf": 1, + "6808bae6364a85cccb04bad2": 3, + "6808bae6364a85cccb04bad5": 1, + "6808bae6364a85cccb04bad8": 2, + "6808bae6364a85cccb04badb": 2, + "6808bae6364a85cccb04bade": 1, + "6808bae6364a85cccb04bae1": 1, + "6808bae6364a85cccb04bae4": 2, + "6808bae6364a85cccb04bae7": 1, + "6808bae6364a85cccb04baea": 3, + "6808bae6364a85cccb04baed": 2, + "6808bae6364a85cccb04baf0": 3, + "6808bae6364a85cccb04baf4": 3, + "6808bae6364a85cccb04baf6": 2, + "6808bae6364a85cccb04bb00": 1, + "6808bae7364a85cccb04bb03": 3, + "6808bae7364a85cccb04bb07": 4, + "6808bae7364a85cccb04bb0a": 4, + "6808bae7364a85cccb04bb0d": 4, + "6808bae7364a85cccb04bb10": 4, + "6808bae7364a85cccb04bb13": 1, + "6808bae7364a85cccb04bb1a": 1, + "6808bae7364a85cccb04bb1d": 2, + "6808bae7364a85cccb04bb20": 4, + "6808bae7364a85cccb04bb23": 3, + "6808bae7364a85cccb04bb26": 3, + "6808bae7364a85cccb04bb29": 4, + "6808bae7364a85cccb04bb2c": 4, + "6808bae7364a85cccb04bb2f": 2, + "6808bae7364a85cccb04bb33": 1, + "6808bae7364a85cccb04bb37": 1, + "6808bae7364a85cccb04bb3a": 3, + "6808bae7364a85cccb04bb3e": 4, + "6808bae7364a85cccb04bb42": 3, + "6808bae7364a85cccb04bb46": 4, + "6808bae7364a85cccb04bb49": 3, + "6808bae7364a85cccb04bb4d": 1, + "6808bae7364a85cccb04bb51": 4, + "6808bae7364a85cccb04bb55": 2, + "6808bae8364a85cccb04bb59": 3, + "6808bae8364a85cccb04bb5c": 3, + "6808bae8364a85cccb04bb5e": 3, + "6808bae8364a85cccb04bb6f": 3, + "6808bae8364a85cccb04bb72": 4, + "6808bae8364a85cccb04bb76": 3, + "6808bae8364a85cccb04bb79": 3, + "6808bae8364a85cccb04bb7d": 4, + "6808bae8364a85cccb04bb80": 3, + "6808bae8364a85cccb04bb83": 1, + "6808bae8364a85cccb04bb86": 4, + "6808bae8364a85cccb04bb89": 1, + "6808bae8364a85cccb04bb8c": 3, + "6808bae8364a85cccb04bb8f": 4, + "6808bae8364a85cccb04bb92": 2, + "6808bae8364a85cccb04bb96": 4, + "6808bae8364a85cccb04bb9a": 3, + "6808bae8364a85cccb04bb9d": 3, + "6808bae8364a85cccb04bba1": 3, + "6808bae8364a85cccb04bba4": 2, + "6808bae8364a85cccb04bba7": 3, + "6808bae8364a85cccb04bbaa": 1, + "6808bae8364a85cccb04bbae": 2, + "6808bae9364a85cccb04bbb1": 2, + "6808bae9364a85cccb04bbb3": 2, + "6808bae9364a85cccb04bbbf": 4, + "6808bae9364a85cccb04bbd3": 3, + "6808bae9364a85cccb04bbd6": 3, + "6808bae9364a85cccb04bbd9": 3, + "6808bae9364a85cccb04bbdd": 1, + "6808bae9364a85cccb04bbe1": 3, + "6808bae9364a85cccb04bbe5": 3, + "6808bae9364a85cccb04bbe9": 2, + "6808bae9364a85cccb04bbec": 3, + "6808bae9364a85cccb04bbef": 4, + "6808bae9364a85cccb04bbf2": 1, + "6808bae9364a85cccb04bbf5": 1, + "6808bae9364a85cccb04bbf8": 1, + "6808bae9364a85cccb04bbfe": 4, + "6808bae9364a85cccb04bc01": 4, + "6808bae9364a85cccb04bc04": 2, + "6808bae9364a85cccb04bc07": 1, + "6808bae9364a85cccb04bc0a": 2, + "6808bae9364a85cccb04bc0e": 4, + "6808bae9364a85cccb04bc11": 2, + "6808bae9364a85cccb04bc14": 4, + "6808bae9364a85cccb04bc17": 1, + "6808baea364a85cccb04bc1a": 3, + "6808baea364a85cccb04bc1d": 1, + "6808baea364a85cccb04bc20": 3, + "6808baea364a85cccb04bc24": 1, + "6808baea364a85cccb04bc27": 3, + "6808baea364a85cccb04bc29": 2, + "6808baea364a85cccb04bc32": 3, + "6808baea364a85cccb04bc36": 4, + "6808baea364a85cccb04bc39": 1, + "6808baea364a85cccb04bc3b": 4, + "6808baea364a85cccb04bc49": 2, + "6808baea364a85cccb04bc4d": 1, + "6808baea364a85cccb04bc50": 2, + "6808baea364a85cccb04bc53": 1, + "6808baea364a85cccb04bc56": 1, + "6808baea364a85cccb04bc5c": 3, + "6808baea364a85cccb04bc61": 2, + "6808baea364a85cccb04bc65": 4, + "6808baeb364a85cccb04bc68": 1, + "6808baeb364a85cccb04bc6b": 1, + "6808baeb364a85cccb04bc6e": 3, + "6808baeb364a85cccb04bc7d": 4, + "6808baeb364a85cccb04bc80": 3, + "6808baeb364a85cccb04bc84": 1, + "6808baeb364a85cccb04bc87": 1, + "6808baeb364a85cccb04bc8a": 1, + "6808baeb364a85cccb04bc8e": 2, + "6808baeb364a85cccb04bc90": 3, + "6808baeb364a85cccb04bc9b": 3, + "6808baeb364a85cccb04bca0": 1, + "6808baeb364a85cccb04bca3": 2, + "6808baeb364a85cccb04bca6": 2, + "6808baeb364a85cccb04bca9": 3, + "6808baeb364a85cccb04bcad": 1, + "6808baeb364a85cccb04bcb1": 2, + "6808baeb364a85cccb04bcb4": 1, + "6808baeb364a85cccb04bcb6": 4, + "6808baeb364a85cccb04bcd3": 2, + "6808baeb364a85cccb04bcd8": 2, + "6808baeb364a85cccb04bcdc": 3, + "6808baeb364a85cccb04bcdf": 1, + "6808baeb364a85cccb04bce2": 3, + "681093f14dd91d1e35077be9": 1, "6492e44bf4287b13040fcd1e": 1 } } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/questassort.json b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/questassort.json index b846e752..34d80ac5 100644 --- a/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/questassort.json +++ b/Libraries/SPTarkov.Server.Assets/Assets/database/traders/5c0647fdd443bc2504c2d371/questassort.json @@ -1,36 +1,36 @@ { "started": {}, "success": { - "677536b7b06e57fd5c0e0505": "597a0b2986f77426d66c0633", - "677536b6b06e57fd5c0e0490": "5ae3280386f7742a41359364", - "677536b7b06e57fd5c0e04f0": "5bc479e586f7747f376c7da3", - "677536b8b06e57fd5c0e0515": "5bc47dbf86f7741ee74e93b9", - "677536b6b06e57fd5c0e04c8": "5bc47dbf86f7741ee74e93b9", - "677536b8b06e57fd5c0e0520": "5bc480a686f7741af0342e29", - "677536b8b06e57fd5c0e051c": "5bc480a686f7741af0342e29", - "677536b7b06e57fd5c0e04f9": "5bc4826c86f774106d22d88b", - "677536b7b06e57fd5c0e0512": "5bc4836986f7740c0152911c", - "677536b8b06e57fd5c0e0523": "5bc4856986f77454c317bea7", - "677536b7b06e57fd5c0e04e9": "5bc4893c86f774626f5ebf3e", - "677536b7b06e57fd5c0e04ec": "5bc4893c86f774626f5ebf3e", - "677536c0b06e57fd5c0e07b3": "5bc4893c86f774626f5ebf3e", - "677536bfb06e57fd5c0e077b": "5c0bde0986f77479cf22c2f8", - "677536c1b06e57fd5c0e081b": "5d25b6be86f77444001e1b89", - "677536c2b06e57fd5c0e086c": "5d25c81b86f77443e625dd71", - "677536bab06e57fd5c0e05d4": "5d25e2ee86f77443e35162ea", - "677536bbb06e57fd5c0e064c": "5d25e2ee86f77443e35162ea", - "677536bcb06e57fd5c0e0668": "5d25e2ee86f77443e35162ea", - "677536bab06e57fd5c0e05f5": "5d25e2ee86f77443e35162ea", - "677536bcb06e57fd5c0e06ad": "5d25e45e86f77408251c4bfa", - "677536b9b06e57fd5c0e0592": "5d25e46e86f77409453bce7c", - "677536c1b06e57fd5c0e0802": "5d25e4ca86f77409dd5cdf2c", - "677536beb06e57fd5c0e0735": "600302d73b897b11364cd161", - "677536beb06e57fd5c0e0715": "63a511ea30d85e10e375b045", - "677536c0b06e57fd5c0e07e4": "63a9b36cc31b00242d28a99f", + "6808badf364a85cccb04b808": "597a0b2986f77426d66c0633", + "6808badd364a85cccb04b72a": "5ae3280386f7742a41359364", + "6808bae0364a85cccb04b862": "5bc479e586f7747f376c7da3", + "6808bae0364a85cccb04b849": "5bc47dbf86f7741ee74e93b9", + "6808badf364a85cccb04b815": "5bc47dbf86f7741ee74e93b9", + "6808badf364a85cccb04b805": "5bc480a686f7741af0342e29", + "6808badf364a85cccb04b7fe": "5bc480a686f7741af0342e29", + "6808badf364a85cccb04b824": "5bc4826c86f774106d22d88b", + "6808badf364a85cccb04b81e": "5bc4836986f7740c0152911c", + "6808badf364a85cccb04b7f4": "5bc4856986f77454c317bea7", + "6808bae0364a85cccb04b843": "5bc4893c86f774626f5ebf3e", + "6808bae0364a85cccb04b83f": "5bc4893c86f774626f5ebf3e", + "6808bae3364a85cccb04b9dc": "5bc4893c86f774626f5ebf3e", + "6808bae4364a85cccb04b9de": "5c0bde0986f77479cf22c2f8", + "6808bae8364a85cccb04bbae": "5d25b6be86f77444001e1b89", + "6808bae9364a85cccb04bbb3": "5d25c81b86f77443e625dd71", + "6808bae2364a85cccb04b943": "5d25e2ee86f77443e35162ea", + "6808bae1364a85cccb04b8ed": "5d25e2ee86f77443e35162ea", + "6808bae3364a85cccb04b9aa": "5d25e2ee86f77443e35162ea", + "6808bae3364a85cccb04b96f": "5d25e2ee86f77443e35162ea", + "6808bae5364a85cccb04ba62": "5d25e45e86f77408251c4bfa", + "6808bae2364a85cccb04b923": "5d25e46e86f77409453bce7c", + "6808bae9364a85cccb04bbbf": "5d25e4ca86f77409dd5cdf2c", + "6808bae5364a85cccb04ba52": "600302d73b897b11364cd161", + "6808bae6364a85cccb04bae4": "63a511ea30d85e10e375b045", + "6808bae7364a85cccb04bb29": "63a9b36cc31b00242d28a99f", "6492e44bf4287b13040fcd1e": "64764abcd125ab430a14ccb5", - "677536c3b06e57fd5c0e08b2": "64e7b971f9d6fa49d6769b44", - "677536c4b06e57fd5c0e08ce": "64ee99639878a0569d6ec8c9", - "677536c4b06e57fd5c0e0902": "66b38e144f2ab7cc530c3fe7" + "6808bae7364a85cccb04bb07": "64e7b971f9d6fa49d6769b44", + "6808bae8364a85cccb04bb86": "64ee99639878a0569d6ec8c9", + "6808baeb364a85cccb04bc8a": "66b38e144f2ab7cc530c3fe7" }, "fail": {} } \ No newline at end of file diff --git a/Libraries/SPTarkov.Server.Assets/SPTarkov.Server.Assets.csproj b/Libraries/SPTarkov.Server.Assets/SPTarkov.Server.Assets.csproj index 0730364f..e6c3d5ec 100644 --- a/Libraries/SPTarkov.Server.Assets/SPTarkov.Server.Assets.csproj +++ b/Libraries/SPTarkov.Server.Assets/SPTarkov.Server.Assets.csproj @@ -1,6 +1,6 @@ - + SPTarkov.Server.Assets diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/AchievementCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/AchievementCallbacks.cs index c7c8ef6a..d2a5c0c9 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/AchievementCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/AchievementCallbacks.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/BotCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/BotCallbacks.cs index 64986901..c1b9f320 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/BotCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/BotCallbacks.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Bot; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Match; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/BuildsCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/BuildsCallbacks.cs index 7dbdc2a5..4afbd207 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/BuildsCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/BuildsCallbacks.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Builds; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.PresetBuild; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/BundleCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/BundleCallbacks.cs index 7267041f..2bc76b8a 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/BundleCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/BundleCallbacks.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Loaders; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Loaders; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -20,7 +20,7 @@ public class BundleCallbacks( } /// - /// TODO: what does it do + /// TODO: what does it do /// /// public string GetBundle(string url, object info, string sessionID) diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/ClientLogCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/ClientLogCallbacks.cs index 46f3ee8e..6f64fd6a 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/ClientLogCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/ClientLogCallbacks.cs @@ -1,12 +1,11 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; +using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Spt.Logging; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Server; -using SPTarkov.Common.Annotations; -using SPTarkov.Server.Core.Models.Enums; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/CustomizationCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/CustomizationCallbacks.cs index 5c292781..9f259e10 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/CustomizationCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/CustomizationCallbacks.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Customization; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/DataCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/DataCallbacks.cs index 8f740905..1e4d8b81 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/DataCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/DataCallbacks.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/DialogueCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/DialogueCallbacks.cs index 32803afc..5d0f3c44 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/DialogueCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/DialogueCallbacks.cs @@ -1,11 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Request; -using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Dialog; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -73,7 +72,7 @@ public class DialogueCallbacks( /// /// Handle client/mail/dialog/list - /// TODO: request properties are not handled + /// TODO: request properties are not handled /// /// public virtual string GetMailDialogList(string url, GetMailDialogListRequestData request, string sessionID) diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/GameCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/GameCallbacks.cs index 6ba4c722..d10ad6fe 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/GameCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/GameCallbacks.cs @@ -1,11 +1,11 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Game; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/HandbookCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/HandbookCallbacks.cs index 82b61216..c0f4face 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/HandbookCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/HandbookCallbacks.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/HealthCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/HealthCallbacks.cs index 4c89c838..69f69843 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/HealthCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/HealthCallbacks.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Health; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/HideoutCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/HideoutCallbacks.cs index b19145f3..570ec990 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/HideoutCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/HideoutCallbacks.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Hideout; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -172,7 +172,7 @@ public class HideoutCallbacks( } /// - /// Handle client/game/profile/items/moving - hideoutCustomizationSetMannequinPose + /// Handle client/game/profile/items/moving - hideoutCustomizationSetMannequinPose /// /// public ItemEventRouterResponse HideoutCustomizationSetMannequinPose(PmcData pmcData, HideoutCustomizationSetMannequinPoseRequest request, string sessionId) diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/HttpCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/HttpCallbacks.cs index 14298ee8..1aabb187 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/HttpCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/HttpCallbacks.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/InraidCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/InraidCallbacks.cs index 3a94eb62..aacc7409 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/InraidCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/InraidCallbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.InRaid; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/InsuranceCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/InsuranceCallbacks.cs index 05834796..84db677d 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/InsuranceCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/InsuranceCallbacks.cs @@ -1,4 +1,5 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Insurance; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/InventoryCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/InventoryCallbacks.cs index 5cd0380e..5ceef18f 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/InventoryCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/InventoryCallbacks.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Inventory; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Quests; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -274,7 +274,7 @@ public class InventoryCallbacks( } /// - /// Handle game/profile/items/moving SetFavoriteItems + /// Handle game/profile/items/moving SetFavoriteItems /// /// Players PMC profile /// diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/ItemEventCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/ItemEventCallbacks.cs index 128faf68..ce25c4f4 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/ItemEventCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/ItemEventCallbacks.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/LauncherCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/LauncherCallbacks.cs index 9f7a2483..f0273042 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/LauncherCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/LauncherCallbacks.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/LauncherV2Callbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/LauncherV2Callbacks.cs index 0ea47b69..a1343b1a 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/LauncherV2Callbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/LauncherV2Callbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Models.Spt.Launcher; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/LocationCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/LocationCallbacks.cs index c943b68a..18d953cd 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/LocationCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/LocationCallbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Location; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/MatchCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/MatchCallbacks.cs index b7efc3bd..1066b30b 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/MatchCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/MatchCallbacks.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Match; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using static SPTarkov.Server.Core.Services.MatchLocationService; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/NoteCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/NoteCallbacks.cs index 84faa854..58f93495 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/NoteCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/NoteCallbacks.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Notes; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/NotifierCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/NotifierCallbacks.cs index 86d8b2af..53f5e53b 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/NotifierCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/NotifierCallbacks.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Notifier; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -17,12 +17,11 @@ public class NotifierCallbacks( HttpServerHelper httpServerHelper ) { - /// - /// If we don't have anything to send, it's ok to not send anything back - /// because notification requests can be long-polling. In fact, we SHOULD wait - /// until we actually have something to send because otherwise we'd spam the client - /// and the client would abort the connection due to spam. + /// If we don't have anything to send, it's ok to not send anything back + /// because notification requests can be long-polling. In fact, we SHOULD wait + /// until we actually have something to send because otherwise we'd spam the client + /// and the client would abort the connection due to spam. /// public void SendNotification(string sessionID, HttpRequest req, HttpResponse resp, object data) { @@ -40,12 +39,11 @@ public class NotifierCallbacks( /// - /// TODO: removed from client? - /// Handle push/notifier/get - /// Handle push/notifier/getwebsocket + /// TODO: removed from client? + /// Handle push/notifier/get + /// Handle push/notifier/getwebsocket /// /// - public string GetNotifier(string url, IRequestData info, string sessionID) { return _httpResponseUtil.EmptyArrayResponse(); diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/PresetCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/PresetCallbacks.cs index 645aefd4..1768a34f 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/PresetCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/PresetCallbacks.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/PrestigeCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/PrestigeCallbacks.cs index 150758e9..cbc9ac9e 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/PrestigeCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/PrestigeCallbacks.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Prestige; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/ProfileCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/ProfileCallbacks.cs index 053c436a..e0a831ed 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/ProfileCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/ProfileCallbacks.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; @@ -18,7 +18,7 @@ public class ProfileCallbacks( ) { /// - /// Handle client/game/profile/create + /// Handle client/game/profile/create /// /// public string CreateProfile(string url, ProfileCreateRequestData info, string sessionID) @@ -33,8 +33,8 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/list - /// Get the complete player profile (scav + pmc character) + /// Handle client/game/profile/list + /// Get the complete player profile (scav + pmc character) /// /// public string GetProfileData(string url, EmptyRequestData _, string sessionID) @@ -43,9 +43,9 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/savage/regenerate - /// Handle the creation of a scav profile for player - /// Occurs post-raid and when profile first created immediately after character details are confirmed by player + /// Handle client/game/profile/savage/regenerate + /// Handle the creation of a scav profile for player + /// Occurs post-raid and when profile first created immediately after character details are confirmed by player /// /// public string RegenerateScav(string url, EmptyRequestData _, string sessionID) @@ -59,7 +59,7 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/voice/change event + /// Handle client/game/profile/voice/change event /// /// public string ChangeVoice(string url, ProfileChangeVoiceRequestData info, string sessionID) @@ -69,8 +69,8 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/nickname/change event - /// Client allows player to adjust their profile name + /// Handle client/game/profile/nickname/change event + /// Client allows player to adjust their profile name /// /// public string ChangeNickname(string url, ProfileChangeNicknameRequestData info, string sessionID) @@ -92,7 +92,7 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/nickname/validate + /// Handle client/game/profile/nickname/validate /// /// public string ValidateNickname(string url, ValidateNicknameRequestData info, string sessionID) @@ -113,7 +113,7 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/nickname/reserved + /// Handle client/game/profile/nickname/reserved /// /// public string GetReservedNickname(string url, EmptyRequestData _, string sessionID) @@ -128,8 +128,8 @@ public class ProfileCallbacks( } /// - /// Handle client/profile/status - /// Called when creating a character when choosing a character face/voice + /// Handle client/profile/status + /// Called when creating a character when choosing a character face/voice /// /// public string GetProfileStatus(string url, EmptyRequestData _, string sessionID) @@ -138,8 +138,8 @@ public class ProfileCallbacks( } /// - /// Handle client/profile/view - /// Called when viewing another players profile + /// Handle client/profile/view + /// Called when viewing another players profile /// /// public string GetOtherProfile(string url, GetOtherProfileRequest request, string sessionID) @@ -148,7 +148,7 @@ public class ProfileCallbacks( } /// - /// Handle client/profile/settings + /// Handle client/profile/settings /// /// public string GetProfileSettings(string url, GetProfileSettingsRequest info, string sessionID) @@ -157,7 +157,7 @@ public class ProfileCallbacks( } /// - /// Handle client/game/profile/search + /// Handle client/game/profile/search /// /// public string SearchProfiles(string url, SearchProfilesRequestData info, string sessionID) @@ -166,7 +166,7 @@ public class ProfileCallbacks( } /// - /// Handle launcher/profile/info + /// Handle launcher/profile/info /// /// public string GetMiniProfile(string url, GetMiniProfileRequestData info, string sessionID) @@ -175,7 +175,7 @@ public class ProfileCallbacks( } /// - /// Handle /launcher/profiles + /// Handle /launcher/profiles /// /// public string GetAllMiniProfiles(string url, EmptyRequestData _, string sessionID) diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/QuestCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/QuestCallbacks.cs index d2dfa1a8..ca0d7fcd 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/QuestCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/QuestCallbacks.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Quests; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/RagfairCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/RagfairCallbacks.cs index ec616cb7..6135a72e 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/RagfairCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/RagfairCallbacks.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/RepairCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/RepairCallbacks.cs index 7d971104..387e6480 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/RepairCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/RepairCallbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Repair; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/SaveCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/SaveCallbacks.cs index fd0f951f..5d077929 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/SaveCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/SaveCallbacks.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/TradeCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/TradeCallbacks.cs index de2b1a5e..cff28c25 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/TradeCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/TradeCallbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Trade; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/TraderCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/TraderCallbacks.cs index bcff7eb8..7e1b9ee8 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/TraderCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/TraderCallbacks.cs @@ -1,10 +1,10 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/WeatherCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/WeatherCallbacks.cs index 8bd3a1d8..b57d5fee 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/WeatherCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/WeatherCallbacks.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Callbacks/WishlistCallbacks.cs b/Libraries/SPTarkov.Server.Core/Callbacks/WishlistCallbacks.cs index 3a4f7bce..3caf10bb 100644 --- a/Libraries/SPTarkov.Server.Core/Callbacks/WishlistCallbacks.cs +++ b/Libraries/SPTarkov.Server.Core/Callbacks/WishlistCallbacks.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Wishlist; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Callbacks; diff --git a/Libraries/SPTarkov.Server.Core/Constants/BodyPartContants.cs b/Libraries/SPTarkov.Server.Core/Constants/BodyPartContants.cs new file mode 100644 index 00000000..3a3988b2 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Constants/BodyPartContants.cs @@ -0,0 +1,16 @@ +namespace SPTarkov.Server.Core.Constants; + +public static class BodyParts +{ + public const string Head = "Head"; + public const string LeftArm = "LeftArm"; + public const string RightArm = "RightArm"; + public const string Chest = "Chest"; + public const string Stomach = "Stomach"; + public const string LeftLeg = "LeftLeg"; + public const string RightLeg = "RightLeg"; + + // quest data + public const string Legs = "Legs"; + public const string Arms = "Arms"; +} diff --git a/Libraries/SPTarkov.Server.Core/Context/ApplicationContext.cs b/Libraries/SPTarkov.Server.Core/Context/ApplicationContext.cs index c2baefab..989418e7 100644 --- a/Libraries/SPTarkov.Server.Core/Context/ApplicationContext.cs +++ b/Libraries/SPTarkov.Server.Core/Context/ApplicationContext.cs @@ -1,5 +1,4 @@ -using System.Collections.Concurrent; -using SPTarkov.Common.Annotations; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; namespace SPTarkov.Server.Core.Context; @@ -7,20 +6,18 @@ namespace SPTarkov.Server.Core.Context; [Injectable(InjectionType.Singleton)] public class ApplicationContext { - protected const short MaxSavedValues = 10; - protected readonly ConcurrentDictionary> variables = new(); + private const short MaxSavedValues = 10; private static ApplicationContext? _applicationContext; private readonly ISptLogger _logger; + private readonly Dictionary> _variables = new(); + private readonly Lock _lockObject = new(); /// - /// When ApplicationContext gets created by the DI container we store the singleton reference so we can provide it - /// statically for harmony patches! + /// When ApplicationContext gets created by the DI container we store the singleton reference so we can provide it + /// statically for harmony patches! /// - public ApplicationContext - ( - ISptLogger logger - ) + public ApplicationContext(ISptLogger logger) { _logger = logger; _applicationContext = this; @@ -33,49 +30,61 @@ public class ApplicationContext public ContextVariable? GetLatestValue(ContextVariableType type) { - if (variables.TryGetValue(type, out var savedValues)) + lock (_lockObject) { - return savedValues.Last!.Value; - } + if (_variables.TryGetValue(type, out var savedValues)) + { + return savedValues.Last!.Value; + } - return null; + return null; + } } public ICollection GetValues(ContextVariableType type) { - var values = new List(); - if (variables.TryGetValue(type, out var savedValues)) + lock (_lockObject) { - values.AddRange(savedValues); - } + var values = new List(); + if (_variables.TryGetValue(type, out var savedValues)) + { + values.AddRange(savedValues); + } - return values; + return values; + } } public void AddValue(ContextVariableType type, object value) { - if (!variables.TryGetValue(type, out var savedValues)) + lock (_lockObject) { - savedValues = []; - if (!variables.TryAdd(type, savedValues)) + if (!_variables.TryGetValue(type, out var savedValues)) { - _logger.Error($"Unable to add context variable type: {type}"); + savedValues = []; + if (!_variables.TryAdd(type, savedValues)) + { + _logger.Error($"Unable to add context variable type: {type}"); + } } - } - if (savedValues.Count >= MaxSavedValues) - { - savedValues.RemoveFirst(); - } + if (savedValues.Count >= MaxSavedValues) + { + savedValues.RemoveFirst(); + } - savedValues.AddLast(new ContextVariable(value, type)); + savedValues.AddLast(new ContextVariable(value, type)); + } } public void ClearValues(ContextVariableType type) { - if (!variables.Remove(type, out _)) + lock (_lockObject) { - _logger.Error($"Unable to clear context variable type: {type}"); + if (!_variables.Remove(type, out _)) + { + _logger.Error($"Unable to clear context variable type: {type}"); + } } } } diff --git a/Libraries/SPTarkov.Server.Core/Controllers/AchievementController.cs b/Libraries/SPTarkov.Server.Core/Controllers/AchievementController.cs index 5b4fae73..a61d2221 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/AchievementController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/AchievementController.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -17,7 +17,7 @@ public class AchievementController( protected CoreConfig coreConfig = configServer.GetConfig(); /// - /// Get base achievements + /// Get base achievements /// /// Session/player id /// @@ -30,7 +30,7 @@ public class AchievementController( } /// - /// Shows % of 'other' players who've completed each achievement + /// Shows % of 'other' players who've completed each achievement /// /// Session/Player id /// CompletedAchievementsResponse @@ -40,9 +40,11 @@ public class AchievementController( var profiles = profileHelper.GetProfiles(); var achievements = databaseService.GetAchievements(); - foreach (var achievementId in achievements.Select(achievement => achievement.Id).Where(achievementId => !string.IsNullOrEmpty(achievementId))) { + foreach (var achievementId in achievements.Select(achievement => achievement.Id).Where(achievementId => !string.IsNullOrEmpty(achievementId))) + { var percentage = 0; - foreach (var (profileId, profile) in profiles) { + foreach (var (profileId, profile) in profiles) + { if (coreConfig.Features.AchievementProfileIdBlacklist.Contains(profileId)) { continue; @@ -61,10 +63,13 @@ public class AchievementController( percentage++; } - percentage = (percentage / profiles.Count) * 100; + percentage = percentage / profiles.Count * 100; stats.Add(achievementId, percentage); } - return new CompletedAchievementsResponse{ Elements = stats }; + return new CompletedAchievementsResponse + { + Elements = stats + }; } } diff --git a/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs b/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs index 52750ff2..fd70e82f 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs @@ -1,5 +1,6 @@ using System.Diagnostics; using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; @@ -15,7 +16,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Controllers; @@ -39,15 +39,15 @@ public class BotController( { private readonly BotConfig _botConfig = _configServer.GetConfig(); private readonly PmcConfig _pmcConfig = _configServer.GetConfig(); + private static readonly Lock _botListLock = new(); /// - /// Return the number of bot load-out varieties to be generated + /// Return the number of bot load-out varieties to be generated /// /// bot Type we want the load-out gen count for /// number of bots to generate public int GetBotPresetGenerationLimit(string type) { - if (!_botConfig.PresetBatch.TryGetValue(type, out var limit)) { _logger.Warning(_localisationService.GetText("bot-bot_preset_count_value_missing", type)); @@ -56,12 +56,11 @@ public class BotController( } return limit; - } /// - /// Handle singleplayer/settings/bot/difficulty - /// Get the core.json difficulty settings from database/bots + /// Handle singleplayer/settings/bot/difficulty + /// Get the core.json difficulty settings from database/bots /// /// public Dictionary GetBotCoreDifficulty() @@ -70,8 +69,8 @@ public class BotController( } /// - /// Get bot difficulty settings - /// Adjust PMC settings to ensure they engage the correct bot types + /// Get bot difficulty settings + /// Adjust PMC settings to ensure they engage the correct bot types /// /// what bot the server is requesting settings for /// difficulty level server requested settings for @@ -100,7 +99,7 @@ public class BotController( } /// - /// Handle singleplayer/settings/bot/difficulties + /// Handle singleplayer/settings/bot/difficulties /// /// public Dictionary> GetAllBotDifficulties() @@ -160,7 +159,7 @@ public class BotController( } /// - /// Generate bots for a wave + /// Generate bots for a wave /// /// Session/Player id /// @@ -173,7 +172,7 @@ public class BotController( } /// - /// Generate bots for passed in wave data + /// Generate bots for passed in wave data /// /// /// Player generating bots @@ -193,17 +192,21 @@ public class BotController( Task.WaitAll((request.Conditions ?? []) .Select(condition => Task.Factory.StartNew(() => - { - var botWaveGenerationDetails = GetBotGenerationDetailsForWave( - condition, - pmcProfile, - allPmcsHaveSameNameAsPlayer, - raidSettings, - Math.Max(GetBotPresetGenerationLimit(condition.Role), condition.Limit), // Choose largest between value passed in from request vs what's in bot.config - _botHelper.IsBotPmc(condition.Role)); + { + var botWaveGenerationDetails = GetBotGenerationDetailsForWave( + condition, + pmcProfile, + allPmcsHaveSameNameAsPlayer, + raidSettings, + Math.Max(GetBotPresetGenerationLimit(condition.Role), + condition.Limit), // Choose largest between value passed in from request vs what's in bot.config + _botHelper.IsBotPmc(condition.Role)); - result.AddRange(GenerateBotWave(condition, botWaveGenerationDetails, sessionId)); - })).ToArray()); + lock (_botListLock) + { + result.AddRange(GenerateBotWave(condition, botWaveGenerationDetails, sessionId)); + } + })).ToArray()); stopwatch.Stop(); if (_logger.IsLogEnabled(LogLevel.Debug)) @@ -215,7 +218,7 @@ public class BotController( } /// - /// Generate bots for a single wave request + /// Generate bots for a single wave request /// /// /// @@ -255,8 +258,9 @@ public class BotController( } results.Add(bot); + // Store bot details in cache so post-raid PMC messages can use data - _matchBotDetailsCacheService.CacheBot(_cloner.Clone(bot)); + _matchBotDetailsCacheService.CacheBot(bot); } catch (Exception e) { @@ -276,7 +280,7 @@ public class BotController( } /// - /// Pull raid settings from Application context + /// Pull raid settings from Application context /// /// GetRaidConfigurationRequestData if it exists protected GetRaidConfigurationRequestData? GetMostRecentRaidSettings() @@ -294,7 +298,7 @@ public class BotController( } /// - /// Get min/max level range values for a specific map + /// Get min/max level range values for a specific map /// /// Map name e.g. factory4_day /// MinMax values @@ -304,7 +308,7 @@ public class BotController( } /// - /// Create a BotGenerationDetails for the bot generator to use + /// Create a BotGenerationDetails for the bot generator to use /// /// Data from client defining bot type and difficulty /// Player who is generating bots @@ -339,8 +343,8 @@ public class BotController( } /// - /// Get the max number of bots allowed on a map - /// Looks up location player is entering when getting cap value + /// Get the max number of bots allowed on a map + /// Looks up location player is entering when getting cap value /// /// The map location cap was requested for /// bot cap for map @@ -350,6 +354,7 @@ public class BotController( { return _botConfig.MaxBotCap["default"]; } + if (location == "default") { _logger.Warning( @@ -361,7 +366,7 @@ public class BotController( } /// - /// Get weights for what each bot type should use as a brain - used by client + /// Get weights for what each bot type should use as a brain - used by client /// /// public AiBotBrainTypes GetAiBotBrainTypes() diff --git a/Libraries/SPTarkov.Server.Core/Controllers/BuildController.cs b/Libraries/SPTarkov.Server.Core/Controllers/BuildController.cs index 8fdf6b19..8fc8a939 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/BuildController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/BuildController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Builds; using SPTarkov.Server.Core.Models.Eft.PresetBuild; @@ -9,7 +10,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -51,8 +51,7 @@ public class BuildController( .ToList(); // Get players secure container - var playerSecureContainer = profile?.CharacterData?.PmcData?.Inventory?.Items?.FirstOrDefault( - x => x.SlotId == secureContainerSlotId + var playerSecureContainer = profile?.CharacterData?.PmcData?.Inventory?.Items?.FirstOrDefault(x => x.SlotId == secureContainerSlotId ); var firstDefaultItemsSecureContainer = defaultEquipmentPresetsClone? @@ -149,8 +148,7 @@ public class BuildController( Items = request.Items }; - var existingBuild = existingSavedEquipmentBuilds?.FirstOrDefault( - build => build.Name == request.Name || build.Id == request.Id + var existingBuild = existingSavedEquipmentBuilds?.FirstOrDefault(build => build.Name == request.Name || build.Id == request.Id ); if (existingBuild is not null) { @@ -211,8 +209,8 @@ public class BuildController( } /// - /// Handle client/builds/delete - /// Remove build from players profile + /// Handle client/builds/delete + /// Remove build from players profile /// /// /// Session/Player id diff --git a/Libraries/SPTarkov.Server.Core/Controllers/ClientLogController.cs b/Libraries/SPTarkov.Server.Core/Controllers/ClientLogController.cs index 400e90a9..f041c221 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/ClientLogController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/ClientLogController.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Models.Spt.Logging; -using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Logging; +using SPTarkov.Server.Core.Models.Spt.Logging; +using SPTarkov.Server.Core.Models.Utils; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Controllers; @@ -22,27 +22,6 @@ public class ClientLogController( var color = logRequest.Color ?? LogTextColor.White; var backgroundColor = logRequest.BackgroundColor ?? LogBackgroundColor.Default; - switch (logRequest.Level) - { - case LogLevel.Error: - _logger.Error(message); - break; - case LogLevel.Warn: - _logger.Warning(message); - break; - case LogLevel.Success: - case LogLevel.Info: - _logger.Info(message); - break; - case LogLevel.Custom: - _logger.LogWithColor(message, color, backgroundColor, null); - break; - case LogLevel.Debug: - _logger.Debug(message); - break; - default: - _logger.Info(message); - break; - } + _logger.Log(logRequest.Level ?? LogLevel.Info, message, color, backgroundColor); } } diff --git a/Libraries/SPTarkov.Server.Core/Controllers/CustomizationController.cs b/Libraries/SPTarkov.Server.Core/Controllers/CustomizationController.cs index 586cd55b..167dcce5 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/CustomizationController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/CustomizationController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -12,7 +13,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -44,11 +44,10 @@ public class CustomizationController( var suits = _databaseService.GetTrader(traderId).Suits; var matchingSuits = suits?.Where(s => clothing.ContainsKey(s.SuiteId!)).ToList(); - matchingSuits = matchingSuits?.Where( - s => clothing[s.SuiteId ?? string.Empty] - ?.Properties?.Side? - .Contains(pmcData?.Info?.Side ?? string.Empty) ?? - false + matchingSuits = matchingSuits?.Where(s => clothing[s.SuiteId ?? string.Empty] + ?.Properties?.Side? + .Contains(pmcData?.Info?.Side ?? string.Empty) ?? + false ) .ToList(); @@ -121,7 +120,7 @@ public class CustomizationController( } /// - /// Has an outfit been purchased by a player + /// Has an outfit been purchased by a player /// /// clothing id /// Session id of profile to check for clothing in @@ -135,7 +134,7 @@ public class CustomizationController( } /// - /// Get clothing offer from trader by suit id + /// Get clothing offer from trader by suit id /// /// Session/Player id /// @@ -192,7 +191,7 @@ public class CustomizationController( } /// - /// Get all suits from Traders + /// Get all suits from Traders /// /// Session/Player id /// diff --git a/Libraries/SPTarkov.Server.Core/Controllers/DialogueController.cs b/Libraries/SPTarkov.Server.Core/Controllers/DialogueController.cs index 50c35588..cce5aec9 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/DialogueController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/DialogueController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Helpers.Dialogue; using SPTarkov.Server.Core.Models.Eft.Dialog; @@ -9,7 +10,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -340,7 +340,7 @@ public class DialogueController( } /// - /// Get messages from a specific dialog that have items not expired + /// Get messages from a specific dialog that have items not expired /// /// Session/Player id /// Dialog to get mail attachments from @@ -350,7 +350,11 @@ public class DialogueController( var timeNow = _timeUtil.GetTimeStamp(); var dialogs = _dialogueHelper.GetDialogsForProfile(sessionId); - return dialogs[dialogueId].Messages?.Where(message => timeNow < message.DateTime + (message.MaxStorageTime ?? 0)).ToList() ?? []; + return dialogs[dialogueId].Messages?.Where(message => + { + var checkTime = message.DateTime + (message.MaxStorageTime ?? 0); + return timeNow < checkTime; + }).ToList() ?? []; } /// @@ -499,9 +503,8 @@ public class DialogueController( { _mailSendService.SendPlayerMessageToNpc(sessionId, request.DialogId!, request.Text!); - return (_dialogueChatBots.FirstOrDefault( - cb => - cb.GetChatBot().Id == request.DialogId + return (_dialogueChatBots.FirstOrDefault(cb => + cb.GetChatBot().Id == request.DialogId ) ?.HandleMessage(sessionId, request) ?? request.DialogId) ?? @@ -553,7 +556,7 @@ public class DialogueController( } /// - /// Has a dialog message expired + /// Has a dialog message expired /// /// Message to check expiry of /// True = expired @@ -563,7 +566,7 @@ public class DialogueController( } /// - /// Handle client/friend/request/send + /// Handle client/friend/request/send /// /// Session/player id /// Sent friend request @@ -614,7 +617,7 @@ public class DialogueController( } /// - /// Handle client/friend/delete + /// Handle client/friend/delete /// /// Session/player id /// Sent delete friend request diff --git a/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs b/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs index a8f45e44..cfb96658 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,6 +6,7 @@ using SPTarkov.Server.Core.Models.Eft.Game; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; +using SPTarkov.Server.Core.Models.Spt.Location; using SPTarkov.Server.Core.Models.Spt.Mod; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; @@ -12,10 +14,7 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Json; -using SPTarkov.Server; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; -using SPTarkov.Server.Core.Models.Spt.Location; namespace SPTarkov.Server.Core.Controllers; @@ -353,7 +352,7 @@ public class GameController( .Aggregate(0d, (sum, bonus) => sum + bonus.Value!.Value); // Player has energy deficit - if (Math.Abs(pmcProfile.Health?.Energy?.Current - pmcProfile.Health?.Energy?.Maximum ?? 1) <= _deviation) + if (pmcProfile.Health?.Energy?.Current - pmcProfile.Health?.Energy?.Maximum <= _deviation) { // Set new value, whatever is smallest pmcProfile.Health!.Energy!.Current += Math.Round(energyRegenPerHour * (diffSeconds!.Value / 3600)); @@ -364,7 +363,7 @@ public class GameController( } // Player has hydration deficit - if (Math.Abs(pmcProfile.Health?.Hydration?.Current - pmcProfile.Health?.Hydration?.Maximum ?? 1) <= _deviation) + if (pmcProfile.Health?.Hydration?.Current - pmcProfile.Health?.Hydration?.Maximum <= _deviation) { pmcProfile.Health!.Hydration!.Current += Math.Round(hydrationRegenPerHour * (diffSeconds!.Value / 3600)); if (pmcProfile.Health.Hydration.Current > pmcProfile.Health.Hydration.Maximum) @@ -458,7 +457,7 @@ public class GameController( } /// - /// Mechanic sends players a measuring tape on profile start for some reason + /// Mechanic sends players a measuring tape on profile start for some reason /// /// protected void SendMechanicGiftsToNewProfile(PmcData pmcProfile) @@ -478,9 +477,8 @@ public class GameController( foreach (var mod in mods) { if ( - fullProfile.SptData.Mods.Any( - m => - m.Author == mod.PackageJson.Author && m.Version == mod.PackageJson.Version && m.Name == mod.PackageJson.Name + fullProfile.SptData.Mods.Any(m => + m.Author == mod.PackageJson.Author && m.Version == mod.PackageJson.Version && m.Name == mod.PackageJson.Name ) ) { diff --git a/Libraries/SPTarkov.Server.Core/Controllers/HealthController.cs b/Libraries/SPTarkov.Server.Core/Controllers/HealthController.cs index 09a9c4d1..5d3eb52e 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/HealthController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/HealthController.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,8 +12,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Controllers; @@ -208,7 +208,7 @@ public class HealthController( } /// - /// Apply effects to profile from consumable used + /// Apply effects to profile from consumable used /// /// Hydration/Energy /// Properties of consumed item diff --git a/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs b/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs index 283bf7ff..8c79e011 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; @@ -15,7 +16,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -58,8 +58,8 @@ public class HideoutController( protected HideoutConfig _hideoutConfig = _configServer.GetConfig(); /// - /// Handle HideoutUpgrade event - /// Start a hideout area upgrade + /// Handle HideoutUpgrade event + /// Start a hideout area upgrade /// /// Player profile /// Start upgrade request @@ -67,8 +67,7 @@ public class HideoutController( /// Client response public void StartUpgrade(PmcData pmcData, HideoutUpgradeRequestData request, string sessionID, ItemEventRouterResponse output) { - var items = request.Items.Select( - reqItem => + var items = request.Items.Select(reqItem => { var item = pmcData.Inventory.Items.FirstOrDefault(invItem => invItem.Id == reqItem.Id); return new @@ -141,14 +140,14 @@ public class HideoutController( var timestamp = _timeUtil.GetTimeStamp(); - profileHideoutArea.CompleteTime = (int)Math.Round(timestamp - ctime.Value); + profileHideoutArea.CompleteTime = (int) Math.Round(timestamp + ctime.Value); profileHideoutArea.Constructing = true; } } /// - /// Handle HideoutUpgradeComplete event - /// Complete a hideout area upgrade + /// Handle HideoutUpgradeComplete event + /// Complete a hideout area upgrade /// /// Player profile /// Completed upgrade request @@ -232,7 +231,7 @@ public class HideoutController( } /// - /// Upgrade wall status to visible in profile if medstation/water collector are both level 1 + /// Upgrade wall status to visible in profile if medstation/water collector are both level 1 /// /// Player profile protected void SetWallVisibleIfPrereqsMet(PmcData pmcData) @@ -250,7 +249,7 @@ public class HideoutController( } /// - /// Add a stash upgrade to profile + /// Add a stash upgrade to profile /// /// Client response /// Session/Player id @@ -317,7 +316,7 @@ public class HideoutController( } /// - /// Add an inventory item to profile from a hideout area stage data + /// Add an inventory item to profile from a hideout area stage data /// /// Session/Player id /// Players PMC profile @@ -344,7 +343,7 @@ public class HideoutController( } /// - /// Include container upgrade in client response + /// Include container upgrade in client response /// /// Session/Player id /// Key of hideout area that's been upgraded @@ -366,8 +365,8 @@ public class HideoutController( } /// - /// Handle HideoutPutItemsInAreaSlots - /// Create item in hideout slot item array, remove item from player inventory + /// Handle HideoutPutItemsInAreaSlots + /// Create item in hideout slot item array, remove item from player inventory /// /// Players PMC profile /// request from client to place item in area slot @@ -377,8 +376,7 @@ public class HideoutController( { var output = _eventOutputHolder.GetOutput(sessionID); - var itemsToAdd = addItemToHideoutRequest.Items.Select( - kvp => + var itemsToAdd = addItemToHideoutRequest.Items.Select(kvp => { var item = pmcData.Inventory.Items.FirstOrDefault(invItem => invItem.Id == kvp.Value.Id); return new @@ -421,8 +419,7 @@ public class HideoutController( // Add item to area.slots var destinationLocationIndex = int.Parse(item.slot); - var hideoutSlotIndex = hideoutArea.Slots.FindIndex( - slot => slot.LocationIndex == destinationLocationIndex + var hideoutSlotIndex = hideoutArea.Slots.FindIndex(slot => slot.LocationIndex == destinationLocationIndex ); if (hideoutSlotIndex == -1) { @@ -452,8 +449,8 @@ public class HideoutController( } /// - /// Handle HideoutTakeItemsFromAreaSlots event - /// Remove item from hideout area and place into player inventory + /// Handle HideoutTakeItemsFromAreaSlots event + /// Remove item from hideout area and place into player inventory /// /// Players PMC profile /// Take item out of area request @@ -496,7 +493,7 @@ public class HideoutController( } /// - /// Find resource item in hideout area, add copy to player inventory, remove Item from hideout slot + /// Find resource item in hideout area, add copy to player inventory, remove Item from hideout slot /// /// Session/Player id /// Players PMC profile @@ -549,8 +546,8 @@ public class HideoutController( } /// - /// Handle HideoutToggleArea event - /// Toggle area on/off + /// Handle HideoutToggleArea event + /// Toggle area on/off /// /// Players PMC profile /// Toggle area request @@ -576,7 +573,7 @@ public class HideoutController( } /// - /// Handle HideoutSingleProductionStart event + /// Handle HideoutSingleProductionStart event /// /// Players PMC profile /// @@ -605,8 +602,7 @@ public class HideoutController( foreach (var itemToDelete in itemsToDelete) { var itemToCheck = pmcData.Inventory.Items.FirstOrDefault(i => i.Id == itemToDelete.Id); - var requirement = recipeRequirementsClone.FirstOrDefault( - requirement => requirement.TemplateId == itemToCheck.Template + var requirement = recipeRequirementsClone.FirstOrDefault(requirement => requirement.TemplateId == itemToCheck.Template ); // Handle tools not having a `count`, but always only requiring 1 @@ -629,8 +625,8 @@ public class HideoutController( } /// - /// Handle HideoutScavCaseProductionStart event - /// Handles event after clicking 'start' on the scav case hideout page + /// Handle HideoutScavCaseProductionStart event + /// Handles event after clicking 'start' on the scav case hideout page /// /// Players PMC profile /// @@ -699,7 +695,7 @@ public class HideoutController( } /// - /// Adjust scav case time based on fence standing + /// Adjust scav case time based on fence standing /// /// Players PMC profile /// Time to complete scav case in seconds @@ -716,7 +712,7 @@ public class HideoutController( } /// - /// Add generated scav case rewards to player profile + /// Add generated scav case rewards to player profile /// /// Players PMC profile /// reward items to add to profile @@ -731,7 +727,7 @@ public class HideoutController( } /// - /// Start production of continuously created item + /// Start production of continuously created item /// /// Players PMC profile /// Continuous production request @@ -745,8 +741,8 @@ public class HideoutController( } /// - /// Handle HideoutTakeProduction event - /// Take completed item out of hideout area and place into player inventory + /// Handle HideoutTakeProduction event + /// Take completed item out of hideout area and place into player inventory /// /// Players PMC profile /// Remove production from area request @@ -793,7 +789,7 @@ public class HideoutController( } /// - /// Take recipe-type production out of hideout area and place into player inventory + /// Take recipe-type production out of hideout area and place into player inventory /// /// Session/Player id /// Completed recipe of item @@ -1005,7 +1001,7 @@ public class HideoutController( } /// - /// Ensure non-stackable items are 'unstacked' + /// Ensure non-stackable items are 'unstacked' /// /// /// @@ -1060,7 +1056,6 @@ public class HideoutController( } /// - /// /// /// /// @@ -1069,7 +1064,7 @@ public class HideoutController( var defaultPreset = _presetHelper.GetDefaultPreset(recipe.EndProduct); // Ensure preset has unique ids and is cloned so we don't alter the preset data stored in memory - List presetAndMods = _itemHelper.ReplaceIDs(_cloner.Clone(defaultPreset.Items)); + var presetAndMods = _itemHelper.ReplaceIDs(_cloner.Clone(defaultPreset.Items)); _itemHelper.RemapRootItemId(presetAndMods); @@ -1078,7 +1073,7 @@ public class HideoutController( } /// - /// Get the "CounterHoursCrafting" TaskConditionCounter from a profile + /// Get the "CounterHoursCrafting" TaskConditionCounter from a profile /// /// Profile to get counter from /// Recipe being crafted @@ -1101,7 +1096,7 @@ public class HideoutController( } /// - /// Handles generating scav case rewards and sending to player inventory + /// Handles generating scav case rewards and sending to player inventory /// /// Session/Player id /// Players PMC profile @@ -1163,8 +1158,8 @@ public class HideoutController( } /// - /// Handle HideoutQuickTimeEvent on client/game/profile/items/moving - /// Called after completing workout at gym + /// Handle HideoutQuickTimeEvent on client/game/profile/items/moving + /// Called after completing workout at gym /// /// Session/Player id /// Players PMC profile @@ -1214,7 +1209,7 @@ public class HideoutController( } /// - /// Apply mild/severe muscle pain after gym use + /// Apply mild/severe muscle pain after gym use /// /// Players PMC profile /// Effect data to apply after completing QTE gym event @@ -1249,7 +1244,7 @@ public class HideoutController( } /// - /// Record a high score from the shooting range into a player profiles `overallcounters` + /// Record a high score from the shooting range into a player profiles `overallcounters` /// /// Session/Player id /// Players PMC profile @@ -1278,7 +1273,7 @@ public class HideoutController( } /// - /// Handle client/game/profile/items/moving - HideoutImproveArea + /// Handle client/game/profile/items/moving - HideoutImproveArea /// /// Session/Player id /// Players PMC profile @@ -1289,8 +1284,7 @@ public class HideoutController( var output = _eventOutputHolder.GetOutput(sessionId); // Create mapping of required item with corresponding item from player inventory - var items = request.Items.Select( - reqItem => + var items = request.Items.Select(reqItem => { var item = pmcData.Inventory.Items.FirstOrDefault(invItem => invItem.Id == reqItem.Id); return new @@ -1369,7 +1363,7 @@ public class HideoutController( } /// - /// Handle client/game/profile/items/moving HideoutCancelProductionCommand + /// Handle client/game/profile/items/moving HideoutCancelProductionCommand /// /// Session/Player id /// Players PMC profile @@ -1402,7 +1396,7 @@ public class HideoutController( } /// - /// Handle HideoutDeleteProductionCommand event + /// Handle HideoutDeleteProductionCommand event /// /// Session/Player id /// Players PMC profile @@ -1419,7 +1413,7 @@ public class HideoutController( } /// - /// Handle HideoutCustomizationApply event + /// Handle HideoutCustomizationApply event /// /// Session/Player id /// Players PMC profile @@ -1445,7 +1439,7 @@ public class HideoutController( } /// - /// Map an internal customisation type to a client hideout customisation type + /// Map an internal customisation type to a client hideout customisation type /// /// /// hideout customisation type @@ -1470,7 +1464,7 @@ public class HideoutController( } /// - /// Add stand1/stand2/stand3 inventory items to profile, depending on passed in hideout stage + /// Add stand1/stand2/stand3 inventory items to profile, depending on passed in hideout stage /// /// Session/Player id /// Current EQUIPMENT_PRESETS_STAND stage data @@ -1485,8 +1479,8 @@ public class HideoutController( foreach (var mannequinSlot in slots) { // Check if we've already added this mannequin - var existingMannequin = pmcData.Inventory.Items.FirstOrDefault( - item => item.ParentId == equipmentPresetHideoutArea.Id && item.SlotId == mannequinSlot.Name + var existingMannequin = pmcData.Inventory.Items.FirstOrDefault(item => + item.ParentId == equipmentPresetHideoutArea.Id && item.SlotId == mannequinSlot.Name ); // No child, add it @@ -1506,8 +1500,7 @@ public class HideoutController( var mannequinPocketItemToAdd = new Item { Id = _hashUtil.Generate(), - Template = pmcData.Inventory.Items.FirstOrDefault( - item => item.SlotId == "Pockets" && item.ParentId == pmcData.Inventory.Equipment + Template = pmcData.Inventory.Items.FirstOrDefault(item => item.SlotId == "Pockets" && item.ParentId == pmcData.Inventory.Equipment ) .Template, // Same pocket tpl as players profile (unheard get bigger, matching pockets etc) ParentId = standId, @@ -1546,8 +1539,8 @@ public class HideoutController( } /// - /// Handle client/hideout/qte/list - /// Get quick time event list for hideout + /// Handle client/hideout/qte/list + /// Get quick time event list for hideout /// /// Session/Player id /// @@ -1557,7 +1550,7 @@ public class HideoutController( } /// - /// Function called every `hideoutConfig.runIntervalSeconds` seconds as part of onUpdate event + /// Function called every `hideoutConfig.runIntervalSeconds` seconds as part of onUpdate event /// public void Update() { diff --git a/Libraries/SPTarkov.Server.Core/Controllers/InRaidController.cs b/Libraries/SPTarkov.Server.Core/Controllers/InRaidController.cs index 040c8d11..df416968 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/InRaidController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/InRaidController.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.InRaid; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -57,8 +57,8 @@ public class InRaidController( } /// - /// Handle singleplayer/scav/traitorscavhostile - /// Get a % chance a scav will be hostile to the player when they're also a scav + /// Handle singleplayer/scav/traitorscavhostile + /// Get a % chance a scav will be hostile to the player when they're also a scav /// /// /// Session/Player id @@ -69,7 +69,7 @@ public class InRaidController( } /// - /// Get all boss role types e.g. bossTagilla + /// Get all boss role types e.g. bossTagilla /// /// /// Session/Player id diff --git a/Libraries/SPTarkov.Server.Core/Controllers/InsuranceController.cs b/Libraries/SPTarkov.Server.Core/Controllers/InsuranceController.cs index fee7ee02..f920afd6 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/InsuranceController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/InsuranceController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -14,7 +15,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using Insurance = SPTarkov.Server.Core.Models.Eft.Profile.Insurance; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -46,7 +46,7 @@ public class InsuranceController( protected InsuranceConfig _insuranceConfig = _configServer.GetConfig(); /// - /// Process insurance items of all profiles prior to being given back to the player through the mail service + /// Process insurance items of all profiles prior to being given back to the player through the mail service /// public void ProcessReturn() { @@ -58,7 +58,7 @@ public class InsuranceController( } /// - /// Process insurance items of a single profile prior to being given back to the player through the mail service + /// Process insurance items of a single profile prior to being given back to the player through the mail service /// /// Player id public void ProcessReturnByProfile(string sessionId) @@ -76,7 +76,7 @@ public class InsuranceController( } /// - /// Get all insured items that are ready to be processed in a specific profile + /// Get all insured items that are ready to be processed in a specific profile /// /// Session/Player id /// The time to check ready status against. Current time by default @@ -99,7 +99,7 @@ public class InsuranceController( } /// - /// This method orchestrates the processing of insured items in a profile + /// This method orchestrates the processing of insured items in a profile /// /// The insured items to process /// session ID that should receive the processed items @@ -142,7 +142,7 @@ public class InsuranceController( } /// - /// Count all items in all insurance packages + /// Count all items in all insurance packages /// /// /// Count of insured items @@ -152,19 +152,18 @@ public class InsuranceController( } /// - /// Remove an insurance package from a profile using the package's system data information. + /// Remove an insurance package from a profile using the package's system data information. /// /// The session ID of the profile to remove the package from. /// The array index of the insurance package to remove. protected void RemoveInsurancePackageFromProfile(string sessionId, Insurance insPackage) { var profile = _saveServer.GetProfile(sessionId); - profile.InsuranceList = profile.InsuranceList.Where( - insurance => - insurance.TraderId != insPackage.TraderId || - insurance.SystemData?.Date != insPackage.SystemData?.Date || - insurance.SystemData?.Time != insPackage.SystemData?.Time || - insurance.SystemData?.Location != insPackage.SystemData?.Location + profile.InsuranceList = profile.InsuranceList.Where(insurance => + insurance.TraderId != insPackage.TraderId || + insurance.SystemData?.Date != insPackage.SystemData?.Date || + insurance.SystemData?.Time != insPackage.SystemData?.Time || + insurance.SystemData?.Location != insPackage.SystemData?.Location ) .ToList(); @@ -175,7 +174,7 @@ public class InsuranceController( } /// - /// Finds the items that should be deleted based on the given Insurance object + /// Finds the items that should be deleted based on the given Insurance object /// /// The ID that should be assigned to all "hideout"/root items /// The insurance object containing the items to evaluate for deletion @@ -190,8 +189,7 @@ public class InsuranceController( var parentAttachmentsMap = PopulateParentAttachmentsMap(rootItemParentId, insured, itemsMap); // Check to see if any regular items are present. - var hasRegularItems = itemsMap.Values.Any( - item => !_itemHelper.IsAttachmentAttached(item) + var hasRegularItems = itemsMap.Values.Any(item => !_itemHelper.IsAttachmentAttached(item) ); // Process all items that are not attached, attachments; those are handled separately, by value. @@ -223,9 +221,9 @@ public class InsuranceController( } /// - /// Initialize a dictionary that holds main-parents to all of their attachments. Note that "main-parent" in this - /// context refers to the parent item that an attachment is attached to. For example, a suppressor attached to a gun, - /// not the backpack that the gun is located in (the gun's parent). + /// Initialize a dictionary that holds main-parents to all of their attachments. Note that "main-parent" in this + /// context refers to the parent item that an attachment is attached to. For example, a suppressor attached to a gun, + /// not the backpack that the gun is located in (the gun's parent). /// /// The ID that should be assigned to all "hideout"/root items /// The insurance object containing the items to evaluate @@ -318,13 +316,14 @@ public class InsuranceController( } /// - /// Remove attachments that can not be moddable in-raid from the parentAttachmentsMap. If no moddable attachments - /// remain, the parent is removed from the map as well + /// Remove attachments that can not be moddable in-raid from the parentAttachmentsMap. If no moddable attachments + /// remain, the parent is removed from the map as well /// /// Dictionary containing parent item IDs to arrays of their attachment items /// Hashset containing parent item IDs to arrays of their attachment items which are not moddable in-raid /// - protected Dictionary> RemoveNonModdableAttachments(Dictionary> parentAttachmentsMap, Dictionary itemsMap) + protected Dictionary> RemoveNonModdableAttachments(Dictionary> parentAttachmentsMap, + Dictionary itemsMap) { var updatedMap = new Dictionary>(); @@ -365,9 +364,9 @@ public class InsuranceController( } /// - /// Process "regular" insurance items. Any insured item that is not an attached, attachment is considered a "regular" - /// item. This method iterates over them, preforming item deletion rolls to see if they should be deleted. If so, - /// they (and their attached, attachments, if any) are marked for deletion in the toDelete Dictionary + /// Process "regular" insurance items. Any insured item that is not an attached, attachment is considered a "regular" + /// item. This method iterates over them, preforming item deletion rolls to see if they should be deleted. If so, + /// they (and their attached, attachments, if any) are marked for deletion in the toDelete Dictionary /// /// Insurance object containing the items to evaluate /// Hashset to keep track of items marked for deletion @@ -414,7 +413,7 @@ public class InsuranceController( } /// - /// Process parent items and their attachments, updating the toDelete Set accordingly + /// Process parent items and their attachments, updating the toDelete Set accordingly /// /// Dictionary containing parent item IDs to arrays of their attachment items /// Dictionary for quick item look-up by item ID @@ -447,10 +446,10 @@ public class InsuranceController( /// - /// Takes an array of attachment items that belong to the same main-parent item, sorts them in descending order by - /// their maximum price. For each attachment, a roll is made to determine if a deletion should be made. Once the - /// number of deletions has been counted, the attachments are added to the toDelete Set, starting with the most - /// valuable attachments first + /// Takes an array of attachment items that belong to the same main-parent item, sorts them in descending order by + /// their maximum price. For each attachment, a roll is made to determine if a deletion should be made. Once the + /// number of deletions has been counted, the attachments are added to the toDelete Set, starting with the most + /// valuable attachments first /// /// Array of attachment items to sort, filter, and roll /// ID of the trader to that has ensured these items @@ -488,7 +487,7 @@ public class InsuranceController( } /// - /// Write out attachments being removed + /// Write out attachments being removed /// /// /// @@ -511,7 +510,7 @@ public class InsuranceController( } /// - /// Get dictionary of items with their corresponding price + /// Get dictionary of items with their corresponding price /// /// Item attachments /// @@ -535,7 +534,7 @@ public class InsuranceController( } /// - /// Get count of items to remove from weapon (take into account trader + price of attachment) + /// Get count of items to remove from weapon (take into account trader + price of attachment) /// /// Dict of item Tpls and their rouble price /// Trader the attachment is insured against @@ -556,7 +555,7 @@ public class InsuranceController( } /// - /// Remove items from the insured items that should not be returned to the player + /// Remove items from the insured items that should not be returned to the player /// /// The insured items to process /// The items that should be deleted @@ -566,7 +565,7 @@ public class InsuranceController( } /// - /// Handle sending the insurance message to the user that potentially contains the valid insurance items + /// Handle sending the insurance message to the user that potentially contains the valid insurance items /// /// Profile that should receive the insurance message /// context of insurance to use @@ -605,7 +604,7 @@ public class InsuranceController( } /// - /// Edge case - labs doesn't allow for insurance returns unless location config is edited + /// Edge case - labs doesn't allow for insurance returns unless location config is edited /// /// The insured items to process /// OPTIONAL - id of labs location @@ -617,7 +616,7 @@ public class InsuranceController( } /// - /// Update IInsurance object with new messageTemplateId and wipe out items array data + /// Update IInsurance object with new messageTemplateId and wipe out items array data /// /// /// @@ -637,7 +636,7 @@ public class InsuranceController( /// - /// Roll for chance of item being 'lost' + /// Roll for chance of item being 'lost' /// /// Trader item was insured with /// Item being rolled on @@ -669,7 +668,7 @@ public class InsuranceController( } /// - /// Handle Insure event, Add insurance to an item + /// Handle Insure event, Add insurance to an item /// /// Players PMC profile /// Insurance request @@ -742,15 +741,14 @@ public class InsuranceController( } /// - /// Ensure soft inserts of Armor that has soft insert slots, Allows armors to come back after being lost correctly + /// Ensure soft inserts of Armor that has soft insert slots, Allows armors to come back after being lost correctly /// /// Armor item to be insured /// Players PMC profile /// Insurance request data public void InsureSoftInserts(Item itemWithSoftInserts, PmcData pmcData, InsureRequestData request) { - var softInsertSlots = pmcData.Inventory.Items.Where( - item => item.ParentId == itemWithSoftInserts.Id && _itemHelper.IsSoftInsertId(item.SlotId.ToLower()) + var softInsertSlots = pmcData.Inventory.Items.Where(item => item.ParentId == itemWithSoftInserts.Id && _itemHelper.IsSoftInsertId(item.SlotId.ToLower()) ); foreach (var softInsertSlot in softInsertSlots) @@ -771,8 +769,8 @@ public class InsuranceController( } /// - /// Handle client/insurance/items/list/cost - /// Calculate insurance cost + /// Handle client/insurance/items/list/cost + /// Calculate insurance cost /// /// request object /// Session/Player id diff --git a/Libraries/SPTarkov.Server.Core/Controllers/InventoryController.cs b/Libraries/SPTarkov.Server.Core/Controllers/InventoryController.cs index 8460e9d9..f5eea438 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/InventoryController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/InventoryController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -12,7 +13,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -42,8 +42,8 @@ public class InventoryController( ) { /// - /// Move Item - change location of item with parentId and slotId, transfers items from one profile to another if fromOwner/toOwner is set in the body. - /// Otherwise, move is contained within the same profile_f + /// Move Item - change location of item with parentId and slotId, transfers items from one profile to another if fromOwner/toOwner is set in the body. + /// Otherwise, move is contained within the same profile_f /// /// Players PMC profile /// Move request data @@ -93,7 +93,8 @@ public class InventoryController( // Item is moving into or out of place of fame dog tag slot if (moveRequest.To?.Container != null && - (moveRequest.To.Container.StartsWith("dogtag", StringComparison.OrdinalIgnoreCase) || originalLocationSlotId.StartsWith("dogtag", StringComparison.OrdinalIgnoreCase))) + (moveRequest.To.Container.StartsWith("dogtag", StringComparison.OrdinalIgnoreCase) || + originalLocationSlotId.StartsWith("dogtag", StringComparison.OrdinalIgnoreCase))) { _hideoutHelper.ApplyPlaceOfFameDogtagBonus(pmcData); } @@ -109,7 +110,7 @@ public class InventoryController( } /// - /// Get an event router response with inventory trader message + /// Get an event router response with inventory trader message /// /// Item event router response protected void AppendTraderExploitErrorResponse(ItemEventRouterResponse output) @@ -122,8 +123,8 @@ public class InventoryController( } /// - /// Handle /client/game/profile/items/moving - PinLock - /// Requires no response to client, only server change + /// Handle /client/game/profile/items/moving - PinLock + /// Requires no response to client, only server change /// /// Players PMC profile /// Pin/Lock request data @@ -147,7 +148,7 @@ public class InventoryController( } /// - /// Handle /client/game/profile/items/moving SetFavoriteItems + /// Handle /client/game/profile/items/moving SetFavoriteItems /// /// Players PMC profile /// @@ -160,7 +161,7 @@ public class InventoryController( } /// - /// Handle /client/game/profile/items/moving RedeemProfileReward + /// Handle /client/game/profile/items/moving RedeemProfileReward /// /// Players PMC profile /// @@ -236,7 +237,7 @@ public class InventoryController( var desiredArea = pmcData.Hideout.Areas.FirstOrDefault(area => area.Type == hideoutAreaType); if (desiredArea is not null) { - desiredArea.Level = (int?)newValue; + desiredArea.Level = (int?) newValue; } break; @@ -250,7 +251,7 @@ public class InventoryController( } /// - /// Flag an item as seen in profiles encyclopedia + add inspect xp to profile + /// Flag an item as seen in profiles encyclopedia + add inspect xp to profile /// /// Inspected item tpls /// Profile to add xp to @@ -284,8 +285,8 @@ public class InventoryController( } /// - /// Handle OpenRandomLootContainer event - /// Handle event fired when a container is unpacked (e.g. halloween pumpkin) + /// Handle OpenRandomLootContainer event + /// Handle event fired when a container is unpacked (e.g. halloween pumpkin) /// /// Players PMC profile /// @@ -358,7 +359,7 @@ public class InventoryController( } /// - /// Edit an existing map marker + /// Edit an existing map marker /// /// Players PMC profile /// Edit marker request @@ -374,7 +375,7 @@ public class InventoryController( } /// - /// Delete a map marker + /// Delete a map marker /// /// Players PMC profile /// Delete marker request @@ -399,7 +400,7 @@ public class InventoryController( } /// - /// Add note to a map + /// Add note to a map /// /// Players PMC profile /// Add marker request @@ -434,7 +435,7 @@ public class InventoryController( } /// - /// Flag item as 'seen' by player in profile + /// Flag item as 'seen' by player in profile /// /// Players PMC profile /// @@ -452,7 +453,7 @@ public class InventoryController( } /// - /// Handle examining an item + /// Handle examining an item /// /// Players PMC profile /// Examine item request @@ -501,7 +502,7 @@ public class InventoryController( } /// - /// Get the tplid of an item from the examine request object + /// Get the tplid of an item from the examine request object /// /// /// Session/Player id @@ -583,8 +584,8 @@ public class InventoryController( } /// - /// Unbind an inventory item from quick access menu at bottom of player screen - /// Handle unbind event + /// Unbind an inventory item from quick access menu at bottom of player screen + /// Handle unbind event /// /// Players PMC profile /// @@ -600,8 +601,8 @@ public class InventoryController( } /// - /// Handle bind event - /// Bind an inventory item to the quick access menu at bottom of player screen + /// Handle bind event + /// Bind an inventory item to the quick access menu at bottom of player screen /// /// Players PMC profile /// @@ -621,7 +622,7 @@ public class InventoryController( } /// - /// Add a tag to an inventory item + /// Add a tag to an inventory item /// /// Profile with item to add tag to /// @@ -655,7 +656,7 @@ public class InventoryController( } /// - /// Toggles "Toggleable" items like night vision goggles and face shields. + /// Toggles "Toggleable" items like night vision goggles and face shields. /// /// Players PMC profile /// Toggle request @@ -697,7 +698,7 @@ public class InventoryController( } /// - /// Handles folding of Weapons + /// Handles folding of Weapons /// /// Players PMC profile /// Fold item request @@ -740,9 +741,9 @@ public class InventoryController( } /// - /// Swap Item - /// used for "reload" if you have weapon in hands and magazine is somewhere else in rig or backpack in equipment - /// Also used to swap items using quick selection on character screen + /// Swap Item + /// used for "reload" if you have weapon in hands and magazine is somewhere else in rig or backpack in equipment + /// Also used to swap items using quick selection on character screen /// /// Players PMC profile /// Swap item request @@ -819,9 +820,9 @@ public class InventoryController( } /// - /// TODO: Adds no data to output to send to client, is this by design? - /// Transfer items from one stack into another while keeping original stack - /// Used to take items from scav inventory into stash or to insert ammo into mags (shotgun ones) and reloading weapon by clicking "Reload" + /// TODO: Adds no data to output to send to client, is this by design? + /// Transfer items from one stack into another while keeping original stack + /// Used to take items from scav inventory into stash or to insert ammo into mags (shotgun ones) and reloading weapon by clicking "Reload" /// /// Players PMC profile /// Transfer item request @@ -882,8 +883,8 @@ public class InventoryController( } /// - /// Fully merge 2 inventory stacks together into one stack (merging where both stacks remain is called 'transfer') - /// Deletes item from `body.item` and adding number of stacks into `body.with` + /// Fully merge 2 inventory stacks together into one stack (merging where both stacks remain is called 'transfer') + /// Deletes item from `body.item` and adding number of stacks into `body.with` /// /// Players PMC profile /// Merge stacks request @@ -973,7 +974,7 @@ public class InventoryController( } /// - /// Split Item stack - 1 stack into 2 + /// Split Item stack - 1 stack into 2 /// /// (unused, getOwnerInventoryItems() gets profile) /// Split stack request @@ -1037,8 +1038,8 @@ public class InventoryController( } /// - /// Implements "Discard" functionality from Main menu (Stash etc.) - /// Removes item from PMC Profile + /// Implements "Discard" functionality from Main menu (Stash etc.) + /// Removes item from PMC Profile /// /// Players PMC profile /// Discard item request diff --git a/Libraries/SPTarkov.Server.Core/Controllers/LauncherController.cs b/Libraries/SPTarkov.Server.Core/Controllers/LauncherController.cs index 86a49f26..3ae5b431 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/LauncherController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/LauncherController.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -9,8 +11,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using Info = SPTarkov.Server.Core.Models.Eft.Profile.Info; namespace SPTarkov.Server.Core.Controllers; @@ -33,7 +33,7 @@ public class LauncherController( protected CoreConfig _coreConfig = _configServer.GetConfig(); /// - /// Handle launcher connecting to server + /// Handle launcher connecting to server /// /// ConnectResponse public ConnectResponse Connect() @@ -56,7 +56,7 @@ public class LauncherController( } /// - /// Get descriptive text for each of the profile editions a player can choose, keyed by profile.json profile type e.g. "Edge Of Darkness" + /// Get descriptive text for each of the profile editions a player can choose, keyed by profile.json profile type e.g. "Edge Of Darkness" /// /// Dictionary of profile types with related descriptive text protected Dictionary GetProfileDescriptions() @@ -80,7 +80,6 @@ public class LauncherController( } /// - /// /// /// Session/Player id /// @@ -90,7 +89,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -109,7 +107,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -127,7 +124,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -154,7 +150,6 @@ public class LauncherController( } /// - /// /// /// protected string GenerateProfileId() @@ -165,7 +160,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -179,7 +173,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -196,7 +189,6 @@ public class LauncherController( } /// - /// /// /// /// @@ -213,7 +205,7 @@ public class LauncherController( } /// - /// Handle launcher requesting profile be wiped + /// Handle launcher requesting profile be wiped /// /// Registration data /// Session id @@ -237,7 +229,6 @@ public class LauncherController( } /// - /// /// /// public string GetCompatibleTarkovVersion() @@ -246,7 +237,7 @@ public class LauncherController( } /// - /// Get the mods the server has currently loaded + /// Get the mods the server has currently loaded /// /// Dictionary of mod name and mod details public Dictionary GetLoadedServerMods() @@ -263,7 +254,7 @@ public class LauncherController( } /// - /// Get the mods a profile has ever loaded into game with + /// Get the mods a profile has ever loaded into game with /// /// Session/Player id /// Array of mod details @@ -280,7 +271,6 @@ public class LauncherController( } /// - /// /// /// /// diff --git a/Libraries/SPTarkov.Server.Core/Controllers/LauncherV2Controller.cs b/Libraries/SPTarkov.Server.Core/Controllers/LauncherV2Controller.cs index 9edf0035..e697d746 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/LauncherV2Controller.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/LauncherV2Controller.cs @@ -1,3 +1,6 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; +using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Models.Eft.Profile; @@ -7,9 +10,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; -using SPTarkov.Server.Core.Context; using Info = SPTarkov.Server.Core.Models.Eft.Profile.Info; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/LocationController.cs b/Libraries/SPTarkov.Server.Core/Controllers/LocationController.cs index 7aa30cdf..c69c6b22 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/LocationController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/LocationController.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Location; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs b/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs index 0c802079..5f586729 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/MatchController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Models.Eft.Match; using SPTarkov.Server.Core.Models.Spt.Config; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using static SPTarkov.Server.Core.Services.MatchLocationService; namespace SPTarkov.Server.Core.Controllers; @@ -25,7 +25,7 @@ public class MatchController( protected PmcConfig _pmcConfig = _configServer.GetConfig(); /// - /// Handle client/match/available + /// Handle client/match/available /// /// True if server should be available public bool GetEnabled() diff --git a/Libraries/SPTarkov.Server.Core/Controllers/NoteController.cs b/Libraries/SPTarkov.Server.Core/Controllers/NoteController.cs index 85f83a90..298b868b 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/NoteController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/NoteController.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Notes; using SPTarkov.Server.Core.Routers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/NotifierController.cs b/Libraries/SPTarkov.Server.Core/Controllers/NotifierController.cs index 6ddb9b11..a2b0d04d 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/NotifierController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/NotifierController.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Notifier; using SPTarkov.Server.Core.Models.Eft.Ws; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -25,7 +25,8 @@ public class NotifierController( /// Session/Player id public Task> NotifyAsync(string sessionId) { - return Task.Factory.StartNew(() => { + return Task.Factory.StartNew(() => + { // keep track of our timeout var counter = 0; @@ -67,7 +68,7 @@ public class NotifierController( } /// - /// Get the notifier server url + /// Get the notifier server url /// /// Session/Player id /// Notification server url diff --git a/Libraries/SPTarkov.Server.Core/Controllers/PresetController.cs b/Libraries/SPTarkov.Server.Core/Controllers/PresetController.cs index 38ec201e..ee675383 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/PresetController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/PresetController.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Spt.Presets; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -33,7 +33,10 @@ public class PresetController( // Get root items tpl var tpl = preset.Items.FirstOrDefault()?.Template; - result.TryAdd(tpl, new PresetCacheDetails{PresetIds = [] }); + result.TryAdd(tpl, new PresetCacheDetails + { + PresetIds = [] + }); result.TryGetValue(tpl, out var details); details.PresetIds.Add(presetId); diff --git a/Libraries/SPTarkov.Server.Core/Controllers/PrestigeController.cs b/Libraries/SPTarkov.Server.Core/Controllers/PrestigeController.cs index 16726bc2..c8963704 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/PrestigeController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/PrestigeController.cs @@ -1,12 +1,11 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; -using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Prestige; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -20,7 +19,7 @@ public class PrestigeController( { /// /// Handle /client/prestige/list - /// Get a collection of all possible prestiges + /// Get a collection of all possible prestiges /// /// Session/Player id /// Prestige diff --git a/Libraries/SPTarkov.Server.Core/Controllers/ProfileController.cs b/Libraries/SPTarkov.Server.Core/Controllers/ProfileController.cs index 347d3994..187a270c 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/ProfileController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/ProfileController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -11,7 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -38,7 +38,7 @@ public class ProfileController( ) { /// - /// Handle /launcher/profiles + /// Handle /launcher/profiles /// /// public virtual List GetMiniProfiles() @@ -47,7 +47,7 @@ public class ProfileController( } /// - /// Handle launcher/profile/info + /// Handle launcher/profile/info /// /// Session/Player id /// @@ -102,7 +102,7 @@ public class ProfileController( } /// - /// Handle client/game/profile/list + /// Handle client/game/profile/list /// /// Session/Player id /// Return a full profile, scav and pmc profiles + meta data @@ -112,7 +112,7 @@ public class ProfileController( } /// - /// Handle client/game/profile/create + /// Handle client/game/profile/create /// /// Create profile request /// Player id @@ -123,8 +123,8 @@ public class ProfileController( } /// - /// Generate a player scav object - /// PMC profile MUST exist first before player-scav can be generated + /// Generate a player scav object + /// PMC profile MUST exist first before player-scav can be generated /// /// Player id /// PmcData @@ -134,7 +134,7 @@ public class ProfileController( } /// - /// Handle client/game/profile/nickname/validate + /// Handle client/game/profile/nickname/validate /// /// Validate nickname request /// Session/Player id @@ -155,8 +155,8 @@ public class ProfileController( } /// - /// Handle client/game/profile/nickname/change event - /// Client allows player to adjust their profile name + /// Handle client/game/profile/nickname/change event + /// Client allows player to adjust their profile name /// /// Change nickname request /// Player id @@ -183,7 +183,7 @@ public class ProfileController( } /// - /// Handle client/game/profile/voice/change event + /// Handle client/game/profile/voice/change event /// /// Change voice request /// Player id @@ -194,7 +194,7 @@ public class ProfileController( } /// - /// Handle client/game/profile/search + /// Handle client/game/profile/search /// /// Search profiles request /// Player id @@ -221,7 +221,7 @@ public class ProfileController( } /// - /// Handle client/profile/status + /// Handle client/profile/status /// /// Session/Player id /// @@ -258,7 +258,7 @@ public class ProfileController( } /// - /// Handle client/profile/view + /// Handle client/profile/view /// /// Session/Player id /// Get other profile request @@ -345,7 +345,7 @@ public class ProfileController( } /// - /// Handle client/profile/settings + /// Handle client/profile/settings /// /// Session/Player id /// Get profile settings request diff --git a/Libraries/SPTarkov.Server.Core/Controllers/QuestController.cs b/Libraries/SPTarkov.Server.Core/Controllers/QuestController.cs index 813e9da4..aff6dc00 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/QuestController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/QuestController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -11,7 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -39,13 +39,13 @@ public class QuestController( ICloner _cloner ) { - protected QuestConfig _questConfig = _configServer.GetConfig(); protected static readonly List _questTypes = ["PickUp", "Exploration", "Elimination"]; + protected QuestConfig _questConfig = _configServer.GetConfig(); /// - /// Handle client/quest/list - /// Get all quests visible to player - /// Exclude quests with incomplete preconditions (level/loyalty) + /// Handle client/quest/list + /// Get all quests visible to player + /// Exclude quests with incomplete preconditions (level/loyalty) /// /// Session/Player id /// Collection of Quest @@ -55,10 +55,10 @@ public class QuestController( } /// - /// Handle QuestAccept event - /// Handle the client accepting a quest and starting it - /// Send starting rewards if any to player and - /// Send start notification if any to player + /// Handle QuestAccept event + /// Handle the client accepting a quest and starting it + /// Send starting rewards if any to player and + /// Send start notification if any to player /// /// Players PMC profile /// Quest accepted @@ -131,7 +131,7 @@ public class QuestController( } /// - /// Add a quests condition counters to chosen profile + /// Add a quests condition counters to chosen profile /// /// Conditions to iterate over and possibly add to profile /// Players PMC profile @@ -163,10 +163,10 @@ public class QuestController( } /// - /// TODO: Move this code into RepeatableQuestController - /// Handle the client accepting a repeatable quest and starting it - /// Send starting rewards if any to player and - /// Send start notification if any to player + /// TODO: Move this code into RepeatableQuestController + /// Handle the client accepting a repeatable quest and starting it + /// Send starting rewards if any to player and + /// Send start notification if any to player /// /// Players PMC profile /// Repeatable quest accepted @@ -211,7 +211,7 @@ public class QuestController( } /// - /// Look for an accepted quest inside player profile, return quest that matches + /// Look for an accepted quest inside player profile, return quest that matches /// /// Players PMC profile /// Quest id to return @@ -238,10 +238,10 @@ public class QuestController( } /// - /// Handle QuestComplete event - /// Update completed quest in profile - /// Add newly unlocked quests to profile - /// Also recalculate their level due to exp rewards + /// Handle QuestComplete event + /// Update completed quest in profile + /// Add newly unlocked quests to profile + /// Also recalculate their level due to exp rewards /// /// Players PMC profile /// Complete quest request @@ -253,8 +253,8 @@ public class QuestController( } /// - /// Handle QuestHandover event - /// Player hands over an item to trader to complete/partially complete quest + /// Handle QuestHandover event + /// Player hands over an item to trader to complete/partially complete quest /// /// Players PMC profile /// Handover request @@ -407,7 +407,7 @@ public class QuestController( } /// - /// Show warning to user and write to log that repeatable quest failed a condition check + /// Show warning to user and write to log that repeatable quest failed a condition check /// /// Quest id that failed /// Relevant condition id that failed @@ -419,8 +419,8 @@ public class QuestController( "repeatable-quest_handover_failed_condition_invalid", new { - questId = questId, - conditionId = conditionId + questId, + conditionId } ); _logger.Error(errorMessage); @@ -429,7 +429,7 @@ public class QuestController( } /// - /// Show warning to user and write to log quest item handed over did not match what is required + /// Show warning to user and write to log quest item handed over did not match what is required /// /// Handover request /// Non-matching item found @@ -454,8 +454,8 @@ public class QuestController( } /// - /// Increment a backend counter stored value by an amount - /// Create counter if it does not exist + /// Increment a backend counter stored value by an amount + /// Create counter if it does not exist /// /// Players PMC profile /// Backend counter id to update @@ -480,7 +480,7 @@ public class QuestController( } /// - /// Handle /client/game/profile/items/moving - QuestFail + /// Handle /client/game/profile/items/moving - QuestFail /// /// Players PMC profile /// Fail quest request diff --git a/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs b/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs index 9fb003e5..3640ce7b 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; @@ -14,7 +15,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Controllers; @@ -105,7 +105,7 @@ public class RagfairController } /// - /// Check all profiles and sell player offers / send player money for listing if it sold + /// Check all profiles and sell player offers / send player money for listing if it sold /// public void Update() { @@ -124,7 +124,7 @@ public class RagfairController } /// - /// Handles client/ragfair/find + /// Handles client/ragfair/find /// /// Session/Player id /// Search request data @@ -188,7 +188,7 @@ public class RagfairController } /// - /// Adjust ragfair offer stack count to match same value as traders assort stack count + /// Adjust ragfair offer stack count to match same value as traders assort stack count /// /// Flea offer to adjust stack size of private void SetTraderOfferStackSize(RagfairOffer offer) @@ -217,7 +217,7 @@ public class RagfairController } /// - /// Update a trader flea offer with buy restrictions stored in the traders assort + /// Update a trader flea offer with buy restrictions stored in the traders assort /// /// Flea offer to update /// Players full profile @@ -256,7 +256,7 @@ public class RagfairController } /// - /// Add index to all offers passed in (0-indexed) + /// Add index to all offers passed in (0-indexed) /// /// Offers to add index value to protected void AddIndexValueToOffers(List offers) @@ -270,7 +270,7 @@ public class RagfairController } /// - /// Get categories for the type of search being performed, linked/required/all + /// Get categories for the type of search being performed, linked/required/all /// /// /// Client search request data @@ -307,7 +307,7 @@ public class RagfairController } /// - /// Is the flea search being performed a 'linked' search type + /// Is the flea search being performed a 'linked' search type /// /// Search request /// True = a 'linked' search type @@ -317,7 +317,7 @@ public class RagfairController } /// - /// Is the flea search being performed a 'required' search type + /// Is the flea search being performed a 'required' search type /// /// Search request /// True if it is a 'required' search type @@ -327,7 +327,7 @@ public class RagfairController } /// - /// Get offers for the client based on type of search being performed + /// Get offers for the client based on type of search being performed /// /// Client search request data /// Comes from ragfairHelper.filterCategories() @@ -354,7 +354,7 @@ public class RagfairController } /// - /// Called when creating an offer on flea, fills values in top right corner + /// Called when creating an offer on flea, fills values in top right corner /// /// Client request object /// OPTIONAL - Should trader offers be ignored in the calculation @@ -445,7 +445,7 @@ public class RagfairController } /// - /// List item(s) on flea for sale + /// List item(s) on flea for sale /// /// Players PMC profile /// Flea list creation offer @@ -488,7 +488,7 @@ public class RagfairController } /// - /// Is the item to be listed on the flea valid + /// Is the item to be listed on the flea valid /// /// Client offer request /// Is offer valid @@ -512,7 +512,7 @@ public class RagfairController } /// - /// Given a client request, determine what type of offer is being created single/multi/pack + /// Given a client request, determine what type of offer is being created single/multi/pack /// /// Client request /// FleaOfferType @@ -542,9 +542,9 @@ public class RagfairController } /// - /// Create a flea offer for multiples of the same item, can be single items or items with multiple in the stack - /// e.g. 2 ammo stacks of 30 cartridges each - /// Each item can be purchased individually + /// Create a flea offer for multiples of the same item, can be single items or items with multiple in the stack + /// e.g. 2 ammo stacks of 30 cartridges each + /// Each item can be purchased individually /// /// Session/Player id /// Offer request from client @@ -652,9 +652,9 @@ public class RagfairController } /// - /// Create a flea offer for multiple items, can be single items or items with multiple in the stack - /// e.g. 2 ammo stacks of 30 cartridges each - /// The entire package must be purchased in one go + /// Create a flea offer for multiple items, can be single items or items with multiple in the stack + /// e.g. 2 ammo stacks of 30 cartridges each + /// The entire package must be purchased in one go /// /// Session/Player id /// Offer request from client @@ -762,8 +762,8 @@ public class RagfairController } /// - /// Create a flea offer for a single item - includes an item with > 1 sized stack - /// e.g. 1 ammo stack of 30 cartridges + /// Create a flea offer for a single item - includes an item with > 1 sized stack + /// e.g. 1 ammo stack of 30 cartridges /// /// Session/Player id /// Offer request from client @@ -859,7 +859,7 @@ public class RagfairController } /// - /// Charge player a listing fee for using flea, pulls charge from data previously sent by client + /// Charge player a listing fee for using flea, pulls charge from data previously sent by client /// /// /// Base item being listed (used when client tax cost not found and must be done on server) @@ -913,7 +913,7 @@ public class RagfairController } /// - /// Create a flea offer for a player + /// Create a flea offer for a player /// /// Session/Player id /// @@ -924,8 +924,7 @@ public class RagfairController bool sellInOnePiece) { const int loyalLevel = 1; - var formattedItems = items.Select( - item => + var formattedItems = items.Select(item => { var isChild = items.Any(subItem => subItem.Id == item.ParentId); @@ -940,8 +939,7 @@ public class RagfairController } ); - var formattedRequirements = requirements.Select( - item => new BarterScheme + var formattedRequirements = requirements.Select(item => new BarterScheme { Template = item.Template, Count = item.Count, @@ -955,13 +953,13 @@ public class RagfairController formattedItems.ToList(), formattedRequirements.ToList(), loyalLevel, - (int?)items.FirstOrDefault()?.Upd?.StackObjectsCount ?? 1, + (int?) items.FirstOrDefault()?.Upd?.StackObjectsCount ?? 1, sellInOnePiece ); } /// - /// Get the handbook price in roubles for the items being listed + /// Get the handbook price in roubles for the items being listed /// /// /// Rouble price @@ -982,7 +980,7 @@ public class RagfairController } /// - /// Find items with their children from players inventory + /// Find items with their children from players inventory /// /// Players PMC profile /// Request @@ -1038,8 +1036,8 @@ public class RagfairController } /// - /// Flag an offer as being ready for removal - sets expiry for very near future - /// Will be picked up by update() once expiry time has passed + /// Flag an offer as being ready for removal - sets expiry for very near future + /// Will be picked up by update() once expiry time has passed /// /// Id of offer to remove /// Session id of requesting player @@ -1058,7 +1056,7 @@ public class RagfairController new { profileId = sessionId, - offerId = offerId + offerId } ) ); @@ -1074,7 +1072,7 @@ public class RagfairController "ragfair-offer_not_found_in_profile", new { - offerId = offerId + offerId } ) ); @@ -1098,7 +1096,7 @@ public class RagfairController } /// - /// Extend a flea offers active time + /// Extend a flea offers active time /// /// Extend time request /// Session/Player id @@ -1167,7 +1165,7 @@ public class RagfairController } /// - /// Create a basic trader request object with price and currency type + /// Create a basic trader request object with price and currency type /// /// What currency: RUB, EURO, USD /// Amount of currency @@ -1194,7 +1192,7 @@ public class RagfairController } /// - /// Get prices for all items on flea + /// Get prices for all items on flea /// /// Dictionary of tpl and item price public Dictionary GetAllFleaPrices() diff --git a/Libraries/SPTarkov.Server.Core/Controllers/RepairController.cs b/Libraries/SPTarkov.Server.Core/Controllers/RepairController.cs index c306b585..5a523ffa 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/RepairController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/RepairController.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Repair; using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs b/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs index a9f96a2c..a0630526 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/RepeatableQuestController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -16,7 +17,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Controllers; @@ -44,7 +44,7 @@ public class RepeatableQuestController( protected QuestConfig _questConfig = _configServer.GetConfig(); /// - /// Handle RepeatableQuestChange event + /// Handle RepeatableQuestChange event /// /// Players PMC profile /// Change quest request @@ -77,8 +77,7 @@ public class RepeatableQuestController( var replacedQuestTraderId = questToReplace.TraderId; // Update active quests to exclude the quest we're replacing - repeatablesOfTypeInProfile.ActiveQuests = repeatablesOfTypeInProfile.ActiveQuests.Where( - quest => quest.Id != changeRequest.QuestId + repeatablesOfTypeInProfile.ActiveQuests = repeatablesOfTypeInProfile.ActiveQuests.Where(quest => quest.Id != changeRequest.QuestId ) .ToList(); @@ -91,8 +90,7 @@ public class RepeatableQuestController( repeatablesOfTypeInProfile.ChangeRequirement.Remove(changeRequest.QuestId); // Get config for this repeatable sub-type (daily/weekly/scav) - var repeatableConfig = _questConfig.RepeatableQuests.FirstOrDefault( - config => config.Name == repeatablesOfTypeInProfile.Name + var repeatableConfig = _questConfig.RepeatableQuests.FirstOrDefault(config => config.Name == repeatablesOfTypeInProfile.Name ); // If the configuration dictates to replace with the same quest type, adjust the available quest types @@ -183,9 +181,8 @@ public class RepeatableQuestController( } /// - /// Some accounts have access to free repeatable quest refreshes - /// Track the usage of them inside players profile - /// + /// Some accounts have access to free repeatable quest refreshes + /// Track the usage of them inside players profile /// /// Full player profile /// Can be daily / weekly / scav repeatable @@ -227,7 +224,7 @@ public class RepeatableQuestController( } /// - /// Clean up the repeatables `changeRequirement` dictionary of expired data + /// Clean up the repeatables `changeRequirement` dictionary of expired data /// /// repeatables that have the replaced and new quest /// Id of the replaced quest @@ -248,7 +245,7 @@ public class RepeatableQuestController( } /// - /// Generate a repeatable quest + /// Generate a repeatable quest /// /// Session/Player id /// Players PMC profile @@ -289,7 +286,7 @@ public class RepeatableQuestController( } /// - /// Remove the provided quest from pmc and scav character profiles + /// Remove the provided quest from pmc and scav character profiles /// /// Profile to remove quest from /// Quest id to remove from profile @@ -309,8 +306,7 @@ public class RepeatableQuestController( } /// - /// Find a repeatable (daily/weekly/scav) from a players profile by its id - /// + /// Find a repeatable (daily/weekly/scav) from a players profile by its id /// /// Id of quest to find /// Profile that contains quests to look through @@ -339,25 +335,23 @@ public class RepeatableQuestController( } /// - /// Handle client/repeatalbeQuests/activityPeriods - /// Returns an array of objects in the format of repeatable quests to the client. - /// repeatableQuestObject = { - /// *id: Unique Id, - ///name: "Daily", - ///endTime: the time when the quests expire - ///activeQuests: currently available quests in an array. Each element of quest type format(see assets/ database / templates / repeatableQuests.json). - ///inactiveQuests: the quests which were previously active(required by client to fail them if they are not completed) - /// } - /// - /// The method checks if the player level requirement for repeatable quests(e.g.daily lvl5, weekly lvl15) is met and if the previously active quests - /// are still valid.This ischecked by endTime persisted in profile accordning to the resetTime configured for each repeatable kind(daily, weekly) - /// in QuestCondig.js - /// - /// If the condition is met, new repeatableQuests are created, old quests(which are persisted in the profile.RepeatableQuests[i].activeQuests) are - /// moved to profile.RepeatableQuests[i].inactiveQuests.This memory is required to get rid of old repeatable quest data in the profile, otherwise - /// they'll litter the profile's Quests field. - /// (if the are on "Succeed" but not "Completed" we keep them, to allow the player to complete them and get the rewards) - /// The new quests generated are again persisted in profile.RepeatableQuests + /// Handle client/repeatalbeQuests/activityPeriods + /// Returns an array of objects in the format of repeatable quests to the client. + /// repeatableQuestObject = { + /// *id: Unique Id, + /// name: "Daily", + /// endTime: the time when the quests expire + /// activeQuests: currently available quests in an array. Each element of quest type format(see assets/ database / templates / repeatableQuests.json). + /// inactiveQuests: the quests which were previously active(required by client to fail them if they are not completed) + /// } + /// The method checks if the player level requirement for repeatable quests(e.g.daily lvl5, weekly lvl15) is met and if the previously active quests + /// are still valid.This ischecked by endTime persisted in profile accordning to the resetTime configured for each repeatable kind(daily, weekly) + /// in QuestCondig.js + /// If the condition is met, new repeatableQuests are created, old quests(which are persisted in the profile.RepeatableQuests[i].activeQuests) are + /// moved to profile.RepeatableQuests[i].inactiveQuests.This memory is required to get rid of old repeatable quest data in the profile, otherwise + /// they'll litter the profile's Quests field. + /// (if the are on "Succeed" but not "Completed" we keep them, to allow the player to complete them and get the rewards) + /// The new quests generated are again persisted in profile.RepeatableQuests /// /// Session/Player id /// Array of repeatable quests @@ -491,7 +485,7 @@ public class RepeatableQuestController( } /// - /// Get repeatable quest data from profile from name (daily/weekly), creates base repeatable quest object if none exists + /// Get repeatable quest data from profile from name (daily/weekly), creates base repeatable quest object if none exists /// /// daily/weekly config /// Players PMC profile @@ -500,8 +494,7 @@ public class RepeatableQuestController( PmcData pmcData) { // Get from profile, add if missing - var repeatableQuestDetails = pmcData.RepeatableQuests.FirstOrDefault( - repeatable => repeatable.Name == repeatableConfig.Name + var repeatableQuestDetails = pmcData.RepeatableQuests.FirstOrDefault(repeatable => repeatable.Name == repeatableConfig.Name ); var hasAccess = _profileHelper.HasAccessToRepeatableFreeRefreshSystem(pmcData); @@ -535,7 +528,7 @@ public class RepeatableQuestController( } /// - /// Check if a repeatable quest type (daily/weekly) is active for the given profile + /// Check if a repeatable quest type (daily/weekly) is active for the given profile /// /// Repeatable quest config /// Players PMC profile @@ -563,7 +556,7 @@ public class RepeatableQuestController( } /// - /// Does player have daily pmc quests unlocked + /// Does player have daily pmc quests unlocked /// /// Players PMC profile /// Config of daily type to check @@ -574,7 +567,7 @@ public class RepeatableQuestController( } /// - /// Does player have daily scav quests unlocked + /// Does player have daily scav quests unlocked /// /// Players PMC profile /// True if unlocked @@ -586,7 +579,7 @@ public class RepeatableQuestController( } /// - /// Expire quests and replace expired quests with ready-to-hand-in quests inside generatedRepeatables.activeQuests + /// Expire quests and replace expired quests with ready-to-hand-in quests inside generatedRepeatables.activeQuests /// /// Repeatables to process (daily/weekly) /// Players PMC profile @@ -629,9 +622,9 @@ public class RepeatableQuestController( } /// - /// Used to create a quest pool during each cycle of repeatable quest generation. The pool will be subsequently - /// narrowed down during quest generation to avoid duplicate quests. Like duplicate extractions or elimination quests - /// where you have to e.g. kill scavs in same locations + /// Used to create a quest pool during each cycle of repeatable quest generation. The pool will be subsequently + /// narrowed down during quest generation to avoid duplicate quests. Like duplicate extractions or elimination quests + /// where you have to e.g. kill scavs in same locations /// /// main repeatable quest config /// Players level @@ -680,8 +673,7 @@ public class RepeatableQuestController( var allowedLocations = targetKvP.Key == "Savage" - ? possibleLocations.Where( - location => location != ELocationName.laboratory + ? possibleLocations.Where(location => location != ELocationName.laboratory ) // Exclude labs for Savage targets. : possibleLocations; @@ -696,7 +688,7 @@ public class RepeatableQuestController( } /// - /// Create a pool of quests to generate quests from + /// Create a pool of quests to generate quests from /// /// Main repeatable config /// QuestTypePool @@ -724,7 +716,7 @@ public class RepeatableQuestController( } /// - /// Get a dictionary of map locations the player can access based on their current level + /// Get a dictionary of map locations the player can access based on their current level /// /// /// @@ -754,7 +746,7 @@ public class RepeatableQuestController( } /// - /// Return true if the given pmcLevel is allowed on the given location + /// Return true if the given pmcLevel is allowed on the given location /// /// location name to check /// level of the pmc @@ -792,7 +784,8 @@ public class RepeatableQuestController( } // Add elite bonus to daily quests - if (string.Equals(repeatableConfig.Name, "daily", StringComparison.OrdinalIgnoreCase) && _profileHelper.HasEliteSkillLevel(SkillTypes.Charisma, fullProfile.CharacterData.PmcData)) + if (string.Equals(repeatableConfig.Name, "daily", StringComparison.OrdinalIgnoreCase) && + _profileHelper.HasEliteSkillLevel(SkillTypes.Charisma, fullProfile.CharacterData.PmcData)) // Elite charisma skill gives extra daily quest(s) { questCount += _databaseService @@ -807,7 +800,7 @@ public class RepeatableQuestController( } // Add any extra repeatable quests the profile has unlocked - questCount += (int)fullProfile.SptData.ExtraRepeatableQuests.GetValueOrDefault(repeatableConfig.Id, 0); + questCount += (int) fullProfile.SptData.ExtraRepeatableQuests.GetValueOrDefault(repeatableConfig.Id, 0); return questCount; } diff --git a/Libraries/SPTarkov.Server.Core/Controllers/TradeController.cs b/Libraries/SPTarkov.Server.Core/Controllers/TradeController.cs index 92060864..ca02bde3 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/TradeController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/TradeController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -11,7 +12,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/TraderController.cs b/Libraries/SPTarkov.Server.Core/Controllers/TraderController.cs index dab6cad9..a9ce5b55 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/TraderController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/TraderController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -9,7 +10,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; @@ -19,7 +19,6 @@ public class TraderController( TimeUtil _timeUtil, DatabaseService _databaseService, TraderAssortHelper _traderAssortHelper, - TraderAssortService _traderAssortService, ProfileHelper _profileHelper, TraderHelper _traderHelper, PaymentHelper _paymentHelper, @@ -65,13 +64,6 @@ public class TraderController( AdjustTraderItemPrices(trader, _traderConfig.TraderPriceMultiplier); } - // Create dict of pristine trader assorts on server start - if (_traderAssortService.GetPristineTraderAssort(traderId) == null) - { - var assortsClone = _cloner.Clone(trader.Assort); - _traderAssortService.SetPristineTraderAssort(traderId, assortsClone); - } - _traderPurchasePersisterService.RemoveStalePurchasesFromProfiles(traderId); // Set to next hour on clock or current time + 60 minutes @@ -81,8 +73,8 @@ public class TraderController( } /// - /// Adjust trader item prices based on config value multiplier - /// only applies to items sold for currency + /// Adjust trader item prices based on config value multiplier + /// only applies to items sold for currency /// /// Trader to adjust prices of /// Coef to apply to traders' items' prices diff --git a/Libraries/SPTarkov.Server.Core/Controllers/WeatherController.cs b/Libraries/SPTarkov.Server.Core/Controllers/WeatherController.cs index 7433d8d5..fb6b1600 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/WeatherController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/WeatherController.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Weather; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Spt.Weather; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Controllers/WishlistController.cs b/Libraries/SPTarkov.Server.Core/Controllers/WishlistController.cs index 25e8782e..641cd96d 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/WishlistController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/WishlistController.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Wishlist; using SPTarkov.Server.Core.Routers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Controllers; diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotEquipmentModGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotEquipmentModGenerator.cs index 3898c277..0b526f79 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotEquipmentModGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotEquipmentModGenerator.cs @@ -1,4 +1,5 @@ using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -12,7 +13,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -40,7 +40,6 @@ public class BotEquipmentModGenerator( ICloner _cloner ) { - protected BotConfig _botConfig = _configServer.GetConfig(); protected static readonly FrozenSet _modSightIds = ["mod_sight_front", "mod_sight_rear"]; // Slots that hold scopes @@ -63,12 +62,15 @@ public class BotEquipmentModGenerator( // Slots that hold cartridges protected static readonly FrozenSet _cartridgeHolderSlots = - [ - "mod_magazine", - "patron_in_weapon", - "patron_in_weapon_000", - "patron_in_weapon_001", - "cartridges"]; + [ + "mod_magazine", + "patron_in_weapon", + "patron_in_weapon_000", + "patron_in_weapon_001", + "cartridges" + ]; + + protected BotConfig _botConfig = _configServer.GetConfig(); /// /// Check mods are compatible and add to array @@ -272,10 +274,9 @@ public class BotEquipmentModGenerator( } // Get the front/back/side weights based on bots level - var plateSlotWeights = settings.BotEquipmentConfig?.ArmorPlateWeighting.FirstOrDefault( - armorWeight => - settings.BotData.Level >= armorWeight.LevelRange.Min && - settings.BotData.Level <= armorWeight.LevelRange.Max + var plateSlotWeights = settings.BotEquipmentConfig?.ArmorPlateWeighting.FirstOrDefault(armorWeight => + settings.BotData.Level >= armorWeight.LevelRange.Min && + settings.BotData.Level <= armorWeight.LevelRange.Max ); if (plateSlotWeights is null) @@ -390,14 +391,13 @@ public class BotEquipmentModGenerator( } /// - /// Gets the minimum and maximum plate class levels from an array of plates + /// Gets the minimum and maximum plate class levels from an array of plates /// /// Pool of plates to sort by armorClass to get min and max /// MinMax of armorClass from plate pool protected static MinMax GetMinMaxArmorPlateClass(List platePool) { - platePool.Sort( - (x, y) => + platePool.Sort((x, y) => { if (x.Properties.ArmorClass < y.Properties.ArmorClass) { @@ -421,7 +421,7 @@ public class BotEquipmentModGenerator( } /// - /// Get the default plate an armor has in its db item + /// Get the default plate an armor has in its db item /// /// Item to look up default plate /// front/back @@ -434,7 +434,7 @@ public class BotEquipmentModGenerator( } /// - /// Get the matching armor slot from the default preset matching passed in armor tpl + /// Get the matching armor slot from the default preset matching passed in armor tpl /// /// /// @@ -733,7 +733,7 @@ public class BotEquipmentModGenerator( } /// - /// Does the passed in db item lack slot cartridges or chambers + /// Does the passed in db item lack slot cartridges or chambers /// /// Item to check /// True it lacks cartridges/chamber slots @@ -1032,9 +1032,8 @@ public class BotEquipmentModGenerator( if ((request.WeaponStats.HasOptic ?? false) && modPool.Count > 1) { // Attempt to limit modpool to low profile gas blocks when weapon has an optic - var onlyLowProfileGasBlocks = modPool.Where( - tpl => - _botConfig.LowProfileGasBlockTpls.Contains(tpl) + var onlyLowProfileGasBlocks = modPool.Where(tpl => + _botConfig.LowProfileGasBlockTpls.Contains(tpl) ); if (onlyLowProfileGasBlocks.Any()) { @@ -1044,8 +1043,7 @@ public class BotEquipmentModGenerator( else if ((request.WeaponStats.HasRearIronSight ?? false) && modPool.Count > 1) { // Attempt to limit modpool to high profile gas blocks when weapon has rear iron sight + no front iron sight - var onlyHighProfileGasBlocks = modPool.Where( - tpl => !_botConfig.LowProfileGasBlockTpls.Contains(tpl) + var onlyHighProfileGasBlocks = modPool.Where(tpl => !_botConfig.LowProfileGasBlockTpls.Contains(tpl) ); if (onlyHighProfileGasBlocks.Any()) { @@ -1127,8 +1125,7 @@ public class BotEquipmentModGenerator( var weaponTpl = modSpawnRequest.Weapon[0].Template; modSpawnRequest.RandomisationSettings.MinimumMagazineSize.TryGetValue(weaponTpl, out var minMagSizeFromSettings); var minMagazineSize = minMagSizeFromSettings; - var desiredMagazineTpls = modPool.Where( - magTpl => + var desiredMagazineTpls = modPool.Where(magTpl => { var magazineDb = _itemHelper.GetItem(magTpl).Value; return magazineDb.Properties is not null && magazineDb.Properties.Cartridges.FirstOrDefault().MaxCount >= minMagazineSize; @@ -1236,9 +1233,8 @@ public class BotEquipmentModGenerator( } // Check if existing weapon mods are incompatible with chosen item - var existingItemBlockingChoice = weapon.FirstOrDefault( - item => - pickedItemDetails.Value.Properties.ConflictingItems?.Contains(item.Template) ?? false + var existingItemBlockingChoice = weapon.FirstOrDefault(item => + pickedItemDetails.Value.Properties.ConflictingItems?.Contains(item.Template) ?? false ); if (existingItemBlockingChoice is not null) { @@ -1326,7 +1322,7 @@ public class BotEquipmentModGenerator( } /// - /// Get a pool of mods from the default weapon preset for passed in weapon + /// Get a pool of mods from the default weapon preset for passed in weapon /// /// /// @@ -1360,8 +1356,8 @@ public class BotEquipmentModGenerator( // Get an array of items that are allowed in slot from parent item // Check the filter of the slot to ensure a chosen mod fits - var parentSlotCompatibleItems = request.ParentTemplate.Properties.Slots?.FirstOrDefault( - slot => string.Equals(slot.Name.ToLower(), request.ModSlot.ToLower(), StringComparison.Ordinal) + var parentSlotCompatibleItems = request.ParentTemplate.Properties.Slots?.FirstOrDefault(slot => + string.Equals(slot.Name.ToLower(), request.ModSlot.ToLower(), StringComparison.Ordinal) ) ?.Props.Filters?[0].Filter; @@ -1413,7 +1409,7 @@ public class BotEquipmentModGenerator( } /// - /// Get Desired item from preset + /// Get Desired item from preset /// /// /// @@ -1834,20 +1830,17 @@ public class BotEquipmentModGenerator( // Check to see if mount has a scope slot (only include primary slot, ignore the rest like the backup sight slots) // Should only find 1 as there's currently no items with a mod_scope AND a mod_scope_000 HashSet filter = ["mod_scope", "mod_scope_000"]; - var scopeSlot = itemDetails.Properties.Slots.Where( - slot => - filter.Contains(slot.Name) + var scopeSlot = itemDetails.Properties.Slots.Where(slot => + filter.Contains(slot.Name) ); // Mods scope slot found must allow ALL whitelisted scope types OR be a mount - if (scopeSlot?.All( - slot => - slot.Props.Filters[0] - .Filter.All( - tpl => - _itemHelper.IsOfBaseclasses(tpl, whitelistedSightTypes) || - _itemHelper.IsOfBaseclass(tpl, BaseClasses.MOUNT) - ) + if (scopeSlot?.All(slot => + slot.Props.Filters[0] + .Filter.All(tpl => + _itemHelper.IsOfBaseclasses(tpl, whitelistedSightTypes) || + _itemHelper.IsOfBaseclass(tpl, BaseClasses.MOUNT) + ) ) ?? false) // Add mod to allowed list diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotGenerator.cs index 5bb9788a..b1d5e263 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using BodyPart = SPTarkov.Server.Core.Models.Eft.Common.Tables.BodyPart; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -431,30 +431,21 @@ public class BotGenerator( // Remove blacklisted loot from loot containers foreach (var lootContainerKey in lootContainersToFilter) { - var prop = props.FirstOrDefault(x => string.Equals(x.Name, lootContainerKey, StringComparison.CurrentCultureIgnoreCase)); - var propValue = (Dictionary) prop.GetValue(botInventory.Items); + var propInfo = props + .FirstOrDefault(x => string.Equals(x.Name, lootContainerKey, StringComparison.CurrentCultureIgnoreCase)); + var prop = (Dictionary?) propInfo.GetValue(botInventory.Items); // No container, skip - if (propValue?.Count == 0) + if (prop is null) { continue; } - List tplsToRemove = []; - foreach (var (key, _) in propValue) + var newProp = prop.Where(tpl => { - if (_itemFilterService.IsLootableItemBlacklisted(key)) - { - tplsToRemove.Add(key); - } - } - - foreach (var blacklistedTplToRemove in tplsToRemove) - { - propValue.Remove(blacklistedTplToRemove); - } - - prop.SetValue(botInventory.Items, propValue); + return !_itemFilterService.IsLootableItemBlacklisted(tpl.Key); + }).ToDictionary(); + propInfo.SetValue(botInventory.Items, newProp); } } @@ -518,7 +509,7 @@ public class BotGenerator( Health = new CurrentMinMax { Current = _randomUtil.GetDouble(bodyParts.Head.Min, bodyParts.Head.Max), - Maximum = (double)Math.Round(bodyParts.Head.Max) + Maximum = Math.Round(bodyParts.Head.Max) } } }, @@ -528,7 +519,7 @@ public class BotGenerator( Health = new CurrentMinMax { Current = _randomUtil.GetDouble(bodyParts.Chest.Min, bodyParts.Chest.Max), - Maximum = (double)Math.Round(bodyParts.Chest.Max) + Maximum = Math.Round(bodyParts.Chest.Max) } } }, @@ -656,8 +647,8 @@ public class BotGenerator( return []; } - return skills.Select( - kvp => + return skills + .Select(kvp => { // Get skill from dict, skip if not found var skill = kvp.Value; diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotInventoryGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotInventoryGenerator.cs index 78baec81..ac2db192 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotInventoryGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotInventoryGenerator.cs @@ -1,4 +1,5 @@ using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -37,8 +37,6 @@ public class BotInventoryGenerator( ConfigServer _configServer ) { - private readonly BotConfig _botConfig = _configServer.GetConfig(); - // Slots handled individually inside `GenerateAndAddEquipmentToBot` private static readonly FrozenSet _excludedEquipmentSlots = [ @@ -53,6 +51,8 @@ public class BotInventoryGenerator( EquipmentSlots.Earpiece ]; + private readonly BotConfig _botConfig = _configServer.GetConfig(); + private readonly HashSet _slotsToCheck = [EquipmentSlots.Pockets.ToString(), EquipmentSlots.SecuredContainer.ToString()]; /// @@ -386,7 +386,7 @@ public class BotInventoryGenerator( } /// - /// Get RootEquipmentPool id based on game version + /// Get RootEquipmentPool id based on game version /// /// /// diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotLevelGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotLevelGenerator.cs index 3a7d166f..3d395dfe 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotLevelGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotLevelGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Bot; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Bots; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators; diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotLootGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotLootGenerator.cs index 3da889dc..1f385510 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotLootGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotLootGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -337,8 +337,7 @@ public class BotLootGenerator( return null; } - var matchingValue = _pmcConfig?.LootItemLimitsRub?.FirstOrDefault( - minMaxValue => botLevel >= minMaxValue.Min && botLevel <= minMaxValue.Max + var matchingValue = _pmcConfig?.LootItemLimitsRub?.FirstOrDefault(minMaxValue => botLevel >= minMaxValue.Min && botLevel <= minMaxValue.Max ); return matchingValue; @@ -358,14 +357,13 @@ public class BotLootGenerator( return 0; } - var matchingValue = _pmcConfig.MaxBackpackLootTotalRub.FirstOrDefault( - minMaxValue => botLevel >= minMaxValue.Min && botLevel <= minMaxValue.Max + var matchingValue = _pmcConfig.MaxBackpackLootTotalRub.FirstOrDefault(minMaxValue => botLevel >= minMaxValue.Min && botLevel <= minMaxValue.Max ); return matchingValue?.Value; } /// - /// Get an array of the containers a bot has on them (pockets/backpack/vest) + /// Get an array of the containers a bot has on them (pockets/backpack/vest) /// /// Bot to check /// Array of available slots @@ -595,7 +593,7 @@ public class BotLootGenerator( } /// - /// Adds loot to the specified Wallet + /// Adds loot to the specified Wallet /// /// Wallet to add loot to /// Generated list of currency stacks with the wallet as their parent @@ -605,19 +603,19 @@ public class BotLootGenerator( // Choose how many stacks of currency will be added to wallet var itemCount = _randomUtil.GetInt( - (int) _botConfig.WalletLoot.ItemCount.Min, - (int) _botConfig.WalletLoot.ItemCount.Max + _botConfig.WalletLoot.ItemCount.Min, + _botConfig.WalletLoot.ItemCount.Max ); for (var index = 0; index < itemCount; index++) { // Choose the size of the currency stack - default is 5k, 10k, 15k, 20k, 25k - var chosenStackCount = _weightedRandomHelper.GetWeightedValue(_botConfig.WalletLoot.StackSizeWeight); + var chosenStackCount = _weightedRandomHelper.GetWeightedValue(_botConfig.WalletLoot.StackSizeWeight); List items = [ new() { Id = _hashUtil.Generate(), - Template = _weightedRandomHelper.GetWeightedValue(_botConfig.WalletLoot.CurrencyWeight), + Template = _weightedRandomHelper.GetWeightedValue(_botConfig.WalletLoot.CurrencyWeight), ParentId = walletId, Upd = new Upd { @@ -693,8 +691,8 @@ public class BotLootGenerator( ] ); var randomisedWeaponCount = _randomUtil.GetInt( - (int) _pmcConfig.LooseWeaponInBackpackLootMinMax.Min, - (int) _pmcConfig.LooseWeaponInBackpackLootMinMax.Max + _pmcConfig.LooseWeaponInBackpackLootMinMax.Min, + _pmcConfig.LooseWeaponInBackpackLootMinMax.Max ); if (randomisedWeaponCount <= 0) diff --git a/Libraries/SPTarkov.Server.Core/Generators/BotWeaponGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/BotWeaponGenerator.cs index 3a21f79c..caab5eec 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/BotWeaponGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/BotWeaponGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators.WeaponGen; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -200,7 +200,7 @@ public class BotWeaponGenerator( // Add cartridge(s) to gun chamber(s) if (weaponItemTemplate.Properties?.Chambers?.Count > 0 && - weaponItemTemplate.Properties.Chambers[0].Props.Filters[0].Filter.Contains(ammoTpl)) + weaponItemTemplate.Properties.Chambers[0].Props.Filters[0].Filter.Contains(ammoTpl)) { // Guns have variety of possible Chamber ids, patron_in_weapon/patron_in_weapon_000/patron_in_weapon_001 var chamberSlotNames = weaponItemTemplate.Properties.Chambers.Select(chamberSlot => chamberSlot.Name); @@ -363,8 +363,7 @@ public class BotWeaponGenerator( foreach (var modSlotTemplate in modTemplate.Properties.Slots?.Where(slot => slot.Required.GetValueOrDefault(false)) ?? []) { var slotName = modSlotTemplate.Name; - var hasWeaponSlotItem = weaponItemList.Any( - weaponItem => weaponItem.ParentId == mod.Id && weaponItem.SlotId == slotName + var hasWeaponSlotItem = weaponItemList.Any(weaponItem => weaponItem.ParentId == mod.Id && weaponItem.SlotId == slotName ); if (!hasWeaponSlotItem) { @@ -639,7 +638,8 @@ public class BotWeaponGenerator( var magazineCaliberData = _itemHelper.GetItem(compatibleCartridgesInMagazine.FirstOrDefault()).Value.Properties.Caliber; cartridgePoolForWeapon = cartridgePool[magazineCaliberData]; - foreach (var cartridgeKvP in cartridgePoolForWeapon) { + foreach (var cartridgeKvP in cartridgePoolForWeapon) + { if (compatibleCartridgesInMagazine.Contains(cartridgeKvP.Key)) { compatibleCartridges[cartridgeKvP.Key] = cartridgeKvP.Value; @@ -676,12 +676,13 @@ public class BotWeaponGenerator( } /// - /// Get the cartridge ids from a weapon's magazine template that work with the weapon + /// Get the cartridge ids from a weapon's magazine template that work with the weapon /// /// Weapon db template to get magazine cartridges for /// Hashset of cartridge tpls /// Thrown when weaponTemplate is null. - protected HashSet GetCompatibleCartridgesFromMagazineTemplate(TemplateItem weaponTemplate) { + protected HashSet GetCompatibleCartridgesFromMagazineTemplate(TemplateItem weaponTemplate) + { ArgumentNullException.ThrowIfNull(weaponTemplate); // Get the first magazine's template from the weapon @@ -801,8 +802,7 @@ public class BotWeaponGenerator( /// Magazines db template protected void AddOrUpdateMagazinesChildWithAmmo(List weaponWithMods, Item magazine, string chosenAmmoTpl, TemplateItem magazineTemplate) { - var magazineCartridgeChildItem = weaponWithMods.FirstOrDefault( - m => m.ParentId == magazine.Id && m.SlotId == "cartridges" + var magazineCartridgeChildItem = weaponWithMods.FirstOrDefault(m => m.ParentId == magazine.Id && m.SlotId == "cartridges" ); if (magazineCartridgeChildItem is not null) { @@ -824,6 +824,7 @@ public class BotWeaponGenerator( return; } + weaponWithMods.RemoveAt(magazineIndex); // Insert new mag at same index position original was diff --git a/Libraries/SPTarkov.Server.Core/Generators/FenceBaseAssortGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/FenceBaseAssortGenerator.cs index 4a32db6e..1cf7b7fb 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/FenceBaseAssortGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/FenceBaseAssortGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators; @@ -30,7 +30,7 @@ public class FenceBaseAssortGenerator( protected TraderConfig traderConfig = configServer.GetConfig(); /// - /// Create base fence assorts dynamically and store in memory + /// Create base fence assorts dynamically and store in memory /// public void GenerateFenceBaseAssorts() { @@ -201,7 +201,7 @@ public class FenceBaseAssortGenerator( } /// - /// Check ammo in boxes + loose ammos has a penetration value above the configured value in trader.json / ammoMaxPenLimit + /// Check ammo in boxes + loose ammos has a penetration value above the configured value in trader.json / ammoMaxPenLimit /// /// Ammo box or ammo item from items.db /// True if penetration value is above limit set in config @@ -218,7 +218,7 @@ public class FenceBaseAssortGenerator( } /// - /// Get the penetration power value of an ammo, works with ammo boxes and raw ammos + /// Get the penetration power value of an ammo, works with ammo boxes and raw ammos /// /// Ammo box or ammo item from items.db /// Penetration power of passed in item, undefined if it doesnt have a power @@ -251,7 +251,7 @@ public class FenceBaseAssortGenerator( } /// - /// Add soft inserts + armor plates to an armor + /// Add soft inserts + armor plates to an armor /// /// Armor item array to add mods into /// Armor items db template @@ -337,7 +337,7 @@ public class FenceBaseAssortGenerator( } /// - /// Check if item is valid for being added to fence assorts + /// Check if item is valid for being added to fence assorts /// /// Item to check /// True if valid fence item diff --git a/Libraries/SPTarkov.Server.Core/Generators/LocationLootGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/LocationLootGenerator.cs index e339aa45..4c1b4a45 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/LocationLootGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/LocationLootGenerator.cs @@ -1,4 +1,5 @@ using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -83,8 +83,7 @@ public class LocationLootGenerator( // Remove christmas items from loot data if (!_seasonalEventService.ChristmasEventEnabled()) { - allStaticContainersOnMapClone = allStaticContainersOnMapClone.Where( - item => !_seasonalEventConfig.ChristmasContainerIds.Contains(item.Template.Id) + allStaticContainersOnMapClone = allStaticContainersOnMapClone.Where(item => !_seasonalEventConfig.ChristmasContainerIds.Contains(item.Template.Id) ) .ToList(); } @@ -100,15 +99,14 @@ public class LocationLootGenerator( staticContainerCount += guaranteedContainers.Count; // Add loot to guaranteed containers and add to result - foreach (var container in guaranteedContainers) + foreach (var containerWithLoot in guaranteedContainers.Select(container => AddLootToContainer( + container, + staticForcedOnMapClone, + staticLootDist.Value, + staticAmmoDist, + locationId + ))) { - var containerWithLoot = AddLootToContainer( - container, - staticForcedOnMapClone, - staticLootDist.Value, - staticAmmoDist, - locationId - ); result.Add(containerWithLoot.Template); staticLootItemCount += containerWithLoot.Template.Items.Count; @@ -121,7 +119,7 @@ public class LocationLootGenerator( // Randomisation is turned off globally or just turned off for this map if (!_locationConfig.ContainerRandomisationSettings.Enabled || !_locationConfig.ContainerRandomisationSettings.Maps.ContainsKey(locationId) - ) + ) { if (_logger.IsLogEnabled(LogLevel.Debug)) { @@ -207,8 +205,7 @@ public class LocationLootGenerator( foreach (var chosenContainerId in chosenContainerIds) { // Look up container object from full list of containers on map - var containerObject = staticRandomisableContainersOnMap.FirstOrDefault( - staticContainer => staticContainer.Template.Id == chosenContainerId + var containerObject = staticRandomisableContainersOnMap.FirstOrDefault(staticContainer => staticContainer.Template.Id == chosenContainerId ); if (containerObject is null) { @@ -253,13 +250,12 @@ public class LocationLootGenerator( /// StaticContainerData array protected List GetRandomisableContainersOnMap(List staticContainers) { - return staticContainers.Where( - staticContainer => - staticContainer.Probability != 1 && - !staticContainer.Template.IsAlwaysSpawn.GetValueOrDefault(false) && - !_locationConfig.ContainerRandomisationSettings.ContainerTypesToNotRandomise.Contains( - staticContainer.Template.Items[0].Template - ) + return staticContainers.Where(staticContainer => + staticContainer.Probability != 1 && + !staticContainer.Template.IsAlwaysSpawn.GetValueOrDefault(false) && + !_locationConfig.ContainerRandomisationSettings.ContainerTypesToNotRandomise.Contains( + staticContainer.Template.Items[0].Template + ) ) .ToList(); } @@ -271,13 +267,12 @@ public class LocationLootGenerator( /// IStaticContainerData array protected List GetGuaranteedContainers(List staticContainersOnMap) { - return staticContainersOnMap.Where( - staticContainer => - staticContainer.Probability == 1 || - staticContainer.Template.IsAlwaysSpawn.GetValueOrDefault(false) || - _locationConfig.ContainerRandomisationSettings.ContainerTypesToNotRandomise.Contains( - staticContainer.Template.Items[0].Template - ) + return staticContainersOnMap.Where(staticContainer => + staticContainer.Probability == 1 || + staticContainer.Template.IsAlwaysSpawn.GetValueOrDefault(false) || + _locationConfig.ContainerRandomisationSettings.ContainerTypesToNotRandomise.Contains( + staticContainer.Template.Items[0].Template + ) ) .ToList(); } @@ -413,7 +408,8 @@ public class LocationLootGenerator( protected StaticContainerData AddLootToContainer(StaticContainerData staticContainer, List? staticForced, Dictionary staticLootDist, - Dictionary> staticAmmoDist, string locationName + Dictionary> staticAmmoDist, + string locationName ) { var containerClone = _cloner.Clone(staticContainer); @@ -428,6 +424,10 @@ public class LocationLootGenerator( // Choose count of items to add to container var itemCountToAdd = GetWeightedCountOfContainerItems(containerTpl, staticLootDist, locationName); + if (itemCountToAdd == 0) + { + return containerClone; + } // Get all possible loot items for container var containerLootPool = GetPossibleLootItemsForContainer(containerTpl, staticLootDist); @@ -439,17 +439,22 @@ public class LocationLootGenerator( // Draw random loot // Allow money to spawn more than once in container - var failedToFitCount = 0; - var locklist = _itemHelper.GetMoneyTpls(); + var failedToFitAttemptCount = 0; + var lockList = _itemHelper.GetMoneyTpls(); // Choose items to add to container, factor in weighting + lock money down - // Filter out items picked that're already in the above `tplsForced` array + // Filter out items picked that are already in the above `tplsForced` array var chosenTpls = containerLootPool - .Draw(itemCountToAdd, _locationConfig.AllowDuplicateItemsInStaticContainers, locklist) + .Draw(itemCountToAdd, _locationConfig.AllowDuplicateItemsInStaticContainers, lockList) .Where(tpl => !tplsForced.Contains(tpl)); // Add forced loot to chosen item pool var tplsToAddToContainer = tplsForced.Concat(chosenTpls); + if (!tplsToAddToContainer.Any()) + { + _logger.Warning($"Added no items to container: {containerTpl}"); + } + foreach (var tplToAdd in tplsToAddToContainer) { var chosenItemWithChildren = CreateStaticLootItem(tplToAdd, staticAmmoDist, parentId); @@ -458,46 +463,47 @@ public class LocationLootGenerator( continue; } + // Check if item should have children removed var items = _locationConfig.TplsToStripChildItemsFrom.Contains(tplToAdd) ? [chosenItemWithChildren.Items[0]] // Strip children from parent : chosenItemWithChildren.Items; var itemSize = GetItemSize(items); - var width = itemSize.Width; - var height = itemSize.Height; + var itemWidth = itemSize.Width; + var itemHeight = itemSize.Height; // look for open slot to put chosen item into - var result = _containerHelper.FindSlotForItem(containerMap, width, height); + var result = _containerHelper.FindSlotForItem(containerMap, itemWidth, itemHeight); if (!result.Success.GetValueOrDefault(false)) { - if (failedToFitCount > _locationConfig.FitLootIntoContainerAttempts) + if (failedToFitAttemptCount > _locationConfig.FitLootIntoContainerAttempts) // x attempts to fit an item, container is probably full, stop trying to add more { break; } // Can't fit item, skip - failedToFitCount++; + failedToFitAttemptCount++; continue; } + // Find somewhere for item inside container _containerHelper.FillContainerMapWithItem( containerMap, result.X.Value, result.Y.Value, - width, - height, + itemWidth, + itemHeight, result.Rotation.GetValueOrDefault(false) ); - var rotation = result.Rotation.GetValueOrDefault(false) ? 1 : 0; - + // Update root item properties with result of position finder items[0].SlotId = "main"; items[0].Location = new ItemLocation { X = result.X, Y = result.Y, - R = rotation + R = result.Rotation.GetValueOrDefault(false) ? ItemRotation.Vertical : ItemRotation.Horizontal }; // Add loot to container before returning @@ -507,6 +513,11 @@ public class LocationLootGenerator( return containerClone; } + /// + /// Get the height/width of an item including its children + /// + /// + /// protected ItemSize? GetItemSize(List? items) { var rootItem = items[0]; @@ -564,7 +575,7 @@ public class LocationLootGenerator( protected int GetWeightedCountOfContainerItems(string containerTypeId, Dictionary staticLootDist, string locationName) { - // Create probability array to calcualte the total count of lootable items inside container + // Create probability array to calculate the total count of lootable items inside container var itemCountArray = new ProbabilityObjectArray(_mathUtil, _cloner); var countDistribution = staticLootDist[containerTypeId]?.ItemCountDistribution; @@ -675,12 +686,12 @@ public class LocationLootGenerator( // Remove christmas items from loot data if (!_seasonalEventService.ChristmasEventEnabled()) { - dynamicLootDist.Spawnpoints = dynamicLootDist.Spawnpoints.Where( - point => !point.Template.Id.StartsWith("christmas", StringComparison.OrdinalIgnoreCase) + dynamicLootDist.Spawnpoints = dynamicLootDist.Spawnpoints.Where(point => + !point.Template.Id.StartsWith("christmas", StringComparison.OrdinalIgnoreCase) ) .ToList(); - dynamicLootDist.SpawnpointsForced = dynamicLootDist.SpawnpointsForced.Where( - point => !point.Template.Id.StartsWith("christmas", StringComparison.OrdinalIgnoreCase) + dynamicLootDist.SpawnpointsForced = dynamicLootDist.SpawnpointsForced.Where(point => + !point.Template.Id.StartsWith("christmas", StringComparison.OrdinalIgnoreCase) ) .ToList(); } @@ -793,16 +804,14 @@ public class LocationLootGenerator( } // Ensure no blacklisted lootable items are in pool - spawnPoint.Template.Items = spawnPoint.Template.Items.Where( - item => !_itemFilterService.IsLootableItemBlacklisted(item.Template) + spawnPoint.Template.Items = spawnPoint.Template.Items.Where(item => !_itemFilterService.IsLootableItemBlacklisted(item.Template) ) .ToList(); // Ensure no seasonal items are in pool if not in-season if (!seasonalEventActive) { - spawnPoint.Template.Items = spawnPoint.Template.Items.Where( - item => !seasonalItemTplBlacklist.Contains(item.Template) + spawnPoint.Template.Items = spawnPoint.Template.Items.Where(item => !seasonalItemTplBlacklist.Contains(item.Template) ) .ToList(); } @@ -881,8 +890,7 @@ public class LocationLootGenerator( foreach (var itemTpl in lootToForceSingleAmountOnMap) { // Get all spawn positions for item tpl in forced loot array - var items = forcedSpawnPoints.Where( - forcedSpawnPoint => forcedSpawnPoint.Template.Items[0].Template == itemTpl + var items = forcedSpawnPoints.Where(forcedSpawnPoint => forcedSpawnPoint.Template.Items[0].Template == itemTpl ); if (items is null || !items.Any()) { @@ -959,8 +967,7 @@ public class LocationLootGenerator( forcedLootLocation.Template.Items = createItemResult.Items; // Push forced location into array as long as it doesnt exist already - var existingLocation = lootLocationTemplates.Any( - spawnPoint => spawnPoint.Id == locationTemplateToAdd.Id + var existingLocation = lootLocationTemplates.Any(spawnPoint => spawnPoint.Id == locationTemplateToAdd.Id ); if (!existingLocation) { @@ -977,8 +984,9 @@ public class LocationLootGenerator( } } } + /// - /// Create array of item (with child items) and return + /// Create array of item (with child items) and return /// /// Key we want to look up items for /// Location loot Template diff --git a/Libraries/SPTarkov.Server.Core/Generators/LootGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/LootGenerator.cs index 6a1cd9d9..fedcfdc8 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/LootGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/LootGenerator.cs @@ -1,4 +1,5 @@ using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -50,9 +50,8 @@ public class LootGenerator( { // Get list of all sealed containers from db - they're all the same, just for flavor var itemsDb = _itemHelper.GetItems(); - var sealedWeaponContainerPool = itemsDb.Where( - item => - item.Name.Contains("event_container_airdrop") + var sealedWeaponContainerPool = itemsDb.Where(item => + item.Name.Contains("event_container_airdrop") ); for (var index = 0; index < sealedWeaponCrateCount; index++) @@ -106,9 +105,8 @@ public class LootGenerator( ); if (randomisedWeaponPresetCount > 0) { - var weaponDefaultPresets = globalDefaultPresets.Where( - preset => - _itemHelper.IsOfBaseclass(preset.Encyclopedia, BaseClasses.WEAPON) + var weaponDefaultPresets = globalDefaultPresets.Where(preset => + _itemHelper.IsOfBaseclass(preset.Encyclopedia, BaseClasses.WEAPON) ) .ToList(); @@ -139,13 +137,11 @@ public class LootGenerator( ); if (randomisedArmorPresetCount > 0) { - var armorDefaultPresets = globalDefaultPresets.Where( - preset => - _itemHelper.ArmorItemCanHoldMods(preset.Encyclopedia) + var armorDefaultPresets = globalDefaultPresets.Where(preset => + _itemHelper.ArmorItemCanHoldMods(preset.Encyclopedia) ); - var levelFilteredArmorPresets = armorDefaultPresets.Where( - armor => - IsArmorOfDesiredProtectionLevel(armor, options) + var levelFilteredArmorPresets = armorDefaultPresets.Where(armor => + IsArmorOfDesiredProtectionLevel(armor, options) ) .ToList(); @@ -252,12 +248,11 @@ public class LootGenerator( itemBlacklist.UnionWith(_seasonalEventService.GetInactiveSeasonalEventItems()); } - var items = itemsDb.Where( - item => - !itemBlacklist.Contains(item.Id) && - string.Equals(item.Type, "item", StringComparison.OrdinalIgnoreCase) && - !item.Properties.QuestItem.GetValueOrDefault(false) && - itemTypeWhitelist.Contains(item.Parent) + var items = itemsDb.Where(item => + !itemBlacklist.Contains(item.Id) && + string.Equals(item.Type, "item", StringComparison.OrdinalIgnoreCase) && + !item.Properties.QuestItem.GetValueOrDefault(false) && + itemTypeWhitelist.Contains(item.Parent) ) .ToList(); @@ -487,7 +482,7 @@ public class LootGenerator( List> itemsToReturn = []; // Choose a weapon to give to the player (weighted) - var chosenWeaponTpl = _weightedRandomHelper.GetWeightedValue( + var chosenWeaponTpl = _weightedRandomHelper.GetWeightedValue( containerSettings.WeaponRewardWeight ); @@ -558,8 +553,7 @@ public class LootGenerator( if (rewardKey == BaseClasses.AMMO_BOX) { // Get ammo boxes from db - var ammoBoxesDetails = containerSettings.AmmoBoxWhitelist.Select( - tpl => + var ammoBoxesDetails = containerSettings.AmmoBoxWhitelist.Select(tpl => { var itemDetails = _itemHelper.GetItem(tpl); return itemDetails.Value; @@ -568,9 +562,8 @@ public class LootGenerator( // Need to find boxes that matches weapons caliber var weaponCaliber = weaponDetailsDb.Properties.AmmoCaliber; - var ammoBoxesMatchingCaliber = ammoBoxesDetails.Where( - x => - x.Properties.AmmoCaliber == weaponCaliber + var ammoBoxesMatchingCaliber = ammoBoxesDetails.Where(x => + x.Properties.AmmoCaliber == weaponCaliber ); if (!ammoBoxesMatchingCaliber.Any()) { @@ -602,13 +595,12 @@ public class LootGenerator( // Get all items of the desired type + not quest items + not globally blacklisted var rewardItemPool = _databaseService.GetItems() - .Values.Where( - item => - item.Parent == rewardKey && - string.Equals(item.Type, "item", StringComparison.OrdinalIgnoreCase) && - _itemFilterService.IsItemBlacklisted(item.Id) && - !(containerSettings.AllowBossItems || _itemFilterService.IsBossItem(item.Id)) && - item.Properties.QuestItem is null + .Values.Where(item => + item.Parent == rewardKey && + string.Equals(item.Type, "item", StringComparison.OrdinalIgnoreCase) && + _itemFilterService.IsItemBlacklisted(item.Id) && + !(containerSettings.AllowBossItems || _itemFilterService.IsBossItem(item.Id)) && + item.Properties.QuestItem is null ); if (!rewardItemPool.Any()) @@ -664,8 +656,7 @@ public class LootGenerator( } // Get items that fulfil reward type criteria from items that fit on gun - var relatedItems = linkedItemsToWeapon?.Where( - item => item?.Parent == rewardKey && !_itemFilterService.IsItemBlacklisted(item.Id) + var relatedItems = linkedItemsToWeapon?.Where(item => item?.Parent == rewardKey && !_itemFilterService.IsItemBlacklisted(item.Id) ); if (relatedItems is null || !relatedItems.Any()) { @@ -719,7 +710,7 @@ public class LootGenerator( var preset = _presetHelper.GetDefaultPreset(chosenRewardItemTpl); // Ensure preset has unique ids and is cloned so we don't alter the preset data stored in memory - List presetAndMods = _itemHelper.ReplaceIDs(preset.Items); + var presetAndMods = _itemHelper.ReplaceIDs(preset.Items); _itemHelper.RemapRootItemId(presetAndMods); itemsToReturn.Add(presetAndMods); @@ -755,8 +746,7 @@ public class LootGenerator( return _randomUtil.GetArrayValue( GetItemRewardPool([], rewardContainerDetails.RewardTypePool, true, true, false) - .ItemPool.Select( - item => item.Id + .ItemPool.Select(item => item.Id ) ); } diff --git a/Libraries/SPTarkov.Server.Core/Generators/PMCLootGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/PMCLootGenerator.cs index 69c56b4c..fe4112a4 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/PMCLootGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/PMCLootGenerator.cs @@ -1,4 +1,5 @@ using System.Collections.Concurrent; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators; @@ -63,19 +63,19 @@ public class PMCLootGenerator _pocketLootPool = new ConcurrentDictionary(); var items = _databaseService.GetItems(); var pmcPriceOverrides = - _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items.Pockets; + _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items + .Pockets; var allowedItemTypeWhitelist = _pmcConfig.PocketLoot.Whitelist; var blacklist = GetLootBlacklist(); - var itemsToAdd = items.Where( - item => - allowedItemTypeWhitelist.Contains(item.Value.Parent) && - _itemHelper.IsValidItem(item.Value.Id) && - !blacklist.Contains(item.Value.Id) && - !blacklist.Contains(item.Value.Parent) && - ItemFitsInto1By2Slot(item.Value) + var itemsToAdd = items.Where(item => + allowedItemTypeWhitelist.Contains(item.Value.Parent) && + _itemHelper.IsValidItem(item.Value.Id) && + !blacklist.Contains(item.Value.Id) && + !blacklist.Contains(item.Value.Parent) && + ItemFitsInto1By2Slot(item.Value) ).Select(x => x.Key); foreach (var tpl in itemsToAdd) @@ -113,6 +113,7 @@ public class PMCLootGenerator blacklist.UnionWith(_pmcConfig.PocketLoot.Blacklist); blacklist.UnionWith(_pmcConfig.GlobalLootBlacklist); blacklist.UnionWith(_itemFilterService.GetBlacklistedItems()); + blacklist.UnionWith(_itemFilterService.GetBlacklistedLootableItems()); blacklist.UnionWith(_seasonalEventService.GetInactiveSeasonalEventItems()); return blacklist; @@ -131,19 +132,19 @@ public class PMCLootGenerator _vestLootPool = new ConcurrentDictionary(); var items = _databaseService.GetItems(); var pmcPriceOverrides = - _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items.TacticalVest; + _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items + .TacticalVest; var allowedItemTypeWhitelist = _pmcConfig.VestLoot.Whitelist; var blacklist = GetLootBlacklist(); - var itemsToAdd = items.Where( - item => - allowedItemTypeWhitelist.Contains(item.Value.Parent) && - _itemHelper.IsValidItem(item.Value.Id) && - !blacklist.Contains(item.Value.Id) && - !blacklist.Contains(item.Value.Parent) && - ItemFitsInto2By2Slot(item.Value) + var itemsToAdd = items.Where(item => + allowedItemTypeWhitelist.Contains(item.Value.Parent) && + _itemHelper.IsValidItem(item.Value.Id) && + !blacklist.Contains(item.Value.Id) && + !blacklist.Contains(item.Value.Parent) && + ItemFitsInto2By2Slot(item.Value) ).Select(x => x.Key); foreach (var tpl in itemsToAdd) @@ -214,18 +215,18 @@ public class PMCLootGenerator _backpackLootPool = new ConcurrentDictionary(); var items = _databaseService.GetItems(); var pmcPriceOverrides = - _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items.Backpack; + _databaseService.GetBots().Types[string.Equals(botRole, "pmcbear", StringComparison.OrdinalIgnoreCase) ? "bear" : "usec"].BotInventory.Items + .Backpack; var allowedItemTypeWhitelist = _pmcConfig.BackpackLoot.Whitelist; var blacklist = GetLootBlacklist(); - var itemsToAdd = items.Where( - item => - allowedItemTypeWhitelist.Contains(item.Value.Parent) && - _itemHelper.IsValidItem(item.Value.Id) && - !blacklist.Contains(item.Value.Id) && - !blacklist.Contains(item.Value.Parent) + var itemsToAdd = items.Where(item => + allowedItemTypeWhitelist.Contains(item.Value.Parent) && + _itemHelper.IsValidItem(item.Value.Id) && + !blacklist.Contains(item.Value.Id) && + !blacklist.Contains(item.Value.Parent) ).Select(x => x.Key); foreach (var tpl in itemsToAdd) diff --git a/Libraries/SPTarkov.Server.Core/Generators/PlayerScavGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/PlayerScavGenerator.cs index 3a6c25ff..11cd35fd 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/PlayerScavGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/PlayerScavGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Json; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -376,7 +376,7 @@ public class PlayerScavGenerator( if (scavData?.Info != null) { - scavData.Info.SavageLockTime = Math.Round(_timeUtil.GetTimeStampFromEpoch() / 1000 + (scavLockDuration ?? 0)); + scavData.Info.SavageLockTime = Math.Round(_timeUtil.GetTimeStamp() + (scavLockDuration ?? 0)); } return scavData; diff --git a/Libraries/SPTarkov.Server.Core/Generators/PmcWaveGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/PmcWaveGenerator.cs index 71ac47fd..c64c9e0b 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/PmcWaveGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/PmcWaveGenerator.cs @@ -1,81 +1,88 @@ -using SPTarkov.Server.Core.Models.Eft.Common; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -namespace SPTarkov.Server.Core.Generators +namespace SPTarkov.Server.Core.Generators; + +[Injectable] +public class PmcWaveGenerator { - [Injectable] - public class PmcWaveGenerator + protected ConfigServer _configServer; + protected DatabaseService _databaseService; + protected ISptLogger _logger; + protected PmcConfig _pmcConfig; + protected RandomUtil _randomUtil; + + public PmcWaveGenerator( + ISptLogger _logger, + RandomUtil _randomUtil, + DatabaseService _databaseService, + ConfigServer _configServer + ) { - protected ISptLogger _logger; - protected RandomUtil _randomUtil; - protected DatabaseService _databaseService; - protected ConfigServer _configServer; - protected PmcConfig _pmcConfig; + this._logger = _logger; + this._randomUtil = _randomUtil; + this._databaseService = _databaseService; + this._configServer = _configServer; + _pmcConfig = _configServer.GetConfig(); + } - public PmcWaveGenerator( - ISptLogger _logger, - RandomUtil _randomUtil, - DatabaseService _databaseService, - ConfigServer _configServer - ) + /// + /// Add a pmc wave to a map + /// + /// e.g. factory4_day, bigmap + /// Boss wave to add to map + public void AddPmcWaveToLocation(string locationId, BossLocationSpawn waveToAdd) + { + _pmcConfig.CustomPmcWaves[locationId].Add(waveToAdd); + } + + /// + /// Add custom boss and normal waves to all maps found in config/location.json to db + /// + public void ApplyWaveChangesToAllMaps() + { + foreach (var location in _pmcConfig.CustomPmcWaves) { - this._logger = _logger; - this._randomUtil = _randomUtil; - this._databaseService = _databaseService; - this._configServer = _configServer; - _pmcConfig = _configServer.GetConfig(); - } - /// - /// Add a pmc wave to a map - /// - /// e.g. factory4_day, bigmap - /// Boss wave to add to map - public void AddPmcWaveToLocation(string locationId, BossLocationSpawn waveToAdd) - { - _pmcConfig.CustomPmcWaves[locationId].Add(waveToAdd); - } - - /// - /// Add custom boss and normal waves to all maps found in config/location.json to db - /// - public void ApplyWaveChangesToAllMaps() { - foreach (var location in _pmcConfig.CustomPmcWaves) { - ApplyWaveChangesToMapByName(location.Key); - } - } - - /// - /// Add custom boss and normal waves to a map found in config/location.json to db by name - /// - /// e.g. factory4_day, bigmap - public void ApplyWaveChangesToMapByName(string name) { - if (!_pmcConfig.CustomPmcWaves.TryGetValue(name, out var pmcWavesToAdd)) { - return; - } - - var location = _databaseService.GetLocation(name); - if (location is null) { - return; - } - - location.Base.BossLocationSpawn.AddRange(pmcWavesToAdd); - } - /// - /// Add custom boss and normal waves to a map found in config/location.json to db by LocationBase - /// - /// Location Object - public void ApplyWaveChangesToMap(LocationBase location) { - if (!_pmcConfig.CustomPmcWaves.TryGetValue(location.Id.ToLower(), out var pmcWavesToAdd)) - { - return; - } - - location.BossLocationSpawn.AddRange(pmcWavesToAdd); + ApplyWaveChangesToMapByName(location.Key); } } + + /// + /// Add custom boss and normal waves to a map found in config/location.json to db by name + /// + /// e.g. factory4_day, bigmap + public void ApplyWaveChangesToMapByName(string name) + { + if (!_pmcConfig.CustomPmcWaves.TryGetValue(name, out var pmcWavesToAdd)) + { + return; + } + + var location = _databaseService.GetLocation(name); + if (location is null) + { + return; + } + + location.Base.BossLocationSpawn.AddRange(pmcWavesToAdd); + } + + /// + /// Add custom boss and normal waves to a map found in config/location.json to db by LocationBase + /// + /// Location Object + public void ApplyWaveChangesToMap(LocationBase location) + { + if (!_pmcConfig.CustomPmcWaves.TryGetValue(location.Id.ToLower(), out var pmcWavesToAdd)) + { + return; + } + + location.BossLocationSpawn.AddRange(pmcWavesToAdd); + } } diff --git a/Libraries/SPTarkov.Server.Core/Generators/RagfairAssortGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/RagfairAssortGenerator.cs index b9c90249..889a7621 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/RagfairAssortGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/RagfairAssortGenerator.cs @@ -1,4 +1,5 @@ -using SPTarkov.Server.Core.Helpers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators; @@ -36,8 +36,8 @@ public class RagfairAssortGenerator( ]; /// - /// Get a list of lists that can be sold on the flea.
- /// Each sub list contains item + children (if any) + /// Get a list of lists that can be sold on the flea.
+ /// Each sub list contains item + children (if any) ///
/// List with children lists of items public List> GetAssortItems() @@ -51,7 +51,7 @@ public class RagfairAssortGenerator( } /// - /// Check if internal generatedAssortItems list has objects + /// Check if internal generatedAssortItems list has objects /// /// True if array has objects protected bool AssortsAreGenerated() @@ -60,7 +60,7 @@ public class RagfairAssortGenerator( } /// - /// Generate a list of lists (item + children) the flea can sell + /// Generate a list of lists (item + children) the flea can sell /// /// List of lists (item + children) protected List> GenerateRagfairAssortItems() @@ -132,8 +132,8 @@ public class RagfairAssortGenerator( } /// - /// Get presets from globals to add to flea.
- /// ragfairConfig.dynamic.showDefaultPresetsOnly decides if it's all presets or just defaults + /// Get presets from globals to add to flea.
+ /// ragfairConfig.dynamic.showDefaultPresetsOnly decides if it's all presets or just defaults ///
/// List of Preset protected List GetPresetsToAdd() @@ -144,7 +144,7 @@ public class RagfairAssortGenerator( } /// - /// Create a base assort item and return it with populated values + 999999 stack count + unlimited count = true + /// Create a base assort item and return it with populated values + 999999 stack count + unlimited count = true /// /// tplid to add to item /// id to add to item diff --git a/Libraries/SPTarkov.Server.Core/Generators/RagfairOfferGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/RagfairOfferGenerator.cs index 6e2968c7..3d4b2825 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/RagfairOfferGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/RagfairOfferGenerator.cs @@ -1,4 +1,6 @@ using System.Diagnostics; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Ragfair; @@ -10,8 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -44,10 +44,11 @@ public class RagfairOfferGenerator( /// Internal counter to ensure each offer created has a unique value for its intId property protected int offerCounter; + protected RagfairConfig ragfairConfig = configServer.GetConfig(); /// - /// Create a flea offer and store it in the Ragfair server offers array + /// Create a flea offer and store it in the Ragfair server offers array /// /// Owner of the offer /// Time offer is listed at @@ -74,7 +75,7 @@ public class RagfairOfferGenerator( } /// - /// Create an offer object ready to send to ragfairOfferService.addOffer() + /// Create an offer object ready to send to ragfairOfferService.addOffer() /// /// Owner of the offer /// Timestamp offer is listed at @@ -94,8 +95,7 @@ public class RagfairOfferGenerator( bool isPackOffer = false ) { - var offerRequirements = barterScheme.Select( - barter => + var offerRequirements = barterScheme.Select(barter => { var offerRequirement = new OfferRequirement { @@ -155,7 +155,7 @@ public class RagfairOfferGenerator( } /// - /// Create the user object stored inside each flea offer object + /// Create the user object stored inside each flea offer object /// /// User creating the offer /// Is the user creating the offer a trader @@ -206,7 +206,7 @@ public class RagfairOfferGenerator( } /// - /// Calculate the offer price that's listed on the flea listing + /// Calculate the offer price that's listed on the flea listing /// /// barter requirements for offer /// rouble cost of offer @@ -215,16 +215,16 @@ public class RagfairOfferGenerator( var roublePrice = 0d; foreach (var requirement in offerRequirements) { - roublePrice += (paymentHelper.IsMoneyTpl(requirement.Template) + roublePrice += paymentHelper.IsMoneyTpl(requirement.Template) ? Math.Round(CalculateRoublePrice(requirement.Count.Value, requirement.Template)) - : ragfairPriceService.GetFleaPriceForItem(requirement.Template) * requirement.Count.Value); // Get flea price for barter offer items + : ragfairPriceService.GetFleaPriceForItem(requirement.Template) * requirement.Count.Value; // Get flea price for barter offer items } return roublePrice; } /// - /// Get avatar url from trader table in db + /// Get avatar url from trader table in db /// /// Is user we're getting avatar for a trader /// Persons id to get avatar of @@ -240,7 +240,7 @@ public class RagfairOfferGenerator( } /// - /// Convert a count of currency into roubles + /// Convert a count of currency into roubles /// /// Amount of currency to convert into roubles /// Type of currency (euro/dollar/rouble) @@ -256,7 +256,7 @@ public class RagfairOfferGenerator( } /// - /// Check userId, if it's a player, return their pmc _id, otherwise return userId parameter + /// Check userId, if it's a player, return their pmc _id, otherwise return userId parameter /// /// Users ID to check /// Users ID @@ -271,30 +271,30 @@ public class RagfairOfferGenerator( } /// - /// Get a flea trading rating for the passed in user + /// Get a flea trading rating for the passed in user /// /// User to get flea rating of /// Flea rating value protected double? GetRating(string userId) { + // Player offer if (profileHelper.IsPlayer(userId)) - // Player offer { return saveServer.GetProfile(userId).CharacterData?.PmcData?.RagfairInfo?.Rating; } + // Trader offer if (ragfairServerHelper.IsTrader(userId)) - // Trader offer { return 1; } // Generated pmc offer - return randomUtil.GetDouble((double) ragfairConfig.Dynamic.Rating.Min, (double) ragfairConfig.Dynamic.Rating.Max); + return randomUtil.GetDouble(ragfairConfig.Dynamic.Rating.Min, ragfairConfig.Dynamic.Rating.Max); } /// - /// Is the offers user rating growing + /// Is the offers user rating growing /// /// User to check rating of /// True if growing @@ -318,7 +318,7 @@ public class RagfairOfferGenerator( } /// - /// Get number of section until offer should expire + /// Get number of section until offer should expire /// /// ID of the offer owner /// Time the offer is posted in seconds @@ -345,7 +345,7 @@ public class RagfairOfferGenerator( } /// - /// Create multiple offers for items by using a unique list of items we've generated previously + /// Create multiple offers for items by using a unique list of items we've generated previously /// /// Optional, expired offers to regenerate public void GenerateDynamicOffers(List>? expiredOffers = null) @@ -368,8 +368,7 @@ public class RagfairOfferGenerator( foreach (var assortItem in assortItemsToProcess) { tasks.Add( - Task.Factory.StartNew( - () => + Task.Factory.StartNew(() => { CreateOffersFromAssort(assortItem, replacingExpiredOffers, ragfairConfig.Dynamic); } @@ -386,7 +385,7 @@ public class RagfairOfferGenerator( } /// - /// Generates offers from an item and it's children on the flea market + /// Generates offers from an item and it's children on the flea market /// /// Item with its children to process into offers /// Is an expired offer @@ -439,7 +438,7 @@ public class RagfairOfferGenerator( } /// - /// Iterate over an items children and look for plates above desired level and remove them + /// Iterate over an items children and look for plates above desired level and remove them /// /// Preset to check for plates /// Settings @@ -483,7 +482,7 @@ public class RagfairOfferGenerator( } /// - /// Create one flea offer for a specific item + /// Create one flea offer for a specific item /// /// ID of seller /// Item to create offer for @@ -523,9 +522,8 @@ public class RagfairOfferGenerator( var shouldRemovePlates = randomUtil.GetChance100(armorConfig.RemoveRemovablePlateChance); if (shouldRemovePlates && itemHelper.ArmorItemHasRemovablePlateSlots(itemWithChildren[0].Template)) { - var offerItemPlatesToRemove = itemWithChildren.Where( - item => - armorConfig.PlateSlotIdToRemovePool.Contains(item.SlotId?.ToLower()) + var offerItemPlatesToRemove = itemWithChildren.Where(item => + armorConfig.PlateSlotIdToRemovePool.Contains(item.SlotId?.ToLower()) ); // Latest first, to ensure we don't move later items off by 1 each time we remove an item below it @@ -579,7 +577,7 @@ public class RagfairOfferGenerator( } /// - /// Generate trader offers on flea using the traders assort data + /// Generate trader offers on flea using the traders assort data /// /// Trader to generate offers for public void GenerateFleaOffersForTrader(string traderID) @@ -656,7 +654,7 @@ public class RagfairOfferGenerator( var barterSchemeItems = barterScheme[0]; var loyalLevel = assortsClone.LoyalLevelItems[item.Id]; - var offer = CreateAndAddFleaOffer(traderID, time, items, barterSchemeItems, loyalLevel, (int?)item.Upd.StackObjectsCount ?? 1); + var offer = CreateAndAddFleaOffer(traderID, time, items, barterSchemeItems, loyalLevel, (int?) item.Upd.StackObjectsCount ?? 1); // Refresh complete, reset flag to false trader.Base.RefreshTraderRagfairOffers = false; @@ -664,8 +662,8 @@ public class RagfairOfferGenerator( } /// - /// Get array of an item with its mods + condition properties (e.g. durability)
- /// Apply randomisation adjustments to condition if item base is found in ragfair.json/dynamic/condition + /// Get array of an item with its mods + condition properties (e.g. durability)
+ /// Apply randomisation adjustments to condition if item base is found in ragfair.json/dynamic/condition ///
/// ID of owner of item /// Item and mods, get condition of first item (only first array item is modified) @@ -693,7 +691,7 @@ public class RagfairOfferGenerator( } /// - /// Get the relevant condition id if item tpl matches in ragfair.json/condition + /// Get the relevant condition id if item tpl matches in ragfair.json/condition /// /// Item to look for matching condition object /// Condition ID @@ -713,7 +711,7 @@ public class RagfairOfferGenerator( } /// - /// Alter an items condition based on its item base type + /// Alter an items condition based on its item base type /// /// Also the parentID of item being altered /// Item to adjust condition details of @@ -727,10 +725,10 @@ public class RagfairOfferGenerator( var rootItem = itemWithMods[0]; var itemConditionValues = ragfairConfig.Dynamic.Condition[conditionSettingsId]; - var maxMultiplier = randomUtil.GetDouble((double) itemConditionValues.Max.Min, (double) itemConditionValues.Max.Min); + var maxMultiplier = randomUtil.GetDouble(itemConditionValues.Max.Min, itemConditionValues.Max.Min); var currentMultiplier = randomUtil.GetDouble( - (double) itemConditionValues.Current.Min, - (double) itemConditionValues.Current.Max + itemConditionValues.Current.Min, + itemConditionValues.Current.Max ); // Randomise armor + plates + armor related things @@ -808,8 +806,8 @@ public class RagfairOfferGenerator( } } - /// - /// Adjust an items durability/maxDurability value + /// + /// Adjust an items durability/maxDurability value /// /// Item (weapon/armor) to adjust /// Item details from DB @@ -836,7 +834,7 @@ public class RagfairOfferGenerator( } /// - /// Randomise the durability values for an armors plates and soft inserts + /// Randomise the durability values for an armors plates and soft inserts /// /// Armor item with its child mods /// Chosen multiplier to use for current durability value @@ -871,9 +869,9 @@ public class RagfairOfferGenerator( } /// - /// Add missing conditions to an item if needed.
- /// Durabiltiy for repairable items.
- /// HpResource for medical items. + /// Add missing conditions to an item if needed.
+ /// Durabiltiy for repairable items.
+ /// HpResource for medical items. ///
/// Item to add conditions to protected void AddMissingConditions(Item item) @@ -937,7 +935,7 @@ public class RagfairOfferGenerator( } /// - /// Create a barter-based barter scheme, if not possible, fall back to making barter scheme currency based + /// Create a barter-based barter scheme, if not possible, fall back to making barter scheme currency based /// /// Items for sale in offer /// Barter config from ragfairConfig.Dynamic.barter @@ -967,13 +965,12 @@ public class RagfairOfferGenerator( var offerCostVarianceRoubles = desiredItemCostRouble * barterConfig.PriceRangeVariancePercent / 100; // Dict of items and their flea price (cached on first use) - List itemFleaPrices = GetFleaPricesAsArray(); + var itemFleaPrices = GetFleaPricesAsArray(); // Filter possible barters to items that match the price range + not itself var min = desiredItemCostRouble - offerCostVarianceRoubles; var max = desiredItemCostRouble + offerCostVarianceRoubles; - var itemsInsidePriceBounds = itemFleaPrices.Where( - itemAndPrice => + var itemsInsidePriceBounds = itemFleaPrices.Where(itemAndPrice => itemAndPrice.Price >= min && itemAndPrice.Price <= max && !string.Equals(itemAndPrice.Tpl, offerItems[0].Template, @@ -1001,7 +998,7 @@ public class RagfairOfferGenerator( } /// - /// Get an array of flea prices + item tpl, cached in generator class inside `allowedFleaPriceItemsForBarter` + /// Get an array of flea prices + item tpl, cached in generator class inside `allowedFleaPriceItemsForBarter` /// /// List with tpl/price values protected List GetFleaPricesAsArray() @@ -1013,8 +1010,7 @@ public class RagfairOfferGenerator( // Only get prices for items that also exist in items.json var filteredFleaItems = fleaPrices - .Select( - kvTpl => new TplWithFleaPrice + .Select(kvTpl => new TplWithFleaPrice { Tpl = kvTpl.Key, Price = kvTpl.Value @@ -1030,7 +1026,7 @@ public class RagfairOfferGenerator( } /// - /// Create a random currency-based barter scheme for an array of items + /// Create a random currency-based barter scheme for an array of items /// /// Items on offer /// Is the barter scheme being created for a pack offer diff --git a/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestGenerator.cs index 926d7b1b..22d46a40 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -11,7 +12,7 @@ using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; using SPTarkov.Server.Core.Utils.Json; -using SPTarkov.Common.Annotations; +using BodyParts = SPTarkov.Server.Core.Constants.BodyParts; namespace SPTarkov.Server.Core.Generators; @@ -30,6 +31,36 @@ public class RepeatableQuestGenerator( ICloner _cloner ) { + /// + /// Body parts to present to the client as opposed to the body part information in quest data. + /// + private static readonly Dictionary> _bodyPartsToClient = new() + { + { + BodyParts.Arms, [ + BodyParts.LeftArm, + BodyParts.RightArm + ] + }, + { + BodyParts.Legs, [ + BodyParts.LeftLeg, + BodyParts.RightLeg + ] + }, + { + BodyParts.Head, [ + BodyParts.Head + ] + }, + { + BodyParts.Chest, [ + BodyParts.Chest, + BodyParts.Stomach + ] + }, + }; + protected int _maxRandomNumberAttempts = 6; protected QuestConfig _questConfig = _configServer.GetConfig(); @@ -218,7 +249,15 @@ public class RepeatableQuestGenerator( { // more than one part lead to an "OR" condition hence more parts reduce the difficulty probability += bodyPartsConfig.Probability(bodyPart).Value; - bodyPartsToClient.Add(bodyPart); + + if (_bodyPartsToClient.TryGetValue(bodyPart, out var bodyPartListToClient)) + { + bodyPartsToClient.AddRange(bodyPartListToClient); + } + else + { + bodyPartsToClient.Add(bodyPart); + } } bodyPartDifficulty = 1 / probability; @@ -236,8 +275,7 @@ public class RepeatableQuestGenerator( .GetDictionary() .Select(x => x.Value) .Where(x => x.Base?.Id != null) - .Select( - x => new + .Select(x => new { x.Base.Id, BossSpawn = x.Base.BossLocationSpawn @@ -245,8 +283,7 @@ public class RepeatableQuestGenerator( ); // filter for the current boss to spawn on map var thisBossSpawns = bossSpawns - .Select( - x => new + .Select(x => new { x.Id, BossSpawn = x.BossSpawn @@ -281,23 +318,20 @@ public class RepeatableQuestGenerator( if (distance > 50) { List weaponTypeBlacklist = ["Shotgun", "Pistol"]; - weaponCategoryRequirementConfig = - (ProbabilityObjectArray>) weaponCategoryRequirementConfig - .Where( - category => weaponTypeBlacklist - .Contains(category.Key) - ); + + // Filter out close range weapons from long distance requirement + weaponCategoryRequirementConfig + .RemoveAll(category => weaponTypeBlacklist + .Contains(category.Key)); } else if (distance < 20) { List weaponTypeBlacklist = ["MarksmanRifle", "DMR"]; + // Filter out far range weapons from close distance requirement - weaponCategoryRequirementConfig = - (ProbabilityObjectArray>) weaponCategoryRequirementConfig - .Where( - category => weaponTypeBlacklist - .Contains(category.Key) - ); + weaponCategoryRequirementConfig + .RemoveAll(category => weaponTypeBlacklist + .Contains(category.Key)); } // Pick a weighted weapon category @@ -383,7 +417,7 @@ public class RepeatableQuestGenerator( } /// - /// Get a number of kills needed to complete elimination quest + /// Get a number of kills needed to complete elimination quest /// /// Target type desired e.g. anyPmc/bossBully/Savage /// Config of the target @@ -541,8 +575,7 @@ public class RepeatableQuestGenerator( (double) (_mathUtil.Interp1(pmcLevel, levelsConfig, roublesConfig) * multi) ); roublesBudget = Math.Max(roublesBudget, 5000d); - var itemSelection = possibleItemsToRetrievePool.Where( - x => _itemHelper.GetItemPrice(x.Id) < roublesBudget + var itemSelection = possibleItemsToRetrievePool.Where(x => _itemHelper.GetItemPrice(x.Id) < roublesBudget ) .ToList(); @@ -557,8 +590,7 @@ public class RepeatableQuestGenerator( .Where(p => p.MinPlayerLevel <= pmcLevel) .SelectMany(x => x.ItemIds) .ToHashSet(); //.Aggregate((a, p) => a.Concat(p.ItemIds), []); - itemSelection = itemSelection.Where( - x => + itemSelection = itemSelection.Where(x => { // Whitelist can contain item tpls and item base type ids return itemIdsWhitelisted.Any(v => _itemHelper.IsOfBaseclass(x.Id, v)) || @@ -581,8 +613,7 @@ public class RepeatableQuestGenerator( .SelectMany(x => x.ItemIds) .ToHashSet(); //.Aggregate(List , (a, p) => a.Concat(p.ItemIds) ); - itemSelection = itemSelection.Where( - x => + itemSelection = itemSelection.Where(x => { return itemIdsBlacklisted.All(v => !_itemHelper.IsOfBaseclass(x.Id, v)) || !itemIdsBlacklisted.Contains(x.Id); @@ -831,12 +862,11 @@ public class RepeatableQuestGenerator( var exitPool = mapExits.Where(exit => exit.Chance > 0).ToList(); // Exclude exits with a requirement to leave (e.g. car extracts) - var possibleExits = exitPool.Where( - exit => - exit.PassageRequirement is not null || - repeatableConfig.QuestConfig.Exploration.SpecificExits.PassageRequirementWhitelist.Contains( - "PassageRequirement" - ) + var possibleExits = exitPool.Where(exit => + exit.PassageRequirement is not null || + repeatableConfig.QuestConfig.Exploration.SpecificExits.PassageRequirementWhitelist.Contains( + "PassageRequirement" + ) ) .ToList(); @@ -906,14 +936,12 @@ public class RepeatableQuestGenerator( findCondition.Target = new ListOrT([itemTypeToFetchWithCount.ItemType], null); findCondition.Value = itemCountToFetch; - var counterCreatorCondition = quest.Conditions.AvailableForFinish.FirstOrDefault( - x => x.ConditionType == "CounterCreator" + var counterCreatorCondition = quest.Conditions.AvailableForFinish.FirstOrDefault(x => x.ConditionType == "CounterCreator" ); // var locationCondition = counterCreatorCondition._props.counter.conditions.find(x => x._parent === "Location"); // (locationCondition._props as ILocationConditionProps).target = [...locationTarget]; - var equipmentCondition = counterCreatorCondition.Counter.Conditions.FirstOrDefault( - x => x.ConditionType == "Equipment" + var equipmentCondition = counterCreatorCondition.Counter.Conditions.FirstOrDefault(x => x.ConditionType == "Equipment" ); equipmentCondition.EquipmentInclusive = [[itemTypeToFetchWithCount.ItemType]]; diff --git a/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestRewardGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestRewardGenerator.cs index 0b402152..11013e07 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestRewardGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/RepeatableQuestRewardGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,7 +11,6 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators; @@ -35,21 +35,21 @@ public class RepeatableQuestRewardGenerator( protected QuestConfig _questConfig = _configServer.GetConfig(); /// - /// Generate the reward for a mission. A reward can consist of:
- /// - Experience
- /// - Money
- /// - GP coins
- /// - Weapon preset
- /// - Items
- /// - Trader Reputation
- /// - Skill level experience
- ///
- /// The reward is dependent on the player level as given by the wiki. The exact mapping of pmcLevel to
- /// experience / money / items / trader reputation can be defined in QuestConfig.js
- ///
- /// There's also a random variation of the reward the spread of which can be also defined in the config
- ///
- /// Additionally, a scaling factor w.r.t. quest difficulty going from 0.2...1 can be used + /// Generate the reward for a mission. A reward can consist of:
+ /// - Experience
+ /// - Money
+ /// - GP coins
+ /// - Weapon preset
+ /// - Items
+ /// - Trader Reputation
+ /// - Skill level experience
+ ///
+ /// The reward is dependent on the player level as given by the wiki. The exact mapping of pmcLevel to
+ /// experience / money / items / trader reputation can be defined in QuestConfig.js
+ ///
+ /// There's also a random variation of the reward the spread of which can be also defined in the config
+ ///
+ /// Additionally, a scaling factor w.r.t. quest difficulty going from 0.2...1 can be used ///
/// Level of player reward is being generated for /// Reward scaling factor from 0.2 to 1 @@ -110,8 +110,7 @@ public class RepeatableQuestRewardGenerator( rewardIndex++; // Add preset weapon to reward if checks pass - var traderWhitelistDetails = repeatableConfig.TraderWhitelist.FirstOrDefault( - traderWhitelist => traderWhitelist.TraderId == traderId + var traderWhitelistDetails = repeatableConfig.TraderWhitelist.FirstOrDefault(traderWhitelist => traderWhitelist.TraderId == traderId ); if (traderWhitelistDetails?.RewardCanBeWeapon ?? (false && _randomUtil.GetChance100(traderWhitelistDetails.WeaponRewardChancePercent ?? 0)) @@ -132,8 +131,7 @@ public class RepeatableQuestRewardGenerator( if (rewardTplBlacklist is not null) { // Filter reward pool of items from blacklist, only use if there's at least 1 item remaining - var filteredRewardItemPool = inBudgetRewardItemPool.Where( - item => !rewardTplBlacklist.Contains(item.Id) + var filteredRewardItemPool = inBudgetRewardItemPool.Where(item => !rewardTplBlacklist.Contains(item.Id) ); if (filteredRewardItemPool.Count() > 0) { @@ -319,7 +317,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Get an array of items + stack size to give to player as reward that fit inside a rouble budget. + /// Get an array of items + stack size to give to player as reward that fit inside a rouble budget. /// /// All possible items to choose rewards from /// Total number of items to reward @@ -405,8 +403,8 @@ public class RepeatableQuestRewardGenerator( } /// - /// Get a count of cartridges that fits the rouble budget amount provided.
- /// e.g. how many M80s for 50,000 roubles. + /// Get a count of cartridges that fits the rouble budget amount provided.
+ /// e.g. how many M80s for 50,000 roubles. ///
/// Cartridge template /// Rouble budget @@ -449,7 +447,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Get a randomised number a reward items stack size should be based on its handbook price + /// Get a randomised number a reward items stack size should be based on its handbook price /// /// Reward item to get stack size for /// Matching stack size for the passed in items price @@ -476,7 +474,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Select a number of items that have a collective value of the passed in parameter + /// Select a number of items that have a collective value of the passed in parameter /// /// Config /// Total value of items to return @@ -518,7 +516,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Filters a list of reward Items within a budget. + /// Filters a list of reward Items within a budget. /// /// List of reward items to filter /// The budget remaining for rewards @@ -527,8 +525,7 @@ public class RepeatableQuestRewardGenerator( protected List FilterRewardPoolWithinBudget(List rewardItems, double roublesBudget, double minPrice) { - return rewardItems.Where( - item => + return rewardItems.Where(item => { var itemPrice = _presetHelper.GetDefaultPresetOrItemPrice(item.Id); return itemPrice < roublesBudget && itemPrice > minPrice; @@ -538,7 +535,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Choose a random Weapon preset that fits inside a rouble amount limit + /// Choose a random Weapon preset that fits inside a rouble amount limit /// /// Budget in roubles /// Index of the reward @@ -581,7 +578,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Helper to create a reward item structured as required by the client + /// Helper to create a reward item structured as required by the client /// /// ItemId of the rewarded item /// Amount of items to give @@ -626,7 +623,7 @@ public class RepeatableQuestRewardGenerator( } /// - /// Helper to create a reward item structured as required by the client + /// Helper to create a reward item structured as required by the client /// /// ItemId of the rewarded item /// Amount of items to give @@ -682,11 +679,11 @@ public class RepeatableQuestRewardGenerator( /// - /// Picks rewardable items from items.json
- /// This means they must:
- /// - Fit into the inventory
- /// - Shouldn't be keys
- /// - Have a price greater than 0 + /// Picks rewardable items from items.json
+ /// This means they must:
+ /// - Fit into the inventory
+ /// - Shouldn't be keys
+ /// - Have a price greater than 0 ///
/// Config /// ID of trader who will give reward to player @@ -700,8 +697,7 @@ public class RepeatableQuestRewardGenerator( // also check if the price is greater than 0; there are some items whose price can not be found // those are not in the game yet (e.g. AGS grenade launcher) return _databaseService.GetItems() - .Values.Where( - itemTemplate => + .Values.Where(itemTemplate => { // Base "Item" item has no parent, ignore it if (itemTemplate.Parent == "") @@ -714,8 +710,7 @@ public class RepeatableQuestRewardGenerator( return false; } - var traderWhitelist = repeatableQuestConfig.TraderWhitelist.FirstOrDefault( - trader => trader.TraderId == traderId + var traderWhitelist = repeatableQuestConfig.TraderWhitelist.FirstOrDefault(trader => trader.TraderId == traderId ); return IsValidRewardItem( @@ -729,8 +724,8 @@ public class RepeatableQuestRewardGenerator( } /// - /// Checks if an id is a valid item. Valid meaning that it's an item that may be a reward - /// or content of bot loot. Items that are tested as valid may be in a player backpack or stash. + /// Checks if an id is a valid item. Valid meaning that it's an item that may be a reward + /// or content of bot loot. Items that are tested as valid may be in a player backpack or stash. /// /// Template id of item to check /// Config diff --git a/Libraries/SPTarkov.Server.Core/Generators/ScavCaseRewardGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/ScavCaseRewardGenerator.cs index 8432e10b..d6de7493 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/ScavCaseRewardGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/ScavCaseRewardGenerator.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -10,8 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Generators; @@ -97,8 +97,7 @@ public class ScavCaseRewardGenerator( if (!_dbItemsCache.Any()) { _dbItemsCache = _databaseService.GetItems() - .Values.Where( - item => + .Values.Where(item => { // Base "Item" item has no parent, ignore it if (item.Parent == "") @@ -157,8 +156,7 @@ public class ScavCaseRewardGenerator( if (!_dbAmmoItemsCache.Any()) { _dbAmmoItemsCache = _databaseService.GetItems() - .Values.Where( - item => + .Values.Where(item => { // Base "Item" item has no parent, ignore it if (item.Parent == "") @@ -301,8 +299,7 @@ public class ScavCaseRewardGenerator( /// random ammo item from items.json protected TemplateItem GetRandomAmmo(string rarity) { - var possibleAmmoPool = _dbAmmoItemsCache.Where( - ammo => + var possibleAmmoPool = _dbAmmoItemsCache.Where(ammo => { // Is ammo handbook price between desired range var handbookPrice = _ragfairPriceService.GetStaticPriceForItem(ammo.Id); @@ -397,8 +394,7 @@ public class ScavCaseRewardGenerator( List dbItems, RewardCountAndPriceDetails itemFilters) { - return dbItems.Where( - item => + return dbItems.Where(item => { var handbookPrice = _ragfairPriceService.GetStaticPriceForItem(item.Id); if (handbookPrice >= itemFilters.MinPriceRub && handbookPrice <= itemFilters.MaxPriceRub) @@ -461,6 +457,7 @@ public class ScavCaseRewardGenerator( _ => 1 }; } + /// /// Randomises the size of ammo stacks /// @@ -473,6 +470,7 @@ public class ScavCaseRewardGenerator( itemToCalculate.Properties.StackMaxSize ?? 0 ); } + /// /// Randomises the size of money stacks /// diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/BarrelInvetoryMagGen.cs b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/BarrelInvetoryMagGen.cs index db294349..b82df52b 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/BarrelInvetoryMagGen.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/BarrelInvetoryMagGen.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators.WeaponGen.Implementations; diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/ExternalInventoryMagGen.cs b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/ExternalInventoryMagGen.cs index 2bbd5b70..f8f14ca4 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/ExternalInventoryMagGen.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/ExternalInventoryMagGen.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Generators.WeaponGen.Implementations; @@ -158,8 +158,9 @@ public class ExternalInventoryMagGen( } } } + /// - /// Get a random compatible external magazine for a weapon, exclude internal magazines from possible pool + /// Get a random compatible external magazine for a weapon, exclude internal magazines from possible pool /// /// Weapon to get mag for /// Blacklisted magazines @@ -176,8 +177,7 @@ public class ExternalInventoryMagGen( // All possible mags that fit into the weapon excluding blacklisted var magazinePool = magSlot.Props.Filters[0] .Filter.Where(x => !magazineBlacklist.Contains(x)) - .Select( - x => _itemHelper.GetItem(x).Value + .Select(x => _itemHelper.GetItem(x).Value ); if (magazinePool is null) { diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/InternalMagazineInventoryMagGen.cs b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/InternalMagazineInventoryMagGen.cs index 00e73f36..7f771fc4 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/InternalMagazineInventoryMagGen.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/InternalMagazineInventoryMagGen.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators.WeaponGen.Implementations; diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs index 0b707e1d..f4833717 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/Implementations/UbglExternalMagGen.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Helpers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators.WeaponGen.Implementations; diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/InventoryMagGen.cs b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/InventoryMagGen.cs index 4142d6a7..7502adcf 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/InventoryMagGen.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeaponGen/InventoryMagGen.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Eft.Common.Tables; -using SPTarkov.Common.Annotations; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common.Tables; namespace SPTarkov.Server.Core.Generators.WeaponGen; diff --git a/Libraries/SPTarkov.Server.Core/Generators/WeatherGenerator.cs b/Libraries/SPTarkov.Server.Core/Generators/WeatherGenerator.cs index a55724d0..4a78467b 100644 --- a/Libraries/SPTarkov.Server.Core/Generators/WeatherGenerator.cs +++ b/Libraries/SPTarkov.Server.Core/Generators/WeatherGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Weather; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Generators; @@ -22,7 +22,7 @@ public class WeatherGenerator( protected WeatherConfig _weatherConfig = _configServer.GetConfig(); /// - /// Get current + raid datetime and format into correct BSG format. + /// Get current + raid datetime and format into correct BSG format. /// /// Weather data /// WeatherData @@ -39,8 +39,8 @@ public class WeatherGenerator( } /// - /// Get server uptime seconds multiplied by a multiplier and add to current time as seconds. - /// Formatted to BSGs requirements + /// Get server uptime seconds multiplied by a multiplier and add to current time as seconds. + /// Formatted to BSGs requirements /// /// Formatted time as String protected string GetBsgFormattedInRaidTime() @@ -51,7 +51,7 @@ public class WeatherGenerator( } /// - /// Get current time formatted to fit BSGs requirement + /// Get current time formatted to fit BSGs requirement /// /// Date to format into bsg style /// Time formatted in BSG format @@ -61,7 +61,7 @@ public class WeatherGenerator( } /// - /// Return randomised Weather data with help of config/weather.json + /// Return randomised Weather data with help of config/weather.json /// /// The currently active season /// Optional, what timestamp to generate the weather data at, defaults to now when not supplied @@ -112,7 +112,7 @@ public class WeatherGenerator( } /// - /// Choose a temperature for the raid based on time of day + /// Choose a temperature for the raid based on time of day /// /// What season Tarkov is currently in /// What time is the raid running at @@ -129,7 +129,7 @@ public class WeatherGenerator( } /// - /// Set Weather date/time/timestamp values to now + /// Set Weather date/time/timestamp values to now /// /// Object to update /// Optional, timestamp used @@ -140,10 +140,10 @@ public class WeatherGenerator( var formattedDate = _timeUtil.FormatDate(timestamp.HasValue ? _timeUtil.GetDateTimeFromTimeStamp(timestamp.Value) : DateTime.UtcNow); var datetimeBsgFormat = $"{formattedDate} {normalTime}"; - weather.Timestamp = timestamp ?? _timeUtil.GetTimeStampFromEpoch(inRaidTime) / 1000; // matches weather.date + weather.Timestamp = timestamp ?? _timeUtil.GetTimeStamp(); // matches weather.date weather.Date = formattedDate; // matches weather.timestamp weather.Time = datetimeBsgFormat; // matches weather.timestamp - weather.SptInRaidTimestamp = _timeUtil.GetTimeStampFromEpoch(inRaidTime); + weather.SptInRaidTimestamp = weather.Timestamp; } protected WindDirection GetWeightedWindDirection(SeasonalValues weather) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/AssortHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/AssortHelper.cs index ee8e454d..f7b59d21 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/AssortHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/AssortHelper.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -18,7 +18,7 @@ public class AssortHelper( ) { /// - /// Remove assorts from a trader that have not been unlocked yet (via player completing corresponding quest) + /// Remove assorts from a trader that have not been unlocked yet (via player completing corresponding quest) /// /// /// Traders id the assort belongs to @@ -65,7 +65,7 @@ public class AssortHelper( } /// - /// Get a quest id + the statuses quest can be in to unlock assort + /// Get a quest id + the statuses quest can be in to unlock assort /// /// quest assorts to search for assort id /// Assort to look for linked quest id diff --git a/Libraries/SPTarkov.Server.Core/Helpers/BotDifficultyHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/BotDifficultyHelper.cs index fb54ebc6..9ffb7e29 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/BotDifficultyHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/BotDifficultyHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Bots; using SPTarkov.Server.Core.Models.Spt.Config; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/BotGeneratorHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/BotGeneratorHelper.cs index 65eda049..1873ea63 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/BotGeneratorHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/BotGeneratorHelper.cs @@ -1,3 +1,5 @@ +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Match; @@ -8,9 +10,7 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -27,11 +27,10 @@ public class BotGeneratorHelper( ConfigServer _configServer ) { - protected BotConfig _botConfig = _configServer.GetConfig(); - protected PmcConfig _pmcConfig = _configServer.GetConfig(); - // Equipment slot ids that do not conflict with other slots protected static readonly FrozenSet _slotsWithNoCompatIssues = ["Scabbard", "Backpack", "SecureContainer", "Holster", "ArmBand"]; + protected BotConfig _botConfig = _configServer.GetConfig(); + protected PmcConfig _pmcConfig = _configServer.GetConfig(); /// /// Adds properties to an item @@ -509,9 +508,9 @@ public class BotGeneratorHelper( protected bool HasBlockingProperty(TemplateItem? item, string blockingPropertyName) { return item?.Properties?.GetType().GetProperties() - .FirstOrDefault(x =>x.PropertyType == typeof(bool) + .FirstOrDefault(x => x.PropertyType == typeof(bool) && x.Name.ToLower() == blockingPropertyName - && (bool)x.GetValue(item.Properties)) is not null; + && (bool) x.GetValue(item.Properties)) is not null; } /// @@ -618,9 +617,8 @@ public class BotGeneratorHelper( } // Get all root items in found container - var existingContainerItems = (inventory.Items ?? []).Where( - item => item.ParentId == container.Id && item.SlotId == slotGrid.Name - ); + var existingContainerItems = (inventory.Items ?? []).Where(item => item.ParentId == container.Id && item.SlotId == slotGrid.Name + ); // Get root items in container we can iterate over to find out what space is free var containerItemsToCheck = existingContainerItems.Where(x => x.SlotId == slotGrid.Name); @@ -653,7 +651,7 @@ public class BotGeneratorHelper( { X = findSlotResult.X, Y = findSlotResult.Y, - R = findSlotResult.Rotation ?? false ? 1 : 0 + R = findSlotResult.Rotation ?? false ? ItemRotation.Vertical : ItemRotation.Horizontal } ; } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/BotHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/BotHelper.cs index bd6acb33..a1294e20 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/BotHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/BotHelper.cs @@ -1,12 +1,12 @@ using System.Collections.Concurrent; +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -18,9 +18,9 @@ public class BotHelper( ConfigServer _configServer ) { + protected static readonly FrozenSet _pmcTypeIds = ["usec", "bear", "pmc", "pmcbear", "pmcusec"]; protected BotConfig _botConfig = _configServer.GetConfig(); protected PmcConfig _pmcConfig = _configServer.GetConfig(); - protected static readonly FrozenSet _pmcTypeIds = ["usec", "bear", "pmc", "pmcbear", "pmcusec"]; protected ConcurrentDictionary> _pmcNameCache = new(); /// @@ -141,8 +141,7 @@ public class BotHelper( return null; } - return botEquipConfig.Randomisation.FirstOrDefault( - randDetails => botLevel >= randDetails.LevelRange.Min && botLevel <= randDetails.LevelRange.Max + return botEquipConfig.Randomisation.FirstOrDefault(randDetails => botLevel >= randDetails.LevelRange.Min && botLevel <= randDetails.LevelRange.Max ); } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/BotWeaponGeneratorHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/BotWeaponGeneratorHelper.cs index 832c4f88..41de2667 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/BotWeaponGeneratorHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/BotWeaponGeneratorHelper.cs @@ -1,11 +1,11 @@ +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/CertificateHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/CertificateHelper.cs index c8629e95..52669dbe 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/CertificateHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/CertificateHelper.cs @@ -1,218 +1,215 @@ using System.Net; -using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography; +using System.Security.Cryptography.X509Certificates; using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -namespace SPTarkov.Server.Core.Helpers +namespace SPTarkov.Server.Core.Helpers; + +[Injectable] +public class CertificateHelper(ISptLogger _logger, FileUtil _fileUtil) { - [Injectable] - public class CertificateHelper(ISptLogger _logger, FileUtil _fileUtil) + private const string certificatePath = "./user/certs/server.crt"; + private const string certificateKeyPath = "./user/certs/server.key"; + private const string certificatePfxPath = "./user/certs/certificate.pfx"; + + //Todo: Finish off to match TS server + /// + /// Currently not in use + /// + /// + /// + public X509Certificate2 LoadOrGenerateCertificate() { - private const string certificatePath = "./user/certs/server.crt"; - private const string certificateKeyPath = "./user/certs/server.key"; - private const string certificatePfxPath = "./user/certs/certificate.pfx"; - - //Todo: Finish off to match TS server - /// - /// Currently not in use - /// - /// - /// - public X509Certificate2 LoadOrGenerateCertificate() + if (!Directory.Exists("./user/certs")) { - if (!Directory.Exists("./user/certs")) - { - Directory.CreateDirectory("./user/certs"); - } + Directory.CreateDirectory("./user/certs"); + } - var certificate = LoadCertificate(); + var certificate = LoadCertificate(); + if (certificate == null) + { + // Generate self-signed certificate + certificate = GenerateSelfSignedCertificate("localhost"); + SaveCertificate(certificate); // Save cert and new key + certificate = LoadCertificate(); if (certificate == null) { - // Generate self-signed certificate - certificate = GenerateSelfSignedCertificate("localhost"); - SaveCertificate(certificate); // Save cert and new key - certificate = LoadCertificate(); - if (certificate == null) - { - // if we are still null here there is a serious problem creating cert - throw new Exception("Certificate could not be loaded for the second time."); - } - - _logger.Success($"Generated and stored self-signed certificate ({certificatePath})"); + // if we are still null here there is a serious problem creating cert + throw new Exception("Certificate could not be loaded for the second time."); } - return certificate; + _logger.Success($"Generated and stored self-signed certificate ({certificatePath})"); } - //Todo: When the above is finished off, remove any method with Pfx in the name - public X509Certificate2 LoadOrGenerateCertificatePfx() - { - if (!Directory.Exists("./user/certs")) - { - Directory.CreateDirectory("./user/certs"); - } + return certificate; + } - if (TryLoadCertificatePfx(out var cert)) - { - _logger.Success($"Loaded self-signed certificate ({certificatePath})"); - return cert; - } - else - { - // shit went wrong, throw a wobbly and close app - _logger.Critical("Certificate pfx could not be loaded. Stopping server..."); - Environment.Exit(1); - return null; - } + //Todo: When the above is finished off, remove any method with Pfx in the name + public X509Certificate2 LoadOrGenerateCertificatePfx() + { + if (!Directory.Exists("./user/certs")) + { + Directory.CreateDirectory("./user/certs"); } - private X509Certificate2? LoadCertificate() + if (TryLoadCertificatePfx(out var cert)) { - try - { - return X509Certificate2.CreateFromPemFile(certificatePath, certificateKeyPath); - } - catch (Exception) - { - return null; - } + _logger.Success($"Loaded self-signed certificate ({certificatePath})"); + return cert; } - /// - /// if the cert exist, try load it, else create one and try load again - /// - /// - private bool TryLoadCertificatePfx(out X509Certificate2? certificate) + // shit went wrong, throw a wobbly and close app + _logger.Critical("Certificate pfx could not be loaded. Stopping server..."); + Environment.Exit(1); + return null; + } + + private X509Certificate2? LoadCertificate() + { + try { - X509Certificate2 cert = null; - if (!File.Exists(certificatePfxPath)) - { - // file doesnt exist so create straight away - cert = GenerateSelfSignedCertificate("localhost"); - SaveCertificatePfx(cert); - _logger.Success($"Generated and stored self-signed certificate ({certificatePath})"); - } + return X509Certificate2.CreateFromPemFile(certificatePath, certificateKeyPath); + } + catch (Exception) + { + return null; + } + } - try - { - //Archangel: For some reason despite this being deprecated this is the only way to load a certificate file - //No idea why, I want to eventually switch over to the other format so it lines up with the TS server - //But for now this works fine - certificate = new X509Certificate2(certificatePfxPath); - } - catch (Exception e) - { - Console.WriteLine(e); - throw; - } - - if (certificate is not null) - { - return true; - } - - return false; + /// + /// if the cert exist, try load it, else create one and try load again + /// + /// + private bool TryLoadCertificatePfx(out X509Certificate2? certificate) + { + X509Certificate2 cert = null; + if (!File.Exists(certificatePfxPath)) + { + // file doesnt exist so create straight away + cert = GenerateSelfSignedCertificate("localhost"); + SaveCertificatePfx(cert); + _logger.Success($"Generated and stored self-signed certificate ({certificatePath})"); } - /// - /// Get a certificate from provided path and return - /// - /// X509Certificate2 - private X509Certificate2? LoadCertificatePfx() + try { - try - { - //Archangel: For some reason despite this being deprecated this is the only way to load a certificate file - //No idea why, I want to eventually switch over to the other format so it lines up with the TS server - //But for now this works fine - return new(certificatePfxPath); - } - catch (Exception) - { - return null; - } + //Archangel: For some reason despite this being deprecated this is the only way to load a certificate file + //No idea why, I want to eventually switch over to the other format so it lines up with the TS server + //But for now this works fine + certificate = new X509Certificate2(certificatePfxPath); + } + catch (Exception e) + { + Console.WriteLine(e); + throw; } - /// - /// Generate and return a self-signed certificate - /// - /// e.g. localhost - /// X509Certificate2 - private X509Certificate2 GenerateSelfSignedCertificate(string subjectName) + if (certificate is not null) { - var sanBuilder = new SubjectAlternativeNameBuilder(); - sanBuilder.AddIpAddress(IPAddress.Loopback); - sanBuilder.AddDnsName("localhost"); - sanBuilder.AddDnsName(Environment.MachineName); - - var distinguishedName = new X500DistinguishedName($"CN={subjectName}"); - - using var rsa = RSA.Create(2048); - var request = new CertificateRequest(distinguishedName, rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1); - request.CertificateExtensions.Add(sanBuilder.Build()); - - //Todo: Enable when Pfx methods can be removed - //SavePrivateKey(rsa); - - return request.CreateSelfSigned(new DateTimeOffset(DateTime.UtcNow.AddDays(-1)), new DateTimeOffset(DateTime.UtcNow.AddDays(3650))); + return true; } - /// - /// Save a certificate as a file to disk - /// - /// Certificate to save - private void SaveCertificate(X509Certificate2 certificate) + return false; + } + + /// + /// Get a certificate from provided path and return + /// + /// X509Certificate2 + private X509Certificate2? LoadCertificatePfx() + { + try { - try - { - // Save as PEM (ensure the certificate is in PEM format) - var certPem = "-----BEGIN CERTIFICATE-----\n" + - Convert.ToBase64String(certificate.Export(X509ContentType.Cert), Base64FormattingOptions.InsertLineBreaks) + - "\n-----END CERTIFICATE-----"; - _fileUtil.WriteFile(certificatePath, certPem); - } - catch (Exception ex) - { - _logger.Error($"Error saving certificate: {ex.Message}"); - } + //Archangel: For some reason despite this being deprecated this is the only way to load a certificate file + //No idea why, I want to eventually switch over to the other format so it lines up with the TS server + //But for now this works fine + return new X509Certificate2(certificatePfxPath); } - - /// - /// Save a certificate as a file to disk - /// - /// Certificate to save - private void SaveCertificatePfx(X509Certificate2 certificate) + catch (Exception) { - try - { - _fileUtil.WriteFile(certificatePfxPath, certificate.Export(X509ContentType.Pfx)); - } - catch (Exception ex) - { - _logger.Error($"Error saving certificate: {ex.Message}"); - } + return null; } + } - private void SavePrivateKey(RSA privateKey) + /// + /// Generate and return a self-signed certificate + /// + /// e.g. localhost + /// X509Certificate2 + private X509Certificate2 GenerateSelfSignedCertificate(string subjectName) + { + var sanBuilder = new SubjectAlternativeNameBuilder(); + sanBuilder.AddIpAddress(IPAddress.Loopback); + sanBuilder.AddDnsName("localhost"); + sanBuilder.AddDnsName(Environment.MachineName); + + var distinguishedName = new X500DistinguishedName($"CN={subjectName}"); + + using var rsa = RSA.Create(2048); + var request = new CertificateRequest(distinguishedName, rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1); + request.CertificateExtensions.Add(sanBuilder.Build()); + + //Todo: Enable when Pfx methods can be removed + //SavePrivateKey(rsa); + + return request.CreateSelfSigned(new DateTimeOffset(DateTime.UtcNow.AddDays(-1)), new DateTimeOffset(DateTime.UtcNow.AddDays(3650))); + } + + /// + /// Save a certificate as a file to disk + /// + /// Certificate to save + private void SaveCertificate(X509Certificate2 certificate) + { + try { - try - { - var privateKeyBytes = privateKey.ExportPkcs8PrivateKey(); + // Save as PEM (ensure the certificate is in PEM format) + var certPem = "-----BEGIN CERTIFICATE-----\n" + + Convert.ToBase64String(certificate.Export(X509ContentType.Cert), Base64FormattingOptions.InsertLineBreaks) + + "\n-----END CERTIFICATE-----"; + _fileUtil.WriteFile(certificatePath, certPem); + } + catch (Exception ex) + { + _logger.Error($"Error saving certificate: {ex.Message}"); + } + } - // Convert the private key to PEM format (Base64 encoded) - var privateKeyString = "-----BEGIN PRIVATE KEY-----\n" + - Convert.ToBase64String(privateKeyBytes, Base64FormattingOptions.InsertLineBreaks) + - "\n-----END PRIVATE KEY-----"; + /// + /// Save a certificate as a file to disk + /// + /// Certificate to save + private void SaveCertificatePfx(X509Certificate2 certificate) + { + try + { + _fileUtil.WriteFile(certificatePfxPath, certificate.Export(X509ContentType.Pfx)); + } + catch (Exception ex) + { + _logger.Error($"Error saving certificate: {ex.Message}"); + } + } - _fileUtil.WriteFile(certificateKeyPath, privateKeyString); - } - catch (Exception ex) - { - _logger.Error($"Error saving certificate key: {ex.Message}"); - } + private void SavePrivateKey(RSA privateKey) + { + try + { + var privateKeyBytes = privateKey.ExportPkcs8PrivateKey(); + + // Convert the private key to PEM format (Base64 encoded) + var privateKeyString = "-----BEGIN PRIVATE KEY-----\n" + + Convert.ToBase64String(privateKeyBytes, Base64FormattingOptions.InsertLineBreaks) + + "\n-----END PRIVATE KEY-----"; + + _fileUtil.WriteFile(certificateKeyPath, privateKeyString); + } + catch (Exception ex) + { + _logger.Error($"Error saving certificate key: {ex.Message}"); } } } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ContainerHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ContainerHelper.cs index eb521d22..9e7cd1ba 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ContainerHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ContainerHelper.cs @@ -9,13 +9,15 @@ public class ContainerHelper /// /// Finds a slot for an item in a given 2D container map /// - /// List of container with slots filled/free + /// List of container with positions filled/free /// Width of item /// Height of item /// Location to place item in container public FindSlotResult FindSlotForItem(int[][] container2D, int itemWidth, int itemHeight) { + // Assume not rotated var rotation = false; + var minVolume = (itemWidth < itemHeight ? itemWidth : itemHeight) - 1; var containerY = container2D.Length; var containerX = container2D[0].Length; @@ -37,93 +39,84 @@ public class ContainerHelper continue; } - // Try each slot on the row (across = x) + // Go left to right across x-axis looking for free position for (var x = 0; x < limitX; x++) { - var foundSlot = LocateSlot(container2D, containerX, containerY, x, y, itemWidth, itemHeight); - if (foundSlot) + if (CanItemBePlacedInContainerAtPosition(container2D, containerX, containerY, x, y, itemWidth, itemHeight)) { + // Success, return result return new FindSlotResult(true, x, y, rotation); } - // Failed to find slot, rotate item and try again - if (!foundSlot && ItemBiggerThan1X1(itemWidth, itemHeight)) + if (ItemBiggerThan1X1(itemWidth, itemHeight)) { - // Bigger than 1x1, try rotating - foundSlot = LocateSlot(container2D, containerX, containerY, x, y, itemHeight, itemWidth); // Height/Width swapped - if (foundSlot) - { - // Found a slot for it when rotated - rotation = true; - - return new FindSlotResult(true, x, y, rotation); - } + // Pointless rotating a 1x1, try next position across + continue; } + + // Bigger than 1x1, try rotating by swapping x and y values + if (!CanItemBePlacedInContainerAtPosition(container2D, containerX, containerY, x, y, itemHeight, itemWidth)) + { + continue; + } + + // Found a position for item when rotated + rotation = true; + + return new FindSlotResult(true, x, y, rotation); } } - // Tried all possible holes, nothing big enough for the item + // Tried all possible positions, nothing big enough for item return new FindSlotResult(false); } protected static bool ItemBiggerThan1X1(int itemWidth, int itemHeight) { - return itemWidth * itemHeight > 1; + return itemWidth + itemHeight > 2; } /// - /// Find a slot inside a container an item can be placed in + /// Can an item of specified size be placed inside a 2d container at a specific position /// - /// Container to find space in - /// Container x size - /// Container y size - /// ??? - /// ??? - /// Items width - /// Items height + /// Container to find space in + /// Container x size + /// Container y size + /// Starting x position for item + /// Starting y position for item + /// Items width + /// Items height /// True - slot found - protected bool LocateSlot( - int[][] container2D, - int containerX, - int containerY, - int x, - int y, - int itemW, - int itemH) + protected bool CanItemBePlacedInContainerAtPosition( + int[][] container, + int containerWidth, + int containerHeight, + int startXPos, + int startYPos, + int itemWidth, + int itemHeight) { - var foundSlot = true; - - for (var itemY = 0; itemY < itemH; itemY++) + // Check item isn't bigger than container when at position + if (startXPos + itemWidth > containerWidth || startYPos + itemHeight > containerHeight) { - if (foundSlot && y + itemH - 1 > containerY - 1) - { - foundSlot = false; - break; - } + return false; + } - // Does item fit x-ways across - for (var itemX = 0; itemX < itemW; itemX++) + // Check each position item will take up in container, go across and then down + for (var itemY = startYPos; itemY < startYPos + itemHeight; itemY++) + { + for (var itemX = startXPos; itemX < startXPos + itemWidth; itemX++) { - if (foundSlot && x + itemW - 1 > containerX - 1) + // e,g for a 2x2 item; [0,0] then [0,1] then [1,0] then [1,1] + if (container[itemY][itemX] != 0) { - foundSlot = false; - break; + // x,y Position blocked, can't place + return false; } - - if (container2D[y + itemY][x + itemX] != 0) - { - foundSlot = false; - break; - } - } - - if (!foundSlot) - { - break; } } - return foundSlot; + return true; } /// diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommandoCommands.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommandoCommands.cs index cc53955f..1fa49714 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommandoCommands.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommandoCommands.cs @@ -1,10 +1,10 @@ -using SPTarkov.Server.Core.Helpers.Dialog.Commando.SptCommands; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Helpers.Dialog.Commando.SptCommands; using SPTarkov.Server.Core.Models.Eft.Dialog; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialog.Commando; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/GiveCommand/GiveSptCommand.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/GiveCommand/GiveSptCommand.cs index 0a0e5715..9fcf3407 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/GiveCommand/GiveSptCommand.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/GiveCommand/GiveSptCommand.cs @@ -1,4 +1,6 @@ +using System.Collections.Frozen; using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers.Dialog.Commando.SptCommands; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Dialog; @@ -8,8 +10,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers.Dialogue.Commando.SptCommands.GiveCommand; @@ -111,8 +111,8 @@ public class GiveSptCommand( _savedCommand.Remove(sessionId); } - isItemName = result.Groups[5].Value != null; - item = result.Groups[5].Value is not null ? result.Groups[5].Value : result.Groups[2].Value; + isItemName = (!string.IsNullOrEmpty(result.Groups[5].Value)); + item = (!string.IsNullOrEmpty(result.Groups[5].Value)) ? result.Groups[5].Value : result.Groups[2].Value; quantity = +int.Parse(result.Groups[6].Value); if (quantity <= 0) { @@ -146,16 +146,14 @@ public class GiveSptCommand( var allAllowedItemNames = _itemHelper .GetItems() .Where(IsItemAllowed) - .Select( - i => localizedGlobal - .GetValueOrDefault($"{i.Id} Name", i.Properties.Name) - ?.ToLower() + .Select(i => localizedGlobal + .GetValueOrDefault($"{i.Id} Name", i.Properties.Name) + ?.ToLower() ) .Where(i => !string.IsNullOrEmpty(i)); var closestItemsMatchedByName = allAllowedItemNames - .Select( - i => new + .Select(i => new { Match = StringSimilarity.Match(item, i, 2, true), ItemName = i @@ -296,7 +294,7 @@ public class GiveSptCommand( } /// - /// Return the desired locale, falls back to english if it cannot be found + /// Return the desired locale, falls back to english if it cannot be found /// /// Locale code, e.g. "fr" for french /// diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/ProfileCommand/ProfileSptCommand.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/ProfileCommand/ProfileSptCommand.cs index 15cffb20..b7b00123 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/ProfileCommand/ProfileSptCommand.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/ProfileCommand/ProfileSptCommand.cs @@ -1,4 +1,5 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers.Dialog.Commando.SptCommands; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Dialog; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Dialog; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.Commando.SptCommands.ProfileCommand; @@ -85,8 +85,7 @@ public class ProfileSptCommand( { var enumSkill = Enum.GetValues() .Cast() - .FirstOrDefault( - t => t?.ToString().ToLower() == skill + .FirstOrDefault(t => t?.ToString().ToLower() == skill ); if (enumSkill == null) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/TraderCommand/TraderSptCommand.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/TraderCommand/TraderSptCommand.cs index b37baacf..35438194 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/TraderCommand/TraderSptCommand.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/Commando/SptCommands/TraderCommand/TraderSptCommand.cs @@ -1,4 +1,5 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers.Dialog.Commando.SptCommands; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Dialog; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Dialog; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.Commando.SptCommands.TraderCommand; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/CommandoDialogChatBot.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/CommandoDialogChatBot.cs index 6ce9deb6..c007a640 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/CommandoDialogChatBot.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/CommandoDialogChatBot.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers.Dialog.Commando; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/AreYouABotMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/AreYouABotMessageHandler.cs index e708429c..28fb49c9 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/AreYouABotMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/AreYouABotMessageHandler.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/FishMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/FishMessageHandler.cs index 3e45d17c..3c9b1ddf 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/FishMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/FishMessageHandler.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceChristmasMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceChristmasMessageHandler.cs index 527ca53b..bb3c85bc 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceChristmasMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceChristmasMessageHandler.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceHalloweenMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceHalloweenMessageHandler.cs index 8fc2ce3a..295972dd 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceHalloweenMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceHalloweenMessageHandler.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSnowMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSnowMessageHandler.cs index a33c137c..3a88b429 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSnowMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSnowMessageHandler.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSummerMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSummerMessageHandler.cs index 85a3e89a..a92b31e2 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSummerMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/ForceSummerMessageHandler.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GarbageMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GarbageMessageHandler.cs index f01d7232..50619b70 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GarbageMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GarbageMessageHandler.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GiveMeSpaceMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GiveMeSpaceMessageHandler.cs index 7143dd2c..e522d23c 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GiveMeSpaceMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/GiveMeSpaceMessageHandler.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/HelloMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/HelloMessageHandler.cs index 3b7e7ec3..003d45e5 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/HelloMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/HelloMessageHandler.cs @@ -1,10 +1,10 @@ +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Dialog; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/LoveYouChatMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/LoveYouChatMessageHandler.cs index f885b26e..a13a0903 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/LoveYouChatMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/LoveYouChatMessageHandler.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/NikitaMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/NikitaMessageHandler.cs index 23e13dad..41ecd825 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/NikitaMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/NikitaMessageHandler.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SendGiftMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SendGiftMessageHandler.cs index 06a73d96..85362359 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SendGiftMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SendGiftMessageHandler.cs @@ -1,12 +1,12 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; +using SPTarkov.Server.Core.Models.Eft.Dialog; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Server.Core.Models.Eft.Dialog; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SptMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SptMessageHandler.cs index d9285a9b..33af66b5 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SptMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SPTFriend/Commands/SptMessageHandler.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SptDialogueChatBot.cs b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SptDialogueChatBot.cs index 3ae08f3c..0845e788 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SptDialogueChatBot.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/Dialogue/SptDialogueChatBot.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers.Dialog.Commando; using SPTarkov.Server.Core.Helpers.Dialogue.SPTFriend.Commands; using SPTarkov.Server.Core.Models.Eft.Dialog; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Callbacks; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers.Dialogue; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/DialogueHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/DialogueHelper.cs index cdcc18d3..fae2a26e 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/DialogueHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/DialogueHelper.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -110,7 +110,7 @@ public class DialogueHelper( } /// - /// Find and return a profiles dialogue by id + /// Find and return a profiles dialogue by id /// /// Profile to look in /// Dialog to return diff --git a/Libraries/SPTarkov.Server.Core/Helpers/DurabilityLimitsHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/DurabilityLimitsHelper.cs index 5f0404fa..0bc5e1b4 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/DurabilityLimitsHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/DurabilityLimitsHelper.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HandbookHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HandbookHelper.cs index a8e7de84..037fdfed 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HandbookHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HandbookHelper.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HealthHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HealthHelper.cs index c1fdc571..495d931d 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HealthHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HealthHelper.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; @@ -5,8 +7,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using BodyPartHealth = SPTarkov.Server.Core.Models.Eft.Common.Tables.BodyPartHealth; using Vitality = SPTarkov.Server.Core.Models.Eft.Profile.Vitality; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs index 2bcef28c..71648bdb 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Hideout; @@ -11,7 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; @@ -257,7 +257,7 @@ public class HideoutHelper( } /// - /// Does a water collection hideout area have a water filter installed + /// Does a water collection hideout area have a water filter installed /// /// Hideout area to check /// @@ -438,8 +438,17 @@ public class HideoutHelper( // Increment progress by time passed var production = pmcData.Hideout.Production[prodId]; + // Some items NEED power to craft (e.g. DSP) - production.Progress += (production.needFuelForAllProductionTime ?? false) && !hideoutProperties.IsGeneratorOn ? 0 : timeElapsed; + if (production.needFuelForAllProductionTime.GetValueOrDefault() && hideoutProperties.IsGeneratorOn) + { + production.Progress += timeElapsed; + } + else if (!production.needFuelForAllProductionTime.GetValueOrDefault()) + // Increment progress if production does not necessarily need fuel to continue + { + production.Progress += timeElapsed; + } // Limit progress to total production time if progress is over (dont run for continious crafts)) if (!(recipe.Continuous ?? false)) @@ -948,9 +957,8 @@ public class HideoutHelper( protected double GetTotalProductionTimeSeconds(string prodId) { return _databaseService.GetHideout() - .Production.Recipes.FirstOrDefault( - prod => - prod.Id == prodId + .Production.Recipes.FirstOrDefault(prod => + prod.Id == prodId ) ?.ProductionTime ?? 0; @@ -1197,7 +1205,7 @@ public class HideoutHelper( if (!isGeneratorOn) { - timeElapsed *= (long) _databaseService.GetHideout().Settings.GeneratorSpeedWithoutFuel; + timeElapsed = (long) (timeElapsed * _databaseService.GetHideout().Settings.GeneratorSpeedWithoutFuel); } return timeElapsed; @@ -1443,8 +1451,7 @@ public class HideoutHelper( // Get SkillGroupLevelingBoost object var combatBoostBonusDb = fameAreaDb.Stages[fameAreaProfile.Level.ToString()] - .Bonuses.FirstOrDefault( - bonus => bonus.Type.ToString() == "SkillGroupLevelingBoost" + .Bonuses.FirstOrDefault(bonus => bonus.Type.ToString() == "SkillGroupLevelingBoost" ); // Get SkillGroupLevelingBoost object in profile diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HttpServerHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HttpServerHelper.cs index 6d282c1b..48cfd4eb 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HttpServerHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HttpServerHelper.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Models.Spt.Config; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs index c929001c..6e6e9789 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/InRaidHelper.cs @@ -1,11 +1,11 @@ -using SPTarkov.Server.Core.Models.Eft.Common; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; +using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Helpers; @@ -18,9 +18,9 @@ public class InRaidHelper( DatabaseService _databaseService ) { + protected static readonly List _pocketSlots = ["pocket1", "pocket2", "pocket3", "pocket4"]; protected InRaidConfig _inRaidConfig = _configServer.GetConfig(); protected LostOnDeathConfig _lostOnDeathConfig = _configServer.GetConfig(); - protected static readonly List _pocketSlots = ["pocket1", "pocket2", "pocket3", "pocket4"]; /// /// Deprecated. Reset the skill points earned in a raid to 0, ready for next raid. @@ -98,8 +98,7 @@ public class InRaidHelper( { var dbItems = _databaseService.GetItems(); - var itemsToRemovePropertyFrom = items.Where( - item => + var itemsToRemovePropertyFrom = items.Where(item => { // Has upd object + upd.SpawnedInSession property + not a quest item return (item.Upd?.SpawnedInSession ?? false) && @@ -130,8 +129,7 @@ public class InRaidHelper( foreach (var itemToAdd in itemsToAdd) { // Try to find index of item to determine if we should add or replace - var existingItemIndex = serverInventoryItems.FindIndex( - inventoryItem => inventoryItem.Id == itemToAdd.Id + var existingItemIndex = serverInventoryItems.FindIndex(inventoryItem => inventoryItem.Id == itemToAdd.Id ); if (existingItemIndex == -1) { @@ -212,8 +210,7 @@ public class InRaidHelper( var equipmentRootId = pmcProfile?.Inventory?.Equipment; var questRaidItemContainerId = pmcProfile?.Inventory?.QuestRaidItems; - return inventoryItems.Where( - item => + return inventoryItems.Where(item => { // Keep items flagged as kept after death if (IsItemKeptAfterDeath(pmcProfile, item)) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/InventoryHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/InventoryHelper.cs index 359ea8da..64063bc1 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/InventoryHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/InventoryHelper.cs @@ -1,5 +1,8 @@ +using System.Collections.Frozen; using System.Text.Json; using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Inventory; @@ -13,10 +16,7 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -36,8 +36,8 @@ public class InventoryHelper( ICloner _cloner ) { - protected InventoryConfig _inventoryConfig = _configServer.GetConfig(); private static readonly FrozenSet _variableSizeItemTypes = [BaseClasses.WEAPON, BaseClasses.FUNCTIONAL_MOD]; + protected InventoryConfig _inventoryConfig = _configServer.GetConfig(); /// /// Add multiple items to player stash (assuming they all fit) @@ -324,7 +324,7 @@ public class InventoryHelper( { X = findSlotResult.X, Y = findSlotResult.Y, - R = findSlotResult.Rotation.GetValueOrDefault(false) ? 1 : 0, + R = findSlotResult.Rotation.GetValueOrDefault(false) ? ItemRotation.Vertical : ItemRotation.Horizontal, Rotation = findSlotResult.Rotation }; @@ -382,7 +382,7 @@ public class InventoryHelper( { X = findSlotResult.X, Y = findSlotResult.Y, - R = findSlotResult.Rotation.Value ? 1 : 0, + R = findSlotResult.Rotation.Value ? ItemRotation.Vertical : ItemRotation.Horizontal, Rotation = findSlotResult.Rotation }; @@ -423,7 +423,7 @@ public class InventoryHelper( { X = findSortingSlotResult.X, Y = findSortingSlotResult.Y, - R = findSortingSlotResult.Rotation.Value ? 1 : 0, + R = findSortingSlotResult.Rotation.Value ? ItemRotation.Vertical : ItemRotation.Horizontal, Rotation = findSortingSlotResult.Rotation }; } @@ -652,10 +652,10 @@ public class InventoryHelper( /// takes into account if item is folded /// /// Items template id - /// Items id + /// Items id /// Hashmap of inventory items /// An array representing the [width, height] of the item - protected List GetSizeByInventoryItemHash(string itemTpl, string itemID, InventoryItemHash inventoryItemHash) + protected List GetSizeByInventoryItemHash(string itemTpl, string itemId, InventoryItemHash inventoryItemHash) { // Invalid item var (isValidItem, itemTemplate) = _itemHelper.GetItem(itemTpl); @@ -686,7 +686,7 @@ public class InventoryHelper( return [1, 1]; // Invalid input data, return defaults } - var rootItem = inventoryItemHash.ByItemId[itemID]; + var rootItem = inventoryItemHash.ByItemId[itemId]; // Does root item support being folded var rootIsFoldable = itemTemplate.Properties.Foldable.GetValueOrDefault(false); @@ -709,11 +709,12 @@ public class InventoryHelper( outX -= itemTemplate.Properties.SizeReduceRight.Value; } - // Calculate size contribution from child items/attachments + // Item can have child items that adjust its size if (_itemHelper.IsOfBaseclasses(itemTpl, _variableSizeItemTypes)) { // Storage for root item and its children, store root item id for now - var toDo = new Queue([itemID]); + // Will store child items that may have sub-children to process + var toDo = new Queue([itemId]); while (toDo.Count > 0) { // Lookup parent in `todo` and get all of its children, then loop over them @@ -721,16 +722,16 @@ public class InventoryHelper( { foreach (var childItem in children) { - // Filtering child items outside of mod slots, such as those inside containers, without counting their ExtraSize attribute - if (childItem.SlotId.IndexOf("mod_", StringComparison.Ordinal) < 0) + // Skip mods that don't increase size. e.g. cartridges + if (!childItem.SlotId.StartsWith("mod_", StringComparison.OrdinalIgnoreCase)) { continue; } - // Add child to queue + // Add child to processing queue to be checked for sub-children later toDo.Enqueue(childItem.Id); - // If the barrel is folded the space in the barrel is not counted + // Get child item from db var (isValid, template) = _itemHelper.GetItem(childItem.Template); if (!isValid) { @@ -750,13 +751,14 @@ public class InventoryHelper( continue; } + // Child mod can and is folded, don't include it in size calc if (childIsFoldable && rootIsFolded && childIsFolded) { continue; } // Calculating child ExtraSize - if (template.Properties.ExtraSizeForceAdd == true) + if (template.Properties.ExtraSizeForceAdd.GetValueOrDefault(false)) { forcedUp += template.Properties.ExtraSizeUp.Value; forcedDown += template.Properties.ExtraSizeDown.Value; @@ -781,6 +783,7 @@ public class InventoryHelper( } } + // Item has been processed, remove from queue toDo.Dequeue(); } } @@ -903,7 +906,8 @@ public class InventoryHelper( protected bool IsVertical(ItemLocation itemLocation) { var castValue = itemLocation.R.ToString(); - return castValue == "1" || castValue == "Vertical" || itemLocation.Rotation?.ToString() == "Vertical"; + return castValue == "1" || string.Equals(castValue, "vertical", StringComparison.OrdinalIgnoreCase) || + string.Equals(itemLocation.Rotation?.ToString(), "vertical", StringComparison.OrdinalIgnoreCase); } protected InventoryItemHash GetInventoryItemHash(List inventoryItems) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ItemHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ItemHelper.cs index 52418575..97ceb6a4 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ItemHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ItemHelper.cs @@ -1,4 +1,6 @@ +using System.Collections.Frozen; using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -7,9 +9,7 @@ using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Server.Core.Utils.Collections; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -94,7 +94,8 @@ public class ItemHelper( "front_plate", "back_plate", "left_side_plate", - "right_side_plate"]; + "right_side_plate" + ]; /** * Does the provided pool of items contain the desired item @@ -458,7 +459,7 @@ public class ItemHelper( } /// - /// Does the passed in slot id match a soft insert id + /// Does the passed in slot id match a soft insert id /// /// Id to check /// @@ -796,7 +797,7 @@ public class ItemHelper( } // Items parentId matches root item AND returned items doesn't contain current child - if (!result.ContainsKey(childItem.Id) && string.Equals(childItem.ParentId,baseItemId, StringComparison.Ordinal)) + if (!result.ContainsKey(childItem.Id) && string.Equals(childItem.ParentId, baseItemId, StringComparison.Ordinal)) { foreach (var item in FindAndReturnChildrenAsItems(items, childItem.Id)) { @@ -970,14 +971,13 @@ public class ItemHelper( public List FindBarterItems(string by, List itemsToSearch, object desiredBarterItemIds) { // Find required items to take after buying (handles multiple items) - List desiredBarterIds = + var desiredBarterIds = desiredBarterItemIds.GetType() == typeof(string) ? [(string) desiredBarterItemIds] : (List) desiredBarterItemIds; List matchingItems = []; foreach (var barterId in desiredBarterIds) { - var filterResult = itemsToSearch.Where( - item => + var filterResult = itemsToSearch.Where(item => { return by == "tpl" ? item.Template.Equals(barterId, StringComparison.OrdinalIgnoreCase) @@ -1082,7 +1082,7 @@ public class ItemHelper( } /// - /// Regenerate all GUIDs with new IDs, except special item types (e.g. quest, sorting table, etc.) + /// Regenerate all GUIDs with new IDs, except special item types (e.g. quest, sorting table, etc.) /// /// /// @@ -1315,10 +1315,9 @@ public class ItemHelper( var isRequiredSlot = false; if (parentTemplate.Key && parentTemplate.Value?.Properties?.Slots != null) { - isRequiredSlot = parentTemplate.Value?.Properties?.Slots?.Any( - slot => - slot?.Name == item?.SlotId && - (slot?.Required ?? false) + isRequiredSlot = parentTemplate.Value?.Properties?.Slots?.Any(slot => + slot?.Name == item?.SlotId && + (slot?.Required ?? false) ) ?? false; } @@ -1357,7 +1356,7 @@ public class ItemHelper( /** * Determines if an item is an attachment that is currently attached to its parent item. - * + * * @param item The item to check. * @returns true if the item is attached attachment, otherwise false. */ @@ -1370,15 +1369,15 @@ public class ItemHelper( /** * Retrieves the equipment parent item for a given item. - * + * * This method traverses up the hierarchy of items starting from a given `itemId`, until it finds the equipment * parent item. In other words, if you pass it an item id of a suppressor, it will traverse up the muzzle brake, * barrel, upper receiver, gun, nested backpack, and finally return the backpack Item that is equipped. - * + * * It's important to note that traversal is expensive, so this method requires that you pass it a Dictionary of the items * to traverse, where the keys are the item IDs and the values are the corresponding Item objects. This alleviates * some of the performance concerns, as it allows for quick lookups of items by ID. - * + * * @param itemId - The unique identifier of the item for which to find the equipment parent. * @param itemsMap - A Dictionary containing item IDs mapped to their corresponding Item objects for quick lookup. * @returns The Item object representing the equipment parent of the given item, or `null` if no such parent exists. @@ -1469,7 +1468,7 @@ public class ItemHelper( } /// - /// Add cartridges to the ammo box with correct max stack sizes + /// Add cartridges to the ammo box with correct max stack sizes /// /// Box to add cartridges to /// Item template from items db @@ -1922,7 +1921,6 @@ public class ItemHelper( // Include conflicting items of newly added mod in pool to be used for next mod choice incompatibleModTpls.UnionWith(modItemDbDetails.Properties.ConflictingItems); - } return result; @@ -2116,7 +2114,6 @@ public class ItemHelper( } return true; - } // Return all tpls from Money enum diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ModHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ModHelper.cs index d4c87864..cd0db5d5 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ModHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ModHelper.cs @@ -1,42 +1,41 @@ using System.Reflection; -using SPTarkov.Server.Core.Utils; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Utils; -namespace SPTarkov.Server.Core.Helpers +namespace SPTarkov.Server.Core.Helpers; + +[Injectable] +public class ModHelper { - [Injectable] - public class ModHelper + private readonly FileUtil _fileUtil; + private readonly JsonUtil _jsonUtil; + + public ModHelper( + FileUtil fileUtil, + JsonUtil jsonUtil) { - private readonly FileUtil _fileUtil; - private readonly JsonUtil _jsonUtil; + _fileUtil = fileUtil; + _jsonUtil = jsonUtil; + } - public ModHelper( - FileUtil fileUtil, - JsonUtil jsonUtil) - { - _fileUtil = fileUtil; - _jsonUtil = jsonUtil; - } + public string GetAbsolutePathToModFolder(Assembly modAssembly) + { + // The full path to the mod folder + return Path.GetDirectoryName(modAssembly.Location); + } - public string GetAbsolutePathToModFolder(Assembly modAssembly) - { - // The full path to the mod folder - return Path.GetDirectoryName(modAssembly.Location); - } + public string GetRawFileData(string pathToFile, string fileName) + { + // Read the content of the config file as a string + return _fileUtil.ReadFile(Path.Combine(pathToFile, fileName)); + } - public string GetRawFileData(string pathToFile, string fileName) - { - // Read the content of the config file as a string - return _fileUtil.ReadFile(Path.Combine(pathToFile, fileName)); - } + public T GetJsonDataFromFile(string pathToFile, string fileName) + { + // Read the content of the config file as a string + var rawContent = _fileUtil.ReadFile(Path.Combine(pathToFile, fileName)); - public T GetJsonDataFromFile(string pathToFile, string fileName) - { - // Read the content of the config file as a string - var rawContent = _fileUtil.ReadFile(Path.Combine(pathToFile, fileName)); - - // Take the string above and deserialise it into a file with a type (defined between the diamond brackets) - return _jsonUtil.Deserialize(rawContent); - } + // Take the string above and deserialise it into a file with a type (defined between the diamond brackets) + return _jsonUtil.Deserialize(rawContent); } } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/NotificationSendHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/NotificationSendHelper.cs index cd61c5b2..da8124ad 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/NotificationSendHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/NotificationSendHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Eft.Ws; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Servers.Ws; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/NotifierHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/NotifierHelper.cs index 2456826d..6e06f9e4 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/NotifierHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/NotifierHelper.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Eft.Ws; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/PaymentHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/PaymentHelper.cs index cdd4ce1f..4ae1e86a 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/PaymentHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/PaymentHelper.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/PresetHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/PresetHelper.cs index 5391d8f8..7011629d 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/PresetHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/PresetHelper.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Presets; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -48,10 +48,9 @@ public class PresetHelper( if (_defaultWeaponPresets is null) { var tempPresets = _databaseService.GetGlobals().ItemPresets; - _defaultWeaponPresets = tempPresets.Where( - p => - p.Value.Encyclopedia != null && - _itemHelper.IsOfBaseclass(p.Value.Encyclopedia, BaseClasses.WEAPON) + _defaultWeaponPresets = tempPresets.Where(p => + p.Value.Encyclopedia != null && + _itemHelper.IsOfBaseclass(p.Value.Encyclopedia, BaseClasses.WEAPON) ) .ToDictionary(); } @@ -68,10 +67,9 @@ public class PresetHelper( if (_defaultEquipmentPresets == null) { var tempPresets = _databaseService.GetGlobals().ItemPresets; - _defaultEquipmentPresets = tempPresets.Where( - p => - p.Value.Encyclopedia != null && - _itemHelper.ArmorItemCanHoldMods(p.Value.Encyclopedia) + _defaultEquipmentPresets = tempPresets.Where(p => + p.Value.Encyclopedia != null && + _itemHelper.ArmorItemCanHoldMods(p.Value.Encyclopedia) ) .ToDictionary(); } @@ -116,14 +114,14 @@ public class PresetHelper( } /// - /// Get a clone of a tpls presets + /// Get a clone of a tpls presets /// /// Tpl to get presets for /// List public List GetPresets(string templateId) { // Try adn get preset ids from cache if they exist - if(!_lookup.TryGetValue(templateId, out var presetDetailsForTpl)) + if (!_lookup.TryGetValue(templateId, out var presetDetailsForTpl)) { // None found, early exit return []; @@ -136,7 +134,7 @@ public class PresetHelper( } /// - /// Get a cloned default preset for passed in item tpl + /// Get a cloned default preset for passed in item tpl /// /// Items tpl to get preset for /// null if no default preset, otherwise Preset @@ -167,7 +165,7 @@ public class PresetHelper( } /// - /// Get the presets root item tpl + /// Get the presets root item tpl /// /// Preset id to look up /// tpl mongoid diff --git a/Libraries/SPTarkov.Server.Core/Helpers/PrestigeHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/PrestigeHelper.cs index 19cfc4e8..b8b0aa82 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/PrestigeHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/PrestigeHelper.cs @@ -1,168 +1,170 @@ using System.Text.Json; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; -namespace SPTarkov.Server.Core.Helpers +namespace SPTarkov.Server.Core.Helpers; + +[Injectable] +public class PrestigeHelper { - [Injectable] - public class PrestigeHelper + protected DatabaseService _databaseService; + protected ISptLogger _logger; + protected MailSendService _mailSendService; + protected ProfileHelper _profileHelper; + protected RewardHelper _rewardHelper; + protected TimeUtil _timeUtil; + + public PrestigeHelper( + ISptLogger logger, + TimeUtil timeUtil, + DatabaseService databaseService, + MailSendService mailSendService, + ProfileHelper profileHelper, + RewardHelper rewardHelper) { - protected ISptLogger _logger; - protected TimeUtil _timeUtil; - protected DatabaseService _databaseService; - protected MailSendService _mailSendService; - protected ProfileHelper _profileHelper; - protected RewardHelper _rewardHelper; + _logger = logger; + _timeUtil = timeUtil; + _databaseService = databaseService; + _mailSendService = mailSendService; + _profileHelper = profileHelper; + _rewardHelper = rewardHelper; + } - public PrestigeHelper( - ISptLogger logger, - TimeUtil timeUtil, - DatabaseService databaseService, - MailSendService mailSendService, - ProfileHelper profileHelper, - RewardHelper rewardHelper) + public void ProcessPendingPrestige(SptProfile oldProfile, SptProfile newProfile, PendingPrestige prestige) + { + var prePrestigePmc = oldProfile.CharacterData.PmcData; + var sessionId = newProfile.ProfileInfo.ProfileId; + + // Skill copy + + if (prePrestigePmc.Skills.Common is not null) { - _logger = logger; - _timeUtil = timeUtil; - _databaseService = databaseService; - _mailSendService = mailSendService; - _profileHelper = profileHelper; - _rewardHelper = rewardHelper; + var commonSKillsToCopy = prePrestigePmc.Skills.Common; + foreach (var skillToCopy in commonSKillsToCopy) + { + // Set progress 5% of what it was + skillToCopy.Progress = skillToCopy.Progress * 0.05; + var existingSkill = newProfile.CharacterData.PmcData.Skills.Common.FirstOrDefault(skill => skill.Id == skillToCopy.Id); + if (existingSkill is not null) + { + existingSkill.Progress = skillToCopy.Progress; + } + else + { + newProfile.CharacterData.PmcData.Skills.Common.Add(skillToCopy); + } + } + + var masteringSkillsToCopy = prePrestigePmc.Skills.Mastering; + foreach (var skillToCopy in masteringSkillsToCopy) + { + // Set progress 5% of what it was + skillToCopy.Progress = skillToCopy.Progress * 0.05; + var existingSkill = newProfile.CharacterData.PmcData.Skills.Mastering.FirstOrDefault(skill => skill.Id == skillToCopy.Id); + if (existingSkill is not null) + { + existingSkill.Progress = skillToCopy.Progress; + } + else + { + newProfile.CharacterData.PmcData.Skills.Mastering.Add(skillToCopy); + } + } } - public void ProcessPendingPrestige(SptProfile oldProfile, SptProfile newProfile, PendingPrestige prestige) + var indexOfPrestigeObtained = Math.Min(prestige.PrestigeLevel.Value - 1, 1); // Index starts at 0 + + // Add "Prestigious" achievement + if (!newProfile.CharacterData.PmcData.Achievements.ContainsKey("676091c0f457869a94017a23")) { - var prePrestigePmc = oldProfile.CharacterData.PmcData; - var sessionId = newProfile.ProfileInfo.ProfileId; + _rewardHelper.AddAchievementToProfile(newProfile, "676091c0f457869a94017a23"); + } - // Skill copy + // Assumes Prestige data is in descending order + var currentPrestigeData = _databaseService.GetTemplates().Prestige.Elements[indexOfPrestigeObtained]; + var prestigeRewards = _databaseService + .GetTemplates() + .Prestige.Elements.Slice(0, indexOfPrestigeObtained + 1) + .SelectMany(prestige => prestige.Rewards); - if (prePrestigePmc.Skills.Common is not null) + AddPrestigeRewardsToProfile(sessionId, newProfile, prestigeRewards); + + // Flag profile as having achieved this prestige level + newProfile.CharacterData.PmcData.Prestige[currentPrestigeData.Id] = _timeUtil.GetTimeStamp(); + + var itemsToTransfer = new List(); + + // Copy transferred items + foreach (var transferRequest in prestige.Items ?? []) + { + var item = prePrestigePmc.Inventory.Items.FirstOrDefault(item => item.Id == transferRequest.Id); + if (item is null) { - var commonSKillsToCopy = prePrestigePmc.Skills.Common; - foreach (var skillToCopy in commonSKillsToCopy) { - // Set progress 5% of what it was - skillToCopy.Progress = skillToCopy.Progress * 0.05; - var existingSkill = newProfile.CharacterData.PmcData.Skills.Common.FirstOrDefault((skill) => skill.Id == skillToCopy.Id); - if (existingSkill is not null) + _logger.Error($"Unable to find item with id: {transferRequest.Id} in profile: {sessionId}, skipping"); + continue; + } + + itemsToTransfer.Add(item); + } + + _mailSendService.SendSystemMessageToPlayer(sessionId, "", itemsToTransfer, 31536000); + + newProfile.CharacterData.PmcData.Info.PrestigeLevel = prestige.PrestigeLevel; + } + + private void AddPrestigeRewardsToProfile(string sessionId, SptProfile newProfile, IEnumerable rewards) + { + var itemsToSend = new List(); + + foreach (var reward in rewards) + { + switch (reward.Type) + { + case RewardType.CustomizationDirect: { - existingSkill.Progress = skillToCopy.Progress; + _profileHelper.AddHideoutCustomisationUnlock(newProfile, reward, CustomisationSource.PRESTIGE); + break; + } + case RewardType.Skill: + if (Enum.TryParse(reward.Target, out SkillTypes result)) + { + _profileHelper.AddSkillPointsToPlayer( + newProfile.CharacterData.PmcData, + result, + ((JsonElement) reward.Value).ToObject() + ); } else { - newProfile.CharacterData.PmcData.Skills.Common.Add(skillToCopy); + _logger.Error($"Unable to parse reward Target to Enum: {reward.Target}"); } - } - var masteringSkillsToCopy = prePrestigePmc.Skills.Mastering; - foreach (var skillToCopy in masteringSkillsToCopy) { - // Set progress 5% of what it was - skillToCopy.Progress = skillToCopy.Progress * 0.05; - var existingSkill = newProfile.CharacterData.PmcData.Skills.Mastering.FirstOrDefault((skill) => skill.Id == skillToCopy.Id); - if (existingSkill is not null) + break; + case RewardType.Item: { - existingSkill.Progress = skillToCopy.Progress; + itemsToSend.AddRange(reward.Items); + break; } - else + case RewardType.ExtraDailyQuest: { - newProfile.CharacterData.PmcData.Skills.Mastering.Add(skillToCopy); + _profileHelper.AddExtraRepeatableQuest(newProfile, reward.Target, (double) reward.Value); + break; } - } + default: + _logger.Error($"Unhandled prestige reward type: {reward.Type}"); + break; } - - var indexOfPrestigeObtained = Math.Min(prestige.PrestigeLevel.Value - 1, 1); // Index starts at 0 - - // Add "Prestigious" achievement - if (!newProfile.CharacterData.PmcData.Achievements.ContainsKey("676091c0f457869a94017a23")) - { - _rewardHelper.AddAchievementToProfile(newProfile, "676091c0f457869a94017a23"); - } - - // Assumes Prestige data is in descending order - var currentPrestigeData = _databaseService.GetTemplates().Prestige.Elements[indexOfPrestigeObtained]; - var prestigeRewards = _databaseService - .GetTemplates() - .Prestige.Elements.Slice(0, indexOfPrestigeObtained + 1) - .SelectMany(prestige => prestige.Rewards); - - AddPrestigeRewardsToProfile(sessionId, newProfile, prestigeRewards); - - // Flag profile as having achieved this prestige level - newProfile.CharacterData.PmcData.Prestige[currentPrestigeData.Id] = _timeUtil.GetTimeStamp(); - - var itemsToTransfer = new List(); - - // Copy transferred items - foreach (var transferRequest in prestige.Items ?? []) { - var item = prePrestigePmc.Inventory.Items.FirstOrDefault((item) => item.Id == transferRequest.Id); - if (item is null) - { - _logger.Error($"Unable to find item with id: {transferRequest.Id} in profile: {sessionId}, skipping"); - continue; - } - - itemsToTransfer.Add(item); - } - - _mailSendService.SendSystemMessageToPlayer(sessionId, "", itemsToTransfer, 31536000); - - newProfile.CharacterData.PmcData.Info.PrestigeLevel = prestige.PrestigeLevel; } - private void AddPrestigeRewardsToProfile(string sessionId, SptProfile newProfile, IEnumerable rewards) + if (itemsToSend.Count > 0) { - var itemsToSend = new List(); - - foreach (var reward in rewards) - { - switch (reward.Type) - { - case RewardType.CustomizationDirect: - { - _profileHelper.AddHideoutCustomisationUnlock(newProfile, reward, CustomisationSource.PRESTIGE); - break; - } - case RewardType.Skill: - if (Enum.TryParse(reward.Target, out SkillTypes result)) - { - _profileHelper.AddSkillPointsToPlayer( - newProfile.CharacterData.PmcData, - result, - ((JsonElement) reward.Value).ToObject() - ); - } - else - { - _logger.Error($"Unable to parse reward Target to Enum: {reward.Target}"); - } - - break; - case RewardType.Item: - { - itemsToSend.AddRange(reward.Items); - break; - } - case RewardType.ExtraDailyQuest: - { - _profileHelper.AddExtraRepeatableQuest(newProfile, reward.Target, (double)reward.Value); - break; - } - default: - _logger.Error($"Unhandled prestige reward type: {reward.Type}"); - break; - } - } - - if (itemsToSend.Count > 0) - { - _mailSendService.SendSystemMessageToPlayer(sessionId, "", itemsToSend, 31536000); - } + _mailSendService.SendSystemMessageToPlayer(sessionId, "", itemsToSend, 31536000); } } } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ProbabilityHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ProbabilityHelper.cs index 3d960dcb..b3d0a539 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ProbabilityHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ProbabilityHelper.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Models.Utils; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs index 4e5d5fb8..c3f41e6c 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/ProfileHelper.cs @@ -1,3 +1,5 @@ +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; @@ -8,9 +10,7 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -110,11 +110,10 @@ public class ProfileHelper( var allProfiles = _saveServer.GetProfiles().Values; // Find a profile that doesn't have same session id but has same name - return allProfiles.Any( - p => - ProfileHasInfoProperty(p) && - !StringsMatch(p.ProfileInfo.ProfileId, sessionID) && // SessionIds dont match - StringsMatch(p.CharacterData.PmcData.Info.LowerNickname.ToLower(), nicknameRequest.Nickname.ToLower()) + return allProfiles.Any(p => + ProfileHasInfoProperty(p) && + !StringsMatch(p.ProfileInfo.ProfileId, sessionID) && // SessionIds dont match + StringsMatch(p.CharacterData.PmcData.Info.LowerNickname.ToLower(), nicknameRequest.Nickname.ToLower()) ); // Nicknames do } @@ -733,7 +732,7 @@ public class ProfileHelper( } /// - /// Add the given number of extra repeatable quests for the given type of repeatable to the users profile + /// Add the given number of extra repeatable quests for the given type of repeatable to the users profile /// /// Profile to add the extra repeatable to /// The ID of the type of repeatable to increase diff --git a/Libraries/SPTarkov.Server.Core/Helpers/QuestConditionHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/QuestConditionHelper.cs index 31029d13..d90e56fa 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/QuestConditionHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/QuestConditionHelper.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common.Tables; namespace SPTarkov.Server.Core.Helpers; @@ -39,8 +39,7 @@ public class QuestConditionHelper string questType, Func>? furtherFilter = null) { - var filteredQuests = questConditions.Where( - c => + var filteredQuests = questConditions.Where(c => { if (c.ConditionType == questType) // return true or run the passed in function diff --git a/Libraries/SPTarkov.Server.Core/Helpers/QuestHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/QuestHelper.cs index ffde53fc..b6c3f7db 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/QuestHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/QuestHelper.cs @@ -1,4 +1,5 @@ -using System.Text.Json; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.ItemEvent; @@ -11,8 +12,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; @@ -106,8 +105,7 @@ public class QuestHelper( if (knownQuestsIds.Count != 0) { - return after.Where( - q => + return after.Where(q => { return knownQuestsIds.IndexOf(q.Id) == -1; } @@ -343,13 +341,11 @@ public class QuestHelper( // Get quests that var eligibleQuests = GetQuestsFromDb() - .Where( - quest => + .Where(quest => { // Quest is accessible to player when the accepted quest passed into param is started // e.g. Quest A passed in, quest B is looped over and has requirement of A to be started, include it - var acceptedQuestCondition = quest.Conditions.AvailableForStart.FirstOrDefault( - condition => + var acceptedQuestCondition = quest.Conditions.AvailableForStart.FirstOrDefault(condition => { return condition.ConditionType == "Quest" && ((condition.Target?.Item?.Contains(startedQuestId) ?? false) || @@ -523,13 +519,12 @@ public class QuestHelper( var profileQuest = profile.Quests.FirstOrDefault(x => x.QId == failedQuestId); var quests = GetQuestsFromDb() - .Where( - q => + .Where(q => { - var acceptedQuestCondition = q.Conditions.AvailableForStart.FirstOrDefault( - c => c.ConditionType == "Quest" && - (c.Target.IsList ? c.Target.List : [c.Target.Item]).Contains(failedQuestId) && - c.Status[0] == QuestStatusEnum.Fail + var acceptedQuestCondition = q.Conditions.AvailableForStart.FirstOrDefault(c => c.ConditionType == "Quest" && + (c.Target.IsList ? c.Target.List : [c.Target.Item]) + .Contains(failedQuestId) && + c.Status[0] == QuestStatusEnum.Fail ); if (acceptedQuestCondition is null) @@ -687,8 +682,7 @@ public class QuestHelper( public Quest GetQuestWithOnlyLevelRequirementStartCondition(Quest quest) { var updatedQuest = _cloner.Clone(quest); - updatedQuest.Conditions.AvailableForStart = updatedQuest.Conditions.AvailableForStart.Where( - q => q.ConditionType == "Level" + updatedQuest.Conditions.AvailableForStart = updatedQuest.Conditions.AvailableForStart.Where(q => q.ConditionType == "Level" ) .ToList(); @@ -729,8 +723,7 @@ public class QuestHelper( var quest = GetQuestFromDb(failRequest.QuestId, pmcData); // Merge all daily/weekly/scav daily quests into one array and look for the matching quest by id - var matchingRepeatableQuest = pmcData.RepeatableQuests.SelectMany( - repeatableType => repeatableType.ActiveQuests + var matchingRepeatableQuest = pmcData.RepeatableQuests.SelectMany(repeatableType => repeatableType.ActiveQuests ) .FirstOrDefault(activeQuest => activeQuest.Id == failRequest.QuestId); @@ -897,9 +890,9 @@ public class QuestHelper( continue; } - var condition = questInDb.Conditions.AvailableForFinish.FirstOrDefault( - c => c.ConditionType == "FindItem" && - ((c.Target.IsList ? c.Target.List : [c.Target.Item])?.Contains(itemTpl) ?? false) + var condition = questInDb.Conditions.AvailableForFinish.FirstOrDefault(c => c.ConditionType == "FindItem" && + ((c.Target.IsList ? c.Target.List : [c.Target.Item]) + ?.Contains(itemTpl) ?? false) ); if (condition is not null) { @@ -980,8 +973,7 @@ public class QuestHelper( public List GetQuestsFailedByCompletingQuest(string completedQuestId) { var questsInDb = GetQuestsFromDb(); - return questsInDb.Where( - quest => + return questsInDb.Where(quest => { // No fail conditions, exit early if (quest.Conditions.Fail is null || quest.Conditions.Fail.Count == 0) @@ -989,12 +981,11 @@ public class QuestHelper( return false; } - return quest.Conditions.Fail.Any( - condition => - (condition.Target.IsList ? condition.Target.List : [condition.Target.Item])?.Contains( - completedQuestId - ) ?? - false + return quest.Conditions.Fail.Any(condition => + (condition.Target.IsList ? condition.Target.List : [condition.Target.Item])?.Contains( + completedQuestId + ) ?? + false ); } ) @@ -1006,15 +997,14 @@ public class QuestHelper( * @param pmcData Profile to get hours for * @returns Hours item will be available for */ - public double? GetMailItemRedeemTimeHoursForProfile(PmcData pmcData) + public double GetMailItemRedeemTimeHoursForProfile(PmcData pmcData) { - var value = _questConfig.MailRedeemTimeHours.GetValueOrDefault(pmcData.Info.GameVersion); - if (value is null) + if (!_questConfig.MailRedeemTimeHours.TryGetValue(pmcData.Info.GameVersion, out var value)) { - return 0; + return _questConfig.MailRedeemTimeHours["default"] ?? 48; } - return value; + return value ?? 48; } public ItemEventRouterResponse CompleteQuest(PmcData pmcData, CompleteQuestRequestData body, string sessionID) @@ -1059,8 +1049,7 @@ public class QuestHelper( // Check if it's a repeatable quest. If so, remove from Quests foreach (var currentRepeatable in pmcData.RepeatableQuests) { - var repeatableQuest = currentRepeatable.ActiveQuests.FirstOrDefault( - activeRepeatable => activeRepeatable.Id == completedQuestId + var repeatableQuest = currentRepeatable.ActiveQuests.FirstOrDefault(activeRepeatable => activeRepeatable.Id == completedQuestId ); if (repeatableQuest is not null) // Need to remove redundant scav quest object as its no longer necessary, is tracked in pmc profile @@ -1259,9 +1248,8 @@ public class QuestHelper( } propsAsDict[rewardType.Key] = ((List) propsAsDict[rewardType.Key]) - .Where( - reward => - _rewardHelper.RewardIsForGameEdition(reward, gameVersion) + .Where(reward => + _rewardHelper.RewardIsForGameEdition(reward, gameVersion) ) .ToList(); } @@ -1278,8 +1266,7 @@ public class QuestHelper( protected List GetQuestsFromProfileFailedByCompletingQuest(string completedQuestId, PmcData pmcProfile) { var questsInDb = GetQuestsFromDb(); - return questsInDb.Where( - quest => + return questsInDb.Where(quest => { // No fail conditions, skip if (quest.Conditions.Fail is null || quest.Conditions.Fail.Count == 0) @@ -1398,8 +1385,8 @@ public class QuestHelper( foreach (var quest in quests) { // If quest has prereq of completed quest + availableAfter value > 0 (quest has wait time) - var nextQuestWaitCondition = quest.Conditions?.AvailableForStart?.FirstOrDefault( - x => ((x.Target?.List?.Contains(completedQuestId) ?? false) || (x.Target?.Item?.Contains(completedQuestId) ?? false)) && x.AvailableAfter > 0 + var nextQuestWaitCondition = quest.Conditions?.AvailableForStart?.FirstOrDefault(x => + ((x.Target?.List?.Contains(completedQuestId) ?? false) || (x.Target?.Item?.Contains(completedQuestId) ?? false)) && x.AvailableAfter > 0 ); // as we have to use the ListOrT type now, check both List and Item for the above checks if (nextQuestWaitCondition is not null) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/QuestRewardHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/QuestRewardHelper.cs index 0833c97f..ad5efb84 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/QuestRewardHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/QuestRewardHelper.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.ItemEvent; @@ -8,8 +10,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Helpers; @@ -147,10 +147,9 @@ public class QuestRewardHelper( .FirstOrDefault(p => p.Name == questStatus.ToString()) .GetValue(quest.Rewards) ?? new List(); - var currencyRewards = rewards.Where( - r => - r.Type.ToString() == "Item" && - _paymentHelper.IsMoneyTpl(r.Items.FirstOrDefault().Template) + var currencyRewards = rewards.Where(r => + r.Type.ToString() == "Item" && + _paymentHelper.IsMoneyTpl(r.Items.FirstOrDefault().Template) ); foreach (var reward in currencyRewards) { diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RagfairHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RagfairHelper.cs index edbe0927..9f89cf87 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RagfairHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RagfairHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RagfairOfferHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RagfairOfferHelper.cs index 4baea095..90787b78 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RagfairOfferHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RagfairOfferHelper.cs @@ -1,3 +1,6 @@ +using System.Collections.Frozen; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.ItemEvent; @@ -10,9 +13,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; -using System.Collections.Frozen; namespace SPTarkov.Server.Core.Helpers; @@ -41,10 +41,10 @@ public class RagfairOfferHelper( ConfigServer _configServer) { protected const string _goodSoldTemplate = "5bdabfb886f7743e152e867e 0"; // Your {soldItem} {itemCount} items were bought by {buyerNickname}. - protected BotConfig _botConfig = _configServer.GetConfig(); - protected RagfairConfig _ragfairConfig = _configServer.GetConfig(); protected static readonly FrozenSet _currencies = ["all", "RUB", "USD", "EUR"]; + protected BotConfig _botConfig = _configServer.GetConfig(); + protected RagfairConfig _ragfairConfig = _configServer.GetConfig(); /// /// Passthrough to ragfairOfferService.getOffers(), get flea offers a player should see @@ -64,8 +64,7 @@ public class RagfairOfferHelper( var tieredFlea = _ragfairConfig.TieredFlea; var tieredFleaLimitTypes = tieredFlea.UnlocksType; return _ragfairOfferService.GetOffers() - .Where( - offer => + .Where(offer => { if (!PassesSearchFilterCriteria(searchRequest, offer, pmcData)) { @@ -172,8 +171,7 @@ public class RagfairOfferHelper( var requiredOffers = _ragfairRequiredItemsService.GetRequiredItemsById(searchRequest.NeededSearchId); var tieredFlea = _ragfairConfig.TieredFlea; var tieredFleaLimitTypes = tieredFlea.UnlocksType; - return requiredOffers.Where( - offer => + return requiredOffers.Where(offer => { if (!PassesSearchFilterCriteria(searchRequest, offer, pmcData)) { @@ -318,8 +316,7 @@ public class RagfairOfferHelper( var lockedOffers = GetLoyaltyLockedOffers(possibleOffers, pmcData); // Exclude locked offers + above loyalty locked offers if at least 1 was found - offersToSort = possibleOffers.Where( - offer => !(offer.Locked.GetValueOrDefault(false) || lockedOffers.Contains(offer.Id)) + offersToSort = possibleOffers.Where(offer => !(offer.Locked.GetValueOrDefault(false) || lockedOffers.Contains(offer.Id)) ) .ToList(); @@ -410,8 +407,7 @@ public class RagfairOfferHelper( if ( !traderAssorts[offer.User.Id] - .Items.Any( - item => + .Items.Any(item => { return item.Id == offer.Root; } @@ -434,8 +430,7 @@ public class RagfairOfferHelper( protected List GetOffersInsideBuyRestrictionLimits(List possibleOffers) { // Check offer has buy limit + is from trader + current buy count is at or over max - return possibleOffers.Where( - offer => + return possibleOffers.Where(offer => { if ( offer.BuyRestrictionMax is null && @@ -505,12 +500,10 @@ public class RagfairOfferHelper( traderAssorts.TryGetValue(offer.User.Id, out var assorts); if (assorts.BarterScheme .Where(x => itemIds.Contains(x.Key)) - .Any( - barterKvP => barterKvP.Value - .Any( - subBarter => subBarter - .Any(subBarter => subBarter.SptQuestLocked.GetValueOrDefault(false)) - ) + .Any(barterKvP => barterKvP.Value + .Any(subBarter => subBarter + .Any(subBarter => subBarter.SptQuestLocked.GetValueOrDefault(false)) + ) )) { return true; @@ -796,13 +789,14 @@ public class RagfairOfferHelper( HandbookId = itemTpl }; + var storagetime = _timeUtil.GetHoursAsSeconds((int) _questHelper.GetMailItemRedeemTimeHoursForProfile(sellerProfile)); _mailSendService.SendDirectNpcMessageToPlayer( offerOwnerSessionId, - _traderHelper.GetTraderById(Traders.RAGMAN).ToString(), + Traders.RAGMAN, MessageType.FLEAMARKET_MESSAGE, GetLocalisedOfferSoldMessage(itemTpl, boughtAmount), paymentItemsToSendToPlayer, - _timeUtil.GetHoursAsSeconds((int) _questHelper.GetMailItemRedeemTimeHoursForProfile(sellerProfile).Value), + storagetime, null, ragfairDetails ); @@ -942,7 +936,7 @@ public class RagfairOfferHelper( if (searchRequest.Currency > 0 && _paymentHelper.IsMoneyTpl(offerMoneyTypeTpl)) { // Use 'currencies' as mapping for the money choice dropdown, e.g. 0 = all, 2 = "USD; - if(!_currencies.Contains(_ragfairHelper.GetCurrencyTag(offerMoneyTypeTpl))) + if (!_currencies.Contains(_ragfairHelper.GetCurrencyTag(offerMoneyTypeTpl))) // Don't include item paid in wrong currency { return false; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RagfairSellHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RagfairSellHelper.cs index ab2e3ce5..081c7383 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RagfairSellHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RagfairSellHelper.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; @@ -85,7 +85,7 @@ public class RagfairSellHelper( if (_logger.IsLogEnabled(LogLevel.Debug)) { - _logger.Debug($"Rolling to sell: {itemSellCount}items(chance: {effectiveSellChance}%)"); + _logger.Debug($"Rolling to sell: {itemSellCount} item(s) - (chance: {effectiveSellChance}%)"); } // No point rolling for a sale on a 0% chance item, exit early diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RagfairServerHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RagfairServerHelper.cs index a01feb4b..040c3f5e 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RagfairServerHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RagfairServerHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RagfairSortHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RagfairSortHelper.cs index d25b6d45..57d292f4 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RagfairSortHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RagfairSortHelper.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RepairHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RepairHelper.cs index ea84c1c8..2a0c73bb 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RepairHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RepairHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RepeatableQuestHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RepeatableQuestHelper.cs index 23d44801..3c3741b7 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RepeatableQuestHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RepeatableQuestHelper.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -17,8 +17,7 @@ public class RepeatableQuestHelper( /// EliminationConfig public EliminationConfig? GetEliminationConfigByPmcLevel(int pmcLevel, RepeatableQuestConfig repeatableConfig) { - return repeatableConfig.QuestConfig.Elimination.FirstOrDefault( - x => pmcLevel >= x.LevelRange.Min && pmcLevel <= x.LevelRange.Max + return repeatableConfig.QuestConfig.Elimination.FirstOrDefault(x => pmcLevel >= x.LevelRange.Min && pmcLevel <= x.LevelRange.Max ); } } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/RewardHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/RewardHelper.cs index 9822d510..4d5b4b75 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/RewardHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/RewardHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Hideout; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -215,15 +215,13 @@ public class RewardHelper( // Area that will be used to craft unlocked item var desiredHideoutAreaType = (HideoutAreas) int.Parse(craftUnlockReward.TraderId.ToString()); - var matchingProductions = craftingRecipes.Where( - prod => - prod.AreaType == desiredHideoutAreaType && - //prod.requirements.some((requirement) => requirement.questId == questId) && // BSG don't store the quest id in requirement any more! - prod.Requirements.Any(requirement => requirement.Type == "QuestComplete") && - prod.Requirements.Any( - requirement => requirement.RequiredLevel == craftUnlockReward.LoyaltyLevel - ) && - prod.EndProduct == craftUnlockReward.Items.FirstOrDefault().Template + var matchingProductions = craftingRecipes.Where(prod => + prod.AreaType == desiredHideoutAreaType && + //prod.requirements.some((requirement) => requirement.questId == questId) && // BSG don't store the quest id in requirement any more! + prod.Requirements.Any(requirement => requirement.Type == "QuestComplete") && + prod.Requirements.Any(requirement => requirement.RequiredLevel == craftUnlockReward.LoyaltyLevel + ) && + prod.EndProduct == craftUnlockReward.Items.FirstOrDefault().Template ) .ToList(); @@ -231,9 +229,8 @@ public class RewardHelper( if (matchingProductions.Count != 1) // Multiple matches were found, last ditch attempt to match by questid (value we add manually to production.json via `gen:productionquests` command) { - matchingProductions = matchingProductions.Where( - prod => - prod.Requirements.Any(requirement => requirement.QuestId == questId) + matchingProductions = matchingProductions.Where(prod => + prod.Requirements.Any(requirement => requirement.QuestId == questId) ) .ToList(); } @@ -250,11 +247,10 @@ public class RewardHelper( protected List GetRewardItems(List rewards, string gameVersion) { // Iterate over all rewards with the desired status, flatten out items that have a type of Item - var rewardItems = rewards.SelectMany( - reward => - reward.Type == RewardType.Item && RewardIsForGameEdition(reward, gameVersion) - ? ProcessReward(reward) - : [] + var rewardItems = rewards.SelectMany(reward => + reward.Type == RewardType.Item && RewardIsForGameEdition(reward, gameVersion) + ? ProcessReward(reward) + : [] ); return rewardItems.ToList(); diff --git a/Libraries/SPTarkov.Server.Core/Helpers/SecureContainerHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/SecureContainerHelper.cs index c01aebff..f5cd0417 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/SecureContainerHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/SecureContainerHelper.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common.Tables; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Helpers/TradeHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/TradeHelper.cs index 16f09b1d..7c365fe0 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/TradeHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/TradeHelper.cs @@ -1,18 +1,16 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Inventory; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Trade; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; @@ -321,8 +319,7 @@ public class TradeHelper( ) { const string circulateQuestId = "6663149f1d3ec95634095e75"; - var activeCirculateQuest = profileToReceiveMoney.Quests.FirstOrDefault( - quest => quest.QId == circulateQuestId && quest.Status == QuestStatusEnum.Started + var activeCirculateQuest = profileToReceiveMoney.Quests.FirstOrDefault(quest => quest.QId == circulateQuestId && quest.Status == QuestStatusEnum.Started ); // Player not on Circulate quest ,exit @@ -332,8 +329,8 @@ public class TradeHelper( } // Find related task condition - var taskCondition = profileToReceiveMoney.TaskConditionCounters.Values.FirstOrDefault( - condition => condition.SourceId == circulateQuestId && condition.Type == "SellItemToTrader" + var taskCondition = profileToReceiveMoney.TaskConditionCounters.Values.FirstOrDefault(condition => + condition.SourceId == circulateQuestId && condition.Type == "SellItemToTrader" ); // No relevant condtion in profile, nothing to increment @@ -355,8 +352,7 @@ public class TradeHelper( // Get sellToTrader condition from quest var sellItemToTraderCondition = circulateQuestDb[circulateQuestId] - .Conditions.AvailableForFinish.FirstOrDefault( - condition => condition.ConditionType == "SellItemToTrader" + .Conditions.AvailableForFinish.FirstOrDefault(condition => condition.ConditionType == "SellItemToTrader" ); // Quest doesnt have a sellItemToTrader condition, nothing to do @@ -372,8 +368,7 @@ public class TradeHelper( foreach (var itemSoldToTrader in sellRequest.Items) { // Get sold items' details from profile - var itemDetails = profileWithItemsToSell.Inventory.Items.FirstOrDefault( - inventoryItem => inventoryItem.Id == itemSoldToTrader.Id + var itemDetails = profileWithItemsToSell.Inventory.Items.FirstOrDefault(inventoryItem => inventoryItem.Id == itemSoldToTrader.Id ); if (itemDetails is null) { diff --git a/Libraries/SPTarkov.Server.Core/Helpers/TraderAssortHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/TraderAssortHelper.cs index 06fb3621..3fb1267e 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/TraderAssortHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/TraderAssortHelper.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Helpers; @@ -23,7 +23,6 @@ public class TraderAssortHelper( PaymentHelper _paymentHelper, RagfairAssortGenerator _ragfairAssortGenerator, RagfairOfferGenerator _ragfairOfferGenerator, - TraderAssortService _traderAssortService, LocalisationService _localisationService, TraderPurchasePersisterService _traderPurchasePersisterService, TraderHelper _traderHelper, @@ -133,9 +132,8 @@ public class TraderAssortHelper( /// Item TPLs the assort should not have protected void RemoveItemsFromAssort(TraderAssort assortToFilter, HashSet itemsTplsToRemove) { - assortToFilter.Items = assortToFilter.Items.Where( - item => - item.ParentId == "hideout" && itemsTplsToRemove.Contains(item.Template) + assortToFilter.Items = assortToFilter.Items.Where(item => + item.ParentId == "hideout" && itemsTplsToRemove.Contains(item.Template) ) .ToList(); } @@ -225,6 +223,6 @@ public class TraderAssortHelper( /// array of Items protected List GetPristineTraderAssorts(string traderId) { - return _cloner.Clone(_traderAssortService.GetPristineTraderAssort(traderId).Items); + return _cloner.Clone(_traderHelper.GetTraderAssortsByTraderId(traderId).Items); } } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/TraderHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/TraderHelper.cs index e2a3917b..8b7152e8 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/TraderHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/TraderHelper.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -8,8 +10,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -238,7 +238,7 @@ public class TraderHelper( foreach (var suitId in clothingIds) { - if (!fullProfile.CustomisationUnlocks.Exists((customisation) => customisation.Id == suitId)) + if (!fullProfile.CustomisationUnlocks.Exists(customisation => customisation.Id == suitId)) { // Clothing item doesn't exist in profile, add it fullProfile.CustomisationUnlocks.Add(new CustomisationStorage @@ -403,7 +403,7 @@ public class TraderHelper( return null; } - return _randomUtil.GetInt((int) traderDetails.Seconds.Min, (int) traderDetails.Seconds.Max); + return _randomUtil.GetInt(traderDetails.Seconds.Min, traderDetails.Seconds.Max); } public TraderLoyaltyLevel GetLoyaltyLevel(string traderID, PmcData pmcData) @@ -629,7 +629,8 @@ public class TraderHelper( public string GetValidTraderIdByEnumValue(string traderEnumValue) { var traderId = _databaseService.GetTraders(); - var id = traderId.FirstOrDefault(x => x.Value.Base.Id == traderEnumValue || string.Equals(x.Value.Base.Nickname, traderEnumValue, StringComparison.OrdinalIgnoreCase)).Key; + var id = traderId.FirstOrDefault(x => + x.Value.Base.Id == traderEnumValue || string.Equals(x.Value.Base.Nickname, traderEnumValue, StringComparison.OrdinalIgnoreCase)).Key; return id; } diff --git a/Libraries/SPTarkov.Server.Core/Helpers/WeatherHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/WeatherHelper.cs index 4d6658a5..6121feaa 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/WeatherHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/WeatherHelper.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Models.Enums; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; @@ -28,7 +28,7 @@ public class WeatherHelper( var twentyFourHoursMilliseconds = _timeUtil.GetHoursAsSeconds(24) * 1000; var currentTimestampMilliSeconds = timestamp.HasValue ? timestamp ?? 0 - : _timeUtil.GetTimeStampFromEpoch(); + : _timeUtil.GetTimeStamp(); return _timeUtil.GetDateTimeFromTimeStamp( (long) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/WeightedRandomHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/WeightedRandomHelper.cs index 397bcd6a..c95f68f7 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/WeightedRandomHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/WeightedRandomHelper.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Spt.Helper; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Helpers; diff --git a/Libraries/SPTarkov.Server.Core/Loaders/BundleLoader.cs b/Libraries/SPTarkov.Server.Core/Loaders/BundleLoader.cs index 74b46715..9eb63616 100644 --- a/Libraries/SPTarkov.Server.Core/Loaders/BundleLoader.cs +++ b/Libraries/SPTarkov.Server.Core/Loaders/BundleLoader.cs @@ -1,181 +1,182 @@ using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -namespace SPTarkov.Server.Core.Loaders +namespace SPTarkov.Server.Core.Loaders; + +/* { - /* + "ModPath" : "/user/mods/Mod3", + "FileName" : "assets/content/weapons/usable_items/item_bottle/textures/client_assets.bundle", + "Bundle" : { + "key" : "assets/content/weapons/usable_items/item_bottle/textures/client_assets.bundle", + "dependencyKeys" : [ ] + }, + "Crc" : 1030040371, + "Dependencies" : [ ] +} */ +public class BundleInfo +{ + public BundleInfo() { - "ModPath" : "/user/mods/Mod3", - "FileName" : "assets/content/weapons/usable_items/item_bottle/textures/client_assets.bundle", - "Bundle" : { - "key" : "assets/content/weapons/usable_items/item_bottle/textures/client_assets.bundle", - "dependencyKeys" : [ ] - }, - "Crc" : 1030040371, - "Dependencies" : [ ] - } */ - public class BundleInfo - { - public string? ModPath - { - get; - set; - } - - public string FileName - { - get; - set; - } - - public BundleManifestEntry Bundle - { - get; - set; - } - - public uint Crc - { - get; - set; - } - - public List Dependencies - { - get; - set; - } - - public BundleInfo() {} - - public BundleInfo( - string modPath, - BundleManifestEntry bundle, - uint bundleHash) - { - ModPath = modPath; - FileName = bundle.Key; - Bundle = bundle; - Crc = bundleHash; - Dependencies = bundle?.DependencyKeys ?? []; - } } - [Injectable(InjectionType.Singleton)] - public class BundleLoader + public BundleInfo( + string modPath, + BundleManifestEntry bundle, + uint bundleHash) { - private readonly ISptLogger _logger; - private readonly HashUtil _hashUtil; - private readonly JsonUtil _jsonUtil; - private readonly FileUtil _fileUtil; - private readonly BundleHashCacheService _bundleHashCacheService; - private readonly InMemoryCacheService _inMemoryCacheService; - private readonly ICloner _cloner; - private readonly Dictionary _bundles = new Dictionary(); + ModPath = modPath; + FileName = bundle.Key; + Bundle = bundle; + Crc = bundleHash; + Dependencies = bundle?.DependencyKeys ?? []; + } - public BundleLoader( - ISptLogger logger, - HashUtil hashUtil, - JsonUtil jsonUtil, - FileUtil fileUtil, - BundleHashCacheService bundleHashCacheService, - InMemoryCacheService inMemoryCacheService, - ICloner cloner) + public string? ModPath + { + get; + set; + } + + public string FileName + { + get; + set; + } + + public BundleManifestEntry Bundle + { + get; + set; + } + + public uint Crc + { + get; + set; + } + + public List Dependencies + { + get; + set; + } +} + +[Injectable(InjectionType.Singleton)] +public class BundleLoader +{ + private readonly BundleHashCacheService _bundleHashCacheService; + private readonly Dictionary _bundles = new(); + private readonly ICloner _cloner; + private readonly FileUtil _fileUtil; + private readonly HashUtil _hashUtil; + private readonly InMemoryCacheService _inMemoryCacheService; + private readonly JsonUtil _jsonUtil; + private readonly ISptLogger _logger; + + public BundleLoader( + ISptLogger logger, + HashUtil hashUtil, + JsonUtil jsonUtil, + FileUtil fileUtil, + BundleHashCacheService bundleHashCacheService, + InMemoryCacheService inMemoryCacheService, + ICloner cloner) + { + _logger = logger; + _hashUtil = hashUtil; + _jsonUtil = jsonUtil; + _fileUtil = fileUtil; + _bundleHashCacheService = bundleHashCacheService; + _inMemoryCacheService = inMemoryCacheService; + _cloner = cloner; + } + + /// + /// Handle singleplayer/bundles + /// + /// List of loaded bundles. + public List GetBundles() + { + var result = new List(); + + foreach (var bundle in _bundles) { - _logger = logger; - _hashUtil = hashUtil; - _jsonUtil = jsonUtil; - _fileUtil = fileUtil; - _bundleHashCacheService = bundleHashCacheService; - _inMemoryCacheService = inMemoryCacheService; - _cloner = cloner; - } - /// - /// Handle singleplayer/bundles - /// - /// List of loaded bundles. - public List GetBundles() - { - var result = new List(); - - foreach (var bundle in _bundles) { - result.Add(bundle.Value); - } - - return result; + result.Add(bundle.Value); } - public BundleInfo? GetBundle(string bundleKey) + return result; + } + + public BundleInfo? GetBundle(string bundleKey) + { + return _cloner.Clone(_bundles.GetValueOrDefault(bundleKey)); + } + + public void AddBundles(string modPath) + { + // modPath should be relative to the server exe - ./user/mods/Mod3 + // TODO: make sure the mod is passing a path that is relative from the server exe + + var modBundlesJson = _fileUtil.ReadFile(Path.Join(Directory.GetCurrentDirectory(), modPath, "bundles.json")); + var modBundles = _jsonUtil.Deserialize(modBundlesJson); + var bundleManifestArr = modBundles?.Manifest; + + foreach (var bundleManifest in bundleManifestArr) { - return _cloner.Clone(_bundles.GetValueOrDefault(bundleKey)); - } + var relativeModPath = modPath.Replace('\\', '/'); - public void AddBundles(string modPath) - { - // modPath should be relative to the server exe - ./user/mods/Mod3 - // TODO: make sure the mod is passing a path that is relative from the server exe + var bundleLocalPath = Path.Join(relativeModPath, "bundles", bundleManifest.Key).Replace('\\', '/'); - var modBundlesJson = _fileUtil.ReadFile(Path.Join(Directory.GetCurrentDirectory(), modPath, "bundles.json")); - var modBundles = _jsonUtil.Deserialize(modBundlesJson); - var bundleManifestArr = modBundles?.Manifest; - - foreach (var bundleManifest in bundleManifestArr) + if (!_bundleHashCacheService.CalculateAndMatchHash(bundleLocalPath)) { - var relativeModPath = modPath.Replace('\\', '/'); - - var bundleLocalPath = Path.Join(relativeModPath, "bundles", bundleManifest.Key).Replace('\\', '/'); - - if (!_bundleHashCacheService.CalculateAndMatchHash(bundleLocalPath)) - { - _bundleHashCacheService.CalculateAndStoreHash(bundleLocalPath); - } - - var bundleHash = _bundleHashCacheService.GetStoredValue(bundleLocalPath); - - AddBundle(bundleManifest.Key, new BundleInfo(relativeModPath, bundleManifest, bundleHash)); + _bundleHashCacheService.CalculateAndStoreHash(bundleLocalPath); } - } - public void AddBundle(string key, BundleInfo bundle) - { - var success = _bundles.TryAdd(key, bundle); - if (!success) - { - _logger.Error($"Unable to add bundle: {key}"); - } + var bundleHash = _bundleHashCacheService.GetStoredValue(bundleLocalPath); + + AddBundle(bundleManifest.Key, new BundleInfo(relativeModPath, bundleManifest, bundleHash)); } } - public record BundleManifest + public void AddBundle(string key, BundleInfo bundle) { - [JsonPropertyName("manifest")] - public List Manifest + var success = _bundles.TryAdd(key, bundle); + if (!success) { - get; set; - } - } - - public record BundleManifestEntry - { - [JsonPropertyName("key")] - public string Key - { - get; - set; - } - - [JsonPropertyName("dependencyKeys")] - public List? DependencyKeys - { - get; - set; + _logger.Error($"Unable to add bundle: {key}"); } } } +public record BundleManifest +{ + [JsonPropertyName("manifest")] + public List Manifest + { + get; + set; + } +} +public record BundleManifestEntry +{ + [JsonPropertyName("key")] + public string Key + { + get; + set; + } + [JsonPropertyName("dependencyKeys")] + public List? DependencyKeys + { + get; + set; + } +} diff --git a/Libraries/SPTarkov.Server.Core/Loaders/PostDBModLoader.cs b/Libraries/SPTarkov.Server.Core/Loaders/PostDBModLoader.cs index 999937c9..fcc8f0b4 100644 --- a/Libraries/SPTarkov.Server.Core/Loaders/PostDBModLoader.cs +++ b/Libraries/SPTarkov.Server.Core/Loaders/PostDBModLoader.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.External; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Utils; namespace SPTarkov.Server.Core.Loaders; diff --git a/Libraries/SPTarkov.Server.Core/Loaders/PostSptModLoader.cs b/Libraries/SPTarkov.Server.Core/Loaders/PostSptModLoader.cs index 7d88b03a..4161e19a 100644 --- a/Libraries/SPTarkov.Server.Core/Loaders/PostSptModLoader.cs +++ b/Libraries/SPTarkov.Server.Core/Loaders/PostSptModLoader.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.DI; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.External; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Loaders; diff --git a/Libraries/SPTarkov.Server.Core/Models/Common/IdWithCount.cs b/Libraries/SPTarkov.Server.Core/Models/Common/IdWithCount.cs index 78e6bf6e..400c8e84 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Common/IdWithCount.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Common/IdWithCount.cs @@ -5,7 +5,7 @@ namespace SPTarkov.Server.Core.Models.Common; public record IdWithCount { /// - /// ID of stack to take money from + /// ID of stack to take money from /// [JsonPropertyName("id")] public string? Id @@ -15,7 +15,7 @@ public record IdWithCount } /// - /// Amount of money to take off player for treatment + /// Amount of money to take off player for treatment /// [JsonPropertyName("count")] public double? Count diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Globals.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Globals.cs index e2b6b92a..572ccfbf 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Globals.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Globals.cs @@ -909,6 +909,12 @@ public record Config get; set; } + [JsonPropertyName("MailItemsExpirationTimeLimitWarning")] + public double? MailItemsExpirationTimeLimitWarning + { + get; + set; + } [JsonPropertyName("BaseLoadTime")] public double? BaseLoadTime @@ -8910,6 +8916,11 @@ public record FenceSettings get; set; } + public double? ScavEquipmentChancePercentThreshold + { + get; + set; + } } public record FenceLevel @@ -9651,7 +9662,7 @@ public record Preset } /// - /// Default presets have this property + /// Default presets have this property /// [JsonPropertyName("_encyclopedia")] public string? Encyclopedia diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs index ff5e2f4f..3f00420d 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Location.cs @@ -7,7 +7,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Common; public record Location { /// - /// Map meta-data + /// Map meta-data /// [JsonPropertyName("base")] public LocationBase? Base @@ -17,7 +17,7 @@ public record Location } /// - /// Loose loot positions and item weights + /// Loose loot positions and item weights /// [JsonPropertyName("looseLoot")] public LazyLoad? LooseLoot @@ -27,7 +27,7 @@ public record Location } /// - /// Static loot item weights + /// Static loot item weights /// [JsonPropertyName("staticLoot")] public LazyLoad>? StaticLoot @@ -37,7 +37,7 @@ public record Location } /// - /// Static container positions and item weights + /// Static container positions and item weights /// [JsonPropertyName("staticContainers")] public LazyLoad? StaticContainers @@ -54,7 +54,7 @@ public record Location } /// - /// All possible static containers on map + their assign groupings + /// All possible static containers on map + their assign groupings /// [JsonPropertyName("statics")] public StaticContainer? Statics @@ -64,7 +64,7 @@ public record Location } /// - /// All possible map extracts + /// All possible map extracts /// [JsonPropertyName("allExtracts")] public Exit[] AllExtracts diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs index 1469fa3f..042a5a5c 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs @@ -107,7 +107,7 @@ public record LocationBase } /// - /// Weighting on how likely a bot will be Easy difficulty + /// Weighting on how likely a bot will be Easy difficulty /// [JsonPropertyName("BotEasy")] public int? BotEasy @@ -117,7 +117,7 @@ public record LocationBase } /// - /// Weighting on how likely a bot will be Hard difficulty + /// Weighting on how likely a bot will be Hard difficulty /// [JsonPropertyName("BotHard")] public int? BotHard @@ -127,7 +127,7 @@ public record LocationBase } /// - /// Weighting on how likely a bot will be Impossible difficulty + /// Weighting on how likely a bot will be Impossible difficulty /// [JsonPropertyName("BotImpossible")] public int? BotImpossible @@ -151,7 +151,7 @@ public record LocationBase } /// - /// Maximum Number of bots that are currently alive/loading/delayed + /// Maximum Number of bots that are currently alive/loading/delayed /// [JsonPropertyName("BotMax")] public int? BotMax @@ -161,7 +161,7 @@ public record LocationBase } /// - /// Is not used in 33420 TODO: still needed? + /// Is not used in 33420 TODO: still needed? /// [JsonPropertyName("BotMaxPlayer")] public int? BotMaxPlayer @@ -171,7 +171,7 @@ public record LocationBase } /// - /// Is not used in 33420 TODO: still needed? + /// Is not used in 33420 TODO: still needed? /// [JsonPropertyName("BotMaxTimePlayer")] public int? BotMaxTimePlayer @@ -181,7 +181,7 @@ public record LocationBase } /// - /// Does not even exist in the client in 33420 TODO: still needed? + /// Does not even exist in the client in 33420 TODO: still needed? /// [JsonPropertyName("BotMaxPvE")] public int? BotMaxPvE @@ -191,7 +191,7 @@ public record LocationBase } /// - /// Weighting on how likely a bot will be Normal difficulty + /// Weighting on how likely a bot will be Normal difficulty /// [JsonPropertyName("BotNormal")] public int? BotNormal @@ -201,7 +201,7 @@ public record LocationBase } /// - /// How many bot slots that need to be open before trying to spawn new bots. + /// How many bot slots that need to be open before trying to spawn new bots. /// [JsonPropertyName("BotSpawnCountStep")] public int? BotSpawnCountStep @@ -211,7 +211,7 @@ public record LocationBase } /// - /// How often to check if bots are spawn-able. In seconds + /// How often to check if bots are spawn-able. In seconds /// [JsonPropertyName("BotSpawnPeriodCheck")] public int? BotSpawnPeriodCheck @@ -221,7 +221,7 @@ public record LocationBase } /// - /// The bot spawn will toggle on and off in intervals of Off(Min/Max) and On(Min/Max) + /// The bot spawn will toggle on and off in intervals of Off(Min/Max) and On(Min/Max) /// [JsonPropertyName("BotSpawnTimeOffMax")] public int? BotSpawnTimeOffMax @@ -252,7 +252,7 @@ public record LocationBase } /// - /// How soon bots will be allowed to spawn + /// How soon bots will be allowed to spawn /// [JsonPropertyName("BotStart")] public int? BotStart @@ -262,7 +262,7 @@ public record LocationBase } /// - /// After this long bots will no longer spawn + /// After this long bots will no longer spawn /// [JsonPropertyName("BotStop")] public int? BotStop @@ -1729,7 +1729,7 @@ public record ColliderProps public record Exit { /// - /// % Chance out of 100 exit will appear in raid + /// % Chance out of 100 exit will appear in raid /// [JsonPropertyName("Chance")] public double? Chance @@ -1955,6 +1955,13 @@ public record Wave set; } + [JsonPropertyName("KeepZoneOnSpawn")] + public bool? KeepZoneOnSpawn + { + get; + set; + } + [JsonPropertyName("SpawnPoints")] public string? SpawnPoints { @@ -2013,7 +2020,7 @@ public record Wave } /// - /// OPTIONAL - Needs to be unique - Used by custom wave service to ensure same wave isnt added multiple times + /// OPTIONAL - Needs to be unique - Used by custom wave service to ensure same wave isnt added multiple times /// [JsonPropertyName("sptId")] public string? SptId @@ -2030,7 +2037,7 @@ public record Wave } /// - /// 'pve' and/or 'regular' + /// 'pve' and/or 'regular' /// [JsonPropertyName("SpawnMode")] public List? SpawnMode diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LooseLoot.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LooseLoot.cs index bfd2f4ec..83996d3c 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LooseLoot.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LooseLoot.cs @@ -222,6 +222,7 @@ public record LooseLootItemDistribution public record ComposedKey { private string? _key; + [JsonPropertyName("key")] public string? Key { diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/PmcData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/PmcData.cs index 5118d7b3..282b8f3b 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/PmcData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/PmcData.cs @@ -1,4 +1,5 @@ -using System.Text.Json.Serialization; +using System.ComponentModel; +using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Utils.Json.Converters; @@ -20,7 +21,10 @@ public record PmcData : BotBase set; } - public object CheckedChambers + /// + /// Returns the list of IDs of the weapons, which the player has checked the chamber of in the last raid. + /// + public List CheckedChambers { get; set; @@ -41,7 +45,7 @@ public record PostRaidStats } /// - /// Only found in profile we get from client post raid + /// Only found in profile we get from client post raid /// [JsonPropertyName("Arena")] public EftStats? Arena diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs index 1e7a5411..ced49d93 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs @@ -25,7 +25,7 @@ public record BotBase } /// - /// SPT property - use to store player id - TODO - move to AID ( account id as guid of choice) + /// SPT property - use to store player id - TODO - move to AID ( account id as guid of choice) /// [JsonPropertyName("sessionId")] public string? SessionId @@ -150,7 +150,7 @@ public record BotBase } /// - /// Achievement id and timestamp + /// Achievement id and timestamp /// [JsonPropertyName("Achievements")] [JsonConverter(typeof(ArrayToObjectFactoryConverter))] @@ -219,7 +219,7 @@ public record BotBase } /// - /// SPT specific property used during bot generation in raid + /// SPT specific property used during bot generation in raid /// [JsonPropertyName("sptIsPmc")] public bool? IsPmc @@ -233,7 +233,7 @@ public record MoneyTransferLimits { // Resets every 24 hours in live /// - /// TODO: Implement + /// TODO: Implement /// [JsonPropertyName("nextResetTime")] public double? NextResetTime @@ -286,8 +286,9 @@ public record TaskConditionCounter get; set; } + /// - /// Quest id + /// Quest id /// [JsonPropertyName("sourceId")] public string? SourceId @@ -857,7 +858,7 @@ public record BotBaseInventory } /// - /// Key is hideout area enum numeric as string e.g. "24", value is area _id + /// Key is hideout area enum numeric as string e.g. "24", value is area _id /// [JsonIgnore(Condition = JsonIgnoreCondition.Never)] [JsonPropertyName("hideoutAreaStashes")] @@ -1563,7 +1564,7 @@ public record BackendCounter public record InsuredItem { /// - /// Trader ID item was insured by + /// Trader ID item was insured by /// [JsonPropertyName("tid")] public string? TId @@ -1608,7 +1609,7 @@ public record Hideout } /// - /// 32 char hex value + /// 32 char hex value /// public string? Seed { @@ -1693,7 +1694,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Seconds passed of production + /// Seconds passed of production /// public double? Progress { @@ -1702,7 +1703,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Is craft in some state of being worked on by client (crafting/ready to pick up) + /// Is craft in some state of being worked on by client (crafting/ready to pick up) /// [JsonPropertyName("inProgress")] public bool? InProgress @@ -1724,7 +1725,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Seconds needed to fully craft + /// Seconds needed to fully craft /// public double? ProductionTime { @@ -1763,7 +1764,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Used in hideout production.json + /// Used in hideout production.json /// public bool? needFuelForAllProductionTime { @@ -1772,7 +1773,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Used when sending data to client + /// Used when sending data to client /// public bool? NeedFuelForAllProductionTime { @@ -1788,7 +1789,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Some crafts are always inProgress, but need to be reset, e.g. water collector + /// Some crafts are always inProgress, but need to be reset, e.g. water collector /// [JsonPropertyName("sptIsComplete")] public bool? SptIsComplete @@ -1798,7 +1799,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Is the craft a Continuous, e.g. bitcoins/water collector + /// Is the craft a Continuous, e.g. bitcoins/water collector /// [JsonPropertyName("sptIsContinuous")] public bool? SptIsContinuous @@ -1808,7 +1809,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Stores a list of tools used in this craft and whether they're FiR, to give back once the craft is done + /// Stores a list of tools used in this craft and whether they're FiR, to give back once the craft is done /// [JsonPropertyName("sptRequiredTools")] public List? SptRequiredTools @@ -1818,7 +1819,7 @@ public record Production // use this instead of productive and scavcase } /// - /// Craft is cultist circle sacrifice + /// Craft is cultist circle sacrifice /// [JsonPropertyName("sptIsCultistCircle")] public bool? SptIsCultistCircle @@ -1865,7 +1866,7 @@ public record BotHideoutArea } /// - /// Must be integer + /// Must be integer /// [JsonPropertyName("completeTime")] public int? CompleteTime @@ -1976,7 +1977,7 @@ public record Quests } /// - /// Property does not exist in live profile data, but is used by ProfileChanges.questsStatus when sent to client + /// Property does not exist in live profile data, but is used by ProfileChanges.questsStatus when sent to client /// [JsonPropertyName("completedConditions")] public List? CompletedConditions diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotType.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotType.cs index a18a4e1c..0b707f0a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotType.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotType.cs @@ -436,7 +436,7 @@ public record DifficultyCategories public record Experience { /// - /// key = bot difficulty + /// key = bot difficulty /// [JsonPropertyName("aggressorBonus")] public Dictionary? AggressorBonus @@ -453,7 +453,7 @@ public record Experience } /// - /// key = bot difficulty + /// key = bot difficulty /// [JsonPropertyName("reward")] public Dictionary>? Reward @@ -463,7 +463,7 @@ public record Experience } /// - /// key = bot difficulty + /// key = bot difficulty /// [JsonPropertyName("standingForKill")] public Dictionary? StandingForKill @@ -493,7 +493,7 @@ public record Generation public record GenerationData { /// - /// key: number of items, value: weighting + /// key: number of items, value: weighting /// [JsonPropertyName("weights")] public Dictionary? Weights @@ -503,7 +503,7 @@ public record GenerationData } /// - /// Array of item tpls + /// Array of item tpls /// [JsonPropertyName("whitelist")] [JsonConverter(typeof(ArrayToObjectFactoryConverter))] diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs index 7705fc2f..e4a98e80 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs @@ -88,12 +88,20 @@ public record Item get; set; } +#if !DEBUG + [JsonExtensionData] + public Dictionary? ExtensionData + { + get; + set; + } +#endif } public record HideoutItem { /// - /// Hideout inventory id that was used by improvement action + /// Hideout inventory id that was used by improvement action /// [JsonPropertyName("_id")] public string? _Id @@ -168,13 +176,6 @@ public record ItemLocation set; } - [JsonPropertyName("r")] - public object? R - { - get; - set; - } // TODO: Can be string or number - [JsonPropertyName("isSearched")] public bool? IsSearched { @@ -183,14 +184,30 @@ public record ItemLocation } /// - /// SPT property? + /// SPT property? /// [JsonPropertyName("rotation")] - public object? Rotation + public bool? Rotation { get; set; - } // TODO: Can be string or boolean + } + + [JsonPropertyName("r")] + [JsonConverter(typeof(JsonStringEnumConverter))] + public ItemRotation R + { + get; + set; + } +} + +public enum ItemRotation +{ + // Token: 0x0400259F RID: 9631 + Horizontal, + // Token: 0x040025A0 RID: 9632 + Vertical } public record Upd @@ -226,7 +243,7 @@ public record Upd } /// - /// SPT specific property, not made by BSG + /// SPT specific property, not made by BSG /// [JsonPropertyName("sptPresetId")] public string? SptPresetId @@ -362,11 +379,33 @@ public record Upd set; } - public bool? Lockable + public LockableComponent? Lockable { get; set; } +#if !DEBUG + [JsonExtensionData] + public Dictionary? ExtensionData + { + get; + set; + } +#endif +} + +public record LockableKeyComponent +{ + public float? RelativeValue { get; set; } + public int? NumberOfUsages { get; set; } + +} + +public record LockableComponent +{ + public string[]? KeyIds { get; set; } + public bool? Locked { get; set; } + public LockableKeyComponent? KeyComponent { get; set; } } public enum PinLockState @@ -659,7 +698,8 @@ public record UpdDogtag } [JsonPropertyName("Side")] - public object? Side + [JsonConverter(typeof(DogtagSideConverter))] + public DogtagSide? Side { get; set; diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/ProfileTemplate.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/ProfileTemplate.cs index b05c43d4..106ae991 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/ProfileTemplate.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/ProfileTemplate.cs @@ -190,7 +190,7 @@ public record ProfileTraderTemplate } /// - /// How many days is usage of the flea blocked for upon profile creation + /// How many days is usage of the flea blocked for upon profile creation /// [JsonPropertyName("fleaBlockedDays")] public int? FleaBlockedDays @@ -200,7 +200,7 @@ public record ProfileTraderTemplate } /// - /// What traders default to being locked on profile creation + /// What traders default to being locked on profile creation /// [JsonPropertyName("lockedByDefaultOverride")] public List? LockedByDefaultOverride @@ -210,7 +210,7 @@ public record ProfileTraderTemplate } /// - /// What traders should have their clothing unlocked/purchased on creation + /// What traders should have their clothing unlocked/purchased on creation /// [JsonPropertyName("purchaseAllClothingByDefaultForTrader")] public List? PurchaseAllClothingByDefaultForTrader diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Quest.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Quest.cs index 3f7ba023..6244b47b 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Quest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Quest.cs @@ -1,4 +1,3 @@ -using System.Text.Json; using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Utils.Json; @@ -180,11 +179,11 @@ public record Quest /// Becomes 'AppearStatus' inside client /// [JsonPropertyName("status")] - public object? Status + public int? Status { get; set; - } // TODO: string | number + } [JsonPropertyName("KeyQuest")] public bool? KeyQuest @@ -448,11 +447,11 @@ public record QuestCondition } [JsonPropertyName("type")] - public object? Type + public string? Type { get; set; - } // TODO: boolean | string + } [JsonPropertyName("status")] public List? Status diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/RepeatableQuests.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/RepeatableQuests.cs index caeb35d3..dc66508f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/RepeatableQuests.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/RepeatableQuests.cs @@ -220,7 +220,7 @@ public record PmcDataRepeatableQuest } /// - /// What it costs to reset: QuestId, ChangeRequirement. Redundant to change requirements within RepeatableQuest + /// What it costs to reset: QuestId, ChangeRequirement. Redundant to change requirements within RepeatableQuest /// [JsonIgnore(Condition = JsonIgnoreCondition.Never)] [JsonPropertyName("changeRequirement")] @@ -265,7 +265,7 @@ public record ChangeRequirement public record ChangeCost { /// - /// What item it will take to reset daily + /// What item it will take to reset daily /// [JsonPropertyName("templateId")] public string? TemplateId @@ -275,7 +275,7 @@ public record ChangeCost } /// - /// Amount of item needed to reset + /// Amount of item needed to reset /// [JsonPropertyName("count")] public int? Count diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Reward.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Reward.cs index a1634eb2..83ae82ec 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Reward.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Reward.cs @@ -56,7 +56,7 @@ public record Reward } /// - /// Hideout area id + /// Hideout area id /// [JsonPropertyName("traderId")] public object? TraderId @@ -94,7 +94,7 @@ public record Reward } /// - /// Game editions whitelisted to get reward + /// Game editions whitelisted to get reward /// [JsonPropertyName("availableInGameEditions")] public HashSet? AvailableInGameEditions @@ -104,7 +104,7 @@ public record Reward } /// - /// Game editions blacklisted from getting reward + /// Game editions blacklisted from getting reward /// [JsonPropertyName("notAvailableInGameEditions")] public HashSet? NotAvailableInGameEditions diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/TemplateItem.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/TemplateItem.cs index 1cb4cc5f..2406841a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/TemplateItem.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/TemplateItem.cs @@ -1,5 +1,3 @@ -using System.Security.Cryptography; -using System.Text; using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Utils.Json.Converters; @@ -14,6 +12,8 @@ public record TemplateItem private string? _parent; + private string _prototype; + private string? _type; [JsonPropertyName("_id")] @@ -75,7 +75,6 @@ public record TemplateItem set; } - private string _prototype; [JsonPropertyName("_proto")] public string? Prototype { @@ -92,6 +91,9 @@ public record TemplateItem public record Props { + private string _backgroundColor; + + private string _itemSound; private string? _metascoreGroup; private string? _rarityPvE; @@ -161,7 +163,13 @@ public record Props set; } - private string _backgroundColor; + [JsonPropertyName("WeightMultipliers")] + public object? WeightMultipliers + { + get; + set; + } + [JsonPropertyName("BackgroundColor")] public string? BackgroundColor { @@ -221,7 +229,6 @@ public record Props set; } - private string _itemSound; [JsonPropertyName("ItemSound")] public string? ItemSound { @@ -270,6 +277,27 @@ public record Props set; } + [JsonPropertyName("ParticleCapacity")] + public double? ParticleCapacity + { + get; + set; + } + + [JsonPropertyName("ParticleDuration")] + public double? ParticleDuration + { + get; + set; + } + + [JsonPropertyName("ParticleSize")] + public double? ParticleSize + { + get; + set; + } + [JsonPropertyName("ExaminedByDefault")] public bool? ExaminedByDefault { @@ -277,6 +305,20 @@ public record Props set; } + [JsonPropertyName("ExplosionRadius")] + public double? ExplosionRadius + { + get; + set; + } + + [JsonPropertyName("ExplosionStrength")] + public double? ExplosionStrength + { + get; + set; + } + [JsonPropertyName("ExamineTime")] public double? ExamineTime { @@ -497,6 +539,34 @@ public record Props set; } + [JsonPropertyName("ComputableUnitDamage")] + public XY? ComputableUnitDamage + { + get; + set; + } + + [JsonPropertyName("ComputableUnitSize")] + public double? ComputableUnitSize + { + get; + set; + } + + [JsonPropertyName("ComputableUnitType")] + public string? ComputableUnitType + { + get; + set; + } + + [JsonPropertyName("CanUnloadAmmoByPlayer")] + public bool? CanUnloadAmmoByPlayer + { + get; + set; + } + [JsonPropertyName("CanRequireOnRagfair")] public bool? CanRequireOnRagfair { @@ -708,6 +778,13 @@ public record Props set; } + [JsonPropertyName("UseAltMountBone")] + public bool? UseAltMountBone + { + get; + set; + } + [JsonPropertyName("Velocity")] public double? Velocity { @@ -1474,6 +1551,12 @@ public record Props get; set; } + [JsonPropertyName("ResetAfterShot")] + public bool? ResetAfterShot + { + get; + set; + } [JsonPropertyName("durabSpawnMin")] public double? DurabSpawnMin @@ -2801,6 +2884,13 @@ public record Props set; } + [JsonPropertyName("ArmingTime")] + public double? ArmingTime + { + get; + set; + } + [JsonPropertyName("ProjectileCount")] public double? ProjectileCount { @@ -2808,6 +2898,13 @@ public record Props set; } + [JsonPropertyName("PropagationSpeed")] + public double? PropagationSpeed + { + get; + set; + } + [JsonPropertyName("PenetrationChanceObstacle")] public double? PenetrationChanceObstacle { @@ -2927,13 +3024,6 @@ public record Props set; } - [JsonPropertyName("ExplosionStrength")] - public double? ExplosionStrength - { - get; - set; - } - [JsonPropertyName("MinExplosionDistance")] public double? MinExplosionDistance { @@ -2942,7 +3032,7 @@ public record Props } [JsonPropertyName("PenetrationPowerDiviation")] - public double? MinExplosiPenetrationPowerDiviationonDistance + public double? PenetrationPowerDiviation { get; set; @@ -3012,6 +3102,27 @@ public record Props set; } + [JsonPropertyName("BackBlastConeAngle")] + public double? BackBlastConeAngle + { + get; + set; + } + + [JsonPropertyName("BackblastDamage")] + public XY? BackblastDamage + { + get; + set; + } + + [JsonPropertyName("BackblastDistance")] + public double? BackblastDistance + { + get; + set; + } + [JsonPropertyName("Blindness")] public XYZ? Blindness { diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Trader.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Trader.cs index 83ce5e3f..9c69b49f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Trader.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Trader.cs @@ -422,8 +422,9 @@ public record TraderRepair get; set; } + /// - /// Doesn't exist in client object + /// Doesn't exist in client object /// [JsonPropertyName("excluded_id_list")] public List? ExcludedIdList diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Dialog/ChatServer.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Dialog/ChatServer.cs index aed655b6..77e2ad5a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Dialog/ChatServer.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Dialog/ChatServer.cs @@ -61,7 +61,7 @@ public record ChatServer } /// - /// Possibly removed + /// Possibly removed /// [JsonPropertyName("IsDeveloper")] public bool? IsDeveloper diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameConfigResponse.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameConfigResponse.cs index 4cc80109..5c9ec5d0 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameConfigResponse.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameConfigResponse.cs @@ -68,7 +68,7 @@ public record GameConfigResponse } /// - /// Total in game time + /// Total in game time /// [JsonPropertyName("totalInGame")] public double? TotalInGame diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Health/HealthTreatmentRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Health/HealthTreatmentRequestData.cs index 8d5f8f7a..29af252b 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Health/HealthTreatmentRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Health/HealthTreatmentRequestData.cs @@ -14,8 +14,8 @@ public record HealthTreatmentRequestData : InventoryBaseActionRequestData } /// - /// Id of stack to take money from
- /// Amount of money to take off player for treatment + /// Id of stack to take money from
+ /// Amount of money to take off player for treatment ///
[JsonPropertyName("items")] public List? Items @@ -124,7 +124,7 @@ public record BodyPartEffects } /// - /// Effects in array to be removed + /// Effects in array to be removed /// public List Effects { diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HandleQTEEventRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HandleQTEEventRequestData.cs index 332f277d..479e5497 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HandleQTEEventRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HandleQTEEventRequestData.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Hideout; public record HandleQTEEventRequestData : InventoryBaseActionRequestData { /// - /// true if QTE was successful, otherwise false + /// true if QTE was successful, otherwise false /// [JsonPropertyName("results")] public List? Results @@ -16,7 +16,7 @@ public record HandleQTEEventRequestData : InventoryBaseActionRequestData } /// - /// Id of the QTE object used from db/hideout/qte.json + /// Id of the QTE object used from db/hideout/qte.json /// [JsonPropertyName("id")] public string? Id diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutArea.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutArea.cs index cc7ba41a..fdd1e838 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutArea.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutArea.cs @@ -132,7 +132,7 @@ public record Stage } /// - /// Containers inventory tpl + /// Containers inventory tpl /// [JsonPropertyName("container")] public string? Container diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs index 0556887a..5edbddd0 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs @@ -8,7 +8,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Hideout; public record HideoutImproveAreaRequestData : InventoryBaseActionRequestData { /// - /// Hideout area id from areas.json + /// Hideout area id from areas.json /// [JsonPropertyName("id")] public string? AreaId diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutProduction.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutProduction.cs index 0fb5e73e..59ad946f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutProduction.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Hideout/HideoutProduction.cs @@ -59,7 +59,7 @@ public record HideoutProduction } /// - /// Tpl of item being crafted + /// Tpl of item being crafted /// [JsonPropertyName("endProduct")] public string? EndProduct diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemRequestData.cs index ad38660e..55f320ce 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemRequestData.cs @@ -5,7 +5,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Inventory; public record AddItemRequestData { /// - /// Trader id + /// Trader id /// [JsonPropertyName("tid")] public string? TraderId diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemTempObject.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemTempObject.cs index 2acab7f1..706963d7 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemTempObject.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemTempObject.cs @@ -34,7 +34,7 @@ public record AddItemTempObject } /// - /// Container item will be placed in - stash or sorting table + /// Container item will be placed in - stash or sorting table /// [JsonPropertyName("containerId")] public string? ContainerIdentifier diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemsDirectRequest.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemsDirectRequest.cs index f67b11ac..90a8360f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemsDirectRequest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/AddItemsDirectRequest.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Inventory; public record AddItemsDirectRequest { /// - /// Item and child mods to add to player inventory + /// Item and child mods to add to player inventory /// [JsonPropertyName("itemsWithModsToAdd")] public List>? ItemsWithModsToAdd @@ -21,8 +21,9 @@ public record AddItemsDirectRequest get; set; } + /// - /// Runs after EACH item with children is added + /// Runs after EACH item with children is added /// [JsonPropertyName("callback")] public Action? Callback @@ -30,8 +31,9 @@ public record AddItemsDirectRequest get; set; } + /// - /// Should sorting table be used when no space found in stash + /// Should sorting table be used when no space found in stash /// [JsonPropertyName("useSortingTable")] public bool? UseSortingTable diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/InventorySplitRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/InventorySplitRequestData.cs index 326bbb81..9bdf1451 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/InventorySplitRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/InventorySplitRequestData.cs @@ -5,7 +5,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Inventory; public record InventorySplitRequestData : InventoryBaseActionRequestData { /// - /// Id of item to split + /// Id of item to split /// [JsonPropertyName("splitItem")] public string? SplitItem @@ -15,7 +15,7 @@ public record InventorySplitRequestData : InventoryBaseActionRequestData } /// - /// Id of new item stack + /// Id of new item stack /// [JsonPropertyName("newItem")] public string? NewItem @@ -25,7 +25,7 @@ public record InventorySplitRequestData : InventoryBaseActionRequestData } /// - /// Destination new item will be placed in + /// Destination new item will be placed in /// [JsonPropertyName("container")] public Container? Container diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/PinOrLockItemRequest.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/PinOrLockItemRequest.cs index 9f1dae03..76eb25aa 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/PinOrLockItemRequest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Inventory/PinOrLockItemRequest.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Inventory; public record PinOrLockItemRequest : InventoryBaseActionRequestData { /// - /// Id of item being pinned + /// Id of item being pinned /// [JsonPropertyName("Item")] public string? Item @@ -16,7 +16,7 @@ public record PinOrLockItemRequest : InventoryBaseActionRequestData } /// - /// "Pinned"/"Locked"/"Free" + /// "Pinned"/"Locked"/"Free" /// [JsonPropertyName("State")] [JsonConverter(typeof(JsonStringEnumConverter))] diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterBase.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterBase.cs index 976b5e4d..8ffded38 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterBase.cs @@ -114,7 +114,7 @@ public record ProfileChange } /// - /// Hideout area improvement id + /// Hideout area improvement id /// [JsonPropertyName("improvements")] public Dictionary? Improvements @@ -307,7 +307,7 @@ public record ItemChanges } /// -/// Related to TraderInfo +/// Related to TraderInfo /// public record TraderData { diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterResponse.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterResponse.cs index 2963ae0c..d174f6f7 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterResponse.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/ItemEvent/ItemEventRouterResponse.cs @@ -1,6 +1,7 @@ namespace SPTarkov.Server.Core.Models.Eft.ItemEvent; + /// -/// An object sent back to the game client that contains alterations the client must make to ensure server/client are in sync +/// An object sent back to the game client that contains alterations the client must make to ensure server/client are in sync /// public record ItemEventRouterResponse : ItemEventRouterBase { diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Location/GetAirdropLootResponse.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Location/GetAirdropLootResponse.cs index a423236f..7d0f48be 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Location/GetAirdropLootResponse.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Location/GetAirdropLootResponse.cs @@ -7,7 +7,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Location; public record GetAirdropLootResponse { /// - /// The type of airdrop + /// The type of airdrop /// [JsonPropertyName("icon")] public AirdropTypeEnum? Icon diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Match/StartLocalRaidRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Match/StartLocalRaidRequestData.cs index fc09bdd9..5d1a8165 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Match/StartLocalRaidRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Match/StartLocalRaidRequestData.cs @@ -56,7 +56,7 @@ public record StartLocalRaidRequestData : IRequestData } /// - /// Should loot generation be skipped, default false + /// Should loot generation be skipped, default false /// [JsonPropertyName("sptSkipLootGeneration")] public bool? ShouldSkipLootGeneration diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/PresetBuild/PresetBuildActionRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/PresetBuild/PresetBuildActionRequestData.cs index f399c9dd..a8b255f8 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/PresetBuild/PresetBuildActionRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/PresetBuild/PresetBuildActionRequestData.cs @@ -21,7 +21,7 @@ public record PresetBuildActionRequestData : IRequestData } /// - /// name of preset given by player + /// name of preset given by player /// [JsonPropertyName("Name")] public string? Name diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/SptProfile.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/SptProfile.cs index ceaa522c..9a12fbd9 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/SptProfile.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Profile/SptProfile.cs @@ -24,7 +24,7 @@ public record SptProfile } /// - /// No longer used as of 4.0.0 + /// No longer used as of 4.0.0 /// [Obsolete("Replaced with CustomisationUnlocks")] [JsonPropertyName("suits")] @@ -77,7 +77,7 @@ public record SptProfile } /// - /// Assort purchases made by player since last trader refresh + /// Assort purchases made by player since last trader refresh /// [JsonPropertyName("traderPurchases")] public Dictionary?>? TraderPurchases @@ -87,7 +87,7 @@ public record SptProfile } /// - /// List of friend profile IDs + /// List of friend profile IDs /// [JsonPropertyName("friends")] public List? FriendProfileIds @@ -97,7 +97,7 @@ public record SptProfile } /// - /// Stores profile-related customisation, e.g. clothing / hideout walls / floors + /// Stores profile-related customisation, e.g. clothing / hideout walls / floors /// [JsonPropertyName("customisationUnlocks")] public List? CustomisationUnlocks @@ -127,7 +127,7 @@ public record TraderPurchaseData public record Info { /// - /// main profile id + /// main profile id /// [JsonPropertyName("id")] public string? ProfileId @@ -197,7 +197,7 @@ public record Characters } /// -/// used by profile.userbuilds +/// used by profile.userbuilds /// public record UserBuilds { @@ -331,7 +331,7 @@ public record MagazineTemplateAmmoItem } /// -/// Used by defaultEquipmentPresets.json +/// Used by defaultEquipmentPresets.json /// public record DefaultEquipmentPreset : EquipmentBuild { @@ -704,7 +704,7 @@ public record UpdatableChatMember public record Spt { /// - /// What version of SPT was this profile made with + /// What version of SPT was this profile made with /// [JsonPropertyName("version")] public string? Version @@ -714,7 +714,7 @@ public record Spt } /// - /// What mods has this profile loaded at any point in time + /// What mods has this profile loaded at any point in time /// [JsonPropertyName("mods")] public List? Mods @@ -724,7 +724,7 @@ public record Spt } /// - /// What gifts has this profile received and how many + /// What gifts has this profile received and how many /// [JsonPropertyName("receivedGifts")] public List? ReceivedGifts @@ -734,7 +734,7 @@ public record Spt } /// - /// item TPLs blacklisted from being sold on flea for this profile + /// item TPLs blacklisted from being sold on flea for this profile /// [JsonPropertyName("blacklistedItemTpls")] public HashSet? BlacklistedItemTemplates @@ -744,7 +744,7 @@ public record Spt } /// - /// key: daily type + /// key: daily type /// [JsonPropertyName("freeRepeatableRefreshUsedCount")] public Dictionary? FreeRepeatableRefreshUsedCount @@ -754,7 +754,7 @@ public record Spt } /// - /// When was a profile migrated, value is timestamp + /// When was a profile migrated, value is timestamp /// [JsonPropertyName("migrations")] public Dictionary? Migrations @@ -764,7 +764,7 @@ public record Spt } /// - /// Cultist circle rewards received that are one time use, key (md5) is a combination of sacrificed + reward items + /// Cultist circle rewards received that are one time use, key (md5) is a combination of sacrificed + reward items /// [JsonPropertyName("cultistRewards")] public Dictionary? CultistRewards diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/CompleteQuestRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/CompleteQuestRequestData.cs index c7de6c3a..69acb336 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/CompleteQuestRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/CompleteQuestRequestData.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Eft.Quests; public record CompleteQuestRequestData : InventoryBaseActionRequestData { /// - /// Quest Id + /// Quest Id /// [JsonPropertyName("qid")] public string? QuestId diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Ragfair/RagfairOffer.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Ragfair/RagfairOffer.cs index 94ab081a..e9c1ebb6 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Ragfair/RagfairOffer.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Ragfair/RagfairOffer.cs @@ -65,7 +65,7 @@ public record RagfairOffer } /// - /// Handbook price + /// Handbook price /// [JsonPropertyName("itemsCost")] public double? ItemsCost @@ -75,7 +75,7 @@ public record RagfairOffer } /// - /// Rouble price per item + /// Rouble price per item /// [JsonPropertyName("requirementsCost")] public double? RequirementsCost @@ -99,7 +99,7 @@ public record RagfairOffer } /// - /// True when offer is sold as pack + /// True when offer is sold as pack /// [JsonPropertyName("sellInOnePiece")] public bool? SellInOnePiece @@ -109,7 +109,7 @@ public record RagfairOffer } /// - /// Rouble price - same as requirementsCost + /// Rouble price - same as requirementsCost /// [JsonPropertyName("summaryCost")] public double? SummaryCost @@ -126,7 +126,7 @@ public record RagfairOffer } /// - /// Trader only + /// Trader only /// [JsonPropertyName("unlimitedCount")] public bool? UnlimitedCount @@ -165,7 +165,7 @@ public record RagfairOffer } /// - /// Tightly bound to offer.items[0].upd.stackObjectsCount + /// Tightly bound to offer.items[0].upd.stackObjectsCount /// [JsonPropertyName("quantity")] public int? Quantity diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Repair/RepairActionDataRequest.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Repair/RepairActionDataRequest.cs index 68ddab30..ad3e62f6 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Repair/RepairActionDataRequest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Repair/RepairActionDataRequest.cs @@ -13,7 +13,7 @@ public record RepairActionDataRequest : InventoryBaseActionRequestData } /// - /// item to repair + /// item to repair /// [JsonPropertyName("target")] public string? Target @@ -26,7 +26,7 @@ public record RepairActionDataRequest : InventoryBaseActionRequestData public record RepairKitsInfo { /// - /// id of repair kit to use + /// id of repair kit to use /// [JsonPropertyName("_id")] public string? Id @@ -36,7 +36,7 @@ public record RepairKitsInfo } /// - /// amount of units to reduce kit by + /// amount of units to reduce kit by /// [JsonPropertyName("count")] public float? Count diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Trade/ProcessBuyTradeRequestData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Trade/ProcessBuyTradeRequestData.cs index 937101ad..56f9c9de 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Trade/ProcessBuyTradeRequestData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Trade/ProcessBuyTradeRequestData.cs @@ -27,7 +27,7 @@ public record ProcessBuyTradeRequestData : ProcessBaseTradeRequestData } /// - /// Id of stack to take money from, is money tpl when Action is `SptInsure` + /// Id of stack to take money from, is money tpl when Action is `SptInsure` /// [JsonPropertyName("scheme_items")] public List? SchemeItems diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Weather/WeatherData.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Weather/WeatherData.cs index 792328c7..4faccd92 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Weather/WeatherData.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Weather/WeatherData.cs @@ -72,7 +72,7 @@ public record Weather } /// - /// 1 - 3 light rain, 3+ 'rain' + /// 1 - 3 light rain, 3+ 'rain' /// [JsonPropertyName("rain")] public double? Rain @@ -103,7 +103,7 @@ public record Weather } /// - /// < -0.4 = clear day + /// < -0.4 = clear day /// [JsonPropertyName("cloud")] public double? Cloud diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/BodyPartColliderType.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/BodyPartColliderType.cs index e93b9e22..00b081a0 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Enums/BodyPartColliderType.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/BodyPartColliderType.cs @@ -1,33 +1,32 @@ -namespace SPTarkov.Server.Core.Models.Enums +namespace SPTarkov.Server.Core.Models.Enums; + +public enum BodyPartColliderType { - public enum BodyPartColliderType - { - None = -1, - HeadCommon, - RibcageUp, - Pelvis = 3, - LeftUpperArm, - LeftForearm, - RightUpperArm, - RightForearm, - LeftThigh, - LeftCalf, - RightThigh, - RightCalf, - ParietalHead, - BackHead, - Ears, - Eyes, - Jaw, - NeckFront, - NeckBack, - RightSideChestUp, - LeftSideChestUp, - SpineTop, - SpineDown, - PelvisBack, - RightSideChestDown, - LeftSideChestDown, - RibcageLow - } + None = -1, + HeadCommon, + RibcageUp, + Pelvis = 3, + LeftUpperArm, + LeftForearm, + RightUpperArm, + RightForearm, + LeftThigh, + LeftCalf, + RightThigh, + RightCalf, + ParietalHead, + BackHead, + Ears, + Eyes, + Jaw, + NeckFront, + NeckBack, + RightSideChestUp, + LeftSideChestUp, + SpineTop, + SpineDown, + PelvisBack, + RightSideChestDown, + LeftSideChestDown, + RibcageLow } diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/DamageType.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/DamageType.cs index c7f4fa1b..4b48b160 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Enums/DamageType.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/DamageType.cs @@ -1,31 +1,30 @@ -namespace SPTarkov.Server.Core.Models.Enums +namespace SPTarkov.Server.Core.Models.Enums; + +public enum DamageType { - public enum DamageType - { - Undefined = 1, - Fall = 2, - Explosion = 4, - Barbed = 8, - Flame = 16, - GrenadeFragment = 32, - Impact = 64, - Existence = 128, - Medicine = 256, - Bullet = 512, - Melee = 1024, - Landmine = 2048, - Sniper = 4096, - Blunt = 8192, - LightBleeding = 16384, - HeavyBleeding = 32768, - Dehydration = 65536, - Exhaustion = 131072, - RadExposure = 262144, - Stimulator = 524288, - Poison = 1048576, - LethalToxin = 2097152, - Btr = 4194304, - Artillery = 8388608, - Environment = 16777216 - } + Undefined = 1, + Fall = 2, + Explosion = 4, + Barbed = 8, + Flame = 16, + GrenadeFragment = 32, + Impact = 64, + Existence = 128, + Medicine = 256, + Bullet = 512, + Melee = 1024, + Landmine = 2048, + Sniper = 4096, + Blunt = 8192, + LightBleeding = 16384, + HeavyBleeding = 32768, + Dehydration = 65536, + Exhaustion = 131072, + RadExposure = 262144, + Stimulator = 524288, + Poison = 1048576, + LethalToxin = 2097152, + Btr = 4194304, + Artillery = 8388608, + Environment = 16777216 } diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/DogtagSide.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/DogtagSide.cs new file mode 100644 index 00000000..d94e0717 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/DogtagSide.cs @@ -0,0 +1,12 @@ +namespace SPTarkov.Server.Core.Models.Enums; + +public enum DogtagSide +{ + /// + /// This is for the dogtag equipped by the player, which shows up as 0 (integer) on the profile json. + /// + NotApplicable, + + Usec, + Bear +} diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/ItemTpl.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/ItemTpl.cs index 7f4663d3..0f128f8a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Enums/ItemTpl.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/ItemTpl.cs @@ -980,7 +980,7 @@ public static class ItemTpl public const string BARTER_LEGA_MEDAL = "6656560053eaaa7a23349c86"; public const string BARTER_LIGHT_BULB = "5d1b392c86f77425243e98fe"; public const string BARTER_LOCKED_CASE = "6740987b89d5e1ddc603f4f0"; - public const string BARTER_LOCKED_EQUIPMENT_CRATE_BATTLE_PASS_SEASON_0 = "67cad1ec19b006e9e50f44d6"; + public const string BARTER_LOCKED_EQUIPMENT_CRATE_BATTLEPASS_0 = "67cad1ec19b006e9e50f44d6"; public const string BARTER_LOCKED_EQUIPMENT_CRATE_COMMON = "66588b514de4820934746dc6"; public const string BARTER_LOCKED_EQUIPMENT_CRATE_EPIC = "6658285190486915542256c4"; public const string BARTER_LOCKED_EQUIPMENT_CRATE_RARE = "66571bf06a723f7f005a0619"; @@ -1586,6 +1586,7 @@ public static class ItemTpl public const string DRUGS_IBUPROFEN_PAINKILLERS = "5af0548586f7743a532b7e99"; public const string DRUGS_MORPHINE_INJECTOR = "544fb3f34bdc2d03748b456a"; public const string DRUGS_VASELINE_BALM = "5755383e24597772cb798966"; + public const string FACECOVER_ARENA_CUP_SERIES_BALACLAVA = "67f90180f07898267b0a4ed7"; public const string FACECOVER_ASTRONOMER_MASK = "67602a39c8e72a73250de739"; public const string FACECOVER_ATOMIC_DEFENSE_CQCM_BALLISTIC_MASK_DEMON = "67a5c61c7f52620c5b05b4d8"; public const string FACECOVER_ATOMIC_DEFENSE_CQCM_BALLISTIC_MASK_EL_DA_DE_MUERTOS = "67a5c657782ce4655104db16"; @@ -1604,7 +1605,7 @@ public static class ItemTpl public const string FACECOVER_BALACLAVA_FEAR = "67a9ea004fb4a4a8a00d2828"; public const string FACECOVER_BALACLAVA_GREEN = "67a9cc9cf05be177170bcd76"; public const string FACECOVER_BALACLAVA_LUXURY = "67a9cd6ecade15e0f00123b8"; - public const string FACECOVER_BALACLAVA_NOT_TODAY = "67a9cd381fb22063280728a6"; + public const string FACECOVER_BALACLAVA_NOT_NICE = "67a9cd381fb22063280728a6"; public const string FACECOVER_BALACLAVA_RED_NOSE = "67a9e9d04fb4a4a8a00d2826"; public const string FACECOVER_BALACLAVA_RED_ONI = "67a9ea39de7fb0f19e077da6"; public const string FACECOVER_BALACLAVA_SCARS = "67a9ccfff05be177170bcd78"; @@ -1646,7 +1647,9 @@ public static class ItemTpl public const string FACECOVER_HOCKEY_PLAYER_MASK_QUIET = "62a5c41e8ec41a51b34739c3"; public const string FACECOVER_JASON_MASK = "5bd071d786f7747e707b93a3"; public const string FACECOVER_LOWER_HALFMASK = "572b7fa524597762b747ce82"; - public const string FACECOVER_LOWER_HALFMASK_BALACLAVAS_BALACLAVAS = "67a5fa01fafb8efd440694ba"; + public const string FACECOVER_LOWER_HALFMASK_BALACLAVAS = "67a5fa01fafb8efd440694ba"; + public const string FACECOVER_LOWER_HALFMASK_BALACLAVAS_GREEN = "67a5f9c8fafb8efd440694b8"; + public const string FACECOVER_LOWER_HALFMASK_BALACLAVAS_RED = "67a5f9e7f7041a25760dda38"; public const string FACECOVER_LOWER_HALFMASK_EL_DA_DE_MUERTOS = "67a5f989f7041a25760dda36"; public const string FACECOVER_LOWER_HALFMASK_MOSS = "67a5f968fafb8efd440694b6"; public const string FACECOVER_LOWER_HALFMASK_MULTICAM = "67a5f917dfdf568c9009af6b"; @@ -1836,7 +1839,7 @@ public static class ItemTpl public const string FLASHLIGHT_ULTRAFIRE_WF501B = "57d17c5e2459775a5c57d17d"; public const string FLASHLIGHT_ZENIT_2D = "646f62fee779812413011ab7"; public const string FLYER_ALEX_GREEN_POSTER = "675a06b84ff23436160d802f"; - public const string FLYER_ARENA_POSTER = "675a0288c3102563bd01c9c3"; + public const string FLYER_ARENA_POSTER = "675a04c01474133a0d0bb212"; public const string FLYER_ARENA_POSTER_2 = "675a046b8f547d6cae01922e"; public const string FLYER_DEN_OF_WOLVES_POSTER = "675a0eacf905bde03d0f8253"; public const string FLYER_EXODUS_POSTER = "675a0d2d57dd12f0260c4a31"; @@ -1847,11 +1850,13 @@ public static class ItemTpl public const string FLYER_GIRL_POSTER_3 = "6759e6c39422e1708e0e9b81"; public const string FLYER_GIRL_POSTER_4 = "6759e7a44ff23436160d7ff5"; public const string FLYER_GIRL_POSTER_5 = "6759e8b1c3102563bd01c985"; + public const string FLYER_GRENADE_GIRL_POSTER = "67f924adb45d94a2600a8cc8"; public const string FLYER_GUNFIGHT_POSTER = "675a191f67c8eb5cd1035305"; public const string FLYER_HELL_OR_HIGHWATER_POSTER = "675a125caf26c56ee109072a"; public const string FLYER_HIGHWAY_POSTER = "675a0fbbb98bf391510bafcd"; public const string FLYER_I_BEAR_LOOT_POSTER = "6759e07e4ff23436160d7fed"; public const string FLYER_KILLA_AND_TAGILLA_POSTER = "675a04fdb8913ff13e0496bb"; + public const string FLYER_KILLA_FANGIRL_POSTER = "67f924a9154a04c33b0a3c57"; public const string FLYER_LAST_BREATH_POSTER = "679b944d597ba2ed120c3d3c"; public const string FLYER_LAST_FLIGHT_POSTER = "675a1a244ff23436160d8033"; public const string FLYER_RUN_POSTER = "675a1e502eac6c76e104ea1e"; @@ -1864,6 +1869,7 @@ public static class ItemTpl public const string FLYER_THE_AMBUSH_POSTER = "675a202b6aaafea7210915fd"; public const string FLYER_THE_HUNTED_POSTER = "675a20c83fb2de89670113b4"; public const string FLYER_THINGS_SURE_ARE_STRANGE_POSTER = "675a081c1474133a0d0bb214"; + public const string FLYER_UNUSUAL_LEATHER_RIG_POSTER = "67f924b1b07831a6ef0ce317"; public const string FLYER_USEC_POSTER = "675a213ff905bde03d0f8255"; public const string FLYER_VASILY_POSTER = "675a1c129422e1708e0e9baa"; public const string FLYER_WHAT_YOU_SEEK_POSTER = "6759bb94b8913ff13e049669"; @@ -1979,6 +1985,7 @@ public static class ItemTpl public const string GASBLOCK_SVDS_GAS_TUBE = "5c471c842e221615214259b5"; public const string GASBLOCK_VPO101_GAS_TUBE = "5c5039be2e221602b177c9ff"; public const string GRENADE_F1_HAND = "5710c24ad2720bc3458b45a3"; + public const string GRENADE_F1_HAND_GRENADE_REDUCED_DELAY = "67b49e7335dec48e3e05e057"; public const string GRENADE_M18_SMOKE_GRENADE_GREEN = "617aa4dd8166f034d57de9c5"; public const string GRENADE_M67_HAND = "58d3db5386f77426186285a0"; public const string GRENADE_MODEL_7290_FLASH_BANG = "619256e5f8af2c1a4e1f5d92"; @@ -2749,7 +2756,7 @@ public static class ItemTpl public const string LOOTCONTAINER_GROUND_CACHE = "5d6d2b5486f774785c2ba8ea"; public const string LOOTCONTAINER_JACKET_114KEY = "59387ac686f77401442ddd61"; public const string LOOTCONTAINER_JACKET_204KEY = "5914944186f774189e5e76c2"; - public const string LOOTCONTAINER_JACKET_2X2 = "67adf4a95247ac91530fcec7"; + public const string LOOTCONTAINER_JACKET_2X2 = "578f8778245977358849a9b5"; public const string LOOTCONTAINER_JACKET_MACHINERYKEY = "5937ef2b86f77408a47244b3"; public const string LOOTCONTAINER_LAB_TECHNICIAN_BODY = "6582e6c6edf14c4c6023adf2"; public const string LOOTCONTAINER_LONG_WEAPON_BOX = "61aa1e6984ea0800645777f9"; @@ -2763,7 +2770,7 @@ public static class ItemTpl public const string LOOTCONTAINER_RATION_SUPPLY_CRATE = "5d6fd13186f77424ad2a8c69"; public const string LOOTCONTAINER_SAFE = "578f8782245977354405a1e3"; public const string LOOTCONTAINER_SCAV_BODY = "6582e6bb0c3b9823fe6d1840"; - public const string LOOTCONTAINER_TECHNICAL_SUPPLY_CRATE_5X5 = "67adf5f7adc1f43b0702b826"; + public const string LOOTCONTAINER_TECHNICAL_SUPPLY_CRATE_5X5 = "5d6fd45b86f774317075ed43"; public const string LOOTCONTAINER_TOOLBOX_4X3 = "67adf54d1c58bd68b2002ff0"; public const string LOOTCONTAINER_WEAPON_BOX_4X4 = "5909d7cf86f77470ee57d75a"; public const string LOOTCONTAINER_WEAPON_BOX_5X2 = "5909d5ef86f77467974efbd8"; @@ -3620,6 +3627,7 @@ public static class ItemTpl public const string QUEST_PILOT_LOGBOOK = "66c0b90c8398582e4b0c2e27"; public const string QUEST_PUMPING_STATION_OPERATION_REPORT = "619268ad78f4fa33f173dbe5"; public const string QUEST_RADIO_TRANSMITTER_BODY = "6399f54b0a36db13c823ad21"; + public const string QUEST_RECRUITERS_NOTES = "67f3fd9bdb1fbd5add090f96"; public const string QUEST_REF_DIRT = "664fce7a90294949fe2d81cb"; public const string QUEST_SECRET_COMPONENT = "64f5b4f71a5f313cb144c06c"; public const string QUEST_SECURE_FLASH_DRIVE = "59f9ddae86f77407ab46e047"; @@ -3876,6 +3884,8 @@ public static class ItemTpl public const string REVOLVER_MILKOR_M32A1_MSGL_40MM_GRENADE_LAUNCHER = "6275303a9f372d6ea97f9ec7"; public const string REVOLVER_MTS25512_12GA_SHOTGUN = "60db29ce99594040e04c4a27"; public const string REVOLVER_RSH12_127X55 = "633ec7c2a6918cb895019c6c"; + public const string ROCKET_725_SHG2 = "67446fdd752be02c220f27b3"; + public const string ROCKETLAUNCHER_RSHG2_725MM_ROCKET_LAUNCHER = "676bf44c5539167c3603e869"; public const string SECURE_CONTAINER_ALPHA = "544a11ac4bdc2d470e8b456a"; public const string SECURE_CONTAINER_BETA = "5857a8b324597729ab0a0e7d"; public const string SECURE_CONTAINER_BOSS = "5c0a794586f77461c458f892"; @@ -4202,7 +4212,7 @@ public static class ItemTpl public const string STOCK_M60E4_BUTT = "660126161347bc1a5f0f4dba"; public const string STOCK_M60E6_BUTT = "6615202b96461aa8360271eb"; public const string STOCK_M60E6_BUTTSTOCK_FDE = "661520fb6f8e1a96340afaa6"; - public const string STOCK_M700_AB_ARMS_MODX_BUFFER_TUBE_SIDE_FOLDER_ADAPTER = "5cde77a9d7f00c000f261009"; + public const string STOCK_M700_AB_ARMS_MODX_BUFFER_TUBE_ADAPTER = "5cde77a9d7f00c000f261009"; public const string STOCK_M700_AB_ARMS_MODX_GEN_3_CHASSIS = "5cde739cd7f00c0010373bd3"; public const string STOCK_M700_AI_AT_AICS_POLYMER_CHASSIS = "5d25d0ac8abbc3054f3e61f7"; public const string STOCK_M700_HOGUE_OVERMOLDED_GHILLIE = "5bfeb32b0db834001a6694d9"; @@ -4240,7 +4250,7 @@ public static class ItemTpl public const string STOCK_MP431C_BUTTPAD = "611a31ce5b7ffe001b4649d1"; public const string STOCK_MP9 = "5de910da8b6c4240ba2651b5"; public const string STOCK_MPXMCX_MAXIM_DEFENSE_CQB = "5c5db6ee2e221600113fba54"; - public const string STOCK_MPXMCX_PMM_ULSS_FOLDABLE = "5c5db6f82e2216003a0fe914"; + public const string STOCK_MPXMCX_PMM_ULSS = "5c5db6f82e2216003a0fe914"; public const string STOCK_MTS_2001 = "5adf23995acfc400185c2aeb"; public const string STOCK_MTS25512_WOODEN = "612781056f3d944a17348d60"; public const string STOCK_OPSKS_WOODEN = "587e0531245977466077a0f7"; diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/PlayerSide.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/PlayerSide.cs index ab51afd3..6a450a93 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Enums/PlayerSide.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/PlayerSide.cs @@ -1,9 +1,8 @@ -namespace SPTarkov.Server.Core.Models.Enums +namespace SPTarkov.Server.Core.Models.Enums; + +public enum PlayerSide { - public enum PlayerSide - { - Usec = 1, - Bear = 2, - Savage = 4 - } + Usec = 1, + Bear = 2, + Savage = 4 } diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/Weapons.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/Weapons.cs index 2952a87d..54112120 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Enums/Weapons.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/Weapons.cs @@ -115,6 +115,7 @@ public static class Weapons public const string REVOLVER_40X46_MSGL = "6275303a9f372d6ea97f9ec7"; public const string REVOLVER_9X19_CR_200DS = "624c2e8614da335f1e034d8c"; public const string REVOLVER_9X33R_CR_50DS = "61a4c8884f95bc3b2c5dc96f"; + public const string ROCKETLAUNCHER_725_RSHG_2 = "676bf44c5539167c3603e869"; public const string SHOTGUN_12G_590A1 = "5e870397991fd70db46995c8"; public const string SHOTGUN_12G_AA_12_GEN_1 = "66ffa9b66e19cc902401c5e8"; public const string SHOTGUN_12G_AA_12_GEN_2 = "67124dcfa3541f2a1f0e788b"; diff --git a/Libraries/SPTarkov.Server.Core/Models/Logging/LogTextColor.cs b/Libraries/SPTarkov.Server.Core/Models/Logging/LogTextColor.cs index 1a1783f5..9b8df4ec 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Logging/LogTextColor.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Logging/LogTextColor.cs @@ -10,5 +10,5 @@ public enum LogTextColor Magenta = 35, Cyan = 36, White = 37, - Gray = 90, + Gray = 90 } diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/BotDetailsForChatMessages.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/BotDetailsForChatMessages.cs new file mode 100644 index 00000000..7bdcde67 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/BotDetailsForChatMessages.cs @@ -0,0 +1,36 @@ +using SPTarkov.Server.Core.Models.Enums; + +namespace SPTarkov.Server.Core.Models.Spt.Bots; + +public record BotDetailsForChatMessages +{ + public string Nickname + { + get; + set; + } + + public DogtagSide Side + { + get; + set; + } + + public int? Aid + { + get; + set; + } + + public int? Level + { + get; + set; + } + + public MemberCategory? Type + { + get; + set; + } +} diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/GenerateWeaponRequest.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/GenerateWeaponRequest.cs index 374a9b43..5a12d24a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/GenerateWeaponRequest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/GenerateWeaponRequest.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Spt.Bots; public record GenerateWeaponRequest { /// - /// Weapon to add mods to / result that is returned + /// Weapon to add mods to / result that is returned /// [JsonPropertyName("weapon")] public List? Weapon @@ -16,7 +16,7 @@ public record GenerateWeaponRequest } /// - /// Pool of compatible mods to attach to weapon + /// Pool of compatible mods to attach to weapon /// [JsonPropertyName("modPool")] public GlobalMods? ModPool @@ -26,7 +26,7 @@ public record GenerateWeaponRequest } /// - /// ParentId of weapon + /// ParentId of weapon /// [JsonPropertyName("weaponId")] public string? WeaponId @@ -36,7 +36,7 @@ public record GenerateWeaponRequest } /// - /// Weapon which mods will be generated on + /// Weapon which mods will be generated on /// [JsonPropertyName("parentTemplate")] public TemplateItem? ParentTemplate @@ -46,7 +46,7 @@ public record GenerateWeaponRequest } /// - /// Chance values mod will be added + /// Chance values mod will be added /// [JsonPropertyName("modSpawnChances")] public Dictionary? ModSpawnChances @@ -56,7 +56,7 @@ public record GenerateWeaponRequest } /// - /// Ammo tpl to use when generating magazines/cartridges + /// Ammo tpl to use when generating magazines/cartridges /// [JsonPropertyName("ammoTpl")] public string? AmmoTpl @@ -66,7 +66,7 @@ public record GenerateWeaponRequest } /// - /// Bot-specific properties + /// Bot-specific properties /// [JsonPropertyName("botData")] public BotData? BotData @@ -76,7 +76,7 @@ public record GenerateWeaponRequest } /// - /// limits placed on certain mod types per gun + /// limits placed on certain mod types per gun /// [JsonPropertyName("modLimits")] public BotModLimits? ModLimits @@ -86,7 +86,7 @@ public record GenerateWeaponRequest } /// - /// Info related to the weapon being generated + /// Info related to the weapon being generated /// [JsonPropertyName("weaponStats")] public WeaponStats? WeaponStats @@ -96,7 +96,7 @@ public record GenerateWeaponRequest } /// - /// Array of item tpls the weapon does not support + /// Array of item tpls the weapon does not support /// [JsonPropertyName("conflictingItemTpls")] public HashSet? ConflictingItemTpls @@ -109,7 +109,7 @@ public record GenerateWeaponRequest public record BotData { /// - /// Role of bot weapon is generated for + /// Role of bot weapon is generated for /// [JsonPropertyName("role")] public string? Role @@ -119,7 +119,7 @@ public record BotData } /// - /// Level of the bot weapon is being generated for + /// Level of the bot weapon is being generated for /// [JsonPropertyName("level")] public int? Level @@ -129,7 +129,7 @@ public record BotData } /// - /// role of bot when accessing bot.json equipment config settings + /// role of bot when accessing bot.json equipment config settings /// [JsonPropertyName("equipmentRole")] public string? EquipmentRole diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs index a31f00ca..217fa40d 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotConfig.cs @@ -15,7 +15,7 @@ public record BotConfig : BaseConfig } = "spt-bot"; /// - /// How many variants of each bot should be generated on raid start + /// How many variants of each bot should be generated on raid start /// [JsonPropertyName("presetBatch")] public Dictionary? PresetBatch @@ -25,7 +25,7 @@ public record BotConfig : BaseConfig } /// - /// Bot roles that should not have PMC types (pmcBEAR/pmcUSEC) added as enemies to + /// Bot roles that should not have PMC types (pmcBEAR/pmcUSEC) added as enemies to /// [JsonPropertyName("botsToNotAddPMCsAsEnemiesTo")] public List BotsToNotAddPMCsAsEnemiesTo @@ -35,7 +35,7 @@ public record BotConfig : BaseConfig } /// - /// What bot types should be classified as bosses + /// What bot types should be classified as bosses /// [JsonPropertyName("bosses")] public List Bosses @@ -45,7 +45,7 @@ public record BotConfig : BaseConfig } /// - /// Control weapon/armor durability min/max values for each bot type + /// Control weapon/armor durability min/max values for each bot type /// [JsonPropertyName("durability")] public BotDurability Durability @@ -55,7 +55,7 @@ public record BotConfig : BaseConfig } /// - /// Controls the percentage values of randomization item resources + /// Controls the percentage values of randomization item resources /// [JsonPropertyName("lootItemResourceRandomization")] public Dictionary LootItemResourceRandomization @@ -65,8 +65,8 @@ public record BotConfig : BaseConfig } /// - /// Control what bots are added to a bots revenge list
- /// key: bottype, value: bottypes to revenge on seeing their death + /// Control what bots are added to a bots revenge list
+ /// key: bottype, value: bottypes to revenge on seeing their death ///
[JsonPropertyName("revenge")] public Dictionary> Revenge @@ -76,9 +76,9 @@ public record BotConfig : BaseConfig } /// - /// Control how many items are allowed to spawn on a bot
- /// key: bottype, value:
- /// key: itemTpl: value: max item count> + /// Control how many items are allowed to spawn on a bot
+ /// key: bottype, value:
+ /// key: itemTpl: value: max item count> ///
[JsonPropertyName("itemSpawnLimits")] public Dictionary> ItemSpawnLimits @@ -88,7 +88,7 @@ public record BotConfig : BaseConfig } /// - /// Blacklist/whitelist items on a bot + /// Blacklist/whitelist items on a bot /// [JsonPropertyName("equipment")] public Dictionary Equipment @@ -98,7 +98,7 @@ public record BotConfig : BaseConfig } /// - /// Show a bots botType value after their name + /// Show a bots botType value after their name /// [JsonPropertyName("showTypeInNickname")] public bool ShowTypeInNickname @@ -108,7 +108,7 @@ public record BotConfig : BaseConfig } /// - /// What ai brain should a normal scav use per map + /// What ai brain should a normal scav use per map /// [JsonPropertyName("assaultBrainType")] public Dictionary> AssaultBrainType @@ -118,7 +118,7 @@ public record BotConfig : BaseConfig } /// - /// What ai brain should a player scav use per map + /// What ai brain should a player scav use per map /// [JsonPropertyName("playerScavBrainType")] public Dictionary> PlayerScavBrainType @@ -128,7 +128,7 @@ public record BotConfig : BaseConfig } /// - /// Max number of bots that can be spawned in a raid at any one time + /// Max number of bots that can be spawned in a raid at any one time /// [JsonPropertyName("maxBotCap")] public Dictionary MaxBotCap @@ -138,7 +138,7 @@ public record BotConfig : BaseConfig } /// - /// Chance scav has fake pscav name e.g. Scav name (player name) + /// Chance scav has fake pscav name e.g. Scav name (player name) /// [JsonPropertyName("chanceAssaultScavHasPlayerScavName")] public int ChanceAssaultScavHasPlayerScavName @@ -148,7 +148,7 @@ public record BotConfig : BaseConfig } /// - /// How many stacks of secret ammo should a bot have in its bot secure container + /// How many stacks of secret ammo should a bot have in its bot secure container /// [JsonPropertyName("secureContainerAmmoStackCount")] public int SecureContainerAmmoStackCount @@ -158,7 +158,7 @@ public record BotConfig : BaseConfig } /// - /// Bot roles in this array will be given a dog tag on generation + /// Bot roles in this array will be given a dog tag on generation /// [JsonPropertyName("botRolesWithDogTags")] public HashSet BotRolesWithDogTags @@ -168,7 +168,7 @@ public record BotConfig : BaseConfig } /// - /// Settings to control the items that get added into wallets on bots + /// Settings to control the items that get added into wallets on bots /// [JsonPropertyName("walletLoot")] public WalletLootSettings WalletLoot @@ -178,7 +178,7 @@ public record BotConfig : BaseConfig } /// - /// Currency weights, Keyed by botrole / currency + /// Currency weights, Keyed by botrole / currency /// [JsonPropertyName("currencyStackSize")] public Dictionary>> CurrencyStackSize @@ -188,7 +188,7 @@ public record BotConfig : BaseConfig } /// - /// Tpls for low profile gas blocks + /// Tpls for low profile gas blocks /// [JsonPropertyName("lowProfileGasBlockTpls")] public HashSet LowProfileGasBlockTpls @@ -198,7 +198,7 @@ public record BotConfig : BaseConfig } /// - /// What bottypes should be excluded from having loot generated on them (backpack/pocket/vest) does not disable food/drink/special/ + /// What bottypes should be excluded from having loot generated on them (backpack/pocket/vest) does not disable food/drink/special/ /// [JsonPropertyName("disableLootOnBotTypes")] public HashSet DisableLootOnBotTypes @@ -208,7 +208,7 @@ public record BotConfig : BaseConfig } /// - /// Max length a bots name can be + /// Max length a bots name can be /// [JsonPropertyName("botNameLengthLimit")] public int BotNameLengthLimit @@ -218,7 +218,7 @@ public record BotConfig : BaseConfig } /// - /// Bot roles that must have a unique name when generated vs other bots in raid + /// Bot roles that must have a unique name when generated vs other bots in raid /// [JsonPropertyName("botRolesThatMustHaveUniqueName")] public HashSet BotRolesThatMustHaveUniqueName @@ -229,7 +229,7 @@ public record BotConfig : BaseConfig } /// -/// Number of bots to generate and store in cache on raid start per bot type +/// Number of bots to generate and store in cache on raid start per bot type /// public record PresetBatch { diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs index 18fc4750..8898bf14 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs @@ -27,7 +27,7 @@ public record BotDurability } /// -/// Durability values to be used when a more specific bot type can't be found +/// Durability values to be used when a more specific bot type can't be found /// public record DefaultDurability { diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/CoreConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/CoreConfig.cs index 0016033f..bc0b02db 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/CoreConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/CoreConfig.cs @@ -97,7 +97,7 @@ public record CoreConfig : BaseConfig } /// - /// Commit hash build server was created from + /// Commit hash build server was created from /// [JsonPropertyName("commit")] public string? Commit @@ -107,7 +107,7 @@ public record CoreConfig : BaseConfig } /// - /// Timestamp of server build + /// Timestamp of server build /// [JsonPropertyName("buildTime")] public string? BuildTime @@ -117,7 +117,7 @@ public record CoreConfig : BaseConfig } /// - /// Server locale keys that will be added to the bottom of the startup watermark + /// Server locale keys that will be added to the bottom of the startup watermark /// [JsonPropertyName("customWatermarkLocaleKeys")] public List? CustomWatermarkLocaleKeys @@ -130,16 +130,16 @@ public record CoreConfig : BaseConfig public record BsgLogging { /// - /// verbosity of what to log, yes I know this is backwards, but its how nlog deals with ordinals.
- /// complain to them about it! In all cases, better exceptions will be logged.
- /// WARNING: trace-info logging will quickly create log files in the megabytes.
- /// 0 - trace
- /// 1 - debug
- /// 2 - info
- /// 3 - warn
- /// 4 - error
- /// 5 - fatal
- /// 6 - off + /// verbosity of what to log, yes I know this is backwards, but its how nlog deals with ordinals.
+ /// complain to them about it! In all cases, better exceptions will be logged.
+ /// WARNING: trace-info logging will quickly create log files in the megabytes.
+ /// 0 - trace
+ /// 1 - debug
+ /// 2 - info
+ /// 3 - warn
+ /// 4 - error
+ /// 5 - fatal
+ /// 6 - off ///
[JsonPropertyName("verbosity")] public int Verbosity @@ -149,7 +149,7 @@ public record BsgLogging } /// - /// Should we send the logging to the server + /// Should we send the logging to the server /// [JsonPropertyName("sendToServer")] public bool SendToServer @@ -162,7 +162,7 @@ public record BsgLogging public record Release { /// - /// Disclaimer outlining the intended usage of bleeding edge + /// Disclaimer outlining the intended usage of bleeding edge /// [JsonPropertyName("betaDisclaimerText")] public string? BetaDisclaimerText @@ -172,7 +172,7 @@ public record Release } /// - /// Text logged when users agreed to terms + /// Text logged when users agreed to terms /// [JsonPropertyName("betaDisclaimerAcceptText")] public string BetaDisclaimerAcceptText @@ -182,7 +182,7 @@ public record Release } /// - /// Server mods loaded message + /// Server mods loaded message /// [JsonPropertyName("serverModsLoadedText")] public string ServerModsLoadedText @@ -192,7 +192,7 @@ public record Release } /// - /// Server mods loaded debug message text + /// Server mods loaded debug message text /// [JsonPropertyName("serverModsLoadedDebugText")] public string ServerModsLoadedDebugText @@ -202,7 +202,7 @@ public record Release } /// - /// Client mods loaded message + /// Client mods loaded message /// [JsonPropertyName("clientModsLoadedText")] public string ClientModsLoadedText @@ -212,7 +212,7 @@ public record Release } /// - /// Client mods loaded debug message text + /// Client mods loaded debug message text /// [JsonPropertyName("clientModsLoadedDebugText")] public string ClientModsLoadedDebugText @@ -220,8 +220,9 @@ public record Release get; set; } + /// - /// Illegal plugins log message + /// Illegal plugins log message /// [JsonPropertyName("illegalPluginsLoadedText")] public string IllegalPluginsLoadedText @@ -231,7 +232,7 @@ public record Release } /// - /// Illegal plugins exception + /// Illegal plugins exception /// [JsonPropertyName("illegalPluginsExceptionText")] public string IllegalPluginsExceptionText @@ -241,7 +242,7 @@ public record Release } /// - /// Summary of release changes + /// Summary of release changes /// [JsonPropertyName("releaseSummaryText")] public string? ReleaseSummaryText @@ -251,7 +252,7 @@ public record Release } /// - /// Enables the cool watermark in-game + /// Enables the cool watermark in-game /// [JsonPropertyName("isBeta")] public bool? IsBeta @@ -261,7 +262,7 @@ public record Release } /// - /// Whether mods are enabled + /// Whether mods are enabled /// [JsonPropertyName("isModdable")] public bool? IsModdable @@ -271,7 +272,7 @@ public record Release } /// - /// Are mods loaded on the server? + /// Are mods loaded on the server? /// [JsonPropertyName("isModded")] public bool IsModded @@ -281,7 +282,7 @@ public record Release } /// - /// How long before the messagebox times out and closes the game + /// How long before the messagebox times out and closes the game /// [JsonPropertyName("betaDisclaimerTimeoutDelay")] public int BetaDisclaimerTimeoutDelay @@ -294,7 +295,7 @@ public record Release public record GameFixes { /// - /// Shotguns use a different value than normal guns causing huge pellet dispersion + /// Shotguns use a different value than normal guns causing huge pellet dispersion /// [JsonPropertyName("fixShotgunDispersion")] public bool FixShotgunDispersion @@ -304,7 +305,7 @@ public record GameFixes } /// - /// Remove items added by mods when the mod no longer exists - can fix dead profiles stuck at game load + /// Remove items added by mods when the mod no longer exists - can fix dead profiles stuck at game load /// [JsonPropertyName("removeModItemsFromProfile")] public bool RemoveModItemsFromProfile @@ -314,7 +315,7 @@ public record GameFixes } /// - /// Remove invalid traders from profile - trader data can be leftover when player removes trader mod + /// Remove invalid traders from profile - trader data can be leftover when player removes trader mod /// [JsonPropertyName("removeInvalidTradersFromProfile")] public bool RemoveInvalidTradersFromProfile @@ -324,7 +325,7 @@ public record GameFixes } /// - /// Fix issues that cause the game to not start due to inventory item issues + /// Fix issues that cause the game to not start due to inventory item issues /// [JsonPropertyName("fixProfileBreakingInventoryItemIssues")] public bool FixProfileBreakingInventoryItemIssues @@ -337,7 +338,7 @@ public record GameFixes public record ServerFeatures { /// - /// Controls whether the server attempts to download mod dependencies not included in the server's executable + /// Controls whether the server attempts to download mod dependencies not included in the server's executable /// [JsonPropertyName("autoInstallModDependencies")] public bool AutoInstallModDependencies @@ -361,7 +362,7 @@ public record ServerFeatures } /// - /// Keyed to profile type e.g. "Standard" or "SPT Developer" + /// Keyed to profile type e.g. "Standard" or "SPT Developer" /// [JsonPropertyName("createNewProfileTypesBlacklist")] public HashSet CreateNewProfileTypesBlacklist @@ -371,7 +372,7 @@ public record ServerFeatures } /// - /// Profile ids to ignore when calculating achievement stats + /// Profile ids to ignore when calculating achievement stats /// [JsonPropertyName("achievementProfileIdBlacklist")] public HashSet? AchievementProfileIdBlacklist @@ -405,7 +406,7 @@ public record ChatbotFeatures } /// - /// Human readable id to guid for each bot + /// Human readable id to guid for each bot /// [JsonPropertyName("ids")] public Dictionary Ids @@ -415,7 +416,7 @@ public record ChatbotFeatures } /// - /// Bot Ids player is allowed to interact with + /// Bot Ids player is allowed to interact with /// [JsonPropertyName("enabledBots")] public Dictionary EnabledBots diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs index 01692a22..3290b1e5 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs @@ -89,7 +89,7 @@ public record HideoutConfig : BaseConfig public record HideoutCraftToAdd { /// - /// The new mongoId for the craft to use + /// The new mongoId for the craft to use /// [JsonPropertyName("newId")] public string NewId @@ -97,6 +97,7 @@ public record HideoutCraftToAdd get; set; } + [JsonPropertyName("requirements")] public List Requirements { diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InRaidConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InRaidConfig.cs index d693ad5c..cfa47c87 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InRaidConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InRaidConfig.cs @@ -12,7 +12,7 @@ public record InRaidConfig : BaseConfig } = "spt-inraid"; /// - /// Overrides to apply to the pre-raid settings screen + /// Overrides to apply to the pre-raid settings screen /// [JsonPropertyName("raidMenuSettings")] public RaidMenuSettings RaidMenuSettings @@ -22,7 +22,7 @@ public record InRaidConfig : BaseConfig } /// - /// What effects should be saved post-raid + /// What effects should be saved post-raid /// [JsonPropertyName("save")] public RaidSave Save @@ -32,7 +32,7 @@ public record InRaidConfig : BaseConfig } /// - /// Names of car extracts + /// Names of car extracts /// [JsonPropertyName("carExtracts")] public List CarExtracts @@ -42,7 +42,7 @@ public record InRaidConfig : BaseConfig } /// - /// Names of coop extracts + /// Names of coop extracts /// [JsonPropertyName("coopExtracts")] public List CoopExtracts @@ -52,7 +52,7 @@ public record InRaidConfig : BaseConfig } /// - /// Fence rep gain from a single car extract + /// Fence rep gain from a single car extract /// [JsonPropertyName("carExtractBaseStandingGain")] public double CarExtractBaseStandingGain @@ -62,7 +62,7 @@ public record InRaidConfig : BaseConfig } /// - /// Fence rep gain from a single coop extract + /// Fence rep gain from a single coop extract /// [JsonPropertyName("coopExtractBaseStandingGain")] public double CoopExtractBaseStandingGain @@ -72,7 +72,7 @@ public record InRaidConfig : BaseConfig } /// - /// Fence rep gain when successfully extracting as pscav + /// Fence rep gain when successfully extracting as pscav /// [JsonPropertyName("scavExtractStandingGain")] public double ScavExtractStandingGain @@ -82,7 +82,7 @@ public record InRaidConfig : BaseConfig } /// - /// The likelihood of PMC eliminating a minimum of 2 scavs while you engage them as a pscav. + /// The likelihood of PMC eliminating a minimum of 2 scavs while you engage them as a pscav. /// [JsonPropertyName("pmcKillProbabilityForScavGain")] public double PmcKillProbabilityForScavGain @@ -92,7 +92,7 @@ public record InRaidConfig : BaseConfig } /// - /// On death should items in your secure keep their Find in raid status regardless of how you finished the raid + /// On death should items in your secure keep their Find in raid status regardless of how you finished the raid /// [JsonPropertyName("keepFiRSecureContainerOnDeath")] public bool KeepFiRSecureContainerOnDeath @@ -102,7 +102,7 @@ public record InRaidConfig : BaseConfig } /// - /// If enabled always keep found in raid status on items + /// If enabled always keep found in raid status on items /// [JsonPropertyName("alwaysKeepFoundInRaidOnRaidEnd")] public bool AlwaysKeepFoundInRaidOnRaidEnd @@ -112,7 +112,7 @@ public record InRaidConfig : BaseConfig } /// - /// Percentage chance a player scav hot is hostile to the player when scavving + /// Percentage chance a player scav hot is hostile to the player when scavving /// [JsonPropertyName("playerScavHostileChancePercent")] public double PlayerScavHostileChancePercent @@ -184,7 +184,7 @@ public record RaidMenuSettings public record RaidSave { /// - /// Should loot gained from raid be saved + /// Should loot gained from raid be saved /// [JsonPropertyName("loot")] public bool Loot diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InsuranceConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InsuranceConfig.cs index 6e911a56..a95b8145 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InsuranceConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InsuranceConfig.cs @@ -72,7 +72,7 @@ public record InsuranceConfig : BaseConfig } /// - /// Lowest rouble price for an attachment to be allowed to be taken + /// Lowest rouble price for an attachment to be allowed to be taken /// [JsonPropertyName("minAttachmentRoublePriceToBeTaken")] public double MinAttachmentRoublePriceToBeTaken @@ -82,7 +82,7 @@ public record InsuranceConfig : BaseConfig } /// - /// Chance out of 100% no attachments from a parent are taken + /// Chance out of 100% no attachments from a parent are taken /// [JsonPropertyName("chanceNoAttachmentsTakenPercent")] public double ChanceNoAttachmentsTakenPercent diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InventoryConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InventoryConfig.cs index b1822d44..cd52e6ef 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InventoryConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/InventoryConfig.cs @@ -13,7 +13,7 @@ public record InventoryConfig : BaseConfig } = "spt-inventory"; /// - /// Should new items purchased by flagged as found in raid + /// Should new items purchased by flagged as found in raid /// [JsonPropertyName("newItemsMarkedFound")] public bool NewItemsMarkedFound @@ -37,7 +37,7 @@ public record InventoryConfig : BaseConfig } /// - /// Contains item tpls that the server should consider money and treat the same as roubles/euros/dollars + /// Contains item tpls that the server should consider money and treat the same as roubles/euros/dollars /// [JsonPropertyName("customMoneyTpls")] public List CustomMoneyTpls @@ -47,7 +47,7 @@ public record InventoryConfig : BaseConfig } /// - /// Multipliers for skill gain when inside menus, NOT in-game + /// Multipliers for skill gain when inside menus, NOT in-game /// [JsonPropertyName("skillGainMultiplers")] public Dictionary SkillGainMultipliers @@ -57,7 +57,7 @@ public record InventoryConfig : BaseConfig } /// - /// Container Tpls that should be deprioritised when choosing where to take money from for payments + /// Container Tpls that should be deprioritised when choosing where to take money from for payments /// [JsonPropertyName("deprioritisedMoneyContainers")] public HashSet DeprioritisedMoneyContainers @@ -122,7 +122,7 @@ public record SealedAirdropContainerSettings } /// - /// Should contents be flagged as found in raid when opened + /// Should contents be flagged as found in raid when opened /// [JsonPropertyName("foundInRaid")] public bool FoundInRaid diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/ItemConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/ItemConfig.cs index 4792ee98..f40e95b9 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/ItemConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/ItemConfig.cs @@ -13,7 +13,7 @@ public record ItemConfig : BaseConfig } = "spt-item"; /// - /// Items that should be globally blacklisted + /// Items that should be globally blacklisted /// [JsonPropertyName("blacklist")] public HashSet Blacklist @@ -23,7 +23,7 @@ public record ItemConfig : BaseConfig } /// - /// Items that should not be lootable from any location + /// Items that should not be lootable from any location /// [JsonPropertyName("lootableItemBlacklist")] public HashSet LootableItemBlacklist @@ -33,7 +33,7 @@ public record ItemConfig : BaseConfig } /// - /// items that should not be given as rewards + /// items that should not be given as rewards /// [JsonPropertyName("rewardItemBlacklist")] public HashSet RewardItemBlacklist @@ -43,7 +43,7 @@ public record ItemConfig : BaseConfig } /// - /// Item base types that should not be given as rewards + /// Item base types that should not be given as rewards /// [JsonPropertyName("rewardItemTypeBlacklist")] public HashSet RewardItemTypeBlacklist @@ -53,7 +53,7 @@ public record ItemConfig : BaseConfig } /// - /// Items that can only be found on bosses + /// Items that can only be found on bosses /// [JsonPropertyName("bossItems")] public HashSet BossItems @@ -70,7 +70,7 @@ public record ItemConfig : BaseConfig } /// - /// Presets to add to the globals.json `ItemPresets` dictionary on server start + /// Presets to add to the globals.json `ItemPresets` dictionary on server start /// [JsonPropertyName("customItemGlobalPresets")] public List CustomItemGlobalPresets @@ -83,7 +83,7 @@ public record ItemConfig : BaseConfig public record HandbookPriceOverride { /// - /// Price in roubles + /// Price in roubles /// [JsonPropertyName("price")] public double Price @@ -93,7 +93,7 @@ public record HandbookPriceOverride } /// - /// NOT parentId from items.json, but handbook.json + /// NOT parentId from items.json, but handbook.json /// [JsonPropertyName("parentId")] public string ParentId diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocaleConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocaleConfig.cs index cf693861..0e850361 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocaleConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocaleConfig.cs @@ -12,7 +12,7 @@ public record LocaleConfig : BaseConfig } = "spt-locale"; /// - /// e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting + /// e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting /// [JsonPropertyName("gameLocale")] public string GameLocale @@ -22,7 +22,7 @@ public record LocaleConfig : BaseConfig } /// - /// e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting + /// e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting /// [JsonPropertyName("serverLocale")] public string ServerLocale @@ -32,7 +32,7 @@ public record LocaleConfig : BaseConfig } /// - /// Languages server can be translated into + /// Languages server can be translated into /// [JsonPropertyName("serverSupportedLocales")] public List ServerSupportedLocales diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocationConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocationConfig.cs index f127f7ec..30c59d8d 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocationConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LocationConfig.cs @@ -255,7 +255,7 @@ public record ReserveRaiderSpawnChanceOverrides public record EquipmentLootSettings { /// - /// Percentage chance item will be added to equipment + /// Percentage chance item will be added to equipment /// [JsonPropertyName("modSpawnChancePercent")] public Dictionary ModSpawnChancePercent @@ -326,7 +326,7 @@ public record SplitWaveSettings public record CustomWaves { /// - /// Bosses spawn on raid start + /// Bosses spawn on raid start /// [JsonPropertyName("boss")] public Dictionary> Boss @@ -354,7 +354,7 @@ public record BotTypeLimit : MinMax } /// -/// Multiplier to apply to the loot count for a given map +/// Multiplier to apply to the loot count for a given map /// public record LootMultiplier { @@ -495,7 +495,7 @@ public record ContainerRandomisationSettings } /// - /// What maps can use the container randomisation feature + /// What maps can use the container randomisation feature /// [JsonPropertyName("maps")] public Dictionary Maps @@ -505,7 +505,7 @@ public record ContainerRandomisationSettings } /// - /// Some container types don't work when randomised + /// Some container types don't work when randomised /// [JsonPropertyName("containerTypesToNotRandomise")] public HashSet ContainerTypesToNotRandomise @@ -558,9 +558,8 @@ public record ScavRaidTimeConfigSettings public record ScavRaidTimeLocationSettings { - /// - /// Should loot be reduced by same percent length of raid is reduced by + /// Should loot be reduced by same percent length of raid is reduced by /// [JsonPropertyName("reduceLootByPercent")] public bool ReduceLootByPercent @@ -570,7 +569,7 @@ public record ScavRaidTimeLocationSettings } /// - /// Smallest % of container loot that should be spawned + /// Smallest % of container loot that should be spawned /// [JsonPropertyName("minStaticLootPercent")] public double MinStaticLootPercent @@ -580,7 +579,7 @@ public record ScavRaidTimeLocationSettings } /// - /// Smallest % of loose loot that should be spawned + /// Smallest % of loose loot that should be spawned /// [JsonPropertyName("minDynamicLootPercent")] public double MinDynamicLootPercent @@ -590,7 +589,7 @@ public record ScavRaidTimeLocationSettings } /// - /// Chance raid time is reduced + /// Chance raid time is reduced /// [JsonPropertyName("reducedChancePercent")] public double ReducedChancePercent @@ -600,7 +599,7 @@ public record ScavRaidTimeLocationSettings } /// - /// How much should raid time be reduced - weighted + /// How much should raid time be reduced - weighted /// [JsonPropertyName("reductionPercentWeights")] public Dictionary ReductionPercentWeights @@ -610,7 +609,7 @@ public record ScavRaidTimeLocationSettings } /// - /// Should bot waves be removed / spawn times be adjusted + /// Should bot waves be removed / spawn times be adjusted /// [JsonPropertyName("adjustWaves")] public bool AdjustWaves diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LootConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LootConfig.cs index 18b7c87f..53722abc 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LootConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LootConfig.cs @@ -13,7 +13,7 @@ public record LootConfig : BaseConfig } = "spt-loot"; /// - /// Spawn positions to add into a map, key=mapid + /// Spawn positions to add into a map, key=mapid /// [JsonPropertyName("looseLoot")] public Dictionary LooseLoot @@ -23,7 +23,7 @@ public record LootConfig : BaseConfig } /// - /// Loose loot probability adjustments to apply on game start + /// Loose loot probability adjustments to apply on game start /// [JsonPropertyName("looseLootSpawnPointAdjustments")] public Dictionary>? LooseLootSpawnPointAdjustments diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LostOnDeathConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LostOnDeathConfig.cs index ced78ebd..6414ae82 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LostOnDeathConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/LostOnDeathConfig.cs @@ -12,7 +12,7 @@ public record LostOnDeathConfig : BaseConfig } = "spt-lostondeath"; /// - /// What equipment in each slot should be lost on death + /// What equipment in each slot should be lost on death /// [JsonPropertyName("equipment")] public LostEquipment Equipment @@ -22,7 +22,7 @@ public record LostOnDeathConfig : BaseConfig } /// - /// Should special slot items be removed from quest inventory on death e.g. wifi camera/markers + /// Should special slot items be removed from quest inventory on death e.g. wifi camera/markers /// [JsonPropertyName("specialSlotItems")] public bool SpecialSlotItems @@ -32,7 +32,7 @@ public record LostOnDeathConfig : BaseConfig } /// - /// Should quest items be removed from quest inventory on death + /// Should quest items be removed from quest inventory on death /// [JsonPropertyName("questItems")] public bool QuestItems diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/PmcConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/PmcConfig.cs index dd52b3aa..138ca637 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/PmcConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/PmcConfig.cs @@ -15,7 +15,7 @@ public record PmcConfig : BaseConfig } = "spt-pmc"; /// - /// What game version should the PMC have + /// What game version should the PMC have /// [JsonPropertyName("gameVersionWeight")] public Dictionary GameVersionWeight @@ -25,7 +25,7 @@ public record PmcConfig : BaseConfig } /// - /// What account type should the PMC have + /// What account type should the PMC have /// [JsonPropertyName("accountTypeWeight")] public Dictionary AccountTypeWeight @@ -35,7 +35,7 @@ public record PmcConfig : BaseConfig } /// - /// Global whitelist/blacklist of vest loot for PMCs + /// Global whitelist/blacklist of vest loot for PMCs /// [JsonPropertyName("vestLoot")] public SlotLootSettings VestLoot @@ -45,7 +45,7 @@ public record PmcConfig : BaseConfig } /// - /// Global whitelist/blacklist of pocket loot for PMCs + /// Global whitelist/blacklist of pocket loot for PMCs /// [JsonPropertyName("pocketLoot")] public SlotLootSettings PocketLoot @@ -55,7 +55,7 @@ public record PmcConfig : BaseConfig } /// - /// Global whitelist/blacklist of backpack loot for PMCs + /// Global whitelist/blacklist of backpack loot for PMCs /// [JsonPropertyName("backpackLoot")] public SlotLootSettings BackpackLoot @@ -72,7 +72,7 @@ public record PmcConfig : BaseConfig } /// - /// Use difficulty defined in config/bot.json/difficulty instead of chosen difficulty dropdown value + /// Use difficulty defined in config/bot.json/difficulty instead of chosen difficulty dropdown value /// [JsonPropertyName("useDifficultyOverride")] public bool UseDifficultyOverride @@ -82,7 +82,7 @@ public record PmcConfig : BaseConfig } /// - /// Difficulty override e.g. "AsOnline/Hard" + /// Difficulty override e.g. "AsOnline/Hard" /// [JsonPropertyName("difficulty")] public string Difficulty @@ -92,7 +92,7 @@ public record PmcConfig : BaseConfig } /// - /// Chance out of 100 to have a complete gun in backpack + /// Chance out of 100 to have a complete gun in backpack /// [JsonPropertyName("looseWeaponInBackpackChancePercent")] public double LooseWeaponInBackpackChancePercent @@ -102,7 +102,7 @@ public record PmcConfig : BaseConfig } /// - /// Chance out of 100 to have an enhancement applied to PMC weapon + /// Chance out of 100 to have an enhancement applied to PMC weapon /// [JsonPropertyName("weaponHasEnhancementChancePercent")] public double WeaponHasEnhancementChancePercent @@ -112,7 +112,7 @@ public record PmcConfig : BaseConfig } /// - /// MinMax count of weapons to have in backpack + /// MinMax count of weapons to have in backpack /// [JsonPropertyName("looseWeaponInBackpackLootMinMax")] public MinMax LooseWeaponInBackpackLootMinMax @@ -129,7 +129,7 @@ public record PmcConfig : BaseConfig } /// - /// Percentage chance PMC will be USEC + /// Percentage chance PMC will be USEC /// [JsonPropertyName("isUsec")] public double IsUsec @@ -139,7 +139,7 @@ public record PmcConfig : BaseConfig } /// - /// WildSpawnType enum value USEC PMCs use + /// WildSpawnType enum value USEC PMCs use /// [JsonPropertyName("usecType")] public string UsecType @@ -149,7 +149,7 @@ public record PmcConfig : BaseConfig } /// - /// WildSpawnType enum value BEAR PMCs use + /// WildSpawnType enum value BEAR PMCs use /// [JsonPropertyName("bearType")] public string BearType @@ -166,7 +166,7 @@ public record PmcConfig : BaseConfig } /// - /// What 'brain' does a PMC use, keyed by map and side (USEC/BEAR) key: map location, value: type for usec/bear + /// What 'brain' does a PMC use, keyed by map and side (USEC/BEAR) key: map location, value: type for usec/bear /// [JsonPropertyName("pmcType")] public Dictionary>> PmcType @@ -197,7 +197,7 @@ public record PmcConfig : BaseConfig } /// - /// How many levels above player level can a PMC be + /// How many levels above player level can a PMC be /// [JsonPropertyName("botRelativeLevelDeltaMax")] public int BotRelativeLevelDeltaMax @@ -207,7 +207,7 @@ public record PmcConfig : BaseConfig } /// - /// How many levels below player level can a PMC be + /// How many levels below player level can a PMC be /// [JsonPropertyName("botRelativeLevelDeltaMin")] public int BotRelativeLevelDeltaMin @@ -217,7 +217,7 @@ public record PmcConfig : BaseConfig } /// - /// Force a number of healing items into PMCs secure container to ensure they can heal + /// Force a number of healing items into PMCs secure container to ensure they can heal /// [JsonPropertyName("forceHealingItemsIntoSecure")] public bool ForceHealingItemsIntoSecure @@ -248,7 +248,7 @@ public record PmcConfig : BaseConfig } /// - /// Should secure container loot from usec.json/bear.json be added to pmc bots secure + /// Should secure container loot from usec.json/bear.json be added to pmc bots secure /// [JsonPropertyName("addSecureContainerLootFromBotConfig")] public bool AddSecureContainerLootFromBotConfig @@ -289,7 +289,7 @@ public record PmcConfig : BaseConfig public record HostilitySettings { /// - /// Bot roles that are 100% an enemy + /// Bot roles that are 100% an enemy /// [JsonPropertyName("additionalEnemyTypes")] public List? AdditionalEnemyTypes @@ -299,7 +299,7 @@ public record HostilitySettings } /// - /// Objects that determine the % chance another bot type is an enemy + /// Objects that determine the % chance another bot type is an enemy /// [JsonPropertyName("chancedEnemies")] public List? ChancedEnemies @@ -330,7 +330,7 @@ public record HostilitySettings } /// - /// Bot roles that are 100% a friendly + /// Bot roles that are 100% a friendly /// [JsonPropertyName("additionalFriendlyTypes")] public List? AdditionalFriendlyTypes @@ -367,7 +367,7 @@ public record PmcTypes public record SlotLootSettings { /// - /// Item Type whitelist + /// Item Type whitelist /// [JsonPropertyName("whitelist")] public HashSet Whitelist @@ -377,7 +377,7 @@ public record SlotLootSettings } /// - /// Item tpl blacklist + /// Item tpl blacklist /// [JsonPropertyName("blacklist")] public HashSet Blacklist diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/QuestConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/QuestConfig.cs index 48fd5efe..d4f6ddec 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/QuestConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/QuestConfig.cs @@ -16,7 +16,7 @@ public record QuestConfig : BaseConfig } = "spt-quest"; /// - /// Hours to get/redeem items from quest mail keyed by profile type + /// Hours to get/redeem items from quest mail keyed by profile type /// [JsonPropertyName("mailRedeemTimeHours")] public Dictionary? MailRedeemTimeHours @@ -33,7 +33,7 @@ public record QuestConfig : BaseConfig } /// - /// Show non-seasonal quests be shown to player + /// Show non-seasonal quests be shown to player /// [JsonPropertyName("showNonSeasonalEventQuests")] public bool? ShowNonSeasonalEventQuests @@ -78,7 +78,7 @@ public record QuestConfig : BaseConfig } /// - /// Quests that the keyed game version do not see/access + /// Quests that the keyed game version do not see/access /// [JsonPropertyName("profileBlacklist")] public Dictionary>? ProfileBlacklist @@ -88,7 +88,7 @@ public record QuestConfig : BaseConfig } /// - /// key=questid, gameversions that can see/access quest + /// key=questid, gameversions that can see/access quest /// [JsonPropertyName("profileWhitelist")] public Dictionary>? ProfileWhitelist @@ -265,7 +265,7 @@ public record RepeatableQuestConfig } /// - /// Item base types to block when generating rewards + /// Item base types to block when generating rewards /// [JsonPropertyName("rewardBaseTypeBlacklist")] public HashSet? RewardBaseTypeBlacklist @@ -275,7 +275,7 @@ public record RepeatableQuestConfig } /// - /// Item tplIds to ignore when generating rewards + /// Item tplIds to ignore when generating rewards /// [JsonPropertyName("rewardBlacklist")] public HashSet? RewardBlacklist @@ -313,7 +313,7 @@ public record RepeatableQuestConfig } /// - /// Reputation standing price for replacing a repeatable + /// Reputation standing price for replacing a repeatable /// [JsonPropertyName("standingChangeCost")] public IList? StandingChangeCost @@ -558,7 +558,7 @@ public record Completion : BaseQuestConfig } /// - /// Should supplied items be required FiR + /// Should supplied items be required FiR /// [JsonPropertyName("requiredItemsAreFiR")] public bool? RequiredItemsAreFiR @@ -568,7 +568,7 @@ public record Completion : BaseQuestConfig } /// - /// Should supplied items be required FiR + /// Should supplied items be required FiR /// [JsonPropertyName("requiredItemMinDurabilityMinMax")] public MinMax? RequiredItemMinDurabilityMinMax diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs index 1e9de8fa..7ea80c54 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs @@ -13,7 +13,7 @@ public record RagfairConfig : BaseConfig } = "spt-ragfair"; /// - /// How many seconds should pass before expired offers and processed + player offers checked if sold + /// How many seconds should pass before expired offers and processed + player offers checked if sold /// [JsonPropertyName("runIntervalSeconds")] public int RunIntervalSeconds @@ -23,7 +23,7 @@ public record RagfairConfig : BaseConfig } /// - /// Default values used to hydrate `runIntervalSeconds` with + /// Default values used to hydrate `runIntervalSeconds` with /// [JsonPropertyName("runIntervalValues")] public RunIntervalValues RunIntervalValues @@ -33,7 +33,7 @@ public record RagfairConfig : BaseConfig } /// - /// Player listing settings + /// Player listing settings /// [JsonPropertyName("sell")] public Sell Sell @@ -43,7 +43,7 @@ public record RagfairConfig : BaseConfig } /// - /// Trader ids + should their assorts be listed on flea + /// Trader ids + should their assorts be listed on flea /// [JsonPropertyName("traders")] public Dictionary Traders @@ -70,7 +70,7 @@ public record RagfairConfig : BaseConfig public record Sell { /// - /// Should a fee be deducted from player when listing an item for sale + /// Should a fee be deducted from player when listing an item for sale /// [JsonPropertyName("fees")] public bool Fees @@ -80,7 +80,7 @@ public record Sell } /// - /// Settings to control chances of offer being sold + /// Settings to control chances of offer being sold /// [JsonPropertyName("chance")] public Chance Chance @@ -90,7 +90,7 @@ public record Sell } /// - /// Settings to control how long it takes for a player offer to sell + /// Settings to control how long it takes for a player offer to sell /// [JsonPropertyName("time")] public MinMax Time @@ -100,7 +100,7 @@ public record Sell } /// - /// Seconds from clicking remove to remove offer from market + /// Seconds from clicking remove to remove offer from market /// [JsonPropertyName("expireSeconds")] public int ExpireSeconds @@ -113,7 +113,7 @@ public record Sell public record Chance { /// - /// Base chance percent to sell an item + /// Base chance percent to sell an item /// [JsonPropertyName("base")] public int Base @@ -123,7 +123,7 @@ public record Chance } /// - /// Value to multiply the sell chance by + /// Value to multiply the sell chance by /// [JsonPropertyName("sellMultiplier")] public double SellMultiplier @@ -133,7 +133,7 @@ public record Chance } /// - /// Max possible sell chance % for a player listed offer + /// Max possible sell chance % for a player listed offer /// [JsonPropertyName("maxSellChancePercent")] public int MaxSellChancePercent @@ -143,7 +143,7 @@ public record Chance } /// - /// Min possible sell chance % for a player listed offer + /// Min possible sell chance % for a player listed offer /// [JsonPropertyName("minSellChancePercent")] public int MinSellChancePercent @@ -156,7 +156,7 @@ public record Chance public record Dynamic { /// - /// Should a purchased dynamic offers items be flagged as found in raid + /// Should a purchased dynamic offers items be flagged as found in raid /// [JsonPropertyName("purchasesAreFoundInRaid")] public bool PurchasesAreFoundInRaid @@ -166,7 +166,7 @@ public record Dynamic } /// - /// Use the highest trader price for an offer if its greater than the price in templates/prices.json + /// Use the highest trader price for an offer if its greater than the price in templates/prices.json /// [JsonPropertyName("useTraderPriceForOffersIfHigher")] public bool UseTraderPriceForOffersIfHigher @@ -176,7 +176,7 @@ public record Dynamic } /// - /// Barter offer specific settings + /// Barter offer specific settings /// [JsonPropertyName("barter")] public BarterDetails Barter @@ -193,7 +193,7 @@ public record Dynamic } /// - /// Dynamic offer price below handbook adjustment values + /// Dynamic offer price below handbook adjustment values /// [JsonPropertyName("offerAdjustment")] public OfferAdjustment OfferAdjustment @@ -203,7 +203,7 @@ public record Dynamic } /// - /// How many offers should expire before an offer regeneration occurs + /// How many offers should expire before an offer regeneration occurs /// [JsonPropertyName("expiredOfferThreshold")] public int ExpiredOfferThreshold @@ -213,7 +213,7 @@ public record Dynamic } /// - /// How many offers should be listed + /// How many offers should be listed /// [JsonPropertyName("offerItemCount")] public MinMax OfferItemCount @@ -223,7 +223,7 @@ public record Dynamic } /// - /// How much should the price of an offer vary by (percent 0.8 = 80%, 1.2 = 120%) + /// How much should the price of an offer vary by (percent 0.8 = 80%, 1.2 = 120%) /// [JsonPropertyName("priceRanges")] public PriceRanges PriceRanges @@ -233,7 +233,7 @@ public record Dynamic } /// - /// Should default presets to listed only or should non-standard presets found in globals.json be listed too + /// Should default presets to listed only or should non-standard presets found in globals.json be listed too /// [JsonPropertyName("showDefaultPresetsOnly")] public bool ShowDefaultPresetsOnly @@ -243,7 +243,7 @@ public record Dynamic } /// - /// Tpls that should not use the variable price system when their quality is less than 100% (lower dura/uses = lower price) + /// Tpls that should not use the variable price system when their quality is less than 100% (lower dura/uses = lower price) /// [JsonPropertyName("ignoreQualityPriceVarianceBlacklist")] public HashSet IgnoreQualityPriceVarianceBlacklist @@ -260,7 +260,7 @@ public record Dynamic } /// - /// Settings to control the durability range of item items listed on flea + /// Settings to control the durability range of item items listed on flea /// [JsonPropertyName("condition")] public Dictionary Condition @@ -270,7 +270,7 @@ public record Dynamic } /// - /// Size stackable items should be listed for in percent of max stack size + /// Size stackable items should be listed for in percent of max stack size /// [JsonPropertyName("stackablePercent")] public MinMax StackablePercent @@ -280,7 +280,7 @@ public record Dynamic } /// - /// Items that cannot be stacked can have multiples sold in one offer, what range of values can be listed + /// Items that cannot be stacked can have multiples sold in one offer, what range of values can be listed /// [JsonPropertyName("nonStackableCount")] public MinMax NonStackableCount @@ -290,7 +290,7 @@ public record Dynamic } /// - /// Range of rating offers for items being listed + /// Range of rating offers for items being listed /// [JsonPropertyName("rating")] public MinMax Rating @@ -300,7 +300,7 @@ public record Dynamic } /// - /// Armor specific flea settings + /// Armor specific flea settings /// [JsonPropertyName("armor")] public ArmorSettings Armor @@ -310,7 +310,7 @@ public record Dynamic } /// - /// A multipler to apply to individual tpls price just prior to item quality adjustment + /// A multipler to apply to individual tpls price just prior to item quality adjustment /// [JsonPropertyName("itemPriceMultiplier")] public Dictionary? ItemPriceMultiplier @@ -327,7 +327,7 @@ public record Dynamic } /// - /// Percentages to sell offers in each currency + /// Percentages to sell offers in each currency /// [JsonPropertyName("currencies")] public Dictionary Currencies @@ -337,7 +337,7 @@ public record Dynamic } /// - /// Item tpls that should be forced to sell as a single item + /// Item tpls that should be forced to sell as a single item /// [JsonPropertyName("showAsSingleStack")] public HashSet ShowAsSingleStack @@ -347,7 +347,7 @@ public record Dynamic } /// - /// Should christmas/halloween items be removed from flea when not within the seasonal bounds + /// Should christmas/halloween items be removed from flea when not within the seasonal bounds /// [JsonPropertyName("removeSeasonalItemsWhenNotInEvent")] public bool RemoveSeasonalItemsWhenNotInEvent @@ -357,7 +357,7 @@ public record Dynamic } /// - /// Flea blacklist settings + /// Flea blacklist settings /// [JsonPropertyName("blacklist")] public RagfairBlacklist Blacklist @@ -367,7 +367,7 @@ public record Dynamic } /// - /// Dict of price limits keyed by item type + /// Dict of price limits keyed by item type /// [JsonPropertyName("unreasonableModPrices")] public Dictionary UnreasonableModPrices @@ -377,7 +377,7 @@ public record Dynamic } /// - /// Custom rouble prices for items to override values from prices.json + /// Custom rouble prices for items to override values from prices.json /// [JsonPropertyName("itemPriceOverrideRouble")] public Dictionary ItemPriceOverrideRouble @@ -414,7 +414,7 @@ public record PriceRanges public record BarterDetails { /// - /// Percentage change an offer is listed as a barter + /// Percentage change an offer is listed as a barter /// [JsonPropertyName("chancePercent")] public double ChancePercent @@ -424,7 +424,7 @@ public record BarterDetails } /// - /// Min number of required items for a barter requirement + /// Min number of required items for a barter requirement /// [JsonPropertyName("itemCountMin")] public int ItemCountMin @@ -434,7 +434,7 @@ public record BarterDetails } /// - /// Max number of required items for a barter requirement + /// Max number of required items for a barter requirement /// [JsonPropertyName("itemCountMax")] public int ItemCountMax @@ -444,7 +444,7 @@ public record BarterDetails } /// - /// How much can the total price of requested items vary from the item offered + /// How much can the total price of requested items vary from the item offered /// [JsonPropertyName("priceRangeVariancePercent")] public double PriceRangeVariancePercent @@ -454,7 +454,7 @@ public record BarterDetails } /// - /// Min rouble price for an offer to be considered for turning into a barter + /// Min rouble price for an offer to be considered for turning into a barter /// [JsonPropertyName("minRoubleCostToBecomeBarter")] public double MinRoubleCostToBecomeBarter @@ -464,7 +464,7 @@ public record BarterDetails } /// - /// Should barter offers only single stack + /// Should barter offers only single stack /// [JsonPropertyName("makeSingleStackOnly")] public bool MakeSingleStackOnly @@ -474,7 +474,7 @@ public record BarterDetails } /// - /// Item Tpls to never be turned into a barter + /// Item Tpls to never be turned into a barter /// [JsonPropertyName("itemTypeBlacklist")] public HashSet ItemTypeBlacklist @@ -487,7 +487,7 @@ public record BarterDetails public record PackDetails { /// - /// Percentage change an offer is listed as a pack + /// Percentage change an offer is listed as a pack /// [JsonPropertyName("chancePercent")] public double ChancePercent @@ -497,7 +497,7 @@ public record PackDetails } /// - /// Min number of required items for a pack + /// Min number of required items for a pack /// [JsonPropertyName("itemCountMin")] public int ItemCountMin @@ -507,7 +507,7 @@ public record PackDetails } /// - /// Max number of required items for a pack + /// Max number of required items for a pack /// [JsonPropertyName("itemCountMax")] public int ItemCountMax @@ -517,7 +517,7 @@ public record PackDetails } /// - /// item types to allow being a pack + /// item types to allow being a pack /// [JsonPropertyName("itemTypeWhitelist")] public HashSet ItemTypeWhitelist diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RepairConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RepairConfig.cs index 5ae2862a..d224262e 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RepairConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RepairConfig.cs @@ -1,6 +1,5 @@ using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Common; -using SPTarkov.Server.Core.Models.Eft.Common.Tables; namespace SPTarkov.Server.Core.Models.Spt.Config; @@ -42,7 +41,7 @@ public record RepairConfig : BaseConfig } /// - /// INT gain multiplier per repaired item type + /// INT gain multiplier per repaired item type /// [JsonPropertyName("repairKitIntellectGainMultiplier")] public IntellectGainValues RepairKitIntellectGainMultiplier @@ -52,7 +51,7 @@ public record RepairConfig : BaseConfig } /// - /// How much INT can be given to player per repair action + /// How much INT can be given to player per repair action /// [JsonPropertyName("maxIntellectGainPerRepair")] public MaxIntellectGainValues MaxIntellectGainPerRepair @@ -113,7 +112,7 @@ public record MaxIntellectGainValues public record WeaponTreatmentRepairValues { /// - /// The chance to gain more weapon maintenance skill + /// The chance to gain more weapon maintenance skill /// [JsonPropertyName("critSuccessChance")] public double CritSuccessChance @@ -130,7 +129,7 @@ public record WeaponTreatmentRepairValues } /// - /// The chance to gain less weapon maintenance skill + /// The chance to gain less weapon maintenance skill /// [JsonPropertyName("critFailureChance")] public double CritFailureChance @@ -147,7 +146,7 @@ public record WeaponTreatmentRepairValues } /// - /// The multiplier used for calculating weapon maintenance XP + /// The multiplier used for calculating weapon maintenance XP /// [JsonPropertyName("pointGainMultiplier")] public double PointGainMultiplier @@ -229,7 +228,7 @@ public record BonusValues } /// - /// What dura is buff active between (min max of current max) + /// What dura is buff active between (min max of current max) /// [JsonPropertyName("activeDurabilityPercentMinMax")] public MinMax ActiveDurabilityPercentMinMax diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/SeasonalEventConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/SeasonalEventConfig.cs index 094dbb00..3aa616d4 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/SeasonalEventConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/SeasonalEventConfig.cs @@ -22,7 +22,7 @@ public record SeasonalEventConfig : BaseConfig } /// - /// event / botType / equipSlot / itemid + /// event / botType / equipSlot / itemid /// [JsonPropertyName("eventGear")] public Dictionary>>> EventGear @@ -32,7 +32,7 @@ public record SeasonalEventConfig : BaseConfig } /// - /// event / bot type / equipSlot / itemid + /// event / bot type / equipSlot / itemid /// [JsonPropertyName("eventLoot")] public Dictionary>>> EventLoot @@ -77,7 +77,7 @@ public record SeasonalEventConfig : BaseConfig } /// - /// key = event, second key = map name + /// key = event, second key = map name /// [JsonPropertyName("hostilitySettingsForEvent")] public Dictionary>> HostilitySettingsForEvent @@ -87,7 +87,7 @@ public record SeasonalEventConfig : BaseConfig } /// - /// Ids of containers on locations that only have Christmas loot + /// Ids of containers on locations that only have Christmas loot /// [JsonPropertyName("christmasContainerIds")] public List ChristmasContainerIds @@ -97,7 +97,7 @@ public record SeasonalEventConfig : BaseConfig } /// - /// Season - botType - location (body/feet/hands/head) + /// Season - botType - location (body/feet/hands/head) /// [JsonPropertyName("botAppearanceChanges")] public Dictionary>>> BotAppearanceChanges diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs index 95def618..a51783b5 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs @@ -35,7 +35,7 @@ public record TraderConfig : BaseConfig } /// - /// Should trader reset times be set based on server start time (false = bsg time - on the hour) + /// Should trader reset times be set based on server start time (false = bsg time - on the hour) /// [JsonPropertyName("tradersResetFromServerStart")] public bool TradersResetFromServerStart @@ -83,7 +83,7 @@ public record UpdateTime } /// - /// Seconds between trader resets + /// Seconds between trader resets /// [JsonPropertyName("seconds")] public MinMax Seconds @@ -166,7 +166,7 @@ public record FenceConfig } /// - /// Keyed to plate protection level + /// Keyed to plate protection level /// [JsonPropertyName("chancePlateExistsInArmorPercent")] public Dictionary ChancePlateExistsInArmorPercent @@ -176,7 +176,7 @@ public record FenceConfig } /// - /// Key: item tpl + /// Key: item tpl /// [JsonPropertyName("itemStackSizeOverrideMinMax")] public Dictionary?> ItemStackSizeOverrideMinMax @@ -193,7 +193,7 @@ public record FenceConfig } /// - /// Prevent duplicate offers of items of specific categories by parentId + /// Prevent duplicate offers of items of specific categories by parentId /// [JsonPropertyName("preventDuplicateOffersOfCategory")] public List PreventDuplicateOffersOfCategory @@ -210,7 +210,7 @@ public record FenceConfig } /// - /// Max rouble price before item is not listed on flea + /// Max rouble price before item is not listed on flea /// [JsonPropertyName("itemCategoryRoublePriceLimit")] public Dictionary ItemCategoryRoublePriceLimit @@ -220,7 +220,7 @@ public record FenceConfig } /// - /// Each slotid with % to be removed prior to listing on fence + /// Each slotid with % to be removed prior to listing on fence /// [JsonPropertyName("presetSlotsToRemoveChancePercent")] public Dictionary PresetSlotsToRemoveChancePercent @@ -230,7 +230,7 @@ public record FenceConfig } /// - /// Block seasonal items from appearing when season is inactive + /// Block seasonal items from appearing when season is inactive /// [JsonPropertyName("blacklistSeasonalItems")] public bool BlacklistSeasonalItems @@ -240,7 +240,7 @@ public record FenceConfig } /// - /// Max pen value allowed to be listed on flea - affects ammo + ammo boxes + /// Max pen value allowed to be listed on flea - affects ammo + ammo boxes /// [JsonPropertyName("ammoMaxPenLimit")] public double AmmoMaxPenLimit @@ -271,7 +271,7 @@ public record FenceConfig } /// - /// Smallest value player rep with fence can fall to + /// Smallest value player rep with fence can fall to /// [JsonPropertyName("playerRepMin")] public double PlayerRepMin @@ -281,7 +281,7 @@ public record FenceConfig } /// - /// Highest value player rep with fence can climb to + /// Highest value player rep with fence can climb to /// [JsonPropertyName("playerRepMax")] public double PlayerRepMax @@ -378,12 +378,12 @@ public record DiscountOptions } /// -/// Custom trader data needed client side for things such as the clothing service +/// Custom trader data needed client side for things such as the clothing service /// public record ModdedTraders { /// - /// Trader Ids to enable the clothing service for + /// Trader Ids to enable the clothing service for /// [JsonPropertyName("clothingService")] public List ClothingService diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/WeatherConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/WeatherConfig.cs index 2b41df1d..e6c5b877 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/WeatherConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/WeatherConfig.cs @@ -102,7 +102,7 @@ public record WeatherValues } /// - /// How many hours to generate weather data into the future + /// How many hours to generate weather data into the future /// [JsonPropertyName("generateWeatherAmountHours")] public int? GenerateWeatherAmountHours @@ -112,7 +112,7 @@ public record WeatherValues } /// - /// Length of each weather period + /// Length of each weather period /// [JsonPropertyName("timePeriod")] public WeatherSettings? TimePeriod diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Dialog/SendMessageDetails.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Dialog/SendMessageDetails.cs index 8f997ee1..b416f4e2 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Dialog/SendMessageDetails.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Dialog/SendMessageDetails.cs @@ -128,7 +128,7 @@ public record SendMessageDetails } /// - /// Optional - the MongoID of the dialogue message to reply to + /// Optional - the MongoID of the dialogue message to reply to /// [JsonPropertyName("replyTo")] public string? ReplyTo diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Hideout/Hideout.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Hideout/Hideout.cs index 8a9c8870..95432bbc 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Hideout/Hideout.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Hideout/Hideout.cs @@ -11,6 +11,7 @@ public record Hideout get; set; } + [JsonPropertyName("customAreas")] public List? CustomAreas { diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Inventory/OwnerInventoryItems.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Inventory/OwnerInventoryItems.cs index 286b6ddc..e7a1f7da 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Inventory/OwnerInventoryItems.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Inventory/OwnerInventoryItems.cs @@ -6,7 +6,7 @@ namespace SPTarkov.Server.Core.Models.Spt.Inventory; public record OwnerInventoryItems { /// - /// Inventory items from source + /// Inventory items from source /// [JsonPropertyName("from")] public List? From @@ -16,7 +16,7 @@ public record OwnerInventoryItems } /// - /// Inventory items at destination + /// Inventory items at destination /// [JsonPropertyName("to")] public List? To diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Location/RaidChanges.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Location/RaidChanges.cs index c15eb913..2cfbb6d7 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Location/RaidChanges.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Location/RaidChanges.cs @@ -5,7 +5,7 @@ namespace SPTarkov.Server.Core.Models.Spt.Location; public record RaidChanges { /// - /// What percentage of dynamic loot should the map contain + /// What percentage of dynamic loot should the map contain /// [JsonPropertyName("dynamicLootPercent")] public double? DynamicLootPercent @@ -15,7 +15,7 @@ public record RaidChanges } /// - /// What percentage of static loot should the map contain + /// What percentage of static loot should the map contain /// [JsonPropertyName("staticLootPercent")] public double? StaticLootPercent @@ -25,7 +25,7 @@ public record RaidChanges } /// - /// How many seconds into the raid is the player simulated to spawn in at + /// How many seconds into the raid is the player simulated to spawn in at /// [JsonPropertyName("simulatedRaidStartSeconds")] public double? SimulatedRaidStartSeconds @@ -35,7 +35,7 @@ public record RaidChanges } /// - /// How many minutes are in the raid total + /// How many minutes are in the raid total /// [JsonPropertyName("raidTimeMinutes")] public double? RaidTimeMinutes @@ -45,7 +45,7 @@ public record RaidChanges } /// - /// The new number of seconds required to avoid a run through + /// The new number of seconds required to avoid a run through /// [JsonPropertyName("newSurviveTimeSeconds")] public double? NewSurviveTimeSeconds @@ -55,7 +55,7 @@ public record RaidChanges } /// - /// The original number of seconds required to avoid a run through + /// The original number of seconds required to avoid a run through /// [JsonPropertyName("originalSurvivalTimeSeconds")] public double? OriginalSurvivalTimeSeconds @@ -65,7 +65,7 @@ public record RaidChanges } /// - /// Any changes required to the extract list + /// Any changes required to the extract list /// [JsonPropertyName("exitChanges")] public List? ExitChanges diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Logging/LogLevel.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Logging/LogLevel.cs index 6be6a5ec..d88d7e7e 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Logging/LogLevel.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Logging/LogLevel.cs @@ -2,12 +2,11 @@ public enum LogLevel { + // The order are very important for the logger to calculate properly the logging level, do not change! Fatal, Error, Warn, - Success, Info, - Custom, Debug, Trace } diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/NewItemDetails.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/NewItemDetails.cs index ca2269c7..9f83567f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/NewItemDetails.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Mod/NewItemDetails.cs @@ -16,7 +16,7 @@ public record NewItemDetails : NewItemDetailsBase public record NewItemFromCloneDetails : NewItemDetailsBase { /// - /// Id of the item to copy and use as a base + /// Id of the item to copy and use as a base /// [JsonPropertyName("itemTplToClone")] public string? ItemTplToClone @@ -26,7 +26,7 @@ public record NewItemFromCloneDetails : NewItemDetailsBase } /// - /// Item properties that should be applied over the top of the cloned base + /// Item properties that should be applied over the top of the cloned base /// [JsonPropertyName("overrideProperties")] public Props? OverrideProperties @@ -36,7 +36,7 @@ public record NewItemFromCloneDetails : NewItemDetailsBase } /// - /// ParentId for the new item (item type) + /// ParentId for the new item (item type) /// [JsonPropertyName("parentId")] public string? ParentId @@ -46,8 +46,8 @@ public record NewItemFromCloneDetails : NewItemDetailsBase } /// - /// the id the new item should have, leave blank to have one generated for you. - /// This is often known as the TplId, or TemplateId + /// the id the new item should have, leave blank to have one generated for you. + /// This is often known as the TplId, or TemplateId /// [JsonPropertyName("newId")] public string? NewId diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs index 4745c1e7..20ecef9c 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs @@ -1,19 +1,18 @@ -namespace SPTarkov.Server.Core.Models.Spt.Presets -{ - public record PresetCacheDetails - { - // Preset Ids related to the tpl - public HashSet PresetIds - { - get; - set; - } +namespace SPTarkov.Server.Core.Models.Spt.Presets; - // Id of the default preset for this tpl - public string? DefaultId - { - get; - set; - } +public record PresetCacheDetails +{ + // Preset Ids related to the tpl + public HashSet PresetIds + { + get; + set; + } + + // Id of the default preset for this tpl + public string? DefaultId + { + get; + set; } } diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Ragfair/TplWithFleaPrice.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Ragfair/TplWithFleaPrice.cs index 53539941..7a8266de 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Ragfair/TplWithFleaPrice.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Ragfair/TplWithFleaPrice.cs @@ -12,7 +12,7 @@ public record TplWithFleaPrice } /// - /// Roubles + /// Roubles /// [JsonPropertyName("price")] public double? Price diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/Locations.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/Locations.cs index 6145faf2..0ea64eb0 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/Locations.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/Locations.cs @@ -189,7 +189,7 @@ public record Locations } /// - /// Holds a mapping of the linkages between locations on the UI + /// Holds a mapping of the linkages between locations on the UI /// [JsonPropertyName("base")] public LocationsBase? Base @@ -226,6 +226,7 @@ public record Locations { var classProps = typeof(Locations).GetProperties().Where(p => p.PropertyType == typeof(Eft.Common.Location) && p.Name != "Item"); _locationDictionaryCache = classProps - .ToDictionary(propertyInfo => propertyInfo.Name, propertyInfo => propertyInfo.GetValue(this, null) as Eft.Common.Location, StringComparer.OrdinalIgnoreCase); + .ToDictionary(propertyInfo => propertyInfo.Name, propertyInfo => propertyInfo.GetValue(this, null) as Eft.Common.Location, + StringComparer.OrdinalIgnoreCase); } } diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs index 8102dab9..2eddd37c 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs @@ -445,49 +445,57 @@ public record EnvironmentSettings [JsonPropertyName("AutumnLateSettings")] public SeasonEnvironmentSettings AutumnLateSettings { - get; set; + get; + set; } [JsonPropertyName("AutumnSettings")] public SeasonEnvironmentSettings AutumnSettings { - get; set; + get; + set; } [JsonPropertyName("SpringEarlySettings")] public SeasonEnvironmentSettings SpringEarlySettings { - get; set; + get; + set; } [JsonPropertyName("SpringSettings")] public SeasonEnvironmentSettings SpringSettings { - get; set; + get; + set; } [JsonPropertyName("StormSettings")] public SeasonEnvironmentSettings StormSettings { - get; set; + get; + set; } [JsonPropertyName("SummerSettings")] public SeasonEnvironmentSettings SummerSettings { - get; set; + get; + set; } [JsonPropertyName("WinterSettings")] public SeasonEnvironmentSettings WinterSettings { - get; set; + get; + set; } [JsonPropertyName("SurfaceMultipliers")] public List? SurfaceMultipliers { - get; set; + get; + set; } } @@ -496,19 +504,22 @@ public record SeasonEnvironmentSettings [JsonPropertyName("RainSettings")] public List RainSettings { - get; set; + get; + set; } [JsonPropertyName("StepsVolumeMultiplier")] public double StepsVolumeMultiplier { - get; set; + get; + set; } [JsonPropertyName("WindMultipliers")] public List WindMultipliers { - get; set; + get; + set; } } @@ -532,13 +543,15 @@ public record WindMultiplier [JsonPropertyName("VolumeMult")] public double VolumeMult { - get; set; + get; + set; } [JsonPropertyName("WindSpeed")] public string WindSpeed { - get; set; + get; + set; } } @@ -547,19 +560,22 @@ public record RainSetting [JsonPropertyName("IndoorVolumeMult")] public int IndoorVolumeMult { - get; set; + get; + set; } [JsonPropertyName("OutdoorVolumeMult")] public double OutdoorVolumeMult { - get; set; + get; + set; } [JsonPropertyName("RainIntensity")] public string RainIntensity { - get; set; + get; + set; } } @@ -583,6 +599,7 @@ public record HeadphoneSettings set; } } + public record MetaXRAudioPluginSettings { public bool? EnabledPluginErrorChecker diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Services/LootRequest.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Services/LootRequest.cs index d42dfe6a..e7431d53 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Services/LootRequest.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Services/LootRequest.cs @@ -134,7 +134,7 @@ public record LootRequest } /// - /// Should seasonal items appear when it's not the season for them + /// Should seasonal items appear when it's not the season for them /// [JsonPropertyName("blockSeasonalItemsOutOfSeason")] public bool? BlockSeasonalItemsOutOfSeason diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Templates/Templates.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Templates/Templates.cs index c122f481..ab0442df 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Templates/Templates.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Templates/Templates.cs @@ -63,7 +63,7 @@ public record Templates } /// - /// The profile templates listed in the launcher on profile creation, split by account type (e.g. Standard) then side (e.g. bear/usec) + /// The profile templates listed in the launcher on profile creation, split by account type (e.g. Standard) then side (e.g. bear/usec) /// [JsonPropertyName("profiles")] public ProfileTemplates? Profiles @@ -73,7 +73,7 @@ public record Templates } /// - /// Flea prices of items - gathered from online flea market dump + /// Flea prices of items - gathered from online flea market dump /// [JsonPropertyName("prices")] public Dictionary? Prices @@ -83,7 +83,7 @@ public record Templates } /// - /// Default equipment loadouts that show on main inventory screen + /// Default equipment loadouts that show on main inventory screen /// [JsonPropertyName("defaultEquipmentPresets")] public List? DefaultEquipmentPresets @@ -93,7 +93,7 @@ public record Templates } /// - /// Achievements + /// Achievements /// [JsonPropertyName("achievements")] public List? Achievements @@ -103,7 +103,7 @@ public record Templates } /// - /// Achievements + /// Achievements /// [JsonPropertyName("customAchievements")] public List? CustomAchievements @@ -113,7 +113,7 @@ public record Templates } /// - /// Location services data + /// Location services data /// [JsonPropertyName("locationServices")] public LocationServices? LocationServices diff --git a/Libraries/SPTarkov.Server.Core/Models/Utils/ISptLogger.cs b/Libraries/SPTarkov.Server.Core/Models/Utils/ISptLogger.cs index e0b4b892..453508c5 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Utils/ISptLogger.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Utils/ISptLogger.cs @@ -12,6 +12,7 @@ public interface ISptLogger void Info(string data, Exception? ex = null); void Debug(string data, Exception? ex = null); void Critical(string data, Exception? ex = null); - void WriteToLogFile(string body, LogLevel level = LogLevel.Info); + void Log(LogLevel level, string data, LogTextColor? textColor = null, LogBackgroundColor? backgroundColor = null, Exception? ex = null); bool IsLogEnabled(LogLevel level); + void DumpAndStop(); } diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BotDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BotDynamicRouter.cs index 9b949df8..ee4f3385 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BotDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BotDynamicRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BundleDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BundleDynamicRouter.cs index 5caca9a1..371c3d68 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BundleDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/BundleDynamicRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/CustomizationDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/CustomizationDynamicRouter.cs index fca2888e..b2c6211c 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/CustomizationDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/CustomizationDynamicRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/DataDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/DataDynamicRouter.cs index bdddeae1..da418496 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/DataDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/DataDynamicRouter.cs @@ -1,15 +1,14 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; [Injectable(InjectableTypeOverride = typeof(DynamicRouter))] public class DataDynamicRouter : DynamicRouter { - public DataDynamicRouter( JsonUtil jsonUtil, DataCallbacks dataCallbacks diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/HttpDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/HttpDynamicRouter.cs index 7f25a725..bff02f89 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/HttpDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/HttpDynamicRouter.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/InraidDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/InraidDynamicRouter.cs index 976b03a9..677d83e0 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/InraidDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/InraidDynamicRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.InRaid; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/LocationDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/LocationDynamicRouter.cs index a1386796..f443235a 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/LocationDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/LocationDynamicRouter.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.DI; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/NotifierDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/NotifierDynamicRouter.cs index 128c5cbe..22134abf 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/NotifierDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/NotifierDynamicRouter.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/TraderDynamicRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/TraderDynamicRouter.cs index c7defd5c..75ecd50e 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Dynamic/TraderDynamicRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Dynamic/TraderDynamicRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Dynamic; diff --git a/Libraries/SPTarkov.Server.Core/Routers/EventOutputHolder.cs b/Libraries/SPTarkov.Server.Core/Routers/EventOutputHolder.cs index d4087c76..80c76fb0 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/EventOutputHolder.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/EventOutputHolder.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers; @@ -33,15 +33,19 @@ public class EventOutputHolder _cloner = cloner; } + /// + /// Get a fresh/empty response to send to the client + /// + /// Player id + /// ItemEventRouterResponse public ItemEventRouterResponse GetOutput(string sessionId) { - var resultFound = _outputStore.TryGetValue(sessionId, out var result); - if (resultFound) + if (_outputStore.TryGetValue(sessionId, out var result)) { return result; } - // Nothing found, reset to default + // Nothing found, Create new empty output response ResetOutput(sessionId); _outputStore.TryGetValue(sessionId, out result!); @@ -54,9 +58,11 @@ public class EventOutputHolder if (_outputStore.ContainsKey(sessionId)) { + // Dict contains existing output object, purge it _outputStore.Remove(sessionId); } + // Create fresh output object _outputStore.Add( sessionId, new ItemEventRouterResponse @@ -96,8 +102,9 @@ public class EventOutputHolder } ); } + /// - /// Update output object with most recent values from player profile + /// Update output object with most recent values from player profile /// /// Session id public void UpdateOutputProperties(string sessionId) @@ -126,14 +133,20 @@ public class EventOutputHolder } /// - /// Required as continuous productions don't reset and stay at 100% completion but client thinks it hasn't started + /// Required as continuous productions don't reset and stay at 100% completion but client thinks it hasn't started /// /// Productions in a profile private void CleanUpCompleteCraftsInProfile(Dictionary? productions) { foreach (var production in productions) { - if ((production.Value.SptIsComplete ?? false) && (production.Value.SptIsContinuous ?? false)) + if (production.Value == null) + { + // cultist circle + // remove production in case client already issued a HideoutDeleteProductionCommand and the item is moved to stash + productions.Remove(production.Key); + } + else if ((production.Value.SptIsComplete ?? false) && (production.Value.SptIsContinuous ?? false)) { // Water collector / Bitcoin etc production.Value.SptIsComplete = false; @@ -149,7 +162,7 @@ public class EventOutputHolder } /// - /// Return all hideout Improvements from player profile, adjust completed Improvements' completed property to be true + /// Return all hideout Improvements from player profile, adjust completed Improvements' completed property to be true /// /// Player profile /// Dictionary of hideout improvements @@ -175,7 +188,7 @@ public class EventOutputHolder } /// - /// Return productions from player profile except those completed crafts the client has already seen + /// Return productions from player profile except those completed crafts the client has already seen /// /// Productions from player profile /// Player session ID @@ -239,7 +252,7 @@ public class EventOutputHolder } /// - /// Convert the internal trader data object into an object we can send to the client + /// Convert the internal trader data object into an object we can send to the client /// /// Server data for traders /// Dict of trader id + TraderData diff --git a/Libraries/SPTarkov.Server.Core/Routers/HttpRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/HttpRouter.cs index c6e9d5f5..a1e78173 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/HttpRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/HttpRouter.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.DI; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.DI; namespace SPTarkov.Server.Core.Routers; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ImageRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ImageRouter.cs index 68b9b42c..7cf28c13 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ImageRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ImageRouter.cs @@ -1,17 +1,17 @@ -using SPTarkov.Server.Core.Services.Image; -using SPTarkov.Server.Core.Utils; using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; +using SPTarkov.Server.Core.Services.Image; +using SPTarkov.Server.Core.Utils; namespace SPTarkov.Server.Core.Routers; [Injectable] public class ImageRouter { + private readonly ISptLogger _logger; protected FileUtil _fileUtil; protected HttpFileUtil _httpFileUtil; protected ImageRouterService _imageRouterService; - ISptLogger _logger; public ImageRouter( FileUtil fileUtil, diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEventRouter.cs index 6117f3e4..bcac3883 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.ItemEvent; @@ -5,70 +6,48 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Utils.Logger; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Routers; [Injectable] -public class ItemEventRouter +public class ItemEventRouter(ISptLogger logger, + ISptLogger fileLogger, + JsonUtil jsonUtil, + ProfileHelper profileHelper, + LocalisationService localisationService, + EventOutputHolder eventOutputHolder, + IEnumerable itemEventRouters, + ICloner cloner) { - protected ICloner _cloner; - protected EventOutputHolder _eventOutputHolder; - protected HttpResponseUtil _httpResponseUtil; - protected List _itemEventRouters; - protected JsonUtil _jsonUtil; - protected LocalisationService _localisationService; - protected ISptLogger _logger; - protected ProfileHelper _profileHelper; - - public ItemEventRouter( - ISptLogger logger, - HttpResponseUtil httpResponseUtil, - JsonUtil jsonUtil, - ProfileHelper profileHelper, - LocalisationService localisationService, - EventOutputHolder eventOutputHolder, - IEnumerable itemEventRouters, - ICloner cloner - ) - { - _logger = logger; - _httpResponseUtil = httpResponseUtil; - _jsonUtil = jsonUtil; - _profileHelper = profileHelper; - _localisationService = localisationService; - _eventOutputHolder = eventOutputHolder; - _itemEventRouters = itemEventRouters.ToList(); - _cloner = cloner; - } /// - /// Handles ItemEventRouter Requests and processes them. + /// Handles ItemEventRouter Requests and processes them. /// /// Event request /// Session ID /// Item response public ItemEventRouterResponse HandleEvents(ItemEventRouterRequest info, string sessionID) { - var output = _eventOutputHolder.GetOutput(sessionID); + var output = eventOutputHolder.GetOutput(sessionID); foreach (var body in info.Data) { - var pmcData = _profileHelper.GetPmcProfile(sessionID); + var pmcData = profileHelper.GetPmcProfile(sessionID); - var eventRouter = _itemEventRouters.FirstOrDefault(r => r.CanHandle(body.Action)); + var eventRouter = itemEventRouters.FirstOrDefault(r => r.CanHandle(body.Action)); if (eventRouter is null) { - _logger.Error(_localisationService.GetText("event-unhandled_event", body.Action)); - _logger.WriteToLogFile(_jsonUtil.Serialize(info.Data)); + logger.Error(localisationService.GetText("event-unhandled_event", body.Action)); + fileLogger.Info(jsonUtil.Serialize(info.Data)); continue; } - if (_logger.IsLogEnabled(LogLevel.Debug)) + if (logger.IsLogEnabled(LogLevel.Debug)) { - _logger.Debug($"event: {body.Action}"); + logger.Debug($"event: {body.Action}"); } eventRouter.HandleItemEvent(body.Action, pmcData, body, sessionID, output); @@ -78,11 +57,11 @@ public class ItemEventRouter } } - _eventOutputHolder.UpdateOutputProperties(sessionID); + eventOutputHolder.UpdateOutputProperties(sessionID); // Clone output before resetting the output object ready for use next time - var outputClone = _cloner.Clone(output); - _eventOutputHolder.ResetOutput(sessionID); + var outputClone = cloner.Clone(output); + eventOutputHolder.ResetOutput(sessionID); return outputClone; } diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/CustomizationItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/CustomizationItemEventRouter.cs index 8720d13a..445a2935 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/CustomizationItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/CustomizationItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Models.Eft.Customization; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HealthItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HealthItemEventRouter.cs index eed5c245..869676f5 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HealthItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HealthItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Health; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HideoutItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HideoutItemEventRouter.cs index a2622b4b..32f077e8 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HideoutItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/HideoutItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Hideout; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InsuranceItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InsuranceItemEventRouter.cs index 959ac53b..074c1a5b 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InsuranceItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InsuranceItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Insurance; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InventoryItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InventoryItemEventRouter.cs index 7ae3b685..992b8d42 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InventoryItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/InventoryItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Eft.Inventory; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Quests; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/NoteItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/NoteItemEventRouter.cs index 02666802..911cd773 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/NoteItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/NoteItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Notes; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/QuestItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/QuestItemEventRouter.cs index 3b326d83..4f652e6a 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/QuestItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/QuestItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Quests; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RagfairItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RagfairItemEventRouter.cs index 8fd4f067..b75f22ff 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RagfairItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RagfairItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RepairItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RepairItemEventRouter.cs index 62d3a459..aff0917a 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RepairItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/RepairItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Repair; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/TradeItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/TradeItemEventRouter.cs index a2e49cf3..ee75ad29 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/TradeItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/TradeItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Trade; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/WishlistItemEventRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/WishlistItemEventRouter.cs index fc46e2d8..fd584f52 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/WishlistItemEventRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/WishlistItemEventRouter.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Eft.Wishlist; using SPTarkov.Server.Core.Models.Enums; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.ItemEvents; diff --git a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/HealthSaveLoadRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/HealthSaveLoadRouter.cs index c188bd03..6c4e6900 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/HealthSaveLoadRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/HealthSaveLoadRouter.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.SaveLoad; diff --git a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InraidSaveLoadRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InraidSaveLoadRouter.cs index adf0d783..e1ad15d5 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InraidSaveLoadRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InraidSaveLoadRouter.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Profile; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.SaveLoad; diff --git a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InsuranceSaveLoadRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InsuranceSaveLoadRouter.cs index 501c1b92..0f84b2b8 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InsuranceSaveLoadRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/InsuranceSaveLoadRouter.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Profile; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.SaveLoad; diff --git a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/ProfileSaveLoadRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/ProfileSaveLoadRouter.cs index 861c9e76..9fb9c261 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/ProfileSaveLoadRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/SaveLoad/ProfileSaveLoadRouter.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.SaveLoad; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Serializers/BundleSerializer.cs b/Libraries/SPTarkov.Server.Core/Routers/Serializers/BundleSerializer.cs index dd8cb8cc..e4dcc7ca 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Serializers/BundleSerializer.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Serializers/BundleSerializer.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.DI; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Loaders; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Serializers; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Serializers/ImageSerializer.cs b/Libraries/SPTarkov.Server.Core/Routers/Serializers/ImageSerializer.cs index ef910ceb..f6819d88 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Serializers/ImageSerializer.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Serializers/ImageSerializer.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.DI; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.DI; namespace SPTarkov.Server.Core.Routers.Serializers; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Serializers/NotifySerializer.cs b/Libraries/SPTarkov.Server.Core/Routers/Serializers/NotifySerializer.cs index 6a0e33b9..96a2c73a 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Serializers/NotifySerializer.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Serializers/NotifySerializer.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Controllers; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Controllers; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Serializers; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/AchievementStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/AchievementStaticRouter.cs index 66751986..2a435e96 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/AchievementStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/AchievementStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/BotStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/BotStaticRouter.cs index d9092db8..a2fc4073 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/BotStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/BotStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Bot; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/BuildStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/BuildStaticRouter.cs index f7ccc51c..c04fde8c 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/BuildStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/BuildStaticRouter.cs @@ -1,10 +1,10 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Builds; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.PresetBuild; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/BundleStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/BundleStaticRouter.cs index 6c93e18c..fed43264 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/BundleStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/BundleStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/ClientLogStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/ClientLogStaticRouter.cs index cb45fcc5..39f85870 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/ClientLogStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/ClientLogStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Spt.Logging; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/CustomizationStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/CustomizationStaticRouter.cs index 0a1bc1b4..0f8e635a 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/CustomizationStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/CustomizationStaticRouter.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/DataStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/DataStaticRouter.cs index 4309917a..a6714e18 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/DataStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/DataStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/DialogStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/DialogStaticRouter.cs index 10f346c1..f461c0bc 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/DialogStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/DialogStaticRouter.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Dialog; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/GameStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/GameStaticRouter.cs index a446eb5a..296f377d 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/GameStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/GameStaticRouter.cs @@ -1,10 +1,10 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Models.Eft.Game; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/HealthStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/HealthStaticRouter.cs index d7bd6d0a..543005ef 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/HealthStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/HealthStaticRouter.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Health; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/InraidStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/InraidStaticRouter.cs index c88b710b..ddff2c91 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/InraidStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/InraidStaticRouter.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.InRaid; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/InsuranceStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/InsuranceStaticRouter.cs index 1e3f2712..2109540b 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/InsuranceStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/InsuranceStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Insurance; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/ItemEventStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/ItemEventStaticRouter.cs index b318ff59..c8393f8d 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/ItemEventStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/ItemEventStaticRouter.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherStaticRouter.cs index 44b45bc5..064ad519 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherStaticRouter.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherV2StaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherV2StaticRouter.cs index 72608460..987990d5 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherV2StaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/LauncherV2StaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/LocationStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/LocationStaticRouter.cs index 6cef9fc7..13e448e5 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/LocationStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/LocationStaticRouter.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Location; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/MatchStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/MatchStaticRouter.cs index 55684193..f36fcb9b 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/MatchStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/MatchStaticRouter.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Match; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using static SPTarkov.Server.Core.Services.MatchLocationService; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/NotifierStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/NotifierStaticRouter.cs index 85e6759b..22a42ad1 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/NotifierStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/NotifierStaticRouter.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Request; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/PrestigeStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/PrestigeStaticRouter.cs index 87432880..945937da 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/PrestigeStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/PrestigeStaticRouter.cs @@ -1,9 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Prestige; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/ProfileStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/ProfileStaticRouter.cs index 199ad625..82dff1d8 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/ProfileStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/ProfileStaticRouter.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Launcher; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/QuestStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/QuestStaticRouter.cs index 4010e6c5..ee282cb3 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/QuestStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/QuestStaticRouter.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Quests; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/RagfairStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/RagfairStaticRouter.cs index cd05974b..c3d49e3b 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/RagfairStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/RagfairStaticRouter.cs @@ -1,9 +1,9 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/TraderStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/TraderStaticRouter.cs index a650fb85..eb790275 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/TraderStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/TraderStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Routers/Static/WeatherStaticRouter.cs b/Libraries/SPTarkov.Server.Core/Routers/Static/WeatherStaticRouter.cs index 438b8532..03e2860f 100644 --- a/Libraries/SPTarkov.Server.Core/Routers/Static/WeatherStaticRouter.cs +++ b/Libraries/SPTarkov.Server.Core/Routers/Static/WeatherStaticRouter.cs @@ -1,8 +1,8 @@ -using SPTarkov.Server.Core.Callbacks; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Routers.Static; diff --git a/Libraries/SPTarkov.Server.Core/Servers/ConfigServer.cs b/Libraries/SPTarkov.Server.Core/Servers/ConfigServer.cs index 29d88a04..106513ed 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/ConfigServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/ConfigServer.cs @@ -1,8 +1,9 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Servers; @@ -10,11 +11,11 @@ namespace SPTarkov.Server.Core.Servers; [Injectable(InjectionType.Singleton)] public class ConfigServer { - protected static readonly string[] acceptableFileExtensions = ["json", "jsonc"]; + protected readonly string[] acceptableFileExtensions = ["json", "jsonc"]; protected FileUtil _fileUtil; protected JsonUtil _jsonUtil; protected ISptLogger _logger; - protected Dictionary configs = new(); + private static Dictionary _configs = new(); public ConfigServer( ISptLogger logger, @@ -25,18 +26,22 @@ public class ConfigServer _logger = logger; _jsonUtil = jsonUtil; _fileUtil = fileUtil; - Initialize(); + + if (_configs.Count == 0) + { + Initialize(); + } } public T GetConfig() where T : BaseConfig { var configKey = GetConfigKey(typeof(T)); - if (!configs.ContainsKey(configKey.GetValue())) + if (!_configs.ContainsKey(configKey.GetValue())) { throw new Exception($"Config: {configKey} is undefined. Ensure you have not broken it via editing"); } - return configs[configKey.GetValue()] as T; + return _configs[configKey.GetValue()] as T; } private ConfigTypes GetConfigKey(Type type) @@ -52,7 +57,7 @@ public class ConfigServer public T GetConfigByString(string configType) where T : BaseConfig { - return configs[configType] as T; + return _configs[configType] as T; } public void Initialize() @@ -80,18 +85,9 @@ public class ConfigServer throw new Exception($"Server will not run until the: {file} config error mentioned above is fixed"); } - configs[$"spt-{_fileUtil.StripExtension(file)}"] = deserializedContent; + _configs[$"spt-{_fileUtil.StripExtension(file)}"] = deserializedContent; } } - - /** TODO: deal with this: - this.logger.info(`Commit hash: { - globalThis.G_COMMIT || "DEBUG" - }`); - this.logger.info(`Build date: { - globalThis.G_BUILDTIME || "DEBUG" - }`); - **/ } private Type GetConfigTypeByFilename(string filename) diff --git a/Libraries/SPTarkov.Server.Core/Servers/DatabaseServer.cs b/Libraries/SPTarkov.Server.Core/Servers/DatabaseServer.cs index 09c0faba..84b1ca43 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/DatabaseServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/DatabaseServer.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Spt.Server; -using SPTarkov.Common.Annotations; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Spt.Server; namespace SPTarkov.Server.Core.Servers; diff --git a/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs b/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs index 14f9da74..1fcfa90e 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs @@ -1,14 +1,13 @@ using System.Collections.Immutable; using System.IO.Compression; using System.Text; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Server; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Servers.Http; @@ -89,7 +88,7 @@ public class SptHttpListener : IHttpListener while (readTask.Result != 0) { readBytes += readTask.Result; - totalRead.AddRange(memory.ToArray()); + totalRead.AddRange(memory[..readTask.Result].ToArray()); memory = new Memory(new byte[BodyReadBufferSize]); readTask = req.Body.ReadAsync(memory).AsTask(); readTask.Wait(); @@ -131,7 +130,7 @@ public class SptHttpListener : IHttpListener } /// - /// Send HTTP response back to sender + /// Send HTTP response back to sender /// /// Player id making request /// Incoming request @@ -159,7 +158,7 @@ public class SptHttpListener : IHttpListener SendJson(resp, output, sessionID); if (_logger.IsLogEnabled(LogLevel.Debug)) { - _logger.Debug($"Response: {output.Substring(0, Math.Min(output.Length, 4000))}"); + _logger.Debug($"Response: {output}"); } LogRequest(req, output); @@ -182,7 +181,7 @@ public class SptHttpListener : IHttpListener } /// - /// Is request flagged as debug enabled + /// Is request flagged as debug enabled /// /// Incoming request /// True if request is flagged as debug @@ -192,7 +191,7 @@ public class SptHttpListener : IHttpListener } /// - /// Log request if enabled + /// Log request if enabled /// /// Log request if enabled /// Output string @@ -200,7 +199,7 @@ public class SptHttpListener : IHttpListener { if (ProgramStatics.ENTRY_TYPE() != EntryType.RELEASE) { - var log = new Response(req.Method, output.Substring(0, Math.Min(output.Length, 2000))); + var log = new Response(req.Method, output); _requestLogger.Info($"RESPONSE={_jsonUtil.Serialize(log)}"); } } diff --git a/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs b/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs index b8ac4823..2d9b232f 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs @@ -1,15 +1,15 @@ using System.Net; using System.Security.Authentication; +using Microsoft.AspNetCore.Server.Kestrel.Https; +using Microsoft.Extensions.Primitives; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers.Http; using SPTarkov.Server.Core.Services; -using Microsoft.AspNetCore.Server.Kestrel.Https; -using Microsoft.Extensions.Primitives; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Servers; @@ -21,6 +21,7 @@ public class HttpServer( CertificateHelper _certificateHelper, ApplicationContext _applicationContext, WebSocketServer _webSocketServer, + ProfileActivityService _profileActivityService, IEnumerable _httpListeners ) { @@ -28,7 +29,7 @@ public class HttpServer( private bool _started; /// - /// Handle server loading event + /// Handle server loading event /// /// Server builder /// Throws Exception when WebApplicationBuiler or WebApplication are null @@ -39,19 +40,18 @@ public class HttpServer( throw new Exception("WebApplicationBuilder is null in HttpServer.Load()"); } - builder.WebHost.ConfigureKestrel( - options => + builder.WebHost.ConfigureKestrel(options => + { + options.Listen(IPAddress.Parse(_httpConfig.Ip), _httpConfig.Port, listenOptions => { - options.Listen(IPAddress.Parse(_httpConfig.Ip), _httpConfig.Port, listenOptions => + listenOptions.UseHttps(opts => { - listenOptions.UseHttps(opts => - { - opts.SslProtocols = SslProtocols.Tls12 | SslProtocols.Tls13; - opts.ServerCertificate = _certificateHelper.LoadOrGenerateCertificatePfx(); - opts.ClientCertificateMode = ClientCertificateMode.NoCertificate; - }); + opts.SslProtocols = SslProtocols.Tls12 | SslProtocols.Tls13; + opts.ServerCertificate = _certificateHelper.LoadOrGenerateCertificatePfx(); + opts.ClientCertificateMode = ClientCertificateMode.NoCertificate; }); }); + }); var app = builder.Build(); @@ -67,8 +67,7 @@ public class HttpServer( KeepAliveInterval = TimeSpan.FromSeconds(60) }); - app?.Use( - (HttpContext req, RequestDelegate _) => + app?.Use((HttpContext req, RequestDelegate _) => { return Task.Factory.StartNew(async () => await HandleFallback(req)); } @@ -90,7 +89,7 @@ public class HttpServer( context.Request.Cookies.TryGetValue("PHPSESSID", out var sessionId); if (sessionId != null) { - _applicationContext.AddValue(ContextVariableType.SESSION_ID, sessionId); + _profileActivityService.SetActivityTimestamp(sessionId); } // Extract header for original IP detection @@ -108,6 +107,7 @@ public class HttpServer( } catch (Exception ex) { + _logger.Debug("Error handling request: " + context.Request.Path); _logger.Critical(ex.Message); _logger.Critical(ex.StackTrace); } @@ -116,7 +116,7 @@ public class HttpServer( } /// - /// Log request - handle differently if request is local + /// Log request - handle differently if request is local /// /// HttpContext of request /// Ip of requester @@ -150,12 +150,12 @@ public class HttpServer( var forwardedFor = context.GetHeaderIfExists("x-forwarded-for"); return forwardedFor.HasValue - ? forwardedFor.Value.First()!.Split(",")[0].Trim() - : context.Connection.RemoteIpAddress!.ToString().Split(":").Last(); + ? forwardedFor.Value.First()!.Split(",")[0].Trim() + : context.Connection.RemoteIpAddress!.ToString().Split(":").Last(); } /// - /// Check against hardcoded values that determine it's from a local address + /// Check against hardcoded values that determine it's from a local address /// /// Address to check /// True if its local diff --git a/Libraries/SPTarkov.Server.Core/Servers/RagfairServer.cs b/Libraries/SPTarkov.Server.Core/Servers/RagfairServer.cs index ed3dc070..672db1d6 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/RagfairServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/RagfairServer.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Servers; @@ -67,7 +67,7 @@ public class RagfairServer( } /// - /// Get traders who need to be periodically refreshed + /// Get traders who need to be periodically refreshed /// /// List of traders public List GetUpdateableTraders() @@ -85,7 +85,7 @@ public class RagfairServer( } /// - /// Disable/Hide an offer from flea + /// Disable/Hide an offer from flea /// /// OfferID to hide public void HideOffer(string offerId) diff --git a/Libraries/SPTarkov.Server.Core/Servers/SaveServer.cs b/Libraries/SPTarkov.Server.Core/Servers/SaveServer.cs index 8a9b248a..de833a5b 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/SaveServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/SaveServer.cs @@ -1,6 +1,6 @@ using System.Collections.Concurrent; -using System.Collections.Generic; using System.Diagnostics; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Profile; @@ -8,7 +8,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Servers; @@ -33,7 +32,7 @@ public class SaveServer( protected ConcurrentDictionary saveMd5 = new(); /// - /// Add callback to occur prior to saving profile changes + /// Add callback to occur prior to saving profile changes /// /// ID for the save callback /// Callback to execute prior to running SaveServer.saveProfile() @@ -43,7 +42,7 @@ public class SaveServer( } /// - /// Remove a callback from being executed prior to saving profile in SaveServer.saveProfile() + /// Remove a callback from being executed prior to saving profile in SaveServer.saveProfile() /// /// ID of Callback to remove public void RemoveBeforeSaveCallback(string id) @@ -55,7 +54,7 @@ public class SaveServer( } /// - /// Load all profiles in /user/profiles folder into memory (this.profiles) + /// Load all profiles in /user/profiles folder into memory (this.profiles) /// public void Load() { @@ -82,7 +81,7 @@ public class SaveServer( } /// - /// Save changes for each profile from memory into user/profiles json + /// Save changes for each profile from memory into user/profiles json /// public void Save() { @@ -100,7 +99,7 @@ public class SaveServer( } /// - /// Get a player profile from memory + /// Get a player profile from memory /// /// Session ID /// SptProfile of the player @@ -131,7 +130,7 @@ public class SaveServer( } /// - /// Gets all profiles from memory + /// Gets all profiles from memory /// /// Dictionary of Profiles with their ID as Keys. public Dictionary GetProfiles() @@ -140,7 +139,7 @@ public class SaveServer( } /// - /// Delete a profile by id (Does not remove the profile file!) + /// Delete a profile by id (Does not remove the profile file!) /// /// ID of profile to remove /// True when deleted, false when profile not found @@ -158,7 +157,7 @@ public class SaveServer( } /// - /// Create a new profile in memory with empty pmc/scav objects + /// Create a new profile in memory with empty pmc/scav objects /// /// Basic profile data /// Thrown when profile already exists @@ -184,7 +183,7 @@ public class SaveServer( } /// - /// Add full profile in memory by key (info.id) + /// Add full profile in memory by key (info.id) /// /// Profile to save public void AddProfile(SptProfile profileDetails) @@ -193,8 +192,8 @@ public class SaveServer( } /// - /// Look up profile json in user/profiles by id and store in memory.
- /// Execute saveLoadRouters callbacks after being loaded into memory. + /// Look up profile json in user/profiles by id and store in memory.
+ /// Execute saveLoadRouters callbacks after being loaded into memory. ///
/// ID of profile to store in memory public void LoadProfile(string sessionID) @@ -202,7 +201,7 @@ public class SaveServer( var filename = $"{sessionID}.json"; var filePath = $"{profileFilepath}{filename}"; if (_fileUtil.FileExists(filePath)) - // File found, store in profiles[] + // File found, store in profiles[] { profiles[sessionID] = _jsonUtil.DeserializeFromFile(filePath); } @@ -216,8 +215,8 @@ public class SaveServer( } /// - /// Save changes from in-memory profile to user/profiles json - /// Execute onBeforeSaveCallbacks callbacks prior to being saved to json + /// Save changes from in-memory profile to user/profiles json + /// Execute onBeforeSaveCallbacks callbacks prior to being saved to json /// /// Profile id (user/profiles/id.json) /// Time taken to save the profile in seconds @@ -264,7 +263,7 @@ public class SaveServer( } /// - /// Remove a physical profile json from user/profiles + /// Remove a physical profile json from user/profiles /// /// Profile ID to remove /// True if successful @@ -274,7 +273,11 @@ public class SaveServer( if (profiles.ContainsKey(sessionID)) { profiles.TryRemove(sessionID, out _); - _fileUtil.DeleteFile(file); + if (!_fileUtil.DeleteFile(file)) + { + _logger.Error($"Unable to delete file, not found: {file}"); + } + } return !_fileUtil.FileExists(file); diff --git a/Libraries/SPTarkov.Server.Core/Servers/WebSocketServer.cs b/Libraries/SPTarkov.Server.Core/Servers/WebSocketServer.cs index e1ac0192..abda551d 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/WebSocketServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/WebSocketServer.cs @@ -1,7 +1,8 @@ using System.Net.WebSockets; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers.Ws; -using SPTarkov.Common.Annotations; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Servers; @@ -37,7 +38,10 @@ public class WebSocketServer( { if (webSocket.State == WebSocketState.Open) { - _logger.Info($"WebSocketHandler \"{wsh.GetSocketId()}\" connected"); + if (_logger.IsLogEnabled(LogLevel.Debug)) + { + _logger.Debug($"WebSocketHandler \"{wsh.GetSocketId()}\" connected"); + } } await wsh.OnConnection(webSocket, context); diff --git a/Libraries/SPTarkov.Server.Core/Servers/Ws/Message/DefaultSptWebSocketMessageHandler.cs b/Libraries/SPTarkov.Server.Core/Servers/Ws/Message/DefaultSptWebSocketMessageHandler.cs index 548a0566..f35145c7 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/Ws/Message/DefaultSptWebSocketMessageHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/Ws/Message/DefaultSptWebSocketMessageHandler.cs @@ -1,7 +1,7 @@ using System.Net.WebSockets; using System.Text; -using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Utils; namespace SPTarkov.Server.Core.Servers.Ws.Message; diff --git a/Libraries/SPTarkov.Server.Core/Servers/Ws/SptWebSocketConnectionHandler.cs b/Libraries/SPTarkov.Server.Core/Servers/Ws/SptWebSocketConnectionHandler.cs index 07b76e80..7cc7ec4f 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/Ws/SptWebSocketConnectionHandler.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/Ws/SptWebSocketConnectionHandler.cs @@ -1,13 +1,13 @@ using System.Collections.Concurrent; using System.Net.WebSockets; using System.Text; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Ws; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers.Ws.Message; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Servers.Ws; diff --git a/Libraries/SPTarkov.Server.Core/Services/AirdropService.cs b/Libraries/SPTarkov.Server.Core/Services/AirdropService.cs index 6ff1c524..5d85185c 100644 --- a/Libraries/SPTarkov.Server.Core/Services/AirdropService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/AirdropService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Services; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; diff --git a/Libraries/SPTarkov.Server.Core/Services/BackupService.cs b/Libraries/SPTarkov.Server.Core/Services/BackupService.cs index f0f88c21..8c3b43f5 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BackupService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BackupService.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Spt.Mod; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -45,7 +45,7 @@ public class BackupService } /// - /// Start the backup interval if enabled in config. + /// Start the backup interval if enabled in config. /// public void StartBackupSystem() { @@ -76,9 +76,9 @@ public class BackupService } /// - /// Initializes the backup process.
- /// This method orchestrates the profile backup service. Handles copying profiles to a backup directory and cleaning - /// up old backups if the number exceeds the configured maximum. + /// Initializes the backup process.
+ /// This method orchestrates the profile backup service. Handles copying profiles to a backup directory and cleaning + /// up old backups if the number exceeds the configured maximum. ///
public void Init() { @@ -123,7 +123,10 @@ public class BackupService // Create absolute path to file var relativeSourceFilePath = Path.Combine(_profileDir, profileFileName); var absoluteDestinationFilePath = Path.Combine(targetDir, profileFileName); - _fileUtil.CopyFile(relativeSourceFilePath, absoluteDestinationFilePath); + if (!_fileUtil.CopyFile(relativeSourceFilePath, absoluteDestinationFilePath)) + { + _logger.Error($"Source file not found: {relativeSourceFilePath}. Cannot copy to: {absoluteDestinationFilePath}"); + } } // Write a copy of active mods. @@ -144,7 +147,7 @@ public class BackupService } /// - /// Check to see if the backup service is enabled via the config. + /// Check to see if the backup service is enabled via the config. /// /// True if enabled, false otherwise. protected bool IsEnabled() @@ -163,8 +166,8 @@ public class BackupService } /// - /// Generates the target directory path for the backup. The directory path is constructed using the `directory` from - /// the configuration and the current backup date. + /// Generates the target directory path for the backup. The directory path is constructed using the `directory` from + /// the configuration and the current backup date. /// /// The target directory path for the backup. protected string GenerateBackupTargetDir() @@ -174,7 +177,7 @@ public class BackupService } /// - /// Generates a formatted backup date string in the format `YYYY-MM-DD_hh-mm-ss`. + /// Generates a formatted backup date string in the format `YYYY-MM-DD_hh-mm-ss`. /// /// The formatted backup date string. protected string GenerateBackupDate() @@ -185,9 +188,9 @@ public class BackupService } /// - /// Cleans up old backups in the backup directory.
- /// This method reads the backup directory, and sorts backups by modification time. If the number of backups exceeds - /// the configured maximum, it deletes the oldest backups. + /// Cleans up old backups in the backup directory.
+ /// This method reads the backup directory, and sorts backups by modification time. If the number of backups exceeds + /// the configured maximum, it deletes the oldest backups. ///
protected void CleanBackups() { @@ -222,7 +225,7 @@ public class BackupService } /// - /// Retrieves and sorts the backup file paths from the specified directory. + /// Retrieves and sorts the backup file paths from the specified directory. /// /// The directory to search for backup files. /// List of sorted backup file paths. @@ -235,7 +238,7 @@ public class BackupService } /// - /// Compares two backup folder names based on their extracted dates. + /// Compares two backup folder names based on their extracted dates. /// /// The name of the first backup folder. /// The name of the second backup folder. @@ -254,7 +257,7 @@ public class BackupService } /// - /// Extracts a date from a folder name string formatted as `YYYY-MM-DD_hh-mm-ss`. + /// Extracts a date from a folder name string formatted as `YYYY-MM-DD_hh-mm-ss`. /// /// The name of the folder from which to extract the date. /// A DateTime object if the folder name is in the correct format, otherwise null. @@ -279,7 +282,7 @@ public class BackupService } /// - /// Removes excess backups from the backup directory. + /// Removes excess backups from the backup directory. /// /// List of backup file names to be removed. /// A promise that resolves when all specified backups have been removed. @@ -298,7 +301,7 @@ public class BackupService } /// - /// Get a List of active server mod details. + /// Get a List of active server mod details. /// /// A List of mod names. protected List GetActiveServerMods() @@ -308,6 +311,7 @@ public class BackupService { return []; } + List result = []; foreach (var mod in mods) diff --git a/Libraries/SPTarkov.Server.Core/Services/BotEquipmentFilterService.cs b/Libraries/SPTarkov.Server.Core/Services/BotEquipmentFilterService.cs index 49cd9f64..9ac3b698 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotEquipmentFilterService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotEquipmentFilterService.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -5,8 +7,6 @@ using SPTarkov.Server.Core.Models.Spt.Bots; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -164,8 +164,8 @@ public class BotEquipmentFilterService { var blacklistDetailsForBot = _botEquipmentConfig.GetValueOrDefault(botRole, null); - return (blacklistDetailsForBot?.Blacklist ?? []).FirstOrDefault( - equipmentFilter => playerLevel >= equipmentFilter.LevelRange.Min && playerLevel <= equipmentFilter.LevelRange.Max + return (blacklistDetailsForBot?.Blacklist ?? []).FirstOrDefault(equipmentFilter => + playerLevel >= equipmentFilter.LevelRange.Min && playerLevel <= equipmentFilter.LevelRange.Max ); } @@ -179,8 +179,8 @@ public class BotEquipmentFilterService { var whitelistDetailsForBot = _botEquipmentConfig.GetValueOrDefault(botRole, null); - return (whitelistDetailsForBot?.Whitelist ?? []).FirstOrDefault( - equipmentFilter => playerLevel >= equipmentFilter.LevelRange.Min && playerLevel <= equipmentFilter.LevelRange.Max + return (whitelistDetailsForBot?.Whitelist ?? []).FirstOrDefault(equipmentFilter => + playerLevel >= equipmentFilter.LevelRange.Min && playerLevel <= equipmentFilter.LevelRange.Max ); } @@ -194,8 +194,7 @@ public class BotEquipmentFilterService { var weightingDetailsForBot = _botEquipmentConfig.GetValueOrDefault(botRole, null); - return (weightingDetailsForBot?.WeightingAdjustmentsByBotLevel ?? []).FirstOrDefault( - x => botLevel >= x.LevelRange.Min && botLevel <= x.LevelRange.Max + return (weightingDetailsForBot?.WeightingAdjustmentsByBotLevel ?? []).FirstOrDefault(x => botLevel >= x.LevelRange.Min && botLevel <= x.LevelRange.Max ); } @@ -209,8 +208,8 @@ public class BotEquipmentFilterService { var weightingDetailsForBot = _botEquipmentConfig.GetValueOrDefault(botRole, null); - return (weightingDetailsForBot?.WeightingAdjustmentsByBotLevel ?? []).FirstOrDefault( - x => playerlevel >= x.LevelRange.Min && playerlevel <= x.LevelRange.Max + return (weightingDetailsForBot?.WeightingAdjustmentsByBotLevel ?? []).FirstOrDefault(x => + playerlevel >= x.LevelRange.Min && playerlevel <= x.LevelRange.Max ); } diff --git a/Libraries/SPTarkov.Server.Core/Services/BotEquipmentModPoolService.cs b/Libraries/SPTarkov.Server.Core/Services/BotEquipmentModPoolService.cs index fd910b0f..9e6cb9ec 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotEquipmentModPoolService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotEquipmentModPoolService.cs @@ -1,11 +1,11 @@ using System.Collections.Concurrent; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -45,7 +45,7 @@ public class BotEquipmentModPoolService } /// - /// Store dictionary of mods for each item passed in + /// Store dictionary of mods for each item passed in /// /// Items to find related mods and store in modPool /// Mod pool to choose from e.g. "weapon" for weaponModPool @@ -145,7 +145,7 @@ public class BotEquipmentModPoolService } /// - /// Empty the mod pool + /// Empty the mod pool /// public void ResetPool() { @@ -153,7 +153,7 @@ public class BotEquipmentModPoolService } /// - /// Get array of compatible mods for an items mod slot (generate pool if it doesn't exist already) + /// Get array of compatible mods for an items mod slot (generate pool if it doesn't exist already) /// /// Item to look up /// Slot to get compatible mods for @@ -170,7 +170,7 @@ public class BotEquipmentModPoolService } /// - /// Get mods for a piece of gear by its tpl + /// Get mods for a piece of gear by its tpl /// /// Items tpl to look up mods for /// Dictionary of mods (keys are mod slot names) with array of compatible mod tpls as value @@ -187,7 +187,7 @@ public class BotEquipmentModPoolService } /// - /// Get mods for a weapon by its tpl + /// Get mods for a weapon by its tpl /// /// Weapons tpl to look up mods for /// Dictionary of mods (keys are mod slot names) with array of compatible mod tpls as value @@ -202,7 +202,7 @@ public class BotEquipmentModPoolService } /// - /// Get required mods for a weapon by its tpl + /// Get required mods for a weapon by its tpl /// /// Weapons tpl to look up mods for /// Dictionary of mods (keys are mod slot names) with array of compatible mod tpls as value @@ -232,13 +232,12 @@ public class BotEquipmentModPoolService } /// - /// Create weapon mod pool and set generated flag to true + /// Create weapon mod pool and set generated flag to true /// protected void GenerateWeaponPool() { var weapons = _databaseService.GetItems() - .Values.Where( - item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && _itemHelper.IsOfBaseclass(item.Id, BaseClasses.WEAPON) + .Values.Where(item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && _itemHelper.IsOfBaseclass(item.Id, BaseClasses.WEAPON) ); GeneratePool(weapons, "weapon"); @@ -247,22 +246,21 @@ public class BotEquipmentModPoolService } /// - /// Create gear mod pool and set generated flag to true + /// Create gear mod pool and set generated flag to true /// protected void GenerateGearPool() { var gear = _databaseService.GetItems() - .Values.Where( - item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && - _itemHelper.IsOfBaseclasses( - item.Id, - [ - BaseClasses.ARMORED_EQUIPMENT, - BaseClasses.VEST, - BaseClasses.ARMOR, - BaseClasses.HEADWEAR - ] - ) + .Values.Where(item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && + _itemHelper.IsOfBaseclasses( + item.Id, + [ + BaseClasses.ARMORED_EQUIPMENT, + BaseClasses.VEST, + BaseClasses.ARMOR, + BaseClasses.HEADWEAR + ] + ) ); GeneratePool(gear, "gear"); diff --git a/Libraries/SPTarkov.Server.Core/Services/BotGenerationCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/BotGenerationCacheService.cs index 14eb95be..66875b34 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotGenerationCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotGenerationCacheService.cs @@ -1,8 +1,8 @@ using System.Collections.Concurrent; -using SPTarkov.Server.Core.Models.Eft.Common.Tables; -using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Common.Annotations; using SPTarkov.Common.Extensions; +using SPTarkov.Server.Core.Models.Eft.Common.Tables; +using SPTarkov.Server.Core.Models.Utils; namespace SPTarkov.Server.Core.Services; @@ -17,7 +17,7 @@ public class BotGenerationCacheService( /// - /// Store list of bots in cache, shuffle results before storage + /// Store list of bots in cache, shuffle results before storage /// /// Role bot is stored as (assault/bossTagilla etc.) /// Bots we want to store in the cache @@ -33,8 +33,8 @@ public class BotGenerationCacheService( } /// - /// Find and return a bot based on its role.
- /// Remove bot from internal list so it can't be retrieved again. + /// Find and return a bot based on its role.
+ /// Remove bot from internal list so it can't be retrieved again. ///
/// role to retrieve (assault/bossTagilla etc) /// BotBase object @@ -64,7 +64,7 @@ public class BotGenerationCacheService( } /// - /// Cache a bot that has been sent to the client in memory for later use post-raid to determine if player killed a traitor scav + /// Cache a bot that has been sent to the client in memory for later use post-raid to determine if player killed a traitor scav /// /// Bot object to store public void StoreUsedBot(BotBase botToStore) @@ -73,8 +73,8 @@ public class BotGenerationCacheService( } /// - /// Get a bot by its profileId that has been generated and sent to client for current raid.
- /// Cache is wiped post-raid in client/match/offline/end endOfflineRaid() + /// Get a bot by its profileId that has been generated and sent to client for current raid.
+ /// Cache is wiped post-raid in client/match/offline/end endOfflineRaid() ///
/// ID of bot to get /// BotBase object @@ -84,7 +84,7 @@ public class BotGenerationCacheService( } /// - /// Remove all cached bot profiles from memory + /// Remove all cached bot profiles from memory /// public void ClearStoredBots() { @@ -93,7 +93,7 @@ public class BotGenerationCacheService( } /// - /// Does cache have a bot with requested key + /// Does cache have a bot with requested key /// /// False if empty public bool CacheHasBotWithKey(string key, int size = 0) diff --git a/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs index 5397b7ba..c7e33407 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotLootCacheService.cs @@ -1,4 +1,5 @@ using System.Collections.Concurrent; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Bots; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -21,7 +21,7 @@ public class BotLootCacheService( ICloner _cloner ) { - protected ConcurrentDictionary _lootCache = new ConcurrentDictionary(); + protected ConcurrentDictionary _lootCache = new(); /// /// Remove cached bot loot data @@ -580,7 +580,7 @@ public class BotLootCacheService( ) ) { - _logger.Error($"Unable to add loot cache for bot role: {botRole}"); + _logger.Info($"Unable to add loot cache for bot role: {botRole} - already exists"); } } diff --git a/Libraries/SPTarkov.Server.Core/Services/BotNameService.cs b/Libraries/SPTarkov.Server.Core/Services/BotNameService.cs index ab5f6dc5..c7c76025 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotNameService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotNameService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Bots; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -20,8 +20,8 @@ public class BotNameService( ConfigServer _configServer ) { - protected BotConfig _botConfig = _configServer.GetConfig(); protected readonly Lock _lockObject = new(); + protected BotConfig _botConfig = _configServer.GetConfig(); protected HashSet _usedNameCache = new(); /// diff --git a/Libraries/SPTarkov.Server.Core/Services/BotWeaponModLimitService.cs b/Libraries/SPTarkov.Server.Core/Services/BotWeaponModLimitService.cs index 97679c02..c088a86d 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BotWeaponModLimitService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BotWeaponModLimitService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Spt.Bots; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -56,10 +56,10 @@ public class BotWeaponModLimitService( } /// - /// Check if weapon mod item is on limited list + has surpassed the limit set for it
- /// Exception: Always allow ncstar backup mount
- /// Exception: Always allow scopes with a scope for a parent
- /// Exception: Always disallow mounts that hold only scopes once scope limit reached
+ /// Check if weapon mod item is on limited list + has surpassed the limit set for it
+ /// Exception: Always allow ncstar backup mount
+ /// Exception: Always allow scopes with a scope for a parent
+ /// Exception: Always disallow mounts that hold only scopes once scope limit reached
/// Exception: Always disallow mounts that hold only flashlights once flashlight limit reached ///
/// role the bot has e.g. assault @@ -79,16 +79,15 @@ public class BotWeaponModLimitService( if (modsParent.Id == ItemTpl.MOUNT_NCSTAR_MPR45_BACKUP || modTemplate.Id == ItemTpl.MOUNT_NCSTAR_MPR45_BACKUP) { // If weapon already has a longer ranged scope on it, allow ncstar to be spawned - if (weapon.Any( - item => - _itemHelper.IsOfBaseclasses( - item.Template, - [ - BaseClasses.ASSAULT_SCOPE, - BaseClasses.OPTIC_SCOPE, - BaseClasses.SPECIAL_SCOPE - ] - ) + if (weapon.Any(item => + _itemHelper.IsOfBaseclasses( + item.Template, + [ + BaseClasses.ASSAULT_SCOPE, + BaseClasses.OPTIC_SCOPE, + BaseClasses.SPECIAL_SCOPE + ] + ) )) { return false; diff --git a/Libraries/SPTarkov.Server.Core/Services/BundleHashCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/BundleHashCacheService.cs index 8af8b7f5..a2f21b60 100644 --- a/Libraries/SPTarkov.Server.Core/Services/BundleHashCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/BundleHashCacheService.cs @@ -1,75 +1,74 @@ -using SPTarkov.Server.Core.Models.Utils; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -namespace SPTarkov.Server.Core.Services +namespace SPTarkov.Server.Core.Services; + +[Injectable(InjectionType.Singleton)] +public class BundleHashCacheService { - [Injectable(InjectionType.Singleton)] - public class BundleHashCacheService + protected const string _bundleHashCachePath = "./user/cache/"; + protected const string _cacheName = "bundleHashCache.json"; + protected readonly Dictionary _bundleHashes = new(); + private readonly FileUtil _fileUtil; + private readonly HashUtil _hashUtil; + private readonly JsonUtil _jsonUtil; + private readonly ISptLogger _logger; + + public BundleHashCacheService( + ISptLogger logger, + JsonUtil jsonUtil, + HashUtil hashUtil, + FileUtil fileUtil) { - private readonly ISptLogger _logger; - private readonly JsonUtil _jsonUtil; - private readonly HashUtil _hashUtil; - private readonly FileUtil _fileUtil; - protected readonly Dictionary _bundleHashes = new Dictionary(); - protected const string _bundleHashCachePath = "./user/cache/"; - protected const string _cacheName = "bundleHashCache.json"; + _logger = logger; + _jsonUtil = jsonUtil; + _hashUtil = hashUtil; + _fileUtil = fileUtil; + } - public BundleHashCacheService( - ISptLogger logger, - JsonUtil jsonUtil, - HashUtil hashUtil, - FileUtil fileUtil) + public uint GetStoredValue(string key) + { + if (!_bundleHashes.TryGetValue(key, out var value)) { - _logger = logger; - _jsonUtil = jsonUtil; - _hashUtil = hashUtil; - _fileUtil = fileUtil; + return 0; } - public uint GetStoredValue(string key) - { - if (!_bundleHashes.TryGetValue(key, out var value)) - { - return 0; - } + return value; + } - return value; + public void StoreValue(string bundlePath, uint hash) + { + _bundleHashes.Add(bundlePath, hash); + + if (!Directory.Exists(_bundleHashCachePath)) + { + Directory.CreateDirectory(_bundleHashCachePath); } - public void StoreValue(string bundlePath, uint hash) - { - _bundleHashes.Add(bundlePath, hash); + _fileUtil.WriteFile(Path.Join(_bundleHashCachePath, _cacheName), _jsonUtil.Serialize(_bundleHashes)); - if (!Directory.Exists(_bundleHashCachePath)) - { - Directory.CreateDirectory(_bundleHashCachePath); - } + _logger.Debug($"Bundle: {bundlePath} hash stored in: ${_bundleHashCachePath}"); + } - _fileUtil.WriteFile(Path.Join(_bundleHashCachePath, _cacheName), _jsonUtil.Serialize(_bundleHashes)); + public bool CalculateAndMatchHash(string BundlePath) + { + return MatchWithStoredHash(BundlePath, CalculateHash(BundlePath)); + } - _logger.Debug($"Bundle: {bundlePath} hash stored in: ${_bundleHashCachePath}"); - } + public void CalculateAndStoreHash(string BundlePath) + { + StoreValue(BundlePath, CalculateHash(BundlePath)); + } - public bool CalculateAndMatchHash(string BundlePath) - { - return MatchWithStoredHash(BundlePath, CalculateHash(BundlePath)); - } + public uint CalculateHash(string BundlePath) + { + var fileData = _fileUtil.ReadFile(BundlePath); + return _hashUtil.GenerateCrc32ForData(fileData); + } - public void CalculateAndStoreHash(string BundlePath) - { - StoreValue(BundlePath, CalculateHash(BundlePath)); - } - - public uint CalculateHash(string BundlePath) - { - var fileData = _fileUtil.ReadFile(BundlePath); - return _hashUtil.GenerateCrc32ForData(fileData); - } - - public bool MatchWithStoredHash(string BundlePath, uint hash) - { - return GetStoredValue(BundlePath) == hash; - } + public bool MatchWithStoredHash(string BundlePath, uint hash) + { + return GetStoredValue(BundlePath) == hash; } } diff --git a/Libraries/SPTarkov.Server.Core/Services/Cache/BundleHashCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/Cache/BundleHashCacheService.cs index eba45a9d..68c62cc0 100644 --- a/Libraries/SPTarkov.Server.Core/Services/Cache/BundleHashCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/Cache/BundleHashCacheService.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services.Cache; diff --git a/Libraries/SPTarkov.Server.Core/Services/Cache/ModHashCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/Cache/ModHashCacheService.cs index e5c8e969..0393b15c 100644 --- a/Libraries/SPTarkov.Server.Core/Services/Cache/ModHashCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/Cache/ModHashCacheService.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services.Cache; diff --git a/Libraries/SPTarkov.Server.Core/Services/CircleOfCultistService.cs b/Libraries/SPTarkov.Server.Core/Services/CircleOfCultistService.cs index 2ab9e620..eecc8979 100644 --- a/Libraries/SPTarkov.Server.Core/Services/CircleOfCultistService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/CircleOfCultistService.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -13,8 +15,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using Hideout = SPTarkov.Server.Core.Models.Spt.Hideout.Hideout; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -58,7 +58,15 @@ public class CircleOfCultistService( HideoutCircleOfCultistProductionStartRequestData request ) { - var cultistCircleStashId = pmcData.Inventory.HideoutAreaStashes.GetValueOrDefault(HideoutAreas.CIRCLE_OF_CULTISTS.ToString()); + var output = _eventOutputHolder.GetOutput(sessionId); + + var cultistCircleStashId = pmcData.Inventory.HideoutAreaStashes.GetValueOrDefault(((int)HideoutAreas.CIRCLE_OF_CULTISTS).ToString()); + if (cultistCircleStashId is null) + { + _logger.Error("Could not find cultist circle stash ID inside inventory! No rewards generated"); + + return output; + } // `cultistRecipes` just has single recipeId var cultistCraftData = _databaseService.GetHideout().Production.CultistRecipes.FirstOrDefault(); @@ -94,8 +102,6 @@ public class CircleOfCultistService( craftingInfo.Time ); - var output = _eventOutputHolder.GetOutput(sessionId); - // Remove sacrificed items from circle inventory foreach (var item in sacrificedItems) { @@ -123,8 +129,9 @@ public class CircleOfCultistService( return output; } + /// - /// Get the reward amount multiple value based on players hideout management skill + configs rewardPriceMultiplerMinMax values + /// Get the reward amount multiple value based on players hideout management skill + configs rewardPriceMultiplerMinMax values /// /// Player profile /// Circle config settings @@ -133,8 +140,8 @@ public class CircleOfCultistService( { // Get a randomised value to multiply the sacrificed rouble cost by var rewardAmountMultiplier = _randomUtil.GetDouble( - (double) cultistCircleSettings.RewardPriceMultiplierMinMax.Min, - (double) cultistCircleSettings.RewardPriceMultiplierMinMax.Max + cultistCircleSettings.RewardPriceMultiplierMinMax.Min, + cultistCircleSettings.RewardPriceMultiplierMinMax.Max ); // Adjust value generated by the players hideout management skill @@ -240,8 +247,8 @@ public class CircleOfCultistService( double rewardAmountRoubles ) { - var matchingThreshold = thresholds.FirstOrDefault( - craftThreshold => craftThreshold.Min <= rewardAmountRoubles && craftThreshold.Max >= rewardAmountRoubles + var matchingThreshold = thresholds.FirstOrDefault(craftThreshold => + craftThreshold.Min <= rewardAmountRoubles && craftThreshold.Max >= rewardAmountRoubles ); // No matching threshold, make one @@ -275,8 +282,7 @@ public class CircleOfCultistService( protected List GetSacrificedItems(PmcData pmcData) { // Get root items that are in the cultist sacrifice window - var inventoryRootItemsInCultistGrid = pmcData.Inventory.Items.Where( - item => item.SlotId == CircleOfCultistSlotId + var inventoryRootItemsInCultistGrid = pmcData.Inventory.Items.Where(item => item.SlotId == CircleOfCultistSlotId ); // Get rootitem + its children @@ -567,7 +573,7 @@ public class CircleOfCultistService( return 1; } - return _randomUtil.GetInt((int) settings.Min, (int) settings.Max); + return _randomUtil.GetInt(settings.Min, settings.Max); } /// @@ -718,8 +724,7 @@ public class CircleOfCultistService( foreach (var task in activeTasks) { var questData = _questHelper.GetQuestFromDb(task.QId, pmcData); - var handoverConditions = questData.Conditions.AvailableForFinish.Where( - condition => condition.ConditionType == "HandoverItem" + var handoverConditions = questData.Conditions.AvailableForFinish.Where(condition => condition.ConditionType == "HandoverItem" ); foreach (var condition in handoverConditions) foreach (var neededItem in condition.Target.List) @@ -794,8 +799,7 @@ public class CircleOfCultistService( /// Active area array protected List GetPlayerAccessibleHideoutAreas(List areas) { - return areas.Where( - area => + return areas.Where(area => { if (area.Type == HideoutAreas.CHRISTMAS_TREE && !_seasonalEventService.ChristmasEventEnabled()) // Christmas tree area and not Christmas, skip diff --git a/Libraries/SPTarkov.Server.Core/Services/CreateProfileService.cs b/Libraries/SPTarkov.Server.Core/Services/CreateProfileService.cs index 9752fa38..bab01c8d 100644 --- a/Libraries/SPTarkov.Server.Core/Services/CreateProfileService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/CreateProfileService.cs @@ -1,4 +1,6 @@ using System.Security.Cryptography; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -11,8 +13,6 @@ using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using Vitality = SPTarkov.Server.Core.Models.Eft.Profile.Vitality; @@ -135,8 +135,9 @@ public class CreateProfileService( var achievementsDb = _databaseService.GetTemplates().Achievements; var achievementRewardItemsToSend = new List(); - foreach (var (achievementId, achievement) in profileDetails.CharacterData.PmcData.Achievements) { - var rewards = achievementsDb.FirstOrDefault((achievementDb) => achievementDb.Id == achievementId)?.Rewards; + foreach (var (achievementId, achievement) in profileDetails.CharacterData.PmcData.Achievements) + { + var rewards = achievementsDb.FirstOrDefault(achievementDb => achievementDb.Id == achievementId)?.Rewards; if (rewards is null) { @@ -144,11 +145,11 @@ public class CreateProfileService( } achievementRewardItemsToSend.AddRange(_rewardHelper.ApplyRewards( - rewards, - CustomisationSource.ACHIEVEMENT, - profileDetails, - profileDetails.CharacterData.PmcData, - achievementId)); + rewards, + CustomisationSource.ACHIEVEMENT, + profileDetails, + profileDetails.CharacterData.PmcData, + achievementId)); } if (achievementRewardItemsToSend.Count > 0) @@ -217,7 +218,7 @@ public class CreateProfileService( } /// - /// Delete a profile + /// Delete a profile /// /// ID of profile to delete protected void DeleteProfileBySessionId(string sessionID) @@ -235,7 +236,7 @@ public class CreateProfileService( } /// - /// Make profiles pmcData.Inventory.equipment unique + /// Make profiles pmcData.Inventory.equipment unique /// /// Profile to update protected void UpdateInventoryEquipmentId(PmcData pmcData) @@ -259,7 +260,7 @@ public class CreateProfileService( } /// - /// For each trader reset their state to what a level 1 player would see + /// For each trader reset their state to what a level 1 player would see /// /// Session ID of profile to reset protected void ResetAllTradersInProfile(string sessionId) @@ -271,8 +272,8 @@ public class CreateProfileService( } /// - /// Ensure a profile has the necessary internal containers e.g. questRaidItems / sortingTable
- /// DOES NOT check that stash exists + /// Ensure a profile has the necessary internal containers e.g. questRaidItems / sortingTable
+ /// DOES NOT check that stash exists ///
/// Profile to check protected void AddMissingInternalContainersToProfile(PmcData pmcData) @@ -464,7 +465,7 @@ public class CreateProfileService( } /// - /// Get the game edition of a profile chosen on creation in Launcher + /// Get the game edition of a profile chosen on creation in Launcher /// private string? GetGameEdition(SptProfile profile) { @@ -488,8 +489,8 @@ public class CreateProfileService( } /// - /// Iterate over all quests in player profile, inspect rewards for the quests current state (accepted/completed) - /// and send rewards to them in mail + /// Iterate over all quests in player profile, inspect rewards for the quests current state (accepted/completed) + /// and send rewards to them in mail /// /// Player profile /// Session ID diff --git a/Libraries/SPTarkov.Server.Core/Services/CustomLocationWaveService.cs b/Libraries/SPTarkov.Server.Core/Services/CustomLocationWaveService.cs index 90555d13..fda3e9d8 100644 --- a/Libraries/SPTarkov.Server.Core/Services/CustomLocationWaveService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/CustomLocationWaveService.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; diff --git a/Libraries/SPTarkov.Server.Core/Services/DatabaseService.cs b/Libraries/SPTarkov.Server.Core/Services/DatabaseService.cs index bc337c84..27596461 100644 --- a/Libraries/SPTarkov.Server.Core/Services/DatabaseService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/DatabaseService.cs @@ -1,4 +1,6 @@ using System.Diagnostics; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Bots; @@ -7,8 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Templates; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using Hideout = SPTarkov.Server.Core.Models.Spt.Hideout.Hideout; using Locations = SPTarkov.Server.Core.Models.Spt.Server.Locations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -98,7 +98,7 @@ public class DatabaseService( } /// - /// Get specific location by its ID + /// Get specific location by its ID /// /// Desired location ID /// assets/database/locations/ @@ -290,7 +290,7 @@ public class DatabaseService( } /// - /// Get specific trader by their ID + /// Get specific trader by their ID /// /// Desired trader ID /// assets/database/traders/ @@ -317,7 +317,7 @@ public class DatabaseService( } /// - /// Validates that the database doesn't contain invalid ID data + /// Validates that the database doesn't contain invalid ID data /// public void ValidateDatabase() { @@ -342,7 +342,7 @@ public class DatabaseService( } /// - /// Validate that the given table only contains valid MongoIDs + /// Validate that the given table only contains valid MongoIDs /// /// Table to validate for MongoIDs /// The type of table, used in output message @@ -362,7 +362,7 @@ public class DatabaseService( } /// - /// Check if the database is valid + /// Check if the database is valid /// /// True if the database contains valid data, false otherwise public bool IsDatabaseValid() diff --git a/Libraries/SPTarkov.Server.Core/Services/FenceService.cs b/Libraries/SPTarkov.Server.Core/Services/FenceService.cs index 48d6701e..bb336ca6 100644 --- a/Libraries/SPTarkov.Server.Core/Services/FenceService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/FenceService.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -9,8 +11,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Services; @@ -29,17 +29,17 @@ public class FenceService( ) { /// - /// Desired baseline counts - Hydrated on initial assort generation as part of generateFenceAssorts() + /// Desired baseline counts - Hydrated on initial assort generation as part of generateFenceAssorts() /// protected FenceAssortGenerationValues desiredAssortCounts; /// - /// Main assorts you see at all rep levels + /// Main assorts you see at all rep levels /// protected TraderAssort? fenceAssort; /// - /// Assorts shown on a separate tab when you max out fence rep + /// Assorts shown on a separate tab when you max out fence rep /// protected TraderAssort? fenceDiscountAssort; @@ -57,7 +57,7 @@ public class FenceService( ]; /// - /// Time when some items in assort will be replaced + /// Time when some items in assort will be replaced /// protected long nextPartialRefreshTimestamp; @@ -65,7 +65,7 @@ public class FenceService( /// - /// Replace main fence assort with new assort + /// Replace main fence assort with new assort /// /// New assorts to replace old with public void SetFenceAssort(TraderAssort assort) @@ -74,7 +74,7 @@ public class FenceService( } /// - /// Replace discount fence assort with new assort + /// Replace discount fence assort with new assort /// /// New assorts to replace old with public void SetFenceDiscountAssort(TraderAssort discountAssort) @@ -83,7 +83,7 @@ public class FenceService( } /// - /// Get main fence assort + /// Get main fence assort /// /// TraderAssort public TraderAssort? GetMainFenceAssort() @@ -92,7 +92,7 @@ public class FenceService( } /// - /// Get discount fence assort + /// Get discount fence assort /// /// TraderAssort /// @return ITraderAssort @@ -102,8 +102,8 @@ public class FenceService( } /// - /// Get assorts player can purchase
- /// Adjust prices based on fence level of player + /// Get assorts player can purchase
+ /// Adjust prices based on fence level of player ///
/// Player profile /// TraderAssort @@ -137,7 +137,7 @@ public class FenceService( } /// - /// Adds to fence assort a single item (with its children) + /// Adds to fence assort a single item (with its children) /// /// The items to add with all its children /// The most parent item of the array @@ -187,7 +187,7 @@ public class FenceService( } /// - /// Calculates the overall price for an item (with all its children) + /// Calculates the overall price for an item (with all its children) /// /// The item tpl to calculate the fence price for /// The items (with its children) to calculate fence price for @@ -200,8 +200,8 @@ public class FenceService( } /// - /// Calculate the overall price for an ammo box, where only one item is - /// the ammo box itself and every other items are the bullets in that box + /// Calculate the overall price for an ammo box, where only one item is + /// the ammo box itself and every other items are the bullets in that box /// /// The ammo box (and all its children ammo items) /// The price of the ammo box @@ -220,7 +220,7 @@ public class FenceService( } /// - /// Adjust all items contained inside an assort by a multiplier + /// Adjust all items contained inside an assort by a multiplier /// /// (clone) Assort that contains items with prices to adjust /// Multiplier to use on items @@ -239,7 +239,7 @@ public class FenceService( } /// - /// Merge two trader assort files together + /// Merge two trader assort files together /// /// Assort #1 /// Assort #2 @@ -266,7 +266,7 @@ public class FenceService( } /// - /// Adjust assorts price by a modifier + /// Adjust assorts price by a modifier /// /// Assort item details /// Assort to be modified @@ -309,7 +309,7 @@ public class FenceService( } /// - /// Get fence assorts with no price adjustments based on fence rep + /// Get fence assorts with no price adjustments based on fence rep /// /// TraderAssort public TraderAssort GetRawFenceAssorts() @@ -318,7 +318,7 @@ public class FenceService( } /// - /// Does fence need to perform a partial refresh because its passed the refresh timer defined in trader.json + /// Does fence need to perform a partial refresh because its passed the refresh timer defined in trader.json /// /// True if it needs a partial refresh public bool NeedsPartialRefresh() @@ -327,7 +327,7 @@ public class FenceService( } /// - /// Replace a percentage of fence assorts with freshly generated items + /// Replace a percentage of fence assorts with freshly generated items /// public void PerformPartialRefresh() { @@ -387,7 +387,7 @@ public class FenceService( } /// - /// Handle the process of folding new assorts into existing assorts, when a new assort exists already, increment its StackObjectsCount instead + /// Handle the process of folding new assorts into existing assorts, when a new assort exists already, increment its StackObjectsCount instead /// /// Assorts to fold into existing fence assorts /// Current fence assorts, new assorts will be added to @@ -410,8 +410,7 @@ public class FenceService( } // Find a matching root item with same tpl in existing assort - var existingRootItem = existingFenceAssorts.Items.FirstOrDefault( - item => item.Template == newRootItem.Template && item.SlotId == "hideout" + var existingRootItem = existingFenceAssorts.Items.FirstOrDefault(item => item.Template == newRootItem.Template && item.SlotId == "hideout" ); // Check if same type of item exists + its on list of item types to always stack @@ -439,7 +438,7 @@ public class FenceService( // if the Upd doesnt exist just initialize it if (newRootItem.Upd == null) { - newRootItem.Upd = new Upd() + newRootItem.Upd = new Upd { StackObjectsCount = 1 }; @@ -453,7 +452,7 @@ public class FenceService( } /// - /// Increment fence next refresh timestamp by current timestamp + partialRefreshTimeSeconds from config + /// Increment fence next refresh timestamp by current timestamp + partialRefreshTimeSeconds from config /// protected void IncrementPartialRefreshTime() { @@ -461,7 +460,7 @@ public class FenceService( } /// - /// Get values that will hydrate the passed in assorts back to the desired counts + /// Get values that will hydrate the passed in assorts back to the desired counts /// /// Current assorts after items have been removed /// Base counts assorts should be adjusted to @@ -506,7 +505,7 @@ public class FenceService( } /// - /// Delete desired number of items from assort (including children) + /// Delete desired number of items from assort (including children) /// /// Number of items to replace /// Assort to adjust @@ -523,7 +522,7 @@ public class FenceService( } /// - /// Choose an item at random and remove it + mods from assorts + /// Choose an item at random and remove it + mods from assorts /// /// Trader assort to remove item from /// Pool of root items to pick from to remove @@ -572,7 +571,7 @@ public class FenceService( } /// - /// Get an integer rounded count of items to replace based on percentage from traderConfig value + /// Get an integer rounded count of items to replace based on percentage from traderConfig value /// /// Total item count /// Rounded int of items to replace @@ -582,7 +581,7 @@ public class FenceService( } /// - /// Get the count of items fence offers + /// Get the count of items fence offers /// /// Number public int GetOfferCount() @@ -596,8 +595,8 @@ public class FenceService( } /// - /// Create trader assorts for fence and store in fenceService cache - /// Uses fence base cache generation server start as a base + /// Create trader assorts for fence and store in fenceService cache + /// Uses fence base cache generation server start as a base /// public void GenerateFenceAssorts() { @@ -621,7 +620,7 @@ public class FenceService( } /// - /// Convert the intermediary assort data generated into format client can process + /// Convert the intermediary assort data generated into format client can process /// /// Generated assorts that will be converted /// TraderAssort in the correct data format for Fence @@ -640,8 +639,8 @@ public class FenceService( } /// - /// Create object that contains calculated fence assort item values to make based on config. - /// Stored in desiredAssortCounts + /// Create object that contains calculated fence assort item values to make based on config. + /// Stored in desiredAssortCounts /// protected void CreateInitialFenceAssortGenerationValues() { @@ -664,32 +663,32 @@ public class FenceService( result.Normal.Item = traderConfig.Fence.AssortSize; result.Normal.WeaponPreset = randomUtil.GetInt( - (int) traderConfig.Fence.WeaponPresetMinMax.Min, - (int) traderConfig.Fence.WeaponPresetMinMax.Max + traderConfig.Fence.WeaponPresetMinMax.Min, + traderConfig.Fence.WeaponPresetMinMax.Max ); result.Normal.EquipmentPreset = randomUtil.GetInt( - (int) traderConfig.Fence.EquipmentPresetMinMax.Min, - (int) traderConfig.Fence.EquipmentPresetMinMax.Max + traderConfig.Fence.EquipmentPresetMinMax.Min, + traderConfig.Fence.EquipmentPresetMinMax.Max ); result.Discount.Item = traderConfig.Fence.DiscountOptions.AssortSize; result.Discount.WeaponPreset = randomUtil.GetInt( - (int) traderConfig.Fence.DiscountOptions.WeaponPresetMinMax.Min, - (int) traderConfig.Fence.DiscountOptions.WeaponPresetMinMax.Max + traderConfig.Fence.DiscountOptions.WeaponPresetMinMax.Min, + traderConfig.Fence.DiscountOptions.WeaponPresetMinMax.Max ); result.Discount.EquipmentPreset = randomUtil.GetInt( - (int) traderConfig.Fence.DiscountOptions.EquipmentPresetMinMax.Min, - (int) traderConfig.Fence.DiscountOptions.EquipmentPresetMinMax.Max + traderConfig.Fence.DiscountOptions.EquipmentPresetMinMax.Min, + traderConfig.Fence.DiscountOptions.EquipmentPresetMinMax.Max ); desiredAssortCounts = result; } /// - /// Create skeleton to hold assort items + /// Create skeleton to hold assort items /// /// TraderAssort object protected TraderAssort CreateFenceAssortSkeleton() @@ -704,7 +703,7 @@ public class FenceService( } /// - /// Hydrate assorts parameter object with generated assorts + /// Hydrate assorts parameter object with generated assorts /// /// Number of items to generate per type (Item, WeaponPreset, EquipmentPreset) /// Loyalty level to set new item to @@ -742,7 +741,7 @@ public class FenceService( } /// - /// Add item assorts to existing assort data + /// Add item assorts to existing assort data /// /// Number to add /// Data to add to @@ -868,8 +867,8 @@ public class FenceService( } /// - /// Find an assort item that matches the first parameter, also matches based on Upd properties - /// e.g. salewa hp resource units left + /// Find an assort item that matches the first parameter, also matches based on Upd properties + /// e.g. salewa hp resource units left /// /// item to look for a match against /// DB details of matching item @@ -883,12 +882,10 @@ public class FenceService( { // Get matching root items var matchingItems = itemsWithChildren - .Where( - itemWithChildren => itemWithChildren.FirstOrDefault( - item => item.Template == rootItemBeingAdded.Template && - string.Equals(item.ParentId, "hideout", StringComparison.OrdinalIgnoreCase) - ) != - null + .Where(itemWithChildren => itemWithChildren.FirstOrDefault(item => item.Template == rootItemBeingAdded.Template && + string.Equals(item.ParentId, "hideout", StringComparison.OrdinalIgnoreCase) + ) != + null ) .SelectMany(i => i) .ToList(); @@ -946,7 +943,7 @@ public class FenceService( } /// - /// Should this item be forced into only 1 stack on fence + /// Should this item be forced into only 1 stack on fence /// /// Existing item from fence assort /// Item we want to add DB details @@ -975,7 +972,7 @@ public class FenceService( } /// - /// Adjust price of item based on what is left to buy (resource/uses left) + /// Adjust price of item based on what is left to buy (resource/uses left) /// /// All barter scheme for item having price adjusted /// Root item having price adjusted @@ -1033,7 +1030,7 @@ public class FenceService( } /// - /// Find presets in base fence assort and add desired number to 'assorts' parameter + /// Find presets in base fence assort and add desired number to 'assorts' parameter /// /// How many WeaponPresets to add /// How many WeaponPresets to add @@ -1051,8 +1048,8 @@ public class FenceService( var weaponPresetsAddedCount = 0; if (desiredWeaponPresetsCount > 0) { - var weaponPresetRootItems = baseFenceAssort.Items.Where( - item => item.Upd?.SptPresetId != null && itemHelper.IsOfBaseclass(item.Template, BaseClasses.WEAPON) + var weaponPresetRootItems = baseFenceAssort.Items.Where(item => + item.Upd?.SptPresetId != null && itemHelper.IsOfBaseclass(item.Template, BaseClasses.WEAPON) ); while (weaponPresetsAddedCount < desiredWeaponPresetsCount) { @@ -1117,8 +1114,7 @@ public class FenceService( return; } - var equipmentPresetRootItems = baseFenceAssort.Items.Where( - item => item.Upd?.SptPresetId != null && itemHelper.ArmorItemCanHoldMods(item.Template) + var equipmentPresetRootItems = baseFenceAssort.Items.Where(item => item.Upd?.SptPresetId != null && itemHelper.ArmorItemCanHoldMods(item.Template) ); while (equipmentPresetsAddedCount < desiredEquipmentPresetsCount) { @@ -1179,7 +1175,7 @@ public class FenceService( } /// - /// Adjust plate / soft insert durability values + /// Adjust plate / soft insert durability values /// /// Armor item array to add mods into /// Armor items db template @@ -1208,7 +1204,7 @@ public class FenceService( } /// - /// Randomise the durability values of items on armor with a passed in slot + /// Randomise the durability values of items on armor with a passed in slot /// /// Slots of items to randomise /// Array of armor + inserts to get items from @@ -1265,8 +1261,8 @@ public class FenceService( } /// - /// Randomise the durability values of plate items in armor
- /// Has chance to remove plate + /// Randomise the durability values of plate items in armor
+ /// Has chance to remove plate ///
/// Slots of items to randomise /// Array of armor + inserts to get items from @@ -1302,8 +1298,7 @@ public class FenceService( ); // Find items mod to apply durability changes to - var modItemToAdjust = armorWithMods.FirstOrDefault( - mod => string.Equals( + var modItemToAdjust = armorWithMods.FirstOrDefault(mod => string.Equals( mod.SlotId, plateSlot.Name, StringComparison.OrdinalIgnoreCase @@ -1335,7 +1330,7 @@ public class FenceService( } /// - /// Get stack size of a singular item (no mods) + /// Get stack size of a singular item (no mods) /// /// Item being added to fence /// Stack size @@ -1347,7 +1342,7 @@ public class FenceService( overrideValues = traderConfig.Fence.ItemStackSizeOverrideMinMax[itemDbDetails.Parent]; if (overrideValues != null) { - return randomUtil.GetInt((int) overrideValues.Min, (int) overrideValues.Max); + return randomUtil.GetInt(overrideValues.Min, overrideValues.Max); } // No override, use stack max size from item db @@ -1362,20 +1357,20 @@ public class FenceService( // Check for override in config, use values if exists if (traderConfig.Fence.ItemStackSizeOverrideMinMax.TryGetValue(itemDbDetails.Id, out overrideValues)) { - return randomUtil.GetInt((int) overrideValues.Min, (int) overrideValues.Max); + return randomUtil.GetInt(overrideValues.Min, overrideValues.Max); } // Check for parent override if (traderConfig.Fence.ItemStackSizeOverrideMinMax.TryGetValue(itemDbDetails.Parent, out overrideValues)) { - return randomUtil.GetInt((int) overrideValues.Min, (int) overrideValues.Max); + return randomUtil.GetInt(overrideValues.Min, overrideValues.Max); } return 1; } /// - /// Remove parts of a weapon prior to being listed on flea + /// Remove parts of a weapon prior to being listed on flea /// /// Weapon to remove parts from protected void RemoveRandomModsOfItem(List itemAndMods) @@ -1411,7 +1406,7 @@ public class FenceService( } /// - /// Roll % chance check to see if item should be removed + /// Roll % chance check to see if item should be removed /// /// Weapon mod being checked /// Current list of items on weapon being deleted @@ -1431,7 +1426,7 @@ public class FenceService( } /// - /// Randomise items' Upd properties e.g. med packs/weapons/armor + /// Randomise items' Upd properties e.g. med packs/weapons/armor /// /// Item being randomised /// Item being edited @@ -1536,7 +1531,7 @@ public class FenceService( } /// - /// Generate a randomised current and max durability value for an armor item + /// Generate a randomised current and max durability value for an armor item /// /// Item to create values for /// Max durability percent min/max values @@ -1565,7 +1560,7 @@ public class FenceService( } /// - /// Construct item limit record to hold max and current item count + /// Construct item limit record to hold max and current item count /// /// Limits as defined in config /// Record, key: item tplId, value: current/max item count allowed @@ -1582,7 +1577,7 @@ public class FenceService( } /// - /// Get the next Update timestamp for fence + /// Get the next Update timestamp for fence /// /// Future timestamp public long GetNextFenceUpdateTimestamp() @@ -1593,18 +1588,18 @@ public class FenceService( } /// - /// Get fence refresh time in seconds + /// Get fence refresh time in seconds /// /// Refresh time in seconds protected int GetFenceRefreshTime() { var fence = traderConfig.UpdateTime.FirstOrDefault(x => x.TraderId == Traders.FENCE).Seconds; - return randomUtil.GetInt((int) fence.Min, (int) fence.Max); + return randomUtil.GetInt(fence.Min, fence.Max); } /// - /// Get fence level the passed in profile has + /// Get fence level the passed in profile has /// /// Player profile /// FenceLevel object @@ -1637,7 +1632,7 @@ public class FenceService( } /// - /// Remove or lower stack size of an assort from fence by id + /// Remove or lower stack size of an assort from fence by id /// /// Assort ID to adjust /// `Count of items bought diff --git a/Libraries/SPTarkov.Server.Core/Services/GiftService.cs b/Libraries/SPTarkov.Server.Core/Services/GiftService.cs index a0a77ab5..9b968bf5 100644 --- a/Libraries/SPTarkov.Server.Core/Services/GiftService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/GiftService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Enums; @@ -6,7 +7,6 @@ using SPTarkov.Server.Core.Models.Spt.Dialog; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -24,7 +24,7 @@ public class GiftService( protected GiftsConfig _giftConfig = _configServer.GetConfig(); /// - /// Does a gift with a specific ID exist in db + /// Does a gift with a specific ID exist in db /// /// Gift id to check for /// True if it exists in db @@ -41,7 +41,7 @@ public class GiftService( } /// - /// Get dictionary of all gifts + /// Get dictionary of all gifts /// /// Dict keyed by gift id public Dictionary GetGifts() @@ -50,7 +50,7 @@ public class GiftService( } /// - /// Get an array of all gift ids + /// Get an array of all gift ids /// /// String list of gift ids public List GetGiftIds() @@ -59,7 +59,7 @@ public class GiftService( } /// - /// Send player a gift from a range of sources + /// Send player a gift from a range of sources /// /// Player to send gift to / sessionID /// ID of gift in configs/gifts.json to send player @@ -183,7 +183,7 @@ public class GiftService( } /// - /// Get sender id based on gifts sender type enum + /// Get sender id based on gifts sender type enum /// /// Gift to send player /// trader/user/system id @@ -203,7 +203,7 @@ public class GiftService( } /// - /// Convert GiftSenderType into a dialog MessageType + /// Convert GiftSenderType into a dialog MessageType /// /// Gift to send player /// MessageType enum value @@ -224,7 +224,7 @@ public class GiftService( } /// - /// Prapor sends gifts to player for first week after profile creation + /// Prapor sends gifts to player for first week after profile creation /// /// Player ID /// What day to give gift for @@ -247,7 +247,7 @@ public class GiftService( } /// - /// Send player a gift with silent received check + /// Send player a gift with silent received check /// /// ID of gift to send /// Session ID of player to send to diff --git a/Libraries/SPTarkov.Server.Core/Services/I18nService.cs b/Libraries/SPTarkov.Server.Core/Services/I18nService.cs index f49ad083..fc662858 100644 --- a/Libraries/SPTarkov.Server.Core/Services/I18nService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/I18nService.cs @@ -1,6 +1,6 @@ +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Json; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Services; @@ -11,9 +11,9 @@ public class I18nService private readonly Dictionary _fallbacks; private readonly FileUtil _fileUtil; private readonly JsonUtil _jsonUtil; - private readonly LocaleService _localeService; private readonly Dictionary>> _loadedLocales = new(); + private readonly LocaleService _localeService; private HashSet _locales; private string? _setLocale; @@ -50,9 +50,8 @@ public class I18nService { _loadedLocales.Add( _fileUtil.StripExtension(file), - new LazyLoad>( - () => _jsonUtil.DeserializeFromFile>(file) ?? - new Dictionary() + new LazyLoad>(() => _jsonUtil.DeserializeFromFile>(file) ?? + new Dictionary() ) ); } diff --git a/Libraries/SPTarkov.Server.Core/Services/InMemoryCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/InMemoryCacheService.cs index 429cf3eb..e7dd4246 100644 --- a/Libraries/SPTarkov.Server.Core/Services/InMemoryCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/InMemoryCacheService.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Utils.Cloners; namespace SPTarkov.Server.Core.Services; @@ -11,7 +11,7 @@ public class InMemoryCacheService( protected Dictionary _cacheData = new(); /// - /// Store data into an in-memory object + /// Store data into an in-memory object /// /// Key to store data against /// Data to store in cache @@ -21,7 +21,7 @@ public class InMemoryCacheService( } /// - /// Retrieve data stored by a key + /// Retrieve data stored by a key /// /// key /// Stored data @@ -36,7 +36,7 @@ public class InMemoryCacheService( } /// - /// Does data exist against the provided key + /// Does data exist against the provided key /// /// Key to check for data against /// True if exists @@ -46,7 +46,7 @@ public class InMemoryCacheService( } /// - /// Remove data stored against key + /// Remove data stored against key /// /// Key to remove data against public void ClearDataStoredByKey(string key) @@ -55,7 +55,7 @@ public class InMemoryCacheService( } /// - /// Remove all data stored + /// Remove all data stored /// public void ClearCache() { diff --git a/Libraries/SPTarkov.Server.Core/Services/InsuranceService.cs b/Libraries/SPTarkov.Server.Core/Services/InsuranceService.cs index 7098321c..4e685129 100644 --- a/Libraries/SPTarkov.Server.Core/Services/InsuranceService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/InsuranceService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -9,7 +10,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using Insurance = SPTarkov.Server.Core.Models.Eft.Profile.Insurance; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -299,8 +299,7 @@ public class InsuranceService( AddInsuranceItemToArray(sessionId, traderId, itemToReturnToPlayer); // Remove item from insured items array as its been processed - pmcData.InsuredItems = pmcData.InsuredItems.Where( - item => + pmcData.InsuredItems = pmcData.InsuredItems.Where(item => { return item.ItemId != itemToReturnToPlayer.Id; } diff --git a/Libraries/SPTarkov.Server.Core/Services/ItemBaseClassService.cs b/Libraries/SPTarkov.Server.Core/Services/ItemBaseClassService.cs index 0b256e09..64177a3a 100644 --- a/Libraries/SPTarkov.Server.Core/Services/ItemBaseClassService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/ItemBaseClassService.cs @@ -1,12 +1,12 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; /// -/// Cache the baseids for each item in the items db inside a dictionary +/// Cache the baseids for each item in the items db inside a dictionary /// [Injectable(InjectionType.Singleton)] public class ItemBaseClassService( @@ -19,8 +19,8 @@ public class ItemBaseClassService( private Dictionary> _itemBaseClassesCache; /// - /// Create cache and store inside ItemBaseClassService
- /// Store a dict of an items tpl to the base classes it and its parents have + /// Create cache and store inside ItemBaseClassService
+ /// Store a dict of an items tpl to the base classes it and its parents have ///
public void HydrateItemBaseClassCache() { @@ -28,7 +28,7 @@ public class ItemBaseClassService( _itemBaseClassesCache = new Dictionary>(); var items = _databaseService.GetItems(); - var filteredDbItems = items.Where(x => string.Equals(x.Value.Type,"Item", StringComparison.OrdinalIgnoreCase)); + var filteredDbItems = items.Where(x => string.Equals(x.Value.Type, "Item", StringComparison.OrdinalIgnoreCase)); foreach (var item in filteredDbItems) { var itemIdToUpdate = item.Value.Id; @@ -44,7 +44,7 @@ public class ItemBaseClassService( } /// - /// Helper method, recursively iterate through items parent items, finding and adding ids to dictionary + /// Helper method, recursively iterate through items parent items, finding and adding ids to dictionary /// /// Item tpl to store base ids against in dictionary /// Item being checked @@ -60,7 +60,7 @@ public class ItemBaseClassService( } /// - /// Does item tpl inherit from the requested base class + /// Does item tpl inherit from the requested base class /// /// ItemTpl item to check base classes of /// BaseClass base class to check for @@ -111,17 +111,17 @@ public class ItemBaseClassService( } /// - /// Check if cached item template is of type Item + /// Check if cached item template is of type Item /// /// ItemTemplateId item to check /// True if item is of type Item private bool CachedItemIsOfItemType(string itemTemplateId) { - return string.Equals(_databaseService.GetItems()[itemTemplateId]?.Type,"Item", StringComparison.OrdinalIgnoreCase); + return string.Equals(_databaseService.GetItems()[itemTemplateId]?.Type, "Item", StringComparison.OrdinalIgnoreCase); } /// - /// Get base classes item inherits from + /// Get base classes item inherits from /// /// ItemTpl item to get base classes for /// array of base classes diff --git a/Libraries/SPTarkov.Server.Core/Services/ItemFilterService.cs b/Libraries/SPTarkov.Server.Core/Services/ItemFilterService.cs index e3c9024c..f45b5c62 100644 --- a/Libraries/SPTarkov.Server.Core/Services/ItemFilterService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/ItemFilterService.cs @@ -1,12 +1,13 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; + /// -/// Centralise the handling of blacklisting items, uses blacklist found in config/item.json, stores items that should not be used by players / broken items +/// Centralise the handling of blacklisting items, uses blacklist found in config/item.json, stores items that should not be used by players / broken items /// [Injectable(InjectionType.Singleton)] public class ItemFilterService( @@ -21,7 +22,7 @@ public class ItemFilterService( protected HashSet? _lootableItemBlacklistCache = []; /// - /// Check if the provided template id is blacklisted in config/item.json/blacklist + /// Check if the provided template id is blacklisted in config/item.json/blacklist /// /// Template id /// True if blacklisted @@ -36,7 +37,7 @@ public class ItemFilterService( } /// - /// Check if item is blacklisted from being a reward for player + /// Check if item is blacklisted from being a reward for player /// /// Item tpl to check is on blacklist /// True when blacklisted @@ -46,7 +47,7 @@ public class ItemFilterService( } /// - /// Get an HashSet of items that should never be given as a reward to player + /// Get an HashSet of items that should never be given as a reward to player /// /// HashSet of item tpls public HashSet GetItemRewardBlacklist() @@ -55,7 +56,7 @@ public class ItemFilterService( } /// - /// Get an HashSet of item types that should never be given as a reward to player + /// Get an HashSet of item types that should never be given as a reward to player /// /// HashSet of item base ids public HashSet GetItemRewardBaseTypeBlacklist() @@ -64,7 +65,7 @@ public class ItemFilterService( } /// - /// Return every template id blacklisted in config/item.json + /// Return every template id blacklisted in config/item.json /// /// HashSet of blacklisted template ids public HashSet GetBlacklistedItems() @@ -73,7 +74,7 @@ public class ItemFilterService( } /// - /// Return every template id blacklisted in config/item.json/lootableItemBlacklist + /// Return every template id blacklisted in config/item.json/lootableItemBlacklist /// /// HashSet of blacklisted template ids public HashSet GetBlacklistedLootableItems() @@ -82,7 +83,7 @@ public class ItemFilterService( } /// - /// Check if the provided template id is boss item in config/item.json + /// Check if the provided template id is boss item in config/item.json /// /// template id /// True if boss item @@ -92,7 +93,7 @@ public class ItemFilterService( } /// - /// Return boss items in config/item.json + /// Return boss items in config/item.json /// /// HashSet of boss item template ids public HashSet GetBossItems() @@ -101,7 +102,7 @@ public class ItemFilterService( } /// - /// Check if the provided template id is blacklisted in config/item.json/lootableItemBlacklist + /// Check if the provided template id is blacklisted in config/item.json/lootableItemBlacklist /// /// Template id /// True if blacklisted @@ -142,7 +143,7 @@ public class ItemFilterService( } /// - /// Check if the provided template id is boss item in config/item.json + /// Check if the provided template id is boss item in config/item.json /// /// Template id /// True if boss item @@ -152,7 +153,7 @@ public class ItemFilterService( } /// - /// Check if item is blacklisted from being a reward for player + /// Check if item is blacklisted from being a reward for player /// /// Item tpl to check is on blacklist /// true when blacklisted diff --git a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs index 878b64d4..0f32472d 100644 --- a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs @@ -1,9 +1,8 @@ using System.Globalization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; -using SPTarkov.Server.Core.Utils.Json; namespace SPTarkov.Server.Core.Services; @@ -16,11 +15,11 @@ public class LocaleService( { // we have to LazyLoad the data from the database and then combine it with the custom data before returning it protected LocaleConfig _localeConfig = _configServer.GetConfig(); - protected Dictionary> customClientLocales = new Dictionary>(); + protected Dictionary> customClientLocales = new(); /// - /// Get the eft globals db file based on the configured locale in config/locale.json, if not found, fall back to 'en' - /// This will contain Custom locales added by mods + /// Get the eft globals db file based on the configured locale in config/locale.json, if not found, fall back to 'en' + /// This will contain Custom locales added by mods /// /// Dictionary of locales for desired language - en/fr/cn public Dictionary GetLocaleDb(string? language = null) @@ -40,7 +39,7 @@ public class LocaleService( } /// - /// Attempts to retrieve the locale database for the specified language key, including custom locales if available. + /// Attempts to retrieve the locale database for the specified language key, including custom locales if available. /// /// The language key for which the locale database should be retrieved. /// The resulting locale database as a dictionary, or null if the operation fails. @@ -66,9 +65,8 @@ public class LocaleService( /// - /// Combines the provided database locales with custom locales, ensuring that all entries are merged into a single dictionary. - /// Custom locale entries will overwrite existing keys from the database locales if conflicts occur. - /// + /// Combines the provided database locales with custom locales, ensuring that all entries are merged into a single dictionary. + /// Custom locale entries will overwrite existing keys from the database locales if conflicts occur. /// /// The dictionary containing locale entries from the database. /// The dictionary containing custom locale entries to be merged. @@ -79,8 +77,8 @@ public class LocaleService( } /// - /// Gets the game locale key from the locale.json file, - /// if value is 'system' get system locale + /// Gets the game locale key from the locale.json file, + /// if value is 'system' get system locale /// /// Locale e.g en/ge/cz/cn public string GetDesiredGameLocale() @@ -94,8 +92,8 @@ public class LocaleService( } /// - /// Gets the game locale key from the locale.json file, - /// if value is 'system' get system locale + /// Gets the game locale key from the locale.json file, + /// if value is 'system' get system locale /// /// Locale e.g en/ge/cz/cn public string GetDesiredServerLocale() @@ -109,7 +107,7 @@ public class LocaleService( } /// - /// Get array of languages supported for localisation + /// Get array of languages supported for localisation /// /// List of locales e.g. en/fr/cn public List GetServerSupportedLocales() @@ -118,7 +116,7 @@ public class LocaleService( } /// - /// Get array of languages supported for localisation + /// Get array of languages supported for localisation /// /// Dictionary of locales e.g. en/fr/cn public Dictionary GetLocaleFallbacks() @@ -127,7 +125,7 @@ public class LocaleService( } /// - /// Get the full locale of the computer running the server lowercased e.g. en-gb / pt-pt + /// Get the full locale of the computer running the server lowercased e.g. en-gb / pt-pt /// /// System locale as String public string GetPlatformForServerLocale() @@ -170,7 +168,7 @@ public class LocaleService( } /// - /// Get the locale of the computer running the server + /// Get the locale of the computer running the server /// /// Language part of locale e.g. 'en' part of 'en-US' protected string GetPlatformForClientLocale() @@ -212,7 +210,7 @@ public class LocaleService( } /// - /// This is in a function so we can overwrite it during testing + /// This is in a function so we can overwrite it during testing /// /// The current platform locale protected CultureInfo GetPlatformLocale() @@ -248,7 +246,7 @@ public class LocaleService( } /// - /// Blank out the "test" mail message from prapor + /// Blank out the "test" mail message from prapor /// protected Dictionary RemovePraporTestMessage(Dictionary dbLocales) { diff --git a/Libraries/SPTarkov.Server.Core/Services/LocalisationService.cs b/Libraries/SPTarkov.Server.Core/Services/LocalisationService.cs index 681114f6..1fd2d5ff 100644 --- a/Libraries/SPTarkov.Server.Core/Services/LocalisationService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/LocalisationService.cs @@ -1,12 +1,12 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; /// -/// Handles translating server text into different langauges +/// Handles translating server text into different langauges /// [Injectable(InjectionType.Singleton)] public class LocalisationService @@ -43,8 +43,9 @@ public class LocalisationService ); _i18nService.SetLocaleByKey(localeService.GetDesiredServerLocale()); } + /// - /// Get a localised value using the passed in key + /// Get a localised value using the passed in key /// /// Key to look up locale for /// optional arguments @@ -57,7 +58,7 @@ public class LocalisationService } /// - /// Get a localised value using the passed in key + /// Get a localised value using the passed in key /// /// Key to look up locale for /// Value to localize @@ -68,7 +69,7 @@ public class LocalisationService } /// - /// Get all locale keys + /// Get all locale keys /// /// Generic collection of keys public ICollection GetKeys() @@ -77,7 +78,7 @@ public class LocalisationService } /// - /// From the provided partial key, find all keys that start with text and choose a random match + /// From the provided partial key, find all keys that start with text and choose a random match /// /// Key to match locale keys on /// Locale text diff --git a/Libraries/SPTarkov.Server.Core/Services/LocationLifecycleService.cs b/Libraries/SPTarkov.Server.Core/Services/LocationLifecycleService.cs index 240300f1..bdf850db 100644 --- a/Libraries/SPTarkov.Server.Core/Services/LocationLifecycleService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/LocationLifecycleService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; @@ -13,7 +14,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -43,8 +43,8 @@ public class LocationLifecycleService protected MatchBotDetailsCacheService _matchBotDetailsCacheService; protected PlayerScavGenerator _playerScavGenerator; protected PmcChatResponseService _pmcChatResponseService; - protected PmcWaveGenerator _pmcWaveGenerator; protected PmcConfig _pmcConfig; + protected PmcWaveGenerator _pmcWaveGenerator; protected ProfileHelper _profileHelper; protected QuestHelper _questHelper; protected RagfairConfig _ragfairConfig; @@ -125,7 +125,7 @@ public class LocationLifecycleService } /// - /// Handle client/match/local/start + /// Handle client/match/local/start /// public virtual StartLocalRaidResponseData StartLocalRaid(string sessionId, StartLocalRaidRequestData request) { @@ -202,7 +202,7 @@ public class LocationLifecycleService } /// - /// Replace map exits with scav exits when player is scavving + /// Replace map exits with scav exits when player is scavving /// /// Players side (savage/usec/bear) /// ID of map being loaded @@ -234,7 +234,7 @@ public class LocationLifecycleService } /// - /// Adjust the bot hostility values prior to entering a raid + /// Adjust the bot hostility values prior to entering a raid /// /// Map to adjust values of protected void AdjustBotHostilitySettings(LocationBase location) @@ -242,8 +242,8 @@ public class LocationLifecycleService foreach (var botId in _pmcConfig.HostilitySettings) { var configHostilityChanges = _pmcConfig.HostilitySettings[botId.Key]; - var locationBotHostilityDetails = location.BotLocationModifier.AdditionalHostilitySettings.FirstOrDefault( - botSettings => string.Equals(botSettings.BotRole, botId.Key, StringComparison.OrdinalIgnoreCase) + var locationBotHostilityDetails = location.BotLocationModifier.AdditionalHostilitySettings.FirstOrDefault(botSettings => + string.Equals(botSettings.BotRole, botId.Key, StringComparison.OrdinalIgnoreCase) ); // No matching bot in config, skip @@ -272,8 +272,7 @@ public class LocationLifecycleService locationBotHostilityDetails.ChancedEnemies = []; foreach (var chanceDetailsToApply in configHostilityChanges.ChancedEnemies) { - var locationBotDetails = locationBotHostilityDetails.ChancedEnemies.FirstOrDefault( - botChance => botChance.Role == chanceDetailsToApply.Role + var locationBotDetails = locationBotHostilityDetails.ChancedEnemies.FirstOrDefault(botChance => botChance.Role == chanceDetailsToApply.Role ); if (locationBotDetails is not null) // Existing @@ -328,7 +327,7 @@ public class LocationLifecycleService } /// - /// Generate a maps base location (cloned) and loot + /// Generate a maps base location (cloned) and loot /// /// Map name /// OPTIONAL - Should loot be generated for the map before being returned @@ -413,7 +412,7 @@ public class LocationLifecycleService } /// - /// Handle client/match/local/end + /// Handle client/match/local/end /// public virtual void EndLocalRaid(string sessionId, EndLocalRaidRequestData request) { @@ -522,7 +521,7 @@ public class LocationLifecycleService } /// - /// Was extract by car + /// Was extract by car /// /// Name of extract /// True if extract was by car @@ -543,7 +542,7 @@ public class LocationLifecycleService } /// - /// Handle when a player extracts using a car - Add rep to fence + /// Handle when a player extracts using a car - Add rep to fence /// /// Name of the extract used /// Player profile @@ -577,7 +576,7 @@ public class LocationLifecycleService } /// - /// Handle when a player extracts using a coop extract - add rep to fence + /// Handle when a player extracts using a coop extract - add rep to fence /// /// Session/player id /// Player profile @@ -610,7 +609,7 @@ public class LocationLifecycleService } /// - /// Get the fence rep gain from using a car or coop extract + /// Get the fence rep gain from using a car or coop extract /// /// Profile /// Amount gained for the first extract @@ -632,7 +631,7 @@ public class LocationLifecycleService } /// - /// Did player take a COOP extract + /// Did player take a COOP extract /// /// Name of extract player took /// True if coop extract @@ -718,7 +717,7 @@ public class LocationLifecycleService } /// - /// Scav quest progress isn't transferred automatically from scav to pmc, we do this manually + /// Scav quest progress isn't transferred automatically from scav to pmc, we do this manually /// /// Scav profile with quest progress post-raid /// Server pmc profile to copy scav quest progress into @@ -739,8 +738,7 @@ public class LocationLifecycleService } // Get counters related to scav quest - var matchingCounters = scavProfile.TaskConditionCounters.Where( - counter => counter.Value.SourceId == scavQuest.QId + var matchingCounters = scavProfile.TaskConditionCounters.Where(counter => counter.Value.SourceId == scavQuest.QId ); if (matchingCounters is null) @@ -762,7 +760,7 @@ public class LocationLifecycleService } /// - /// Does the provided profile contain any condition counters + /// Does the provided profile contain any condition counters /// /// Profile to check for condition counters /// Profile has condition counters @@ -777,7 +775,7 @@ public class LocationLifecycleService } /// - /// Handles PMC Profile after the raid + /// Handles PMC Profile after the raid /// /// Player id /// Pmc profile @@ -863,6 +861,8 @@ public class LocationLifecycleService if (postRaidProfile.Stats.Eft.Aggressor is not null) { + // get the aggressor ID from the client request body + postRaidProfile.Stats.Eft.Aggressor.ProfileId = request.Results.KillerId; _pmcChatResponseService.SendKillerResponse(sessionId, pmcProfile, postRaidProfile.Stats.Eft.Aggressor); } @@ -880,8 +880,7 @@ public class LocationLifecycleService "pmcusec" }; - var victims = postRaidProfile.Stats.Eft.Victims.Where( - victim => roles.Contains(victim.Role.ToLower()) + var victims = postRaidProfile.Stats.Eft.Victims.Where(victim => roles.Contains(victim.Role.ToLower()) ) .ToList(); if (victims?.Count > 0) @@ -892,8 +891,8 @@ public class LocationLifecycleService } /// - /// On death Quest items are lost, the client does not clean up completed conditions for picking up those quest items, - /// If the completed conditions remain in the profile the player is unable to pick the item up again + /// On death Quest items are lost, the client does not clean up completed conditions for picking up those quest items, + /// If the completed conditions remain in the profile the player is unable to pick the item up again /// /// Session ID /// Quest items lost on player death @@ -911,23 +910,21 @@ public class LocationLifecycleService // Get db details of quests we found above var questDb = _databaseService.GetQuests() - .Values.Where( - quest => - activeQuestIdsInProfile.Contains(quest.Id) + .Values.Where(quest => + activeQuestIdsInProfile.Contains(quest.Id) ); foreach (var lostItem in lostQuestItems) { var matchingConditionId = string.Empty; // Find a quest that has a FindItem condition that has the list items tpl as a target - var matchingQuests = questDb.Where( - quest => + var matchingQuests = questDb.Where(quest => { - var matchingCondition = quest.Conditions.AvailableForFinish.FirstOrDefault( - questCondition => questCondition.ConditionType == "FindItem" && - (questCondition.Target.IsList - ? questCondition.Target.List - : [questCondition.Target.Item]).Contains(lostItem.Template) + var matchingCondition = quest.Conditions.AvailableForFinish.FirstOrDefault(questCondition => + questCondition.ConditionType == "FindItem" && + (questCondition.Target.IsList + ? questCondition.Target.List + : [questCondition.Target.Item]).Contains(lostItem.Template) ); if (matchingCondition is null) // Quest doesnt have a matching condition @@ -960,8 +957,7 @@ public class LocationLifecycleService } // Filter out the matching condition we found - profileQuestToUpdate.CompletedConditions = profileQuestToUpdate.CompletedConditions.Where( - conditionId => conditionId != matchingConditionId + profileQuestToUpdate.CompletedConditions = profileQuestToUpdate.CompletedConditions.Where(conditionId => conditionId != matchingConditionId ) .ToList(); } @@ -969,9 +965,9 @@ public class LocationLifecycleService /// - /// In 0.15 Lightkeeper quests do not give rewards in PvE, this issue also occurs in spt. - /// We check for newly completed Lk quests and run them through the servers `CompleteQuest` process. - /// This rewards players with items + craft unlocks + new trader assorts. + /// In 0.15 Lightkeeper quests do not give rewards in PvE, this issue also occurs in spt. + /// We check for newly completed Lk quests and run them through the servers `CompleteQuest` process. + /// This rewards players with items + craft unlocks + new trader assorts. /// /// Session ID /// Quest statuses post-raid @@ -986,16 +982,14 @@ public class LocationLifecycleService { // LK quests that were not completed before raid but now are var newlyCompletedLightkeeperQuests = postRaidQuests - .Where( - postRaidQuest => - postRaidQuest.Status == QuestStatusEnum.Success && // Quest is complete - preRaidQuests.Any( - preRaidQuest => - preRaidQuest.QId == postRaidQuest.QId && // Get matching pre-raid quest - preRaidQuest.Status != QuestStatusEnum.Success - ) && // Completed quest was not completed before raid started - _databaseService.GetQuests().TryGetValue(postRaidQuest.QId, out var quest) && - quest?.TraderId == Traders.LIGHTHOUSEKEEPER + .Where(postRaidQuest => + postRaidQuest.Status == QuestStatusEnum.Success && // Quest is complete + preRaidQuests.Any(preRaidQuest => + preRaidQuest.QId == postRaidQuest.QId && // Get matching pre-raid quest + preRaidQuest.Status != QuestStatusEnum.Success + ) && // Completed quest was not completed before raid started + _databaseService.GetQuests().TryGetValue(postRaidQuest.QId, out var quest) && + quest?.TraderId == Traders.LIGHTHOUSEKEEPER ) // Quest is from LK .ToList(); @@ -1017,8 +1011,8 @@ public class LocationLifecycleService } /// - /// Convert post-raid quests into correct format. - /// Quest status comes back as a string version of the enum `Success`, not the expected value of 1. + /// Convert post-raid quests into correct format. + /// Quest status comes back as a string version of the enum `Success`, not the expected value of 1. /// /// Quests data from client /// List of adjusted QuestStatus post-raid @@ -1043,7 +1037,7 @@ public class LocationLifecycleService } /// - /// Adjust server trader settings if they differ from data sent by client + /// Adjust server trader settings if they differ from data sent by client /// /// Server /// Client @@ -1070,7 +1064,7 @@ public class LocationLifecycleService } /// - /// Check if player used BTR or transit item sending service and send items to player via mail if found + /// Check if player used BTR or transit item sending service and send items to player via mail if found /// /// Session ID /// End raid request from client @@ -1129,8 +1123,7 @@ public class LocationLifecycleService // Remove any items that were returned by the item delivery, but also insured, from the player's insurance list // This is to stop items being duplicated by being returned from both item delivery and insurance var deliveredItemIds = items.Select(item => item.Id); - pmcData.InsuredItems = pmcData.InsuredItems.Where( - insuredItem => !deliveredItemIds.Contains(insuredItem.ItemId) + pmcData.InsuredItems = pmcData.InsuredItems.Where(insuredItem => !deliveredItemIds.Contains(insuredItem.ItemId) ) .ToList(); @@ -1173,7 +1166,7 @@ public class LocationLifecycleService } /// - /// Checks to see if player survives. run through will return false + /// Checks to see if player survives. run through will return false /// /// Post raid request /// True if survived @@ -1183,7 +1176,7 @@ public class LocationLifecycleService } /// - /// Is the player dead after a raid - dead = anything other than "survived" / "runner" + /// Is the player dead after a raid - dead = anything other than "survived" / "runner" /// /// Post raid request /// True if dead @@ -1199,7 +1192,7 @@ public class LocationLifecycleService } /// - /// Has the player moved from one map to another + /// Has the player moved from one map to another /// /// Post raid request /// True if players transferred @@ -1209,7 +1202,7 @@ public class LocationLifecycleService } /// - /// Reset the skill points earned in a raid to 0, ready for next raid + /// Reset the skill points earned in a raid to 0, ready for next raid /// /// Profile common skills to update protected void ResetSkillPointsEarnedDuringRaid(List commonSkills) @@ -1221,8 +1214,8 @@ public class LocationLifecycleService } /// - /// Merge two dictionaries together. - /// Prioritise pair that has true as a value + /// Merge two dictionaries together. + /// Prioritise pair that has true as a value /// /// Main dictionary /// Secondary dictionary @@ -1240,7 +1233,7 @@ public class LocationLifecycleService } /// - /// Check for and add any rewards found via the gained achievements this raid + /// Check for and add any rewards found via the gained achievements this raid /// /// Profile to add customisations to /// All profile achievements at the end of a raid @@ -1250,17 +1243,15 @@ public class LocationLifecycleService var pmcProfile = fullProfile.CharacterData.PmcData; var preRaidAchievementIds = fullProfile.CharacterData.PmcData.Achievements; var postRaidAchievementIds = postRaidAchievements; - var achievementIdsAcquiredThisRaid = postRaidAchievementIds.Where( - id => !preRaidAchievementIds.Contains(id) + var achievementIdsAcquiredThisRaid = postRaidAchievementIds.Where(id => !preRaidAchievementIds.Contains(id) ); // Get achievement data from db var achievementsDb = _databaseService.GetTemplates().Achievements; // Map the achievement ids player obtained in raid with matching achievement data from db - var achievements = achievementIdsAcquiredThisRaid.Select( - achievementId => - achievementsDb.FirstOrDefault(achievementDb => achievementDb.Id == achievementId.Key) + var achievements = achievementIdsAcquiredThisRaid.Select(achievementId => + achievementsDb.FirstOrDefault(achievementDb => achievementDb.Id == achievementId.Key) ); if (achievements is null) // No achievements found diff --git a/Libraries/SPTarkov.Server.Core/Services/MailSendService.cs b/Libraries/SPTarkov.Server.Core/Services/MailSendService.cs index 7adf447b..1ff7dc98 100644 --- a/Libraries/SPTarkov.Server.Core/Services/MailSendService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/MailSendService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Profile; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -33,7 +33,7 @@ public class MailSendService( protected HashSet _slotNames = ["hideout", "main"]; /// - /// Send a message from an NPC (e.g. prapor) to the player with or without items using direct message text, do not look up any locale + /// Send a message from an NPC (e.g. prapor) to the player with or without items using direct message text, do not look up any locale /// /// The session ID to send the message to /// The trader sending the message @@ -101,7 +101,7 @@ public class MailSendService( } /// - /// Send a message from an NPC (e.g. prapor) to the player with or without items + /// Send a message from an NPC (e.g. prapor) to the player with or without items /// /// The session ID to send the message to /// The trader sending the message @@ -177,7 +177,7 @@ public class MailSendService( } /// - /// Send a message from SYSTEM to the player with or without items + /// Send a message from SYSTEM to the player with or without items /// /// The session ID to send the message to /// The text to send to player @@ -215,8 +215,9 @@ public class MailSendService( SendMessageToPlayer(details); } + /// - /// Send a message from SYSTEM to the player with or without items with localised text + /// Send a message from SYSTEM to the player with or without items with localised text /// /// The session ID to send the message to /// Id of key from locale file to send to player @@ -255,7 +256,7 @@ public class MailSendService( } /// - /// Send a USER message to a player with or without items + /// Send a USER message to a player with or without items /// /// The session ID to send the message to /// Who is sending the message @@ -290,8 +291,8 @@ public class MailSendService( } /// - /// Large function to send messages to players from a variety of sources (SYSTEM/NPC/USER). - /// Helper functions in this class are available to simplify common actions + /// Large function to send messages to players from a variety of sources (SYSTEM/NPC/USER). + /// Helper functions in this class are available to simplify common actions /// /// Details needed to send a message to the player public void SendMessageToPlayer(SendMessageDetails messageDetails) @@ -346,7 +347,7 @@ public class MailSendService( } /// - /// Send a message from the player to an NPC + /// Send a message from the player to an NPC /// /// Session ID /// NPC message is sent to @@ -376,7 +377,7 @@ public class MailSendService( } /// - /// Create a message for storage inside a dialog in the player profile + /// Create a message for storage inside a dialog in the player profile /// /// ID of dialog that will hold the message /// Various details on what the message must contain/do @@ -411,7 +412,7 @@ public class MailSendService( } /// - /// Finds the Message to reply to using the ID of the recipient, message and the dialogue. + /// Finds the Message to reply to using the ID of the recipient, message and the dialogue. /// /// The ID of the recipient /// The ID of the message to reply to @@ -444,7 +445,7 @@ public class MailSendService( } /// - /// Add items to message and adjust various properties to reflect the items being added + /// Add items to message and adjust various properties to reflect the items being added /// /// Message to add items to /// Items to add to message @@ -461,7 +462,7 @@ public class MailSendService( } /// - /// Perform various sanitising actions on the items before they're considered ready for insertion into message + /// Perform various sanitising actions on the items before they're considered ready for insertion into message /// /// The type of the dialog that will hold the reward items being processed /// Details fo the message e.g. Text, items it has etc. @@ -577,7 +578,7 @@ public class MailSendService( } /// - /// Try to find the most correct item to be the 'primary' item in a reward mail + /// Try to find the most correct item to be the 'primary' item in a reward mail /// /// Possible items to choose from /// Chosen 'primary' item @@ -609,8 +610,8 @@ public class MailSendService( } /// - /// Get a dialog with a specified entity (user/trader). - /// Create and store empty dialog if none exists in profile. + /// Get a dialog with a specified entity (user/trader). + /// Create and store empty dialog if none exists in profile. /// /// Data on what message should do /// Relevant Dialogue object @@ -644,7 +645,7 @@ public class MailSendService( } /// - /// Get the appropriate sender id by the sender enum type + /// Get the appropriate sender id by the sender enum type /// /// Data of the message /// Gets an id of the individual sending it diff --git a/Libraries/SPTarkov.Server.Core/Services/MapMarkerService.cs b/Libraries/SPTarkov.Server.Core/Services/MapMarkerService.cs index 2c950407..10b27137 100644 --- a/Libraries/SPTarkov.Server.Core/Services/MapMarkerService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/MapMarkerService.cs @@ -1,9 +1,9 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Inventory; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -49,8 +49,7 @@ public class MapMarkerService( var mapItem = pmcData.Inventory.Items.FirstOrDefault(item => item.Id == request.Item); // remove marker - var markers = mapItem.Upd.Map.Markers.Where( - marker => + var markers = mapItem.Upd.Map.Markers.Where(marker => { return marker.X != request.X && marker.Y != request.Y; } diff --git a/Libraries/SPTarkov.Server.Core/Services/MatchBotDetailsCacheService.cs b/Libraries/SPTarkov.Server.Core/Services/MatchBotDetailsCacheService.cs index b6255164..f03077aa 100644 --- a/Libraries/SPTarkov.Server.Core/Services/MatchBotDetailsCacheService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/MatchBotDetailsCacheService.cs @@ -1,62 +1,86 @@ using System.Collections.Concurrent; -using SPTarkov.Server.Core.Models.Eft.Common.Tables; -using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common.Tables; +using SPTarkov.Server.Core.Models.Enums; +using SPTarkov.Server.Core.Models.Spt.Bots; +using SPTarkov.Server.Core.Models.Utils; namespace SPTarkov.Server.Core.Services; /// -/// Cache bots in a dictionary, keyed by the bots name, keying by name isnt ideal as its not unique but this is used by the post-raid system which doesnt have any bot ids, only name +/// Cache bots in a dictionary, keyed by the bots name, keying by name isnt ideal as its not unique but this is used by the post-raid system which doesnt have any bot ids, only name /// [Injectable(InjectionType.Singleton)] public class MatchBotDetailsCacheService( - ISptLogger _logger, - LocalisationService _localisationService + ISptLogger _logger ) { - protected ConcurrentDictionary _botDetailsCache = new(); + private static readonly HashSet _sidesToCache = + [ + "pmcUSEC", + "pmcBEAR" + ]; + + protected readonly ConcurrentDictionary BotDetailsCache = new(); /// - /// Store a bot in the cache, keyed by its name. + /// Store a bot in the cache, keyed by its name. /// /// Bot details to cache public void CacheBot(BotBase botToCache) { - if (botToCache.Info.Nickname is null) + if (botToCache is null || botToCache.Id is null) { - _logger.Warning($"Unable to cache: {botToCache.Info.Settings.Role} bot with id: {botToCache.Id} as it lacks a nickname"); return; } - botToCache.Inventory = null; - botToCache.Skills = null; - botToCache.Stats = null; + if (botToCache.Info?.Nickname is null) + { + _logger.Warning($"Unable to cache: {botToCache.Info?.Settings?.Role} bot with id: {botToCache.Id} as it lacks a nickname"); + return; + } - var key = $"{botToCache.Info.Nickname.Trim()}{botToCache.Info.Side}"; - _botDetailsCache.TryAdd(key, botToCache); + // If bot isn't a PMC, skip + if (botToCache.Info?.Settings?.Role is null || !_sidesToCache.Contains(botToCache.Info.Settings.Role)) + { + return; + } + + BotDetailsCache.TryAdd(botToCache.Id, new BotDetailsForChatMessages() + { + Nickname = botToCache.Info.Nickname.Trim(), + Side = botToCache.Info.Side == "pmcUSEC" ? DogtagSide.Usec : DogtagSide.Bear, + Aid = botToCache.Aid, + Type = botToCache.Info.MemberCategory, + Level = botToCache.Info.Level, + }); } /// - /// Clean the cache of all bot details. + /// Clean the cache of all bot details. /// public void ClearCache() { - _botDetailsCache.Clear(); + BotDetailsCache.Clear(); } /// - /// Find a bot in the cache by its name and side. + /// Find a bot in the cache by its name and side. /// /// Name of bot to find /// Side of the bot /// - public BotBase? GetBotByNameAndSide(string botName, string botSide) + public BotDetailsForChatMessages? GetBotById(string? id) { - var botInCache = _botDetailsCache.GetValueOrDefault($"{botName}{botSide}`", null); + if (id == null) + { + return null; + } + + var botInCache = BotDetailsCache.GetValueOrDefault(id, null); if (botInCache is null) { - _logger.Warning($"Bot not found in match bot cache: {botName.ToLower()} {botSide}"); - + _logger.Warning($"Bot not found in match bot cache: {id}"); return null; } diff --git a/Libraries/SPTarkov.Server.Core/Services/Mod/CustomItemService.cs b/Libraries/SPTarkov.Server.Core/Services/Mod/CustomItemService.cs index a9943d17..81d36ce4 100644 --- a/Libraries/SPTarkov.Server.Core/Services/Mod/CustomItemService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/Mod/CustomItemService.cs @@ -1,12 +1,12 @@ -using SPTarkov.Server.Core.Helpers; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; +using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Mod; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Services.Mod; @@ -22,12 +22,12 @@ public class CustomItemService( ) { /// - /// Create a new item from a cloned item base
- /// WARNING - If no item id is supplied, an id will be generated, this id will be random every time you add an item and will not be the same on each subsequent server start
- /// Add to the items db
- /// Add to the flea market
- /// Add to the handbook
- /// Add to the locales + /// Create a new item from a cloned item base
+ /// WARNING - If no item id is supplied, an id will be generated, this id will be random every time you add an item and will not be the same on each subsequent server start
+ /// Add to the items db
+ /// Add to the flea market
+ /// Add to the handbook
+ /// Add to the locales ///
/// Item details for the new item to be created /// tplId of the new item created @@ -80,11 +80,11 @@ public class CustomItemService( } /// - /// Create a new item without using an existing item as a template
- /// Add to the items db
- /// Add to the flea market
- /// Add to the handbook
- /// Add to the locales
+ /// Create a new item without using an existing item as a template
+ /// Add to the items db
+ /// Add to the flea market
+ /// Add to the handbook
+ /// Add to the locales
///
/// Details on what the item to be created /// CreateItemResult containing the completed items ID @@ -124,7 +124,7 @@ public class CustomItemService( } /// - /// If the ID provided is an empty string, return a randomly generated guid, otherwise return the newId parameter + /// If the ID provided is an empty string, return a randomly generated guid, otherwise return the newId parameter /// /// ID supplied to code /// ItemID @@ -134,8 +134,8 @@ public class CustomItemService( } /// - /// Iterates through supplied properties and updates the cloned items properties with them - /// Complex objects cannot have overrides, they must be fully hydrated with values if they are to be used + /// Iterates through supplied properties and updates the cloned items properties with them + /// Complex objects cannot have overrides, they must be fully hydrated with values if they are to be used /// /// New properties to apply /// Item to update @@ -153,7 +153,7 @@ public class CustomItemService( } /// - /// Add a new item object to the in-memory representation of items.json + /// Add a new item object to the in-memory representation of items.json /// /// ID of the item to add to items.json /// Item to add against the new id @@ -166,7 +166,7 @@ public class CustomItemService( } /// - /// Add a handbook price for an item + /// Add a handbook price for an item /// /// ID of the item being added /// Parent ID of the item being added @@ -187,13 +187,13 @@ public class CustomItemService( } /// - /// Iterate through the passed in locale data and add to each locale in turn
- /// If data is not provided for each language EFT uses, the first object will be used in its place
- /// e.g.
- /// en[0]
- /// fr[1]
- ///
- /// No jp provided, so english will be used as a substitute + /// Iterate through the passed in locale data and add to each locale in turn
+ /// If data is not provided for each language EFT uses, the first object will be used in its place
+ /// e.g.
+ /// en[0]
+ /// fr[1]
+ ///
+ /// No jp provided, so english will be used as a substitute ///
/// key is language, value are the new locale details /// ID of the item being created @@ -214,7 +214,7 @@ public class CustomItemService( } /// - /// Add a price to the in-memory representation of prices.json, used to inform the flea of an items price on the market + /// Add a price to the in-memory representation of prices.json, used to inform the flea of an items price on the market /// /// ID of the new item /// Price of the new item @@ -224,7 +224,7 @@ public class CustomItemService( } /// - /// Add a weapon to the hideout weapon shelf whitelist + /// Add a weapon to the hideout weapon shelf whitelist /// /// Weapon ID to add protected void AddToWeaponShelf(string newItemId) @@ -247,7 +247,7 @@ public class CustomItemService( } /// - /// Add a custom weapon to PMCs loadout + /// Add a custom weapon to PMCs loadout /// /// Custom weapon tpl to add to PMCs /// The weighting for the weapon to be picked vs other weapons diff --git a/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs b/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs index 5cb74485..07f09ddc 100644 --- a/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/Mod/ProfileDataService.cs @@ -26,7 +26,9 @@ public class ProfileDataService(ISptLogger logger, FileUtil value = jsonUtil.Deserialize(fileUtil.ReadFile($"{ProfileDataFilepath}{profileId}/{modKey}.json")); if (value != null) { - while (!_profileDataCache.TryAdd(profileDataKey, value)) { } + while (!_profileDataCache.TryAdd(profileDataKey, value)) + { + } } } else @@ -34,6 +36,7 @@ public class ProfileDataService(ISptLogger logger, FileUtil value = null; } } + return (T?) value; } @@ -43,12 +46,17 @@ public class ProfileDataService(ISptLogger logger, FileUtil { throw new ArgumentNullException(nameof(profileData)); } + var data = jsonUtil.Serialize(profileData, profileData.GetType()); if (data == null) { throw new Exception("The profile data when serialized resulted in a null value"); } - while(!_profileDataCache.TryAdd($"{profileId}:{modKey}", data)) { } + + while (!_profileDataCache.TryAdd($"{profileId}:{modKey}", data)) + { + } + fileUtil.WriteFile($"{ProfileDataFilepath}{profileId}/{modKey}.json", data); } } diff --git a/Libraries/SPTarkov.Server.Core/Services/NotificationService.cs b/Libraries/SPTarkov.Server.Core/Services/NotificationService.cs index e3c1bfaf..873adf20 100644 --- a/Libraries/SPTarkov.Server.Core/Services/NotificationService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/NotificationService.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Eft.Ws; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Ws; namespace SPTarkov.Server.Core.Services; diff --git a/Libraries/SPTarkov.Server.Core/Services/OpenZoneService.cs b/Libraries/SPTarkov.Server.Core/Services/OpenZoneService.cs index 884d6d2b..93052b82 100644 --- a/Libraries/SPTarkov.Server.Core/Services/OpenZoneService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/OpenZoneService.cs @@ -1,12 +1,12 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; /// -/// Service for adding new zones to a maps OpenZones property. +/// Service for adding new zones to a maps OpenZones property. /// [Injectable(InjectionType.Singleton)] public class OpenZoneService( diff --git a/Libraries/SPTarkov.Server.Core/Services/PaymentService.cs b/Libraries/SPTarkov.Server.Core/Services/PaymentService.cs index c413f9ff..93cce508 100644 --- a/Libraries/SPTarkov.Server.Core/Services/PaymentService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/PaymentService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -9,7 +10,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -32,7 +32,7 @@ public class PaymentService( protected InventoryConfig _inventoryConfig = _configServer.GetConfig(); /// - /// Take money and insert items into return to server request + /// Take money and insert items into return to server request /// /// PMC Profile /// Buy item request @@ -45,7 +45,7 @@ public class PaymentService( var payToTrader = _traderHelper.TraderEnumHasValue(request.TransactionId); // Track the amounts of each type of currency involved in the trade. - Dictionary currencyAmounts = new Dictionary(); + var currencyAmounts = new Dictionary(); // Delete barter items and track currencies foreach (var itemRequest in request.SchemeItems) @@ -69,7 +69,12 @@ public class PaymentService( else { // If the item is money, add its count to the currencyAmounts object. - currencyAmounts.TryAdd(item.Template, currencyAmounts.GetValueOrDefault(item.Template, 0) + itemRequest.Count); + // sometimes the currency can be in two parts, so it fails to tryadd the second part + if (!currencyAmounts.TryAdd(item.Template, itemRequest.Count)) + { + // if it fails, add the amount to the existing amount + currencyAmounts[item.Template] += itemRequest.Count; + } } } else @@ -77,7 +82,12 @@ public class PaymentService( // Used by `SptInsure` // Handle differently, `id` is the money type tpl var currencyTpl = itemRequest.Id; - currencyAmounts.TryAdd(currencyTpl, currencyAmounts.GetValueOrDefault(currencyTpl, 0) + itemRequest.Count); + // sometimes the currency can be in two parts, so it fails to tryadd the second part + if (!currencyAmounts.TryAdd(currencyTpl, itemRequest.Count)) + { + // if it fails, add the amount to the existing amount + currencyAmounts[currencyTpl] += itemRequest.Count; + } } } @@ -85,18 +95,17 @@ public class PaymentService( var totalCurrencyAmount = 0d; // Loop through each type of currency involved in the trade. - foreach (var currencyTpl in currencyAmounts) + foreach (var (currencyTpl, currencyAmount) in currencyAmounts) { - if (currencyTpl.Value <= 0) + if (currencyAmount <= 0) { continue; } - var currencyAmount = currencyTpl.Value; totalCurrencyAmount += currencyAmount.Value; // Find money stacks in inventory and remove amount needed + update output object to inform client of changes - AddPaymentToOutput(pmcData, currencyTpl.Key, currencyAmount.Value, sessionID, output); + AddPaymentToOutput(pmcData, currencyTpl, currencyAmount.Value, sessionID, output); // If there are warnings, exit early. if (output.Warnings?.Count > 0) @@ -108,7 +117,7 @@ public class PaymentService( { // Convert the amount to the trader's currency and update the sales sum. var costOfPurchaseInCurrency = _handbookHelper.FromRUB( - _handbookHelper.InRUB(currencyAmount ?? 0, currencyTpl.Key), + _handbookHelper.InRUB(currencyAmount ?? 0, currencyTpl), _paymentHelper.GetCurrency(trader.Currency) ); @@ -143,7 +152,7 @@ public class PaymentService( } /// - /// Get the item price of a specific traders assort + /// Get the item price of a specific traders assort /// /// ID of the assort to look up /// ID of trader with assort @@ -168,7 +177,7 @@ public class PaymentService( } /// - /// Receive money back after selling + /// Receive money back after selling /// /// PMC Profile /// Money to send back @@ -244,7 +253,7 @@ public class PaymentService( Template = currencyTpl, Upd = new Upd { - StackObjectsCount = Math.Round((double) calcAmount) + StackObjectsCount = Math.Round(calcAmount) } }; @@ -271,7 +280,7 @@ public class PaymentService( } /// - /// Remove currency from player stash/inventory and update client object with changes + /// Remove currency from player stash/inventory and update client object with changes /// /// Player profile to find and remove currency from /// Type of currency to pay @@ -352,7 +361,7 @@ public class PaymentService( } /// - /// Get all money stacks in inventory and prioritise items in stash + /// Get all money stacks in inventory and prioritise items in stash /// /// Player profile /// Currency to find @@ -374,8 +383,8 @@ public class PaymentService( } /// - /// Prioritise player stash first over player inventory. - /// Post-raid healing would often take money out of the players pockets/secure container. + /// Prioritise player stash first over player inventory. + /// Post-raid healing would often take money out of the players pockets/secure container. /// /// First money stack item /// Second money stack item @@ -448,7 +457,7 @@ public class PaymentService( } /// - /// Recursively check items parents to see if it is inside the players inventory, not stash + /// Recursively check items parents to see if it is inside the players inventory, not stash /// /// Item ID to check /// Player inventory diff --git a/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs b/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs index 80348d8e..48b25f3e 100644 --- a/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Eft.Common; namespace SPTarkov.Server.Core.Services; @@ -9,13 +9,15 @@ public class PlayerService( ) { /// - /// Calculates the current level of a player based on their accumulated experience points. - /// This method iterates through an experience table to determine the highest level achieved - /// by comparing the player's experience against cumulative thresholds. + /// Calculates the current level of a player based on their accumulated experience points. + /// This method iterates through an experience table to determine the highest level achieved + /// by comparing the player's experience against cumulative thresholds. /// /// Player profile - /// The calculated level of the player as an integer, or null if the level cannot be determined. - /// This value is also assigned to within the provided profile. + /// + /// The calculated level of the player as an integer, or null if the level cannot be determined. + /// This value is also assigned to within the provided profile. + /// public int? CalculateLevel(PmcData pmcData) { var accExp = 0; diff --git a/Libraries/SPTarkov.Server.Core/Services/PmcChatResponseService.cs b/Libraries/SPTarkov.Server.Core/Services/PmcChatResponseService.cs index fbffde4d..05eb269f 100644 --- a/Libraries/SPTarkov.Server.Core/Services/PmcChatResponseService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/PmcChatResponseService.cs @@ -1,4 +1,5 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -30,7 +30,7 @@ public class PmcChatResponseService( protected PmcChatResponse _pmcResponsesConfig = _configServer.GetConfig(); /// - /// For each PMC victim of the player, have a chance to send a message to the player, can be positive or negative + /// For each PMC victim of the player, have a chance to send a message to the player, can be positive or negative /// /// Session ID /// List of bots killed by player @@ -66,7 +66,7 @@ public class PmcChatResponseService( } /// - /// Not fully implemented yet, needs method of acquiring killers details after raid + /// Not fully implemented yet, needs method of acquiring killers details after raid /// /// Session id /// Players profile @@ -83,39 +83,27 @@ public class PmcChatResponseService( return; } - // find bot by name in cache - var killerDetailsInCache = _matchBotDetailsCacheService.GetBotByNameAndSide(killer.Name, killer.Side); + // find bot by id in cache + var killerDetailsInCache = _matchBotDetailsCacheService.GetBotById(killer.ProfileId); if (killerDetailsInCache is null) { return; } - // If killer wasn't a PMC, skip - var pmcTypes = new HashSet - { - "pmcUSEC", - "pmcBEAR" - }; - if (!pmcTypes.Contains(killerDetailsInCache.Info.Settings.Role)) - { - return; - } - - // Because we've cached PMC sides as "Savage" for the client, we need to figure out - // what side it really is - var side = killerDetailsInCache.Info.Settings.Role == "pmcUSEC" ? "Usec" : "Bear"; + // Because we've cached PMC sides as "Savage" for the client, + // we need to figure out what side it really is + var side = killerDetailsInCache.Side == DogtagSide.Usec ? "Usec" : "Bear"; var killerDetails = new UserDialogInfo { - Id = killerDetailsInCache.Id, + Id = killer.ProfileId, Aid = killerDetailsInCache.Aid, Info = new UserDialogDetails { - Nickname = killerDetailsInCache.Info.Nickname, + Nickname = killerDetailsInCache.Nickname, Side = side, - Level = killerDetailsInCache.Info.Level, - MemberCategory = killerDetailsInCache.Info.MemberCategory, - SelectedMemberCategory = killerDetailsInCache.Info.SelectedMemberCategory + Level = killerDetailsInCache.Level, + MemberCategory = killerDetailsInCache.Type } }; @@ -129,7 +117,7 @@ public class PmcChatResponseService( } /// - /// Choose a localised message to send the player (different if sender was killed or killed player) + /// Choose a localised message to send the player (different if sender was killed or killed player) /// /// Is the message coming from a bot killed by the player /// Player profile @@ -190,8 +178,8 @@ public class PmcChatResponseService( } /// - /// use map key to get a localised location name - /// e.g. factory4_day becomes "Factory" + /// use map key to get a localised location name + /// e.g. factory4_day becomes "Factory" /// /// Location key to localise /// Localised location name @@ -201,7 +189,7 @@ public class PmcChatResponseService( } /// - /// Should capitalisation be stripped from the message response before sending + /// Should capitalisation be stripped from the message response before sending /// /// Was responder a victim of player /// True = should be stripped @@ -215,7 +203,7 @@ public class PmcChatResponseService( } /// - /// Should capitalisation be stripped from the message response before sending + /// Should capitalisation be stripped from the message response before sending /// /// Was responder a victim of player /// True = should be stripped @@ -229,7 +217,7 @@ public class PmcChatResponseService( } /// - /// Should a suffix be appended to the end of the message being sent to player + /// Should a suffix be appended to the end of the message being sent to player /// /// Was responder a victim of player /// True = should be appended @@ -243,7 +231,7 @@ public class PmcChatResponseService( } /// - /// Choose a type of response based on the weightings in pmc response config + /// Choose a type of response based on the weightings in pmc response config /// /// Was responder killed by player /// Response type (positive/negative) @@ -257,7 +245,7 @@ public class PmcChatResponseService( } /// - /// Get locale keys related to the type of response to send (victim/killer) + /// Get locale keys related to the type of response to send (victim/killer) /// /// Positive/negative /// Was responder killed by player @@ -271,7 +259,7 @@ public class PmcChatResponseService( } /// - /// Get all locale keys that start with `pmcresponse-suffix` + /// Get all locale keys that start with `pmcresponse-suffix` /// /// List of keys protected List GetResponseSuffixLocaleKeys() @@ -282,7 +270,7 @@ public class PmcChatResponseService( } /// - /// Randomly draw a victim of the list and return their details + /// Randomly draw a victim of the list and return their details /// /// Possible victims to choose from /// UserDialogInfo object @@ -295,7 +283,7 @@ public class PmcChatResponseService( } /// - /// Convert a victim object into a IUserDialogInfo object + /// Convert a victim object into a IUserDialogInfo object /// /// Victim to convert /// UserDialogInfo object diff --git a/Libraries/SPTarkov.Server.Core/Services/PostDbLoadService.cs b/Libraries/SPTarkov.Server.Core/Services/PostDbLoadService.cs index cb5c93f6..4b601303 100644 --- a/Libraries/SPTarkov.Server.Core/Services/PostDbLoadService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/PostDbLoadService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -29,8 +29,8 @@ public class PostDbLoadService( protected ItemConfig _itemConfig = _configServer.GetConfig(); protected LocationConfig _locationConfig = _configServer.GetConfig(); protected LootConfig _lootConfig = _configServer.GetConfig(); - protected RagfairConfig _ragfairConfig = _configServer.GetConfig(); protected PmcConfig _pmcConfig = _configServer.GetConfig(); + protected RagfairConfig _ragfairConfig = _configServer.GetConfig(); public void PerformPostDbLoadActions() { @@ -143,13 +143,14 @@ public class PostDbLoadService( } /// - /// Merge custom achievements into achievement db table + /// Merge custom achievements into achievement db table /// protected void MergeCustomAchievements() { var achievements = _databaseService.GetAchievements(); - foreach (var customAchievement in _databaseService.GetCustomAchievements()) { - if (achievements.Exists((a) => a.Id == customAchievement.Id)) + foreach (var customAchievement in _databaseService.GetCustomAchievements()) + { + if (achievements.Exists(a => a.Id == customAchievement.Id)) { _logger.Warning($"Unable to add custom achievement as id: {customAchievement.Id} already exists"); continue; @@ -256,8 +257,7 @@ public class PostDbLoadService( foreach (var positionToAdd in positionsToAdd) { // Exists already, add new items to existing positions pool - var existingLootPosition = mapLooseLoot.Spawnpoints.FirstOrDefault( - x => x.Template.Id == positionToAdd.Template.Id + var existingLootPosition = mapLooseLoot.Spawnpoints.FirstOrDefault(x => x.Template.Id == positionToAdd.Template.Id ); if (existingLootPosition is not null) @@ -298,7 +298,11 @@ public class PostDbLoadService( { var locations = _databaseService.GetLocations().GetDictionary(); - var pmcTypes = new HashSet { "pmcUSEC", "pmcBEAR" }; + var pmcTypes = new HashSet + { + "pmcUSEC", + "pmcBEAR" + }; foreach (var locationkvP in locations) { if (locationkvP.Value?.Base?.BossLocationSpawn is null) @@ -306,13 +310,13 @@ public class PostDbLoadService( continue; } - locationkvP.Value.Base.BossLocationSpawn = locationkvP.Value.Base.BossLocationSpawn.Where( - (bossSpawn) => !pmcTypes.Contains(bossSpawn.BossName)).ToList(); + locationkvP.Value.Base.BossLocationSpawn = + locationkvP.Value.Base.BossLocationSpawn.Where(bossSpawn => !pmcTypes.Contains(bossSpawn.BossName)).ToList(); } } /// - /// Apply custom limits on bot types as defined in configs/location.json/botTypeLimits + /// Apply custom limits on bot types as defined in configs/location.json/botTypeLimits /// protected void AdjustMapBotLimits() { @@ -379,8 +383,7 @@ public class PostDbLoadService( foreach (var (lootKey, newChanceValue) in mapAdjustments) { - var lootPostionToAdjust = mapLooseLootData.Spawnpoints.FirstOrDefault( - spawnPoint => spawnPoint.Template.Id == lootKey + var lootPostionToAdjust = mapLooseLootData.Spawnpoints.FirstOrDefault(spawnPoint => spawnPoint.Template.Id == lootKey ); if (lootPostionToAdjust is null) { @@ -425,7 +428,7 @@ public class PostDbLoadService( } /// - /// Make Rogues spawn later to allow for scavs to spawn first instead of rogues filling up all spawn positions + /// Make Rogues spawn later to allow for scavs to spawn first instead of rogues filling up all spawn positions /// protected void FixRoguesSpawningInstantlyOnLighthouse() { @@ -447,15 +450,14 @@ public class PostDbLoadService( } /// - /// Make non-trigger-spawned raiders spawn earlier + always + /// Make non-trigger-spawned raiders spawn earlier + always /// protected void AdjustLabsRaiderSpawnRate() { var labsBase = _databaseService.GetLocations().Laboratory.Base; // Find spawns with empty string for triggerId/TriggerName - var nonTriggerLabsBossSpawns = labsBase.BossLocationSpawn.Where( - bossSpawn => bossSpawn.TriggerId is null && bossSpawn.TriggerName is null + var nonTriggerLabsBossSpawns = labsBase.BossLocationSpawn.Where(bossSpawn => bossSpawn.TriggerId is null && bossSpawn.TriggerName is null ); foreach (var boss in nonTriggerLabsBossSpawns) @@ -480,7 +482,7 @@ public class PostDbLoadService( } /// - /// Adjust all hideout craft times to be no higher than the override + /// Adjust all hideout craft times to be no higher than the override /// /// Time in seconds protected void AdjustHideoutBuildTimes(int overrideSeconds) @@ -518,7 +520,7 @@ public class PostDbLoadService( } /// - /// Check for any missing assorts inside each traders assort.json data, checking against traders questassort.json + /// Check for any missing assorts inside each traders assort.json data, checking against traders questassort.json /// protected void ValidateQuestAssortUnlocksExist() { @@ -563,10 +565,9 @@ public class PostDbLoadService( protected void SetAllDbItemsAsSellableOnFlea() { var dbItems = _databaseService.GetItems().Values.ToList(); - foreach (var item in dbItems.Where( - item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && - !item.Properties.CanSellOnRagfair.GetValueOrDefault(false) && - !_ragfairConfig.Dynamic.Blacklist.Custom.Contains(item.Id) + foreach (var item in dbItems.Where(item => string.Equals(item.Type, "Item", StringComparison.OrdinalIgnoreCase) && + !item.Properties.CanSellOnRagfair.GetValueOrDefault(false) && + !_ragfairConfig.Dynamic.Blacklist.Custom.Contains(item.Id) )) { item.Properties.CanSellOnRagfair = true; diff --git a/Libraries/SPTarkov.Server.Core/Services/ProfileActivityService.cs b/Libraries/SPTarkov.Server.Core/Services/ProfileActivityService.cs index 0073e4d3..a0102077 100644 --- a/Libraries/SPTarkov.Server.Core/Services/ProfileActivityService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/ProfileActivityService.cs @@ -1,54 +1,49 @@ -using SPTarkov.Server.Core.Utils; +using System.Collections.Concurrent; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Utils; namespace SPTarkov.Server.Core.Services; [Injectable(InjectionType.Singleton)] public class ProfileActivityService( - TimeUtil _timeUtil + TimeUtil timeUtil ) { - private readonly Dictionary profileActivityTimestamps = new(); + private readonly ConcurrentDictionary _profileActivityTimestamps = new(); /// - /// Was the requested profile active in the last requested minutes + /// Was the requested profile active within the last x minutes /// /// Profile to check /// Minutes to check for activity in /// True when profile was active within past x minutes public bool ActiveWithinLastMinutes(string sessionId, int minutes) { - var currentTimestamp = _timeUtil.GetTimeStamp(); - if (!profileActivityTimestamps.TryGetValue(sessionId, out var storedActivityTimestamp)) + if (!_profileActivityTimestamps.TryGetValue(sessionId, out var storedActivityTimestamp)) { + // No record, exit early return false; } - return currentTimestamp - storedActivityTimestamp < minutes * 60; + return timeUtil.GetTimeStamp() - storedActivityTimestamp < minutes * 60; } /// - /// Get a list of profile ids that were active in the last x minutes + /// Get a list of profile ids that were active in the last x minutes /// /// How many minutes from now to search for profiles - /// List of profile ids + /// List of active profile ids public List GetActiveProfileIdsWithinMinutes(int minutes) { - var currentTimestamp = _timeUtil.GetTimeStamp(); + var currentTimestamp = timeUtil.GetTimeStamp(); var result = new List(); - foreach (var activity in profileActivityTimestamps ?? new Dictionary()) + foreach (var (sessionId, lastActivityTimestamp) in _profileActivityTimestamps) { - var lastActivityTimestamp = activity.Value; - if (lastActivityTimestamp == null) - { - continue; - } - // Profile was active in last x minutes, add to return list if (currentTimestamp - lastActivityTimestamp < minutes * 60) { - result.Add(activity.Key); + result.Add(sessionId); } } @@ -56,11 +51,14 @@ public class ProfileActivityService( } /// - /// Update the timestamp a profile was last observed active + /// Update the timestamp a profile was last observed active /// /// Profile to update public void SetActivityTimestamp(string sessionId) { - profileActivityTimestamps[sessionId] = _timeUtil.GetTimeStamp(); + if(!_profileActivityTimestamps.TryAdd(sessionId, timeUtil.GetTimeStamp())) + { + _profileActivityTimestamps[sessionId] = timeUtil.GetTimeStamp(); + } } } diff --git a/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs b/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs index 21aae322..63a94019 100644 --- a/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/ProfileFixerService.cs @@ -1,4 +1,5 @@ using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -246,14 +246,11 @@ public class ProfileFixerService( { if (pmcProfile.RepeatableQuests is not null && activeRepeatableQuests.Count > 0) { - var existsInActiveRepeatableQuests = activeRepeatableQuests.Any( - quest => quest.Id == TaskConditionCounterKvP.Value.SourceId + var existsInActiveRepeatableQuests = activeRepeatableQuests.Any(quest => quest.Id == TaskConditionCounterKvP.Value.SourceId ); - var existsInQuests = pmcProfile.Quests.Any( - quest => quest.QId == TaskConditionCounterKvP.Value.SourceId + var existsInQuests = pmcProfile.Quests.Any(quest => quest.QId == TaskConditionCounterKvP.Value.SourceId ); - var isAchievementTracker = achievements.Any( - quest => quest.Id == TaskConditionCounterKvP.Value.SourceId + var isAchievementTracker = achievements.Any(quest => quest.Id == TaskConditionCounterKvP.Value.SourceId ); // If task conditions id is neither in activeQuests, quests or achievements - it's stale and should be cleaned up @@ -328,8 +325,7 @@ public class ProfileFixerService( // For started or successful quests, check for unlocks in the `Started` rewards if (profileQuest.Status is QuestStatusEnum.Started or QuestStatusEnum.Success) { - var productionRewards = quest.Rewards.Started?.Where( - reward => reward.Type == RewardType.ProductionScheme + var productionRewards = quest.Rewards.Started?.Where(reward => reward.Type == RewardType.ProductionScheme ); if (productionRewards is not null) @@ -344,8 +340,7 @@ public class ProfileFixerService( // For successful quests, check for unlocks in the `Success` rewards if (profileQuest.Status is QuestStatusEnum.Success) { - var productionRewards = quest.Rewards.Success?.Where( - reward => reward.Type == RewardType.ProductionScheme + var productionRewards = quest.Rewards.Success?.Where(reward => reward.Type == RewardType.ProductionScheme ); if (productionRewards is not null) @@ -402,12 +397,12 @@ public class ProfileFixerService( } /// - /// Remove any entries from `pmcProfile.InsuredItems` that do not have a corresponding - /// `pmcProfile.Inventory.items` entry + /// Remove any entries from `pmcProfile.InsuredItems` that do not have a corresponding + /// `pmcProfile.Inventory.items` entry /// /// PMC Profile to fix - protected void FixOrphanedInsurance(PmcData pmcProfile) { - + protected void FixOrphanedInsurance(PmcData pmcProfile) + { // Check if the player inventory contains this item pmcProfile.InsuredItems = pmcProfile.InsuredItems .Where(insuredItem => pmcProfile.Inventory.Items.Any(item => item.Id == insuredItem.ItemId)) @@ -527,7 +522,7 @@ public class ProfileFixerService( } /// - /// Check for and cap profile skills at 5100. + /// Check for and cap profile skills at 5100. /// /// Profile to check and fix protected void CheckForSkillsOverMaxLevel(PmcData pmcProfile) @@ -541,7 +536,7 @@ public class ProfileFixerService( } /// - /// Checks profile inventory for items that do not exist inside the items DB + /// Checks profile inventory for items that do not exist inside the items DB /// /// Session ID /// Profile to check inventory of @@ -578,8 +573,7 @@ public class ProfileFixerService( // Remove invalid builds from weapon, equipment and magazine build lists var weaponBuilds = fullProfile.UserBuildData?.WeaponBuilds ?? new List(); fullProfile.UserBuildData.WeaponBuilds = - weaponBuilds.Where( - build => + weaponBuilds.Where(build => { return !ShouldRemoveWeaponEquipmentBuild("weapon", build, itemsDb); } @@ -588,8 +582,7 @@ public class ProfileFixerService( var equipmentBuilds = fullProfile.UserBuildData.EquipmentBuilds ?? new List(); fullProfile.UserBuildData.EquipmentBuilds = - equipmentBuilds.Where( - build => + equipmentBuilds.Where(build => { return !ShouldRemoveWeaponEquipmentBuild("equipment", build, itemsDb); } @@ -597,8 +590,7 @@ public class ProfileFixerService( .ToList(); var magazineBuild = fullProfile.UserBuildData.MagazineBuilds ?? new List(); - fullProfile.UserBuildData.MagazineBuilds = magazineBuild.Where( - build => + fullProfile.UserBuildData.MagazineBuilds = magazineBuild.Where(build => { return !ShouldRemoveMagazineBuild(build, itemsDb); } @@ -721,7 +713,7 @@ public class ProfileFixerService( } /// - /// Check whether a weapon build should be removed from the equipment list. + /// Check whether a weapon build should be removed from the equipment list. /// /// The type of build, used for logging only /// The build to check for invalid items @@ -775,7 +767,7 @@ public class ProfileFixerService( } /// - /// Checks whether magazine build shou8ld be removed form the build list. + /// Checks whether magazine build shou8ld be removed form the build list. /// /// The magazine build to check for validity /// The items database to use for item lookup @@ -812,8 +804,8 @@ public class ProfileFixerService( } /// - /// REQUIRED for dev profiles
- /// Iterate over players hideout areas and find what's built, look for missing bonuses those areas give and add them if missing + /// REQUIRED for dev profiles
+ /// Iterate over players hideout areas and find what's built, look for missing bonuses those areas give and add them if missing ///
/// Profile to update public void AddMissingHideoutBonusesToProfile(PmcData pmcProfile) @@ -872,7 +864,7 @@ public class ProfileFixerService( } /// - /// Finds a bonus in a profile + /// Finds a bonus in a profile /// /// Bonuses from profile /// Bonus to find @@ -887,11 +879,10 @@ public class ProfileFixerService( return bonus.Type switch { - BonusType.StashSize => profileBonuses?.FirstOrDefault( - x => x.Type == bonus.Type && x.TemplateId == bonus.TemplateId + BonusType.StashSize => profileBonuses?.FirstOrDefault(x => x.Type == bonus.Type && x.TemplateId == bonus.TemplateId ), - BonusType.AdditionalSlots => profileBonuses?.FirstOrDefault( - x => x.Type == bonus.Type && x?.Value == bonus?.Value && x?.IsVisible == bonus?.IsVisible + BonusType.AdditionalSlots => profileBonuses?.FirstOrDefault(x => + x.Type == bonus.Type && x?.Value == bonus?.Value && x?.IsVisible == bonus?.IsVisible ), _ => profileBonuses?.FirstOrDefault(x => x.Type == bonus.Type && x.Value == bonus.Value) }; diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairCategoriesService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairCategoriesService.cs index 82640ce2..d23b0a41 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairCategoriesService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairCategoriesService.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -26,8 +26,7 @@ public class RagfairCategoriesService( { // Get offers valid for search request, then reduce them down to just the counts return offers - .Where( - offer => + .Where(offer => { var isTraderOffer = offer.User.MemberType == MemberCategory.Trader; diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairLinkedItemService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairLinkedItemService.cs index 2eba3de8..d4aa6dea 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairLinkedItemService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairLinkedItemService.cs @@ -1,8 +1,8 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -28,7 +28,7 @@ public class RagfairLinkedItemService( } /// - /// Use ragfair linked item service to get an list of items that can fit on or in designated itemtpl + /// Use ragfair linked item service to get an list of items that can fit on or in designated itemtpl /// /// Item to get sub-items for /// TemplateItem list @@ -55,7 +55,7 @@ public class RagfairLinkedItemService( } /// - /// Create Dictionary of every item and the items associated with it + /// Create Dictionary of every item and the items associated with it /// protected void BuildLinkedItemTable() { @@ -93,7 +93,7 @@ public class RagfairLinkedItemService( } /// - /// Add ammo to revolvers linked item dictionary + /// Add ammo to revolvers linked item dictionary /// /// Revolvers cylinder /// Set to add to diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairOfferService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairOfferService.cs index 56aade59..a865b4ad 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairOfferService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairOfferService.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Ragfair; @@ -6,8 +8,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Services; @@ -31,7 +31,7 @@ public class RagfairOfferService( protected RagfairConfig _ragfairConfig = configServer.GetConfig(); /// - /// Get all offers + /// Get all offers /// /// List of RagfairOffers public List GetOffers() @@ -55,7 +55,7 @@ public class RagfairOfferService( } /// - /// Does the offer exist on the ragfair + /// Does the offer exist on the ragfair /// /// Offer id to check for /// True when offer exists @@ -65,7 +65,7 @@ public class RagfairOfferService( } /// - /// Remove an offer from ragfair by offer id + /// Remove an offer from ragfair by offer id /// /// Offer id to remove public void RemoveOfferById(string offerId) @@ -74,7 +74,7 @@ public class RagfairOfferService( } /// - /// Reduce size of an offer stack by specified amount + /// Reduce size of an offer stack by specified amount /// /// Offer to adjust stack size of /// How much to deduct from offers stack size @@ -100,7 +100,7 @@ public class RagfairOfferService( } /// - /// Do the trader offers on flea need to be refreshed + /// Do the trader offers on flea need to be refreshed /// /// Trader to check /// True if they do @@ -143,7 +143,7 @@ public class RagfairOfferService( } /// - /// Process the expired ids and remove offers + /// Process the expired ids and remove offers /// public void RemoveExpiredOffers() { @@ -154,7 +154,7 @@ public class RagfairOfferService( } /// - /// Remove stale offer from flea + /// Remove stale offer from flea /// /// Stale offer to process protected void ProcessStaleOffer(RagfairOffer staleOffer) @@ -243,9 +243,9 @@ public class RagfairOfferService( } /// - /// Flea offer items are stacked up often beyond the StackMaxSize limit. - /// Unstack the items into an array of root items and their children. - /// Will create new items equal to the stack. + /// Flea offer items are stacked up often beyond the StackMaxSize limit. + /// Unstack the items into an array of root items and their children. + /// Will create new items equal to the stack. /// /// Offer items to unstack /// Unstacked array of items diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs index d6bf5026..8634f9b0 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -7,13 +8,12 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; /// -/// Stores flea prices for items as well as methods to interact with them. +/// Stores flea prices for items as well as methods to interact with them. /// [Injectable(InjectionType.Singleton)] public class RagfairPriceService( @@ -116,7 +116,7 @@ public class RagfairPriceService( } /// - /// Get the dynamic (flea) price for an item + /// Get the dynamic (flea) price for an item /// /// Item template id to look up /// Price in roubles @@ -445,9 +445,8 @@ public class RagfairPriceService( if (newOrReplacedModsInPresetVsDefault.Any()) { // Add up cost of mods replaced - var modsReplacedByNewMods = newOrReplacedModsInPresetVsDefault.Where( - x => - presetResult.Preset.Items.Any(y => y.SlotId == x.SlotId) + var modsReplacedByNewMods = newOrReplacedModsInPresetVsDefault.Where(x => + presetResult.Preset.Items.Any(y => y.SlotId == x.SlotId) ); // Add up replaced mods price diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairRequiredItemsService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairRequiredItemsService.cs index 94b59881..2a19400b 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairRequiredItemsService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairRequiredItemsService.cs @@ -1,7 +1,7 @@ using System.Collections.Concurrent; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Ragfair; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairTaxService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairTaxService.cs index bb5adb04..dd7dfaec 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairTaxService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairTaxService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -5,7 +6,6 @@ using SPTarkov.Server.Core.Models.Eft.Ragfair; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils.Cloners; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Services; @@ -38,8 +38,8 @@ public class RagfairTaxService( } /// - /// This method, along with CalculateItemWorth, is trying to mirror the client-side code found in the method "CalculateTaxPrice". - /// It's structured to resemble the client-side code as closely as possible - avoid making any big structure changes if it's not necessary. + /// This method, along with CalculateItemWorth, is trying to mirror the client-side code found in the method "CalculateTaxPrice". + /// It's structured to resemble the client-side code as closely as possible - avoid making any big structure changes if it's not necessary. /// /// Item being sold on flea /// Player profile @@ -128,8 +128,8 @@ public class RagfairTaxService( } /// - /// This method is trying to replicate the item worth calculation method found in the client code. - /// Any inefficiencies or style issues are intentional and should not be fixed, to preserve the client-side code mirroring. + /// This method is trying to replicate the item worth calculation method found in the client code. + /// Any inefficiencies or style issues are intentional and should not be fixed, to preserve the client-side code mirroring. /// /// /// diff --git a/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs b/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs index 9b4239a7..2e847d4a 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; @@ -8,7 +9,6 @@ using SPTarkov.Server.Core.Models.Spt.Location; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -44,6 +44,7 @@ public class RaidTimeAdjustmentService( { AdjustLootMultipliers(_locationConfig.LooseLootMultiplier, raidAdjustments.DynamicLootPercent); } + if (raidAdjustments.StaticLootPercent < 100) { AdjustLootMultipliers(_locationConfig.StaticLootMultiplier, raidAdjustments.StaticLootPercent); @@ -58,7 +59,7 @@ public class RaidTimeAdjustmentService( var exitToChange = mapBase.Exits.FirstOrDefault(exit => exit.Name == exitChange.Name); if (exitToChange is null) { - _logger.Debug($"Exit with Id: { exitChange.Name} not found, skipping"); + _logger.Debug($"Exit with Id: {exitChange.Name} not found, skipping"); return; } diff --git a/Libraries/SPTarkov.Server.Core/Services/RaidWeatherService.cs b/Libraries/SPTarkov.Server.Core/Services/RaidWeatherService.cs index 34055626..9991609b 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RaidWeatherService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RaidWeatherService.cs @@ -1,11 +1,11 @@ -using SPTarkov.Server.Core.Generators; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Generators; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Weather; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -27,23 +27,23 @@ public class RaidWeatherService( public void GenerateWeather(Season currentSeason) { // When to start generating weather from in milliseconds - var staringTimestampMs = _timeUtil.GetTodayMidnightTimeStamp(); + var staringTimestamp = _timeUtil.GetTodayMidnightTimeStamp(); // How far into future do we generate weather - var futureTimestampToReachMs = - staringTimestampMs + _timeUtil.GetHoursAsSeconds(_weatherConfig.Weather.GenerateWeatherAmountHours ?? 1) * 1000; // Convert to milliseconds + var futureTimestampToReach = + staringTimestamp + _timeUtil.GetHoursAsSeconds(_weatherConfig.Weather.GenerateWeatherAmountHours ?? 1); // Keep adding new weather until we have reached desired future date - var nextTimestampMs = staringTimestampMs; - while (nextTimestampMs <= futureTimestampToReachMs) + var nextTimestamp = staringTimestamp; + while (nextTimestamp <= futureTimestampToReach) { - var newWeatherToAddToCache = _weatherGenerator.GenerateWeather(currentSeason, nextTimestampMs); + var newWeatherToAddToCache = _weatherGenerator.GenerateWeather(currentSeason, nextTimestamp); // Add generated weather for time period to cache _weatherForecast.Add(newWeatherToAddToCache); // Increment timestamp so next loop can begin at correct time - nextTimestampMs += GetWeightedWeatherTimePeriodMs(); + nextTimestamp += GetWeightedWeatherTimePeriod(); } } @@ -51,7 +51,7 @@ public class RaidWeatherService( /// Get a time period to increment by, e.g. 15 or 30 minutes as milliseconds ///
/// milliseconds - protected long GetWeightedWeatherTimePeriodMs() + protected long GetWeightedWeatherTimePeriod() { var chosenTimePeriodMinutes = _weightedRandomHelper.WeightedRandom( _weatherConfig.Weather.TimePeriod.Values, @@ -59,7 +59,7 @@ public class RaidWeatherService( ) .Item; - return chosenTimePeriodMinutes * 60 * 1000; // Convert to milliseconds + return chosenTimePeriodMinutes * 60; } /// diff --git a/Libraries/SPTarkov.Server.Core/Services/RepairService.cs b/Libraries/SPTarkov.Server.Core/Services/RepairService.cs index a67adafa..985c069c 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RepairService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RepairService.cs @@ -1,4 +1,6 @@ using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Common; @@ -11,8 +13,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using BonusSettings = SPTarkov.Server.Core.Models.Spt.Config.BonusSettings; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; @@ -577,8 +577,8 @@ public class RepairService( var template = hasTemplate.Value; // Returns SkillTypes.LIGHT_VESTS/HEAVY_VESTS/WEAPON_TREATMENT - var itemSkillType = (SkillTypes) GetItemSkillType(template); - if (itemSkillType == null) + var itemSkillType = GetItemSkillType(template); + if (itemSkillType is null) { return false; } @@ -598,8 +598,8 @@ public class RepairService( { SkillTypes.LightVests, SkillTypes.HeavyVests - }.Contains(itemSkillType) && - _profileHelper.GetSkillFromProfile(pmcData, itemSkillType)?.Progress < 1000 + }.Contains(itemSkillType.Value) && + _profileHelper.GetSkillFromProfile(pmcData, itemSkillType.Value)?.Progress < 1000 ) { return false; @@ -626,7 +626,7 @@ public class RepairService( var receivedDurabilityMaxPercent = buffSettings.ReceivedDurabilityMaxPercent; var skillLevel = - Math.Truncate((_profileHelper.GetSkillFromProfile(pmcData, itemSkillType)?.Progress ?? 0) / 100); + Math.Truncate((_profileHelper.GetSkillFromProfile(pmcData, itemSkillType.Value)?.Progress ?? 0) / 100); if (repairDetails.RepairPoints is null) { diff --git a/Libraries/SPTarkov.Server.Core/Services/SeasonalEventService.cs b/Libraries/SPTarkov.Server.Core/Services/SeasonalEventService.cs index 006514d9..28fa04a5 100644 --- a/Libraries/SPTarkov.Server.Core/Services/SeasonalEventService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/SeasonalEventService.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -6,8 +8,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; namespace SPTarkov.Server.Core.Services; @@ -52,10 +52,15 @@ public class SeasonalEventService( ItemTpl.FACECOVER_FOX_MASK, ItemTpl.FACECOVER_GRINCH_MASK, ItemTpl.FACECOVER_HARE_MASK, - ItemTpl.FACECOVER_ROOSTER_MASK + ItemTpl.FACECOVER_ROOSTER_MASK, + ItemTpl.FLARE_RSP30_REACTIVE_SIGNAL_CARTRIDGE_FIREWORK ]; private List _currentlyActiveEvents = []; + + protected HashSet _equipmentSlotsToFilter = + [EquipmentSlots.FaceCover, EquipmentSlots.Headwear, EquipmentSlots.Backpack, EquipmentSlots.TacticalVest]; + private bool _halloweenEventActive; protected HashSet _halloweenEventItems = @@ -75,6 +80,7 @@ public class SeasonalEventService( protected HttpConfig _httpConfig = _configServer.GetConfig(); protected LocationConfig _locationConfig = _configServer.GetConfig(); + protected HashSet _lootContainersToFilter = ["Backpack", "Pockets", "TacticalVest"]; protected QuestConfig _questConfig = _configServer.GetConfig(); protected SeasonalEventConfig _seasonalEventConfig = _configServer.GetConfig(); protected WeatherConfig _weatherConfig = _configServer.GetConfig(); @@ -351,11 +357,9 @@ public class SeasonalEventService( public void RemoveChristmasItemsFromBotInventory(BotTypeInventory botInventory, string botRole) { var christmasItems = GetChristmasEventItems(); - HashSet equipmentSlotsToFilter = [EquipmentSlots.FaceCover, EquipmentSlots.Headwear, EquipmentSlots.Backpack, EquipmentSlots.TacticalVest]; - HashSet lootContainersToFilter = ["Backpack", "Pockets", "TacticalVest"]; // Remove christmas related equipment - foreach (var equipmentSlotKey in equipmentSlotsToFilter) + foreach (var equipmentSlotKey in _equipmentSlotsToFilter) { if (botInventory.Equipment[equipmentSlotKey] is null) { @@ -377,11 +381,11 @@ public class SeasonalEventService( // Remove christmas related loot from loot containers var props = botInventory.Items.GetType().GetProperties(); - foreach (var lootContainerKey in lootContainersToFilter) + foreach (var lootContainerKey in _lootContainersToFilter) { - var prop = (Dictionary?) props - .FirstOrDefault(p => string.Equals(p.Name.ToLower(), lootContainerKey.ToLower(), StringComparison.OrdinalIgnoreCase)) - .GetValue(botInventory.Items); + var propInfo = props + .FirstOrDefault(p => string.Equals(p.Name.ToLower(), lootContainerKey.ToLower(), StringComparison.OrdinalIgnoreCase)); + var prop = (Dictionary?) propInfo.GetValue(botInventory.Items); if (prop is null) { @@ -397,36 +401,8 @@ public class SeasonalEventService( ); } - List tplsToRemove = []; - foreach (var tplKey in prop) - { - if (christmasItems.Contains(tplKey.Key)) - { - tplsToRemove.Add(tplKey.Key); - } - } - - foreach (var tplToRemove in tplsToRemove) - { - prop.Remove(tplToRemove); - } - - // Get non-christmas items - var nonChristmasTpls = prop.Where(tpl => !christmasItems.Contains(tpl.Key)); - if (!nonChristmasTpls.Any()) - { - continue; - } - - Dictionary intermediaryDict = new(); - - foreach (var tpl in nonChristmasTpls) - { - intermediaryDict[tpl.Key] = prop[tpl.Key]; - } - - // Replace the original containerItems with the updated one - prop = intermediaryDict; + var newProp = prop.Where(tpl => !christmasItems.Contains(tpl.Key)).ToDictionary(); + propInfo.SetValue(botInventory.Items, newProp); } } @@ -463,14 +439,16 @@ public class SeasonalEventService( EnableHalloweenSummonEvent(); AddPumpkinsToScavBackpacks(); RenameBitcoin(); - if (eventType.Settings is not null && eventType.Settings.ReplaceBotHostility.GetValueOrDefault(false)) { + if (eventType.Settings is not null && eventType.Settings.ReplaceBotHostility.GetValueOrDefault(false)) + { if (_seasonalEventConfig.HostilitySettingsForEvent.TryGetValue("AprilFools", out var botData)) { ReplaceBotHostility(botData); } } - if (eventType.Settings?.ForceSeason != null) { + if (eventType.Settings?.ForceSeason != null) + { _weatherConfig.OverrideSeason = eventType.Settings.ForceSeason; } @@ -638,7 +616,8 @@ public class SeasonalEventService( } } - foreach (var settings in newHostilitySettings) { + foreach (var settings in newHostilitySettings) + { var matchingBaseSettings = location.Base.BotLocationModifier.AdditionalHostilitySettings.FirstOrDefault(x => x.BotRole == settings.BotRole); if (matchingBaseSettings is null) { @@ -816,8 +795,7 @@ public class SeasonalEventService( var result = new HashSet(); // Get only the locations with an infection above 0 - var infectionKeys = locationInfections.Where( - location => locationInfections[location.Key] > 0 + var infectionKeys = locationInfections.Where(location => locationInfections[location.Key] > 0 ); // Convert the infected location id into its generic location id diff --git a/Libraries/SPTarkov.Server.Core/Services/TraderAssortService.cs b/Libraries/SPTarkov.Server.Core/Services/TraderAssortService.cs deleted file mode 100644 index 4dad7472..00000000 --- a/Libraries/SPTarkov.Server.Core/Services/TraderAssortService.cs +++ /dev/null @@ -1,31 +0,0 @@ -using SPTarkov.Server.Core.Helpers; -using SPTarkov.Server.Core.Models.Eft.Common.Tables; -using SPTarkov.Common.Annotations; - -namespace SPTarkov.Server.Core.Services; - -[Injectable(InjectionType.Singleton)] -public class TraderAssortService( - TraderHelper _traderHelper) -{ - protected readonly Dictionary _pristineTraderAssorts = new(); - - public TraderAssort? GetPristineTraderAssort(string traderId) - { - return _traderHelper.GetTraderAssortsByTraderId(traderId); - _pristineTraderAssorts.TryGetValue(traderId, out var result); - - return result; - } - - /// - /// Store trader assorts inside a class property - /// - /// Trader id to store assorts against - /// Assorts to store - public void SetPristineTraderAssort(string traderId, TraderAssort assort) - { - // TODO: remove - //_pristineTraderAssorts[traderId] = assort; - } -} diff --git a/Libraries/SPTarkov.Server.Core/Services/TraderPurchasePersisterService.cs b/Libraries/SPTarkov.Server.Core/Services/TraderPurchasePersisterService.cs index cf97cf3e..2e4c12e2 100644 --- a/Libraries/SPTarkov.Server.Core/Services/TraderPurchasePersisterService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/TraderPurchasePersisterService.cs @@ -1,10 +1,10 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Profile; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Services; @@ -21,7 +21,7 @@ public class TraderPurchasePersisterService( protected TraderConfig _traderConfig = _configServer.GetConfig(); /// - /// Get the purchases made from a trader for this profile before the last trader reset + /// Get the purchases made from a trader for this profile before the last trader reset /// /// Session id /// Trader to loop up purchases for @@ -44,7 +44,7 @@ public class TraderPurchasePersisterService( } /// - /// Get a purchase made from a trader for requested profile before the last trader reset + /// Get a purchase made from a trader for requested profile before the last trader reset /// /// Session ID /// Trader to loop up purchases for @@ -78,7 +78,7 @@ public class TraderPurchasePersisterService( } /// - /// Remove all trader purchase records from all profiles that exist + /// Remove all trader purchase records from all profiles that exist /// /// Traders ID public void ResetTraderPurchasesStoredInProfile(string traderId) @@ -106,7 +106,7 @@ public class TraderPurchasePersisterService( } /// - /// Iterate over all server profiles and remove specific trader purchase data that has passed the trader refresh time + /// Iterate over all server profiles and remove specific trader purchase data that has passed the trader refresh time /// /// Trader ID public void RemoveStalePurchasesFromProfiles(string traderId) diff --git a/Libraries/SPTarkov.Server.Core/Utils/App.cs b/Libraries/SPTarkov.Server.Core/Utils/App.cs index 94a3d326..5e39f81e 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/App.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/App.cs @@ -1,10 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Server; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Utils; diff --git a/Libraries/SPTarkov.Server.Core/Utils/Callbacks/TimeoutCallback.cs b/Libraries/SPTarkov.Server.Core/Utils/Callbacks/TimeoutCallback.cs index 7d92de93..8c09e45a 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Callbacks/TimeoutCallback.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Callbacks/TimeoutCallback.cs @@ -4,8 +4,7 @@ public static class TimeoutCallback { public static Task RunInTimespan(Action action, TimeSpan timeSpan) { - return Task.Factory.StartNew( - () => + return Task.Factory.StartNew(() => { Thread.Sleep(timeSpan); action(); diff --git a/Libraries/SPTarkov.Server.Core/Utils/Cloners/JsonCloner.cs b/Libraries/SPTarkov.Server.Core/Utils/Cloners/JsonCloner.cs index 3e82948e..629a99e7 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Cloners/JsonCloner.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Cloners/JsonCloner.cs @@ -1,7 +1,7 @@ namespace SPTarkov.Server.Core.Utils.Cloners; /// -/// Disabled as FastCloner library is 15% faster and consumes less memory than Json serialization +/// Disabled as FastCloner library is 15% faster and consumes less memory than Json serialization /// public class JsonCloner : ICloner { diff --git a/Libraries/SPTarkov.Server.Core/Utils/Cloners/ReflectionsCloner.cs b/Libraries/SPTarkov.Server.Core/Utils/Cloners/ReflectionsCloner.cs index e158e0a0..49691464 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Cloners/ReflectionsCloner.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Cloners/ReflectionsCloner.cs @@ -8,13 +8,16 @@ using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Utils.Cloners; /// -/// Not in use at the moment +/// Not in use at the moment /// /// public class ReflectionsCloner(ISptLogger logger) : ICloner { - private static Dictionary MemberInfoCache = new(); - private static Dictionary AddMethodInfoCache = new(); + private static readonly Dictionary MemberInfoCache = new(); + private static readonly Dictionary AddMethodInfoCache = new(); + + private static readonly ConcurrentDictionary _itemPropertyInfoCache = new(); + private static readonly ConcurrentDictionary _listPropertyInfoCache = new(); public T? Clone(T? obj) { @@ -68,7 +71,10 @@ public class ReflectionsCloner(ISptLogger logger) : ICloner if (!AddMethodInfoCache.TryGetValue(objectType, out var addMethodInfo)) { addMethodInfo = objectType.GetMethod("Add", BindingFlags.Instance | BindingFlags.Public); - while (!AddMethodInfoCache.TryAdd(objectType, addMethodInfo)) ; + while (!AddMethodInfoCache.TryAdd(objectType, addMethodInfo)) + { + ; + } } var toCloneEnumerable = (IEnumerable) obj; @@ -92,7 +98,10 @@ public class ReflectionsCloner(ISptLogger logger) : ICloner if (!MemberInfoCache.TryGetValue(objectType, out var memberInfos)) { memberInfos = objectType.GetMembers(BindingFlags.Public | BindingFlags.Instance); - while (!MemberInfoCache.TryAdd(objectType, memberInfos)) ; + while (!MemberInfoCache.TryAdd(objectType, memberInfos)) + { + ; + } } foreach (var member in memberInfos) @@ -138,15 +147,14 @@ public class ReflectionsCloner(ISptLogger logger) : ICloner else { if (logger.IsLogEnabled(LogLevel.Debug)) + { logger.Debug($"Clone of type {objectType} is not supported"); + } } return result; } - private static ConcurrentDictionary _itemPropertyInfoCache = new(); - private static ConcurrentDictionary _listPropertyInfoCache = new(); - private async Task HandleSpecialClones(object obj, Type objectType) { if (objectType.IsGenericType && objectType.GetGenericTypeDefinition() == typeof(ListOrT<>)) @@ -156,13 +164,19 @@ public class ReflectionsCloner(ISptLogger logger) : ICloner if (!_itemPropertyInfoCache.TryGetValue(type, out var item)) { item = objectType.GetProperty("Item", BindingFlags.Public | BindingFlags.Instance); - while (!_itemPropertyInfoCache.TryAdd(type, item)) ; + while (!_itemPropertyInfoCache.TryAdd(type, item)) + { + ; + } } if (!_listPropertyInfoCache.TryGetValue(type, out var list)) { list = objectType.GetProperty("List", BindingFlags.Public | BindingFlags.Instance); - while (!_listPropertyInfoCache.TryAdd(type, list)) ; + while (!_listPropertyInfoCache.TryAdd(type, list)) + { + ; + } } item.GetSetMethod(true).Invoke(clone, [await Clone(item.GetValue(obj), item.PropertyType)]); diff --git a/Libraries/SPTarkov.Server.Core/Utils/Collections/ProbabilityObjectArray.cs b/Libraries/SPTarkov.Server.Core/Utils/Collections/ProbabilityObjectArray.cs index b9387000..6372c294 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Collections/ProbabilityObjectArray.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Collections/ProbabilityObjectArray.cs @@ -122,11 +122,11 @@ public class ProbabilityObjectArray : List> /** * Get the maximum relative probability out of a ProbabilityObjectArray - * + * * Example: * po = new ProbabilityObjectArray(new ProbabilityObject("a", 5), new ProbabilityObject("b", 1)) * po.maxProbability() // returns 5 - * + * * @return {number} the maximum value of all relative probabilities in this ProbabilityObjectArray */ public double MaxProbability() diff --git a/Libraries/SPTarkov.Server.Core/Utils/DatabaseImporter.cs b/Libraries/SPTarkov.Server.Core/Utils/DatabaseImporter.cs index ac52d55c..3c20419b 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/DatabaseImporter.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/DatabaseImporter.cs @@ -1,4 +1,5 @@ using System.Diagnostics; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Spt.Config; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Routers; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Utils; @@ -168,14 +168,12 @@ public class DatabaseImporter : IOnLoad var validation = valid == ValidationResult.FAILED || valid == ValidationResult.NOT_FOUND ? "." : ""; _logger.Info($"{_localisationService.GetText("importing_database_finish")}{validation}"); - this._logger.Debug($"Database import took {timer.ElapsedMilliseconds}ms"); + _logger.Debug($"Database import took {timer.ElapsedMilliseconds}ms"); _databaseServer.SetTables(dataToImport); } protected void OnReadValidate(string fileWithPath) { - - // Validate files //if (ProgramStatics.COMPILED && hashedFile && !ValidateFile(fileWithPath, data)) { // this.valid = ValidationResult.FAILED; diff --git a/Libraries/SPTarkov.Server.Core/Utils/FileUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/FileUtil.cs index 938de3c6..07643d67 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/FileUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/FileUtil.cs @@ -1,11 +1,9 @@ -using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Utils; [Injectable] -public class FileUtil( - ISptLogger _logger) +public class FileUtil() { protected const string _modBasePath = "user/mods/"; @@ -69,6 +67,11 @@ public class FileUtil( public void WriteFile(string filePath, string fileContent) { + if (!DirectoryExists(Path.GetDirectoryName(filePath))) + { + CreateDirectory(Path.GetDirectoryName(filePath)); + } + if (!FileExists(filePath)) { CreateFile(filePath); @@ -93,16 +96,15 @@ public class FileUtil( stream.Close(); } - public void DeleteFile(string filePath) + public bool DeleteFile(string filePath) { if (!FileExists(filePath)) { - _logger.Error($"Unable to delete file, not found: {filePath}"); - - return; + return false; } File.Delete(filePath); + return true; } /// @@ -111,12 +113,12 @@ public class FileUtil( /// Source file to copy from /// /// Should destination file be overwritten - public void CopyFile(string copyFromPath, string destinationFilePath, bool overwrite = false) + public bool CopyFile(string copyFromPath, string destinationFilePath, bool overwrite = false) { // Check it exists first if (!FileExists(copyFromPath)) { - _logger.Error($"Source file not found: {copyFromPath}. Cannot copy to: {destinationFilePath}"); + return false; } @@ -125,6 +127,7 @@ public class FileUtil( // Copy the file File.Copy(copyFromPath, destinationFilePath, overwrite); + return true; } /// diff --git a/Libraries/SPTarkov.Server.Core/Utils/HashUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/HashUtil.cs index 7340a019..f94a5734 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/HashUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/HashUtil.cs @@ -10,7 +10,7 @@ namespace SPTarkov.Server.Core.Utils; public partial class HashUtil(RandomUtil _randomUtil) { /// - /// Create a 24 character MongoId + /// Create a 24 character MongoId /// /// 24 character objectId public string Generate() diff --git a/Libraries/SPTarkov.Server.Core/Utils/HttpFileUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/HttpFileUtil.cs index d2c5b314..5442c515 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/HttpFileUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/HttpFileUtil.cs @@ -1,5 +1,5 @@ -using SPTarkov.Server.Core.Helpers; using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Helpers; namespace SPTarkov.Server.Core.Utils; diff --git a/Libraries/SPTarkov.Server.Core/Utils/HttpResponseUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/HttpResponseUtil.cs index 63e0e11c..a5b27754 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/HttpResponseUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/HttpResponseUtil.cs @@ -1,10 +1,10 @@ using System.Collections.Immutable; using System.Text.RegularExpressions; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Eft.HttpResponse; using SPTarkov.Server.Core.Models.Eft.ItemEvent; using SPTarkov.Server.Core.Models.Enums; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Utils; diff --git a/Libraries/SPTarkov.Server.Core/Utils/ImporterUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/ImporterUtil.cs index a8faeb11..7f868504 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/ImporterUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/ImporterUtil.cs @@ -1,15 +1,16 @@ using System.Collections.Concurrent; using System.Linq.Expressions; using System.Reflection; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils.Json; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Utils; [Injectable(InjectionType.Singleton)] public class ImporterUtil { + protected readonly ConcurrentDictionary lazyLoadDeserializationCache = []; protected FileUtil _fileUtil; protected JsonUtil _jsonUtil; protected ISptLogger _logger; @@ -17,8 +18,6 @@ public class ImporterUtil protected HashSet filesToIgnore = ["bearsuits.json", "usecsuits.json", "archivedquests.json"]; - protected readonly ConcurrentDictionary lazyLoadDeserializationCache = []; - public ImporterUtil(ISptLogger logger, FileUtil fileUtil, JsonUtil jsonUtil) { _logger = logger; @@ -37,7 +36,7 @@ public class ImporterUtil } /// - /// Load files into objects recursively (asynchronous) + /// Load files into objects recursively (asynchronous) /// /// Path to folder with files /// @@ -120,7 +119,7 @@ public class ImporterUtil result, isDictionary ? [_fileUtil.StripExtension(file), fileDeserialized] - : new object[] { fileDeserialized } + : new[] { fileDeserialized } ); } } @@ -151,7 +150,7 @@ public class ImporterUtil lock (dictionaryLock) { - setMethod.Invoke(result, isDictionary ? [directory, loadedData] : new object[] { loadedData }); + setMethod.Invoke(result, isDictionary ? [directory, loadedData] : new[] { loadedData }); } } catch (Exception ex) @@ -175,12 +174,12 @@ public class ImporterUtil var genericArgument = propertyType.GetGenericArguments()[0]; var deserializeCall = Expression.Call( - Expression.Constant(_jsonUtil), - "DeserializeFromFile", - Type.EmptyTypes, - Expression.Constant(file), - Expression.Constant(genericArgument) - ); + Expression.Constant(_jsonUtil), + "DeserializeFromFile", + Type.EmptyTypes, + Expression.Constant(file), + Expression.Constant(genericArgument) + ); var typeAsExpression = Expression.TypeAs(deserializeCall, genericArgument); @@ -208,13 +207,12 @@ public class ImporterUtil else { var matchedProperty = type.GetProperties() - .FirstOrDefault( - prop => - string.Equals( - prop.Name.ToLower(), - _fileUtil.StripExtension(propertyName).ToLower(), - StringComparison.Ordinal - ) + .FirstOrDefault(prop => + string.Equals( + prop.Name.ToLower(), + _fileUtil.StripExtension(propertyName).ToLower(), + StringComparison.Ordinal + ) ); if (matchedProperty == null) diff --git a/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/BaseSptLoggerReferenceConverter.cs b/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/BaseSptLoggerReferenceConverter.cs new file mode 100644 index 00000000..e75dcad1 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/BaseSptLoggerReferenceConverter.cs @@ -0,0 +1,33 @@ +using System.Text.Json; +using System.Text.Json.Serialization; +using SPTarkov.Server.Core.Utils.Logger; + +namespace SPTarkov.Server.Core.Utils.Json.Converters; + +public class BaseSptLoggerReferenceConverter : JsonConverter +{ + public override BaseSptLoggerReference? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using (var jsonDocument = JsonDocument.ParseValue(ref reader)) + { + if (!jsonDocument.RootElement.TryGetProperty("type", out var typeElement)) + { + throw new Exception("One of the loggers doesnt have a type property defined."); + } + + switch (typeElement.GetString()) + { + case "File": + return jsonDocument.Deserialize(); + case "Console": + return jsonDocument.Deserialize(); + default: + throw new Exception($"The logger type '{typeElement.GetString()}' does not exist."); + } + } + } + + public override void Write(Utf8JsonWriter writer, BaseSptLoggerReference value, JsonSerializerOptions options) + { + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/DogtagSideConverter.cs b/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/DogtagSideConverter.cs new file mode 100644 index 00000000..b7b2b4ae --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Json/Converters/DogtagSideConverter.cs @@ -0,0 +1,33 @@ +using System.Text.Json; +using System.Text.Json.Serialization; +using SPTarkov.Server.Core.Models.Enums; + +namespace SPTarkov.Server.Core.Utils.Json.Converters; + +public class DogtagSideConverter : JsonConverter +{ + public override DogtagSide Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + if (reader.TokenType == JsonTokenType.Number) + { + return DogtagSide.NotApplicable; + } + + var value = reader.GetString(); + return value != null ? Enum.Parse(value) : DogtagSide.NotApplicable; + } + + public override void Write(Utf8JsonWriter writer, DogtagSide value, JsonSerializerOptions options) + { + switch (value) + { + case DogtagSide.NotApplicable: + writer.WriteNumberValue(0); + break; + case DogtagSide.Usec: + case DogtagSide.Bear: + writer.WriteStringValue(value.ToString()); + break; + } + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/JsonUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/JsonUtil.cs index 1c68ef02..ccd1fba7 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/JsonUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/JsonUtil.cs @@ -1,15 +1,15 @@ using System.Text.Encodings.Web; using System.Text.Json; using System.Text.Json.Serialization; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Ws; using SPTarkov.Server.Core.Models.Enums; +using SPTarkov.Server.Core.Models.Logging; using SPTarkov.Server.Core.Models.Spt.Dialog; using SPTarkov.Server.Core.Utils.Json.Converters; -using SPTarkov.Common.Annotations; -using SPTarkov.Server.Core.Models.Eft.Common; -using SPTarkov.Server.Core.Models.Logging; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Utils; @@ -24,6 +24,7 @@ public class JsonUtil Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping, Converters = { + new BaseSptLoggerReferenceConverter(), new ListOrTConverterFactory(), new DictionaryOrListConverter(), new EftEnumConverter(), @@ -55,7 +56,7 @@ public class JsonUtil new EftEnumConverter(), new EftEnumConverter(), - new EftEnumConverter(), + new EftEnumConverter(), new EftEnumConverter(), new EftEnumConverter(), diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/FileLogger.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/FileLogger.cs index d3a00f84..2c675371 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Logger/FileLogger.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/FileLogger.cs @@ -1,6 +1,5 @@ namespace SPTarkov.Server.Core.Utils.Logger; -// This is a dummy class to use for SourceContext in Serilog, do not remove! public class FileLogger { } diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/BaseLogHandler.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/BaseLogHandler.cs new file mode 100644 index 00000000..862dc4c8 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/BaseLogHandler.cs @@ -0,0 +1,28 @@ +namespace SPTarkov.Server.Core.Utils.Logger.Handlers; + +public abstract class BaseLogHandler : ILogHandler +{ + public abstract LoggerType LoggerType + { + get; + } + + public abstract void Log(SptLogMessage message, BaseSptLoggerReference reference); + + protected string FormatMessage(string processedMessage, SptLogMessage message, BaseSptLoggerReference reference) + { + var formattedMessage = reference.Format.Replace("%date%", message.LogTime.ToString("yyyy-MM-dd")) + .Replace("%time%", message.LogTime.ToString("HH:mm:ss.fff")) + .Replace("%message%", processedMessage) + .Replace("%loggerShort%", message.Logger.Split('.').Last()) + .Replace("%logger%", message.Logger) + .Replace("%tid%", message.threadId.ToString()) + .Replace("%tname%", message.threadName) + .Replace("%level%", Enum.GetName(message.LogLevel)); + if (message.Exception != null) + { + formattedMessage += $"\n{message.Exception.Message}\n{message.Exception.StackTrace}"; + } + return formattedMessage; + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/ConsoleLogHandler.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/ConsoleLogHandler.cs new file mode 100644 index 00000000..1ee8b122 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/ConsoleLogHandler.cs @@ -0,0 +1,37 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Logging; + +namespace SPTarkov.Server.Core.Utils.Logger.Handlers; + +[Injectable(InjectionType.Singleton)] +public class ConsoleLogHandler : BaseLogHandler +{ + public override LoggerType LoggerType => LoggerType.Console; + + public override void Log(SptLogMessage message, BaseSptLoggerReference reference) + { + Console.WriteLine(FormatMessage(GetColorizedText(message.Message, message.TextColor, message.BackgroundColor), message, reference)); + } + + private string GetColorizedText( + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null + ) + { + var colorString = string.Empty; + if (textColor != null) + { + colorString += ((int) textColor.Value).ToString(); + } + + if (backgroundColor != null) + { + colorString += string.IsNullOrEmpty(colorString) + ? ((int) backgroundColor.Value).ToString() + : $";{((int) backgroundColor.Value).ToString()}"; + } + + return $"\x1b[{colorString}m{data}\x1b[0m"; + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/FileLogHandler.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/FileLogHandler.cs new file mode 100644 index 00000000..be6e980b --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/Handlers/FileLogHandler.cs @@ -0,0 +1,35 @@ +using System.Collections.Concurrent; +using System.Text; +using SPTarkov.Common.Annotations; + +namespace SPTarkov.Server.Core.Utils.Logger.Handlers; + +[Injectable(InjectionType.Singleton)] +public class FileLogHandler : BaseLogHandler +{ + private static ConcurrentDictionary _fileLocks = new(); + + public override LoggerType LoggerType => LoggerType.File; + + public override void Log(SptLogMessage message, BaseSptLoggerReference reference) + { + var config = reference as FileSptLoggerReference; + + if (!_fileLocks.TryGetValue(config.FilePath, out var lockObject)) + { + lockObject = new object(); + while (!_fileLocks.TryAdd(config.FilePath, lockObject)) ; + } + + lock (lockObject) + { + if (!Directory.Exists(Path.GetDirectoryName(config.FilePath))) + { + Directory.CreateDirectory(Path.GetDirectoryName(config.FilePath)); + } + + // The AppendAllText will create the file as long as the directory exists + File.AppendAllText(config.FilePath, FormatMessage(message.Message + "\n", message, reference)); + } + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/ILogHandler.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/ILogHandler.cs new file mode 100644 index 00000000..43ae28b6 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/ILogHandler.cs @@ -0,0 +1,11 @@ +namespace SPTarkov.Server.Core.Utils.Logger; + +public interface ILogHandler +{ + LoggerType LoggerType + { + get; + } + + void Log(SptLogMessage message, BaseSptLoggerReference reference); +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/LoggerType.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/LoggerType.cs new file mode 100644 index 00000000..932611e5 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/LoggerType.cs @@ -0,0 +1,2 @@ +namespace SPTarkov.Server.Core.Utils.Logger; + diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogMessage.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogMessage.cs new file mode 100644 index 00000000..fee64c17 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogMessage.cs @@ -0,0 +1,16 @@ +using SPTarkov.Server.Core.Models.Logging; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; + +namespace SPTarkov.Server.Core.Utils.Logger; + +public record SptLogMessage( + string Logger, + DateTime LogTime, + LogLevel LogLevel, + int threadId, + string? threadName, + string Message, + Exception? Exception = null, + LogTextColor? TextColor = null, + LogBackgroundColor? BackgroundColor = null +); diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogger.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogger.cs new file mode 100644 index 00000000..524d0147 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogger.cs @@ -0,0 +1,210 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Logging; +using SPTarkov.Server.Core.Models.Utils; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; + +namespace SPTarkov.Server.Core.Utils.Logger; + +[Injectable(InjectableTypeOverride = typeof(ISptLogger<>), TypePriority = int.MinValue)] +public class SptLogger : ISptLogger, IDisposable +{ + private string _category; + private readonly SptLoggerQueueManager _loggerQueueManager; + + private const string ConfigurationPath = "./sptLogger.json"; + private const string ConfigurationPathDev = "./sptLogger.Development.json"; + private SptLoggerConfiguration _config; + + ~SptLogger() + { + _loggerQueueManager.DumpAndStop(); + } + + public SptLogger(FileUtil fileUtil, JsonUtil jsonUtil, SptLoggerQueueManager loggerQueueManager) + { + _category = typeof(T).FullName; + _loggerQueueManager = loggerQueueManager; + + if (ProgramStatics.DEBUG()) + { + LoadConfig(fileUtil, jsonUtil, ConfigurationPathDev); + } + else + { + LoadConfig(fileUtil, jsonUtil, ConfigurationPath); + } + + if (_config == null) + { + throw new Exception( + "The configuration path was loaded but it contained invalid or incorrect configuration."); + } + + _loggerQueueManager.Initialize(_config); + } + + private void LoadConfig(FileUtil fileUtil, JsonUtil jsonUtil, string sptloggerDevelopmentJson) + { + if (fileUtil.FileExists(sptloggerDevelopmentJson)) + { + _config = jsonUtil.DeserializeFromFile(sptloggerDevelopmentJson); + } + else + { + throw new Exception($"Unable to find SPTLogger file '{sptloggerDevelopmentJson}'"); + } + } + + public void OverrideCategory(string category) + { + _category = category; + } + + public void LogWithColor( + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Info, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + textColor, + backgroundColor) + ); + } + + public void Success(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Info, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + LogTextColor.Green) + ); + } + + public void Error(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Error, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + LogTextColor.Red) + ); + } + + public void Warning(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Warn, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + LogTextColor.Yellow) + ); + } + + public void Info(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Info, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex) + ); + } + + public void Debug(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Debug, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + LogTextColor.Gray) + ); + } + + public void Critical(string data, Exception? ex = null) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + LogLevel.Fatal, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + LogTextColor.Black, + LogBackgroundColor.Red) + ); + } + + public void Log( + LogLevel level, + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) + { + _loggerQueueManager.EnqueueMessage( + new SptLogMessage( + _category, + DateTime.UtcNow, + level, + Environment.CurrentManagedThreadId, + Thread.CurrentThread.Name, + data, + ex, + textColor, + backgroundColor) + ); + } + + public bool IsLogEnabled(LogLevel level) + { + return _config.Loggers.Any(l => l.LogLevel.CanLog(level)); + } + + public void DumpAndStop() + { + _loggerQueueManager.DumpAndStop(); + } + + public void Dispose() + { + _loggerQueueManager.DumpAndStop(); + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerConfiguration.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerConfiguration.cs new file mode 100644 index 00000000..ae453784 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerConfiguration.cs @@ -0,0 +1,183 @@ +using System.Collections.Concurrent; +using System.Text.Json.Serialization; +using System.Text.RegularExpressions; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; + +namespace SPTarkov.Server.Core.Utils.Logger; + +public class SptLoggerConfiguration +{ + [JsonPropertyName("loggers")] + public List Loggers + { + get; + set; + } + + [JsonPropertyName("poolingTimeMs")] + public uint PoolingTimeMs + { + get; + set; + } = 500; +} + +public abstract class BaseSptLoggerReference +{ + [JsonPropertyName("type")] + [JsonConverter(typeof(JsonStringEnumConverter))] + public LoggerType Type + { + get; + set; + } + + [JsonPropertyName("filters")] + public List Filters + { + get; + set; + } + + [JsonPropertyName("logLevel")] + [JsonConverter(typeof(JsonStringEnumConverter))] + public LogLevel LogLevel + { + get; + set; + } + + [JsonPropertyName("format")] + public string Format + { + get; + set; + } +} + +public class SptLoggerFilter +{ + [JsonPropertyName("type")] + [JsonConverter(typeof(JsonStringEnumConverter))] + public SptLoggerFilterType Type + { + get; + set; + } + + [JsonPropertyName("name")] + public string Name + { + get; + set; + } + + [JsonPropertyName("matchingType")] + [JsonConverter(typeof(JsonStringEnumConverter))] + public MatchingType MatchingType + { + get; + set; + } + + protected bool Equals(SptLoggerFilter other) + { + return Type == other.Type && Name == other.Name && MatchingType == other.MatchingType; + } + + public override bool Equals(object? obj) + { + if (obj is null) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((SptLoggerFilter) obj); + } + + public override int GetHashCode() + { + return HashCode.Combine((int) Type, Name, (int) MatchingType); + } +} + +public class FileSptLoggerReference : BaseSptLoggerReference +{ + [JsonPropertyName("filePath")] + public string FilePath + { + get; + set; + } +} + +public class ConsoleSptLoggerReference : BaseSptLoggerReference +{ +} + +public enum LoggerType +{ + File, + Console +} + + +public enum MatchingType +{ + Literal, + Regex +} + +public enum SptLoggerFilterType +{ + Exclude, + Include +} + +public static class SptLoggerFilterExtensions +{ + private static ConcurrentDictionary _cachedRegexes = new(); + + public static bool Match(this SptLoggerFilter filter, SptLogMessage message) + { + switch (filter.MatchingType) + { + case MatchingType.Literal: + if (filter.Name != message.Logger) + { + return false; + } + break; + case MatchingType.Regex: + if (!_cachedRegexes.TryGetValue(filter, out var regex)) + { + regex = new Regex(filter.Name); + while(!_cachedRegexes.TryAdd(filter, regex)); + } + + if (!regex.IsMatch(message.Logger)) + { + return false; + } + break; + + } + + return true; + } + + public static bool CanLog(this LogLevel logLevel, LogLevel messageLevel) + { + return logLevel >= messageLevel; + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs new file mode 100644 index 00000000..c0b8732c --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs @@ -0,0 +1,127 @@ +using SPTarkov.Common.Annotations; + +namespace SPTarkov.Server.Core.Utils.Logger; + +[Injectable(InjectionType.Singleton)] +public class SptLoggerQueueManager(IEnumerable logHandlers) +{ + private readonly Dictionary> _resolvedMessageLoggerTypes = new(); + private readonly object _resolvedMessageLoggerTypesLock = new(); + private Thread? _loggerTask; + private readonly object LoggerTaskLock = new(); + private readonly CancellationTokenSource _loggerCancellationTokens = new(); + private readonly Queue _messageQueue = new(); + private readonly object _messageQueueLock = new(); + private Dictionary? _logHandlers; + private SptLoggerConfiguration _config; + + public void Initialize(SptLoggerConfiguration config) + { + _config = config; + + if (_logHandlers == null) + { + _logHandlers = logHandlers.ToDictionary(lh => lh.LoggerType, lh => lh); + } + + lock (LoggerTaskLock) + { + if (_loggerTask == null) + { + _loggerTask = new Thread(LoggerWorkerThread); + _loggerTask.IsBackground = true; + _loggerTask.Start(); + } + } + } + + private void LoggerWorkerThread() + { + while (!_loggerCancellationTokens.IsCancellationRequested) + { + lock (_messageQueueLock) + { + if (_messageQueue.Count != 0) + { + while (_messageQueue.TryDequeue(out var message)) + { + LogMessage(message); + } + } + } + + Thread.Sleep((int) _config.PoolingTimeMs); + } + + lock (_messageQueueLock) + { + // make sure after cancellation that no messages are outstanding + if (_messageQueue.Count != 0) + { + while (_messageQueue.TryDequeue(out var message)) + { + LogMessage(message); + } + } + } + } + + private void LogMessage(SptLogMessage message) + { + List messageLoggers; + lock (_resolvedMessageLoggerTypesLock) + { + if (!_resolvedMessageLoggerTypes.TryGetValue(message.Logger, out messageLoggers)) + { + messageLoggers = _config.Loggers.Where(logger => + { + var excludeFilters = logger.Filters?.Where(filter => filter.Type == SptLoggerFilterType.Exclude); + var includeFilters = logger.Filters?.Where(filter => filter.Type == SptLoggerFilterType.Include); + var passed = true; + if (excludeFilters?.Any() ?? false) + { + passed = !excludeFilters.Any(filter => filter.Match(message)); + } + + if (includeFilters?.Any() ?? false) + { + passed = includeFilters.Any(filter => filter.Match(message)); + } + + return passed; + }).ToList(); + _resolvedMessageLoggerTypes.Add(message.Logger, messageLoggers); + } + } + + if (messageLoggers.Count != 0) + { + messageLoggers.ForEach(logger => + { + if (logger.LogLevel.CanLog(message.LogLevel) && + (_logHandlers?.TryGetValue(logger.Type, out var handler) ?? false)) + { + handler.Log(message, logger); + } + }); + } + } + + public void EnqueueMessage(SptLogMessage message) + { + lock (_messageQueueLock) + { + _messageQueue.Enqueue(message); + } + } + + public void DumpAndStop() + { + _loggerCancellationTokens.Cancel(); + while (_loggerTask.IsAlive) + { + // waiting for logger to finish avoiding the application to close + Thread.Sleep(100); + } + } +} diff --git a/Libraries/SPTarkov.Server.Core/Utils/ProgramStatics.cs b/Libraries/SPTarkov.Server.Core/Utils/ProgramStatics.cs index cbb02968..5d2461a5 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/ProgramStatics.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/ProgramStatics.cs @@ -10,7 +10,7 @@ public static partial class ProgramStatics public static void Initialize() { - var _entryType = ProgramStatics.BuildType ?? EntryType.LOCAL; + var _entryType = BuildType ?? EntryType.LOCAL; switch (_entryType) { @@ -37,6 +37,11 @@ public static partial class ProgramStatics _mods = true; break; } + + Console.WriteLine($"SPTarkov.Server.Core: entrytype: {_entryType}"); + Console.WriteLine($"SPTarkov.Server.Core: debug: {_debug}"); + Console.WriteLine($"SPTarkov.Server.Core: compiled: {_compiled}"); + Console.WriteLine($"SPTarkov.Server.Core: mods: {_mods}"); } // Public Static Getters diff --git a/Libraries/SPTarkov.Server.Core/Utils/RagfairOfferHolder.cs b/Libraries/SPTarkov.Server.Core/Utils/RagfairOfferHolder.cs index 47c0ff3c..8f683905 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/RagfairOfferHolder.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/RagfairOfferHolder.cs @@ -1,4 +1,5 @@ using System.Collections.Concurrent; +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; using SPTarkov.Server.Core.Models.Eft.Ragfair; @@ -6,8 +7,6 @@ using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Common.Annotations; -using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Core.Utils; @@ -21,17 +20,17 @@ public class RagfairOfferHolder( ConfigServer _configServer ) { + protected readonly Lock _expiredOfferIdsLock = new(); + protected readonly Lock _ragfairOperationLock = new(); + + protected HashSet _expiredOfferIds = []; protected int _maxOffersPerTemplate = _configServer.GetConfig().Dynamic.OfferItemCount.Max; protected ConcurrentDictionary _offersById = new(); protected ConcurrentDictionary> _offersByTemplate = new(); // key = tplId, value = list of offerIds protected ConcurrentDictionary> _offersByTrader = new(); // key = traderId, value = list of offerIds - protected HashSet _expiredOfferIds = []; - protected readonly Lock _expiredOfferIdsLock = new Lock(); - protected readonly Lock _ragfairOperationLock = new Lock(); - /// - /// Get a ragfair offer by its id + /// Get a ragfair offer by its id /// /// Ragfair offer id /// RagfairOffer @@ -41,7 +40,7 @@ public class RagfairOfferHolder( } /// - /// Get ragfair offers that match the passed in tpl + /// Get ragfair offers that match the passed in tpl /// /// Tpl to get offers for /// RagfairOffer list @@ -62,7 +61,7 @@ public class RagfairOfferHolder( } /// - /// Get all offers being sold by a trader + /// Get all offers being sold by a trader /// /// Id of trader to get offers for /// RagfairOffer list @@ -80,7 +79,7 @@ public class RagfairOfferHolder( } /// - /// Get all ragfair offers + /// Get all ragfair offers /// /// RagfairOffer list public List GetOffers() @@ -94,7 +93,7 @@ public class RagfairOfferHolder( } /// - /// Add a collection of offers to ragfair + /// Add a collection of offers to ragfair /// /// Offers to add public void AddOffers(List offers) @@ -106,7 +105,7 @@ public class RagfairOfferHolder( } /// - /// Add single offer to ragfair + /// Add single offer to ragfair /// /// Offer to add public void AddOffer(RagfairOffer offer) @@ -149,7 +148,7 @@ public class RagfairOfferHolder( } /// - /// Remove an offer from ragfair by id + /// Remove an offer from ragfair by id /// /// Offer id to remove /// OPTIONAL - Should trader offers be checked for offer id @@ -190,7 +189,7 @@ public class RagfairOfferHolder( } /// - /// Remove all offers a trader has + /// Remove all offers a trader has /// /// Trader id to remove offers from public void RemoveAllOffersByTrader(string traderId) @@ -211,7 +210,7 @@ public class RagfairOfferHolder( } /// - /// Add offer to offersByTemplate cache + /// Add offer to offersByTemplate cache /// /// Tpl to store offer against /// Offer to store against tpl @@ -230,7 +229,7 @@ public class RagfairOfferHolder( } /// - /// Cache an offer inside `offersByTrader` by trader id + /// Cache an offer inside `offersByTrader` by trader id /// /// Trader id to store offer against /// Offer to store against @@ -249,7 +248,7 @@ public class RagfairOfferHolder( } /// - /// Is the passed in offer stale - end time > passed in time + /// Is the passed in offer stale - end time > passed in time /// /// Offer to check /// Time to check offer against @@ -280,7 +279,7 @@ public class RagfairOfferHolder( } /// - /// Get total count of current expired offers + /// Get total count of current expired offers /// /// Number of expired offers public int GetExpiredOfferCount() @@ -292,7 +291,7 @@ public class RagfairOfferHolder( } /// - /// Get an array of arrays of expired offer items + children + /// Get an array of arrays of expired offer items + children /// /// Expired offer assorts public List> GetExpiredOfferItems() @@ -324,7 +323,7 @@ public class RagfairOfferHolder( } /// - /// Clear out internal expiredOffers dictionary of all items + /// Clear out internal expiredOffers dictionary of all items /// public void ResetExpiredOfferIds() { @@ -335,7 +334,7 @@ public class RagfairOfferHolder( } /// - /// Flag offers with an expiry before the passed in timestamp + /// Flag offers with an expiry before the passed in timestamp /// /// Timestamp at point offer is 'expired' public void FlagExpiredOffersAfterDate(long timestamp) @@ -362,7 +361,7 @@ public class RagfairOfferHolder( } /// - /// Remove all offers flagged as stale/expired + /// Remove all offers flagged as stale/expired /// public void RemoveExpiredOffers() { diff --git a/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs index c240308f..b4282db1 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/RandomUtil.cs @@ -1,8 +1,7 @@ -using System; -using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Server.Core.Utils.Cloners; using SPTarkov.Common.Annotations; using SPTarkov.Common.Extensions; +using SPTarkov.Server.Core.Models.Utils; +using SPTarkov.Server.Core.Utils.Cloners; namespace SPTarkov.Server.Core.Utils; @@ -312,18 +311,18 @@ public class RandomUtil(ISptLogger _logger, ICloner _cloner) /// A biased random number within the specified range. public double GetBiasedRandomNumber(double min, double max, double shift, double n) { - // This function generates a random number based on a gaussian distribution with an option to add a bias via shifting. + // This function generates a random number based on a gaussian distribution with an option to add a bias via shifting. - // Here's an example graph of how the probabilities can be distributed: - // https://www.boost.org/doc/libs/1_49_0/libs/math/doc/sf_and_dist/graphs/normal_pdf.png + // Here's an example graph of how the probabilities can be distributed: + // https://www.boost.org/doc/libs/1_49_0/libs/math/doc/sf_and_dist/graphs/normal_pdf.png - // Our parameter 'n' is sort of like σ (sigma) in the example graph. + // Our parameter 'n' is sort of like σ (sigma) in the example graph. - // An 'n' of 1 means all values are equally likely. Increasing 'n' causes numbers near the edge to become less likely. - // By setting 'shift' to whatever 'max' is, we can make values near 'min' very likely, while values near 'max' become extremely unlikely. + // An 'n' of 1 means all values are equally likely. Increasing 'n' causes numbers near the edge to become less likely. + // By setting 'shift' to whatever 'max' is, we can make values near 'min' very likely, while values near 'max' become extremely unlikely. - // Here's a place where you can play around with the 'n' and 'shift' values to see how the distribution changes: - // http://jsfiddle.net/e08cumyx/ + // Here's a place where you can play around with the 'n' and 'shift' values to see how the distribution changes: + // http://jsfiddle.net/e08cumyx/ if (max < min) { @@ -344,10 +343,10 @@ public class RandomUtil(ISptLogger _logger, ICloner _cloner) if (shift > max - min) { - // If a rolled number is out of bounds (due to bias being applied), we roll it again. - // As the shifting increases, the chance of rolling a number within bounds decreases. - // A shift that is equal to the available range only has a 50% chance of rolling correctly, theoretically halving performance. - // Shifting even further drops the success chance very rapidly - so we want to warn against that + // If a rolled number is out of bounds (due to bias being applied), we roll it again. + // As the shifting increases, the chance of rolling a number within bounds decreases. + // A shift that is equal to the available range only has a 50% chance of rolling correctly, theoretically halving performance. + // Shifting even further drops the success chance very rapidly - so we want to warn against that _logger.Warning( "Bias shift for random number generation is greater than the range of available numbers. This will have a severe performance impact" diff --git a/Libraries/SPTarkov.Server.Core/Utils/TimeUtil.cs b/Libraries/SPTarkov.Server.Core/Utils/TimeUtil.cs index 7ac9d926..e108e3dd 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/TimeUtil.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/TimeUtil.cs @@ -167,7 +167,7 @@ public class TimeUtil // Create a new DateTime with the last full hour, 0 minutes, and 0 seconds var lastFullHour = new DateTime(now.Year, now.Month, now.Day, hours, 0, 0); - return ((DateTimeOffset) lastFullHour).ToUnixTimeMilliseconds(); + return ((DateTimeOffset) lastFullHour).ToUnixTimeSeconds(); } /// @@ -187,19 +187,7 @@ public class TimeUtil /// public DateTime GetDateTimeFromTimeStamp(long timeStamp) { - return DateTimeOffset.FromUnixTimeMilliseconds(timeStamp).DateTime; - } - - /// - /// Takes a date and gets difference between Epoch time and time provided resulting in a timestamp (date defaults to utcnow) - /// This attempts to mimic gettime() in js - /// - /// - /// - public long GetTimeStampFromEpoch(DateTime? date = null) - { - var dateToCompare = date ?? DateTime.UtcNow; - return (long) (dateToCompare - DateTime.UnixEpoch).TotalMilliseconds; + return DateTimeOffset.FromUnixTimeSeconds(timeStamp).DateTime; } public int GetSecondsAsMilliseconds(int seconds) diff --git a/Libraries/SPTarkov.Server.Core/Utils/Watermark.cs b/Libraries/SPTarkov.Server.Core/Utils/Watermark.cs index 30483ba8..b4def0de 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Watermark.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Watermark.cs @@ -1,10 +1,9 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Logging; using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; -using SPTarkov.Server; -using SPTarkov.Common.Annotations; namespace SPTarkov.Server.Core.Utils; @@ -95,7 +94,7 @@ public class Watermark var modding = _watermarkLocale.GetModding(); var versionTag = GetVersionTag(); - versionLabel = $"{sptConfig.ProjectName} {versionTag}"; + versionLabel = $"{sptConfig.ProjectName} {versionTag} {sptConfig.CompatibleTarkovVersion}"; text = [versionLabel]; text = [..text, ..description]; @@ -125,7 +124,7 @@ public class Watermark } /// - /// Get a version string (x.x.x) or (x.x.x-BLEEDINGEDGE) OR (X.X.X (18xxx)) + /// Get a version string (x.x.x) or (x.x.x-BLEEDINGEDGE) OR (X.X.X (18xxx)) /// /// Include the eft version this spt version was made for /// @@ -144,8 +143,8 @@ public class Watermark } /// - /// Handle singleplayer/settings/version - /// Get text shown in game on screen, can't be translated as it breaks BSGs client when certain characters are used + /// Handle singleplayer/settings/version + /// Get text shown in game on screen, can't be translated as it breaks BSGs client when certain characters are used /// /// label text public string GetInGameVersionLabel() @@ -159,7 +158,7 @@ public class Watermark } /// - /// Set window title + /// Set window title /// protected void SetTitle() { @@ -167,7 +166,7 @@ public class Watermark } /// - /// Draw watermark on screen + /// Draw watermark on screen /// protected void Draw() { diff --git a/README.md b/README.md index 02b17611..803e3384 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This is the Server project for the Single Player Tarkov mod for Escape From Tark - [Commands](#commands) - [Debugging](#debugging) - [Mod Debugging](#mod-debugging) -- [Deployment]() +- [Deployment](#deployment) - [Contributing](#contributing) - [Branches](#branchs) - [Pull Request Guidelines](#pull-request-guidelines) diff --git a/SPT C# Postman Collection.postman_collection.json b/SPT C# Postman Collection.postman_collection.json new file mode 100644 index 00000000..d89ba16e --- /dev/null +++ b/SPT C# Postman Collection.postman_collection.json @@ -0,0 +1,10981 @@ +{ + "info": { + "_postman_id": "b1aba4c4-7df6-49ba-9a7f-0f87b7cd4589", + "name": "SPT C# Postman Collection", + "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json", + "_exporter_id": "32670676", + "_collection_link": "https://www.postman.com/cwxs/my-workspace/collection/8hpvkl2/spt-c-postman-collection?action=share&source=collection_link&creator=32670676" + }, + "item": [ + { + "name": "Achievement", + "item": [ + { + "name": "client/achievement/list", + "protocolProfileBehavior": { + "disabledSystemHeaders": { + "user-agent": true, + "accept-encoding": true, + "host": true, + "content-type": true + } + }, + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/achievement/list" + }, + "response": [] + }, + { + "name": "client/achievement/statistic", + "protocolProfileBehavior": { + "disabledSystemHeaders": { + "user-agent": true, + "accept-encoding": true, + "host": true, + "content-type": true + } + }, + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/achievement/statistic" + }, + "response": [] + } + ] + }, + { + "name": "Bot", + "item": [ + { + "name": "client/game/bot/generate/multi", + "protocolProfileBehavior": { + "disabledSystemHeaders": {} + }, + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\"conditions\":[\r\n {\"Role\":\"assault\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossBully\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossGluhar\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossKilla\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossKojaniy\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossSanitar\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossTagilla\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossKnight\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossZryachiy\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossKolontay\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossPartisan\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"cursedAssault\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBully\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerGluharAssault\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerGluharScout\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerGluharSecurity\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerKojaniy\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerSanitar\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBirdEye\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBigPipe\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerZryachiy\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBoar\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"marksman\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"pmcBot\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectantPriest\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectantWarrior\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"gifter\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"exUsec\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"arenaFighterEvent\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"crazyAssaultEvent\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossBoar\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"bossBoarSniper\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBoarClose1\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerBoarClose2\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerKolontayAssault\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"followerKolontaySecurity\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"shooterBTR\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"peacefullZryachiyEvent\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"ravangeZryachiyEvent\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectactPriestEvent\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"pmcUSEC\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"pmcBEAR\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"peacemaker\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"skier\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectantPredvestnik\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectantPrizrak\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"sectantOni\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"infectedAssault\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"infectedPmc\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"infectedCivil\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"infectedLaborant\",\"Limit\":100,\"Difficulty\":\"normal\"},\r\n {\"Role\":\"infectedTagilla\",\"Limit\":100,\"Difficulty\":\"normal\"}\r\n]}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/bot/generate" + }, + "response": [] + }, + { + "name": "client/game/bot/generate/single", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/bot/generate" + }, + "response": [] + }, + { + "name": "singleplayer/settings/bot/limit/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/bot/limit/" + }, + "response": [] + }, + { + "name": "singleplayer/settings/bot/difficulty/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/bot/difficulty/" + }, + "response": [] + }, + { + "name": "singleplayer/settings/bot/difficulties", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/bot/difficulties" + }, + "response": [] + }, + { + "name": "singleplayer/settings/bot/maxCap", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/bot/maxCap" + }, + "response": [] + }, + { + "name": "singleplayer/settings/bot/getBotBehaviours/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"conditions\": [\r\n {\r\n \"Role\": \"assault\",\r\n \"Limit\": 1,\r\n \"Difficulty\": \"normal\"\r\n }\r\n ]\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/bot/getBotBehaviours/" + }, + "response": [] + } + ] + }, + { + "name": "Build", + "item": [ + { + "name": "client/builds/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/builds/list" + }, + "response": [] + }, + { + "name": "client/builds/magazine/save", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/builds/magazine/save" + }, + "response": [] + }, + { + "name": "client/builds/weapon/save", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/builds/weapon/save" + }, + "response": [] + }, + { + "name": "client/builds/equipment/save", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/builds/equipment/save" + }, + "response": [] + }, + { + "name": "client/builds/delete", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/builds/delete" + }, + "response": [] + } + ] + }, + { + "name": "Bundle", + "item": [ + { + "name": "singleplayer/bundles", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/bundles" + }, + "response": [] + }, + { + "name": "files/bundle", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/files/bundle" + }, + "response": [] + } + ] + }, + { + "name": "ClientLog", + "item": [ + { + "name": "singleplayer/log", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/log" + }, + "response": [] + }, + { + "name": "singleplayer/release", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/release" + }, + "response": [] + }, + { + "name": "singleplayer/enableBSGlogging", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/enableBSGlogging" + }, + "response": [] + } + ] + }, + { + "name": "Customization", + "item": [ + { + "name": "client/trading/customization/storage", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/trading/customization/storage" + }, + "response": [] + }, + { + "name": "client/hideout/customization/offer/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/customization/offer/list" + }, + "response": [] + }, + { + "name": "client/customization/storage", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/customization/storage" + }, + "response": [] + }, + { + "name": "client/trading/customization/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/trading/customization/" + }, + "response": [] + } + ] + }, + { + "name": "Data", + "item": [ + { + "name": "client/settings", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "6794e2970000e0f6f48b1169", + "type": "text" + }, + { + "key": "cookie", + "value": "PHPSESSID=6794e2970000e0f6f48b1169", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "deflate", + "type": "text" + }, + { + "key": "User-Agent", + "value": "UnityPlayer/2019.4.39f1 (UnityWebRequest/1.0, libcurl/7.80.0-DEV)", + "type": "text" + }, + { + "key": "x-unity-version", + "value": "2019.4.39f1", + "type": "text" + }, + { + "key": "Content-Type", + "value": "application/octet-stream", + "type": "text" + }, + { + "key": "app-version", + "value": "EFT Client SPT-AKI 4.0.0 - BLEEDINGEDGE", + "type": "text" + }, + { + "key": "Host", + "value": "127.0.0.1:6969", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "0", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "0", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/settings" + }, + "response": [] + }, + { + "name": "client/globals", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/globals" + }, + "response": [] + }, + { + "name": "client/items", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/items" + }, + "response": [] + }, + { + "name": "client/handbook/templates", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/handbook/templates" + }, + "response": [] + }, + { + "name": "client/customization", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/customization" + }, + "response": [] + }, + { + "name": "client/account/customization", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/account/customization" + }, + "response": [] + }, + { + "name": "client/hideout/production/recipes", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/production/recipes" + }, + "response": [] + }, + { + "name": "client/hideout/settings", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/settings" + }, + "response": [] + }, + { + "name": "client/hideout/areas", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/areas" + }, + "response": [] + }, + { + "name": "client/languages", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/languages" + }, + "response": [] + }, + { + "name": "client/hideout/qte/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/qte/list" + }, + "response": [] + }, + { + "name": "client/menu/locale/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/menu/locale/" + }, + "response": [] + }, + { + "name": "client/locale/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/locale/" + }, + "response": [] + }, + { + "name": "client/items/prices/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/hideout/qte/list" + }, + "response": [] + } + ] + }, + { + "name": "Dialogue", + "item": [ + { + "name": "client/chatServer/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/chatServer/list" + }, + "response": [] + }, + { + "name": "client/mail/dialog/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/list" + }, + "response": [] + }, + { + "name": "client/mail/dialog/view", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/view" + }, + "response": [] + }, + { + "name": "client/mail/dialog/info", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/info" + }, + "response": [] + }, + { + "name": "client/mail/dialog/remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/remove" + }, + "response": [] + }, + { + "name": "client/mail/dialog/pin", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/pin" + }, + "response": [] + }, + { + "name": "client/mail/dialog/unpin", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/unpin" + }, + "response": [] + }, + { + "name": "client/mail/dialog/read", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/read" + }, + "response": [] + }, + { + "name": "client/mail/dialog/remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/remove" + }, + "response": [] + }, + { + "name": "client/mail/dialog/getAllAttachments", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/getAllAttachments" + }, + "response": [] + }, + { + "name": "client/mail/msg/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/msg/send" + }, + "response": [] + }, + { + "name": "client/mail/dialog/clear", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/clear" + }, + "response": [] + }, + { + "name": "client/mail/dialog/group/create", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/group/create" + }, + "response": [] + }, + { + "name": "client/mail/dialog/group/owner/change", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/group/owner/change" + }, + "response": [] + }, + { + "name": "client/mail/dialog/group/users/add", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/group/users/add" + }, + "response": [] + }, + { + "name": "client/mail/dialog/group/users/remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/mail/dialog/group/users/remove" + }, + "response": [] + }, + { + "name": "client/friend/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/list" + }, + "response": [] + }, + { + "name": "client/friend/request/list/outbox", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/list/outbox" + }, + "response": [] + }, + { + "name": "client/friend/request/list/inbox", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/list/inbox" + }, + "response": [] + }, + { + "name": "client/friend/request/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/send" + }, + "response": [] + }, + { + "name": "client/friend/request/accept-all", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/accept-all" + }, + "response": [] + }, + { + "name": "client/friend/request/accept", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/accept" + }, + "response": [] + }, + { + "name": "client/friend/request/decline", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/decline" + }, + "response": [] + }, + { + "name": "client/friend/request/cancel", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/request/cancel" + }, + "response": [] + }, + { + "name": "client/friend/delete", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/delete" + }, + "response": [] + }, + { + "name": "client/friend/ignore/set", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/ignore/set" + }, + "response": [] + }, + { + "name": "client/friend/ignore/remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/friend/ignore/remove" + }, + "response": [] + } + ] + }, + { + "name": "Game", + "item": [ + { + "name": "client/game/config", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/config" + }, + "response": [] + }, + { + "name": "client/game/mode", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/mode" + }, + "response": [] + }, + { + "name": "client/server/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/server/list" + }, + "response": [] + }, + { + "name": "client/match/group/current", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/current" + }, + "response": [] + }, + { + "name": "client/game/version/validate", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/version/validate" + }, + "response": [] + }, + { + "name": "client/game/start", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/start" + }, + "response": [] + }, + { + "name": "client/game/logout", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/logout" + }, + "response": [] + }, + { + "name": "client/checkVersion", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/checkVersion" + }, + "response": [] + }, + { + "name": "client/game/keepalive", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/keepalive" + }, + "response": [] + }, + { + "name": "singleplayer/settings/version", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/version" + }, + "response": [] + }, + { + "name": "client/reports/lobby/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/reports/lobby/send" + }, + "response": [] + }, + { + "name": "client/report/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/report/send" + }, + "response": [] + }, + { + "name": "singleplayer/settings/getRaidTime", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/settings/getRaidTime" + }, + "response": [] + }, + { + "name": "client/survey", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/survey" + }, + "response": [] + }, + { + "name": "client/survey/view", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/survey/view" + }, + "response": [] + }, + { + "name": "client/survey/opinion", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/survey/opinion" + }, + "response": [] + } + ] + }, + { + "name": "Inraid", + "item": [ + { + "name": "client/location/getLocalloot", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/location/getLocalloot" + }, + "response": [] + } + ] + }, + { + "name": "Insurance", + "item": [ + { + "name": "client/insurance/items/list/cost", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/insurance/items/list/cost" + }, + "response": [] + } + ] + }, + { + "name": "ItemMovingEvents", + "item": [ + { + "name": "CustomizationBuy", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "CustomizationSet", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Eat", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Heal", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RestoreHealth", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutUpgrade", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutUpgradeComplete", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutPutItemsInAreaSlots", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutTakeItemsFromAreaSlots", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutToggleArea", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutSingleProductionStart", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutScavCaseProductionStart", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutContinuousProductionStart", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutTakeProduction", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RecordShootingRangePoints", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutImproveArea", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutCancelProductionCommand", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutCircleOfCultistProductionStart", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutDeleteProductionCommand", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutCustomizationApply", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutCustomizationSetMannequinPose", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Insure", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Move", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Split", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Merge", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Transfer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Swap", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Fold", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Toggle", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Tag", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Bind", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Unbind", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Examine", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "ReadEncyclopedia", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "ApplyInventoryChanges", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "CreateMapMarker", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "DeleteMapMarker", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "EditMapMarker", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "OpenRandomLootContainer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "HideoutQuickTimeEvent", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RedeemProfileReward", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "SetFavoriteItems", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "QuestFail", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "PinLock", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "AddNote", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "EditNote", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "DeleteNote", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "QuestAccept", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "QuestComplete", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "QuestHandover", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RepeatableQuestChange", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RagFairAddOffer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RagFairRemoveOffer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RagFairRenewOffer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "Repair", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "TraderRepair", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "TradingConfirm", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RagFairBuyOffer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "SellAllFromSavage", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "AddToWishList", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "RemoveFromWishList", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + }, + { + "name": "ChangeWishlistItemCategory", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/items/moving" + }, + "response": [] + } + ] + }, + { + "name": "Launcher", + "item": [ + { + "name": "launcher/ping", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/ping" + }, + "response": [] + }, + { + "name": "/files/launcher/bg.png", + "request": { + "method": "GET", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/files/launcher/bg.png" + }, + "response": [] + }, + { + "name": "launcher/server/connect", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/server/connect" + }, + "response": [] + }, + { + "name": "launcher/profile/login", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/login" + }, + "response": [] + }, + { + "name": "launcher/profile/register", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/register" + }, + "response": [] + }, + { + "name": "launcher/profile/get", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/get" + }, + "response": [] + }, + { + "name": "launcher/profile/change/username", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/change/username" + }, + "response": [] + }, + { + "name": "launcher/profile/change/password", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/change/password" + }, + "response": [] + }, + { + "name": "launcher/profile/change/wipe", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/change/wipe" + }, + "response": [] + }, + { + "name": "launcher/profile/remove", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/remove" + }, + "response": [] + }, + { + "name": "launcher/profile/compatibleTarkovVersion", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/profile/compatibleTarkovVersion" + }, + "response": [] + }, + { + "name": "launcher/server/version", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/server/version" + }, + "response": [] + }, + { + "name": "launcher/server/loadedServerMods", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/server/loadedServerMods" + }, + "response": [] + }, + { + "name": "launcher/server/serverModsUsedByProfile", + "request": { + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "url": "{{host}}/launcher/server/serverModsUsedByProfile" + }, + "response": [] + } + ] + }, + { + "name": "LauncherV2", + "item": [ + { + "name": "launcher/v2/ping", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/ping" + }, + "response": [] + }, + { + "name": "launcher/v2/types", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/types" + }, + "response": [] + }, + { + "name": "launcher/v2/Login", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/Login" + }, + "response": [] + }, + { + "name": "launcher/v2/Register", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/Register" + }, + "response": [] + }, + { + "name": "launcher/v2/passwordChange", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/passwordChange" + }, + "response": [] + }, + { + "name": "launcher/v2/Remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/Remove" + }, + "response": [] + }, + { + "name": "launcher/v2/version", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/version" + }, + "response": [] + }, + { + "name": "launcher/v2/mods", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/mods" + }, + "response": [] + }, + { + "name": "launcher/v2/profiles", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/v2/profiles" + }, + "response": [] + } + ] + }, + { + "name": "Location", + "item": [ + { + "name": "client/locations", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/locations" + }, + "response": [] + }, + { + "name": "client/airdrop/loot", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/airdrop/loot" + }, + "response": [] + } + ] + }, + { + "name": "Match", + "item": [ + { + "name": "client/match/available", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/available" + }, + "response": [] + }, + { + "name": "client/match/updatePing", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/updatePing" + }, + "response": [] + }, + { + "name": "client/match/join", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/join" + }, + "response": [] + }, + { + "name": "client/match/exit", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/exit" + }, + "response": [] + }, + { + "name": "client/match/group/delete", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/delete" + }, + "response": [] + }, + { + "name": "client/match/group/leave", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/leave" + }, + "response": [] + }, + { + "name": "client/match/group/status", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/status" + }, + "response": [] + }, + { + "name": "client/match/group/start_game", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/start_game" + }, + "response": [] + }, + { + "name": "client/match/group/exit_from_menu", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/exit_from_menu" + }, + "response": [] + }, + { + "name": "client/match/group/current", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/current" + }, + "response": [] + }, + { + "name": "client/match/group/looking/start", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/looking/start" + }, + "response": [] + }, + { + "name": "client/match/group/looking/stop", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/looking/stop" + }, + "response": [] + }, + { + "name": "client/match/group/invite/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/invite/send" + }, + "response": [] + }, + { + "name": "client/match/group/invite/accept", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/invite/accept" + }, + "response": [] + }, + { + "name": "client/match/group/invite/decline", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/invite/decline" + }, + "response": [] + }, + { + "name": "client/match/group/invite/cancel", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/invite/cancel" + }, + "response": [] + }, + { + "name": "client/match/group/invite/cancel-all", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/invite/cancel-all" + }, + "response": [] + }, + { + "name": "client/match/group/transfer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/transfer" + }, + "response": [] + }, + { + "name": "client/match/group/raid/ready", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/raid/ready" + }, + "response": [] + }, + { + "name": "client/match/group/raid/not-ready", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/raid/not-ready" + }, + "response": [] + }, + { + "name": "client/putMetrics", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/putMetrics" + }, + "response": [] + }, + { + "name": "client/analytics/event-disconnect", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/analytics/event-disconnect" + }, + "response": [] + }, + { + "name": "client/getMetricsConfig", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/getMetricsConfig" + }, + "response": [] + }, + { + "name": "client/raid/configuration", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/raid/configuration" + }, + "response": [] + }, + { + "name": "client/raid/configuration-by-profile", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/raid/configuration-by-profile" + }, + "response": [] + }, + { + "name": "client/match/group/player/remove", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/group/player/remove" + }, + "response": [] + }, + { + "name": "client/match/local/end", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"serverId\": \"PVE_OFFLINE_1012053_29_12_2024_16_08_56\",\r\n \"results\": {\r\n \"profile\": {\r\n \"_id\": \"66b0b724b79d70e7f70daab0\",\r\n \"aid\": \"1012053\",\r\n \"savage\": \"66b0b724b79d70e7f70daab1\",\r\n \"karmaValue\": 0.0,\r\n \"Info\": {\r\n \"Nickname\": \"Stealthsuit\",\r\n \"MainProfileNickname\": null,\r\n \"Side\": \"Usec\",\r\n \"PrestigeLevel\": 0,\r\n \"RegistrationDate\": 1722857252,\r\n \"SavageLockTime\": 0.0,\r\n \"GroupId\": null,\r\n \"TeamId\": null,\r\n \"EntryPoint\": \"Common\",\r\n \"NicknameChangeDate\": 0,\r\n \"GameVersion\": \"standard\",\r\n \"Type\": \"Eft\",\r\n \"HasCoopExtension\": false,\r\n \"HasPveGame\": true,\r\n \"Voice\": \"Usec_3\",\r\n \"IsStreamerModeAvailable\": false,\r\n \"SquadInviteRestriction\": false,\r\n \"Bans\": [],\r\n \"Settings\": {\r\n \"Role\": \"assault\",\r\n \"BotDifficulty\": \"easy\",\r\n \"Experience\": -1,\r\n \"StandingForKill\": 0.0,\r\n \"AggressorBonus\": 0.0,\r\n \"UseSimpleAnimator\": false\r\n },\r\n \"MemberCategory\": \"Default\",\r\n \"SelectedMemberCategory\": \"Default\",\r\n \"Experience\": 20729994,\r\n \"Level\": 69,\r\n \"lockedMoveCommands\": false\r\n },\r\n \"Customization\": {\r\n \"Head\": \"5cde96047d6c8b20b577f016\",\r\n \"Body\": \"64ef3efdb63b74469b6c1499\",\r\n \"Feet\": \"5d1f592286f7743f8362bcdb\",\r\n \"Hands\": \"64ef3f3739e45b527a7c40ae\",\r\n \"DogTag\": \"674731d1170146228c0d222a\"\r\n },\r\n \"Encyclopedia\": {\r\n \"56dfef82d2720bbd668b4567\": true,\r\n \"57dc324a24597759501edc20\": true,\r\n \"57dc334d245977597164366f\": true,\r\n \"59d36a0086f7747e673f3946\": true,\r\n \"56d5a2bbd2720bb8418b456a\": true,\r\n \"56d5a407d2720bb3418b456b\": true,\r\n \"55d7217a4bdc2d86028b456d\": false,\r\n \"557ffd194bdc2d28148b457f\": false,\r\n \"544a5cde4bdc2d39388b456b\": false,\r\n \"544a11ac4bdc2d470e8b456a\": false,\r\n \"5b44c8ea86f7742d1627baf1\": false,\r\n \"564ca99c4bdc2d16268b4589\": false,\r\n \"54491bb74bdc2d09088b4567\": false,\r\n \"57dc2fa62459775949412633\": false,\r\n \"57dc32dc245977596d4ef3d3\": false,\r\n \"57dc347d245977596754e7a1\": false,\r\n \"5649ad3f4bdc2df8348b4585\": false,\r\n \"566abbc34bdc2d92178b4576\": false,\r\n \"56d59856d2720bd8418b456a\": false,\r\n \"56d59948d2720bb7418b4582\": false,\r\n \"56d59d3ad2720bdb418b4577\": false,\r\n \"56d5a661d2720bd8418b456b\": false,\r\n \"56d5a77ed2720b90418b4568\": false,\r\n \"56d5a1f7d2720bb3418b456a\": false,\r\n \"5448bd6b4bdc2dfc2f8b4569\": false,\r\n \"5448c12b4bdc2d02308b456f\": false,\r\n \"573718ba2459775a75491131\": false,\r\n \"5755356824597772cb798962\": false,\r\n \"5449016a4bdc2d6f028b456f\": false,\r\n \"544fb3364bdc2d34748b456a\": false,\r\n \"544fb25a4bdc2dfb738b4567\": false,\r\n \"5448fee04bdc2dbc018b4567\": false,\r\n \"57347d7224597744596b4e72\": false,\r\n \"57347da92459774491567cf5\": false,\r\n \"5cadc2e0ae9215051e1c21e7\": false,\r\n \"5e9dcf5986f7746c417435b3\": false,\r\n \"544fb37f4bdc2dee738b4567\": false,\r\n \"5e831507ea0a7c419c2f9bd9\": false,\r\n \"5648a7494bdc2d9d488b4583\": false,\r\n \"5c0e9f2c86f77432297fe0a3\": false,\r\n \"5d403f9186f7743cac3f229b\": false,\r\n \"5e4d34ca86f774264f758330\": false,\r\n \"590c5f0d86f77413997acfab\": false,\r\n \"5d2f213448f0355009199284\": false,\r\n \"5aa2a7e8e5b5b00016327c16\": false,\r\n \"58d3db5386f77426186285a0\": false,\r\n \"5a0c27731526d80618476ac4\": false,\r\n \"590c661e86f7741e566b646a\": false,\r\n \"54527a984bdc2d4e668b4567\": false,\r\n \"55d4887d4bdc2d962f8b4570\": false,\r\n \"5926bb2186f7744b1c6c6e60\": false,\r\n \"5926c32286f774616e42de99\": false,\r\n \"5926c0df86f77462f647f764\": false,\r\n \"5926e16e86f7742f5a0f7ecb\": false,\r\n \"5926d3c686f77410de68ebc8\": false,\r\n \"5926d2be86f774134d668e4e\": false,\r\n \"5926c36d86f77467a92a8629\": false,\r\n \"5926c3b286f774640d189b6b\": false,\r\n \"58864a4f2459770fcc257101\": false,\r\n \"5447a9cd4bdc2dbd208b4567\": false,\r\n \"55d44fd14bdc2d962f8b456e\": false,\r\n \"5649be884bdc2d79388b4577\": false,\r\n \"55d4ae6c4bdc2d8b2f8b456e\": false,\r\n \"55d355e64bdc2d962f8b4569\": false,\r\n \"55d5f46a4bdc2d1b198b4567\": false,\r\n \"55d459824bdc2d892f8b4573\": false,\r\n \"55d3632e4bdc2d972f8b4569\": false,\r\n \"56ea8d2fd2720b7c698b4570\": false,\r\n \"55d4af3a4bdc2d972f8b456f\": false,\r\n \"544a38634bdc2d58388b4568\": false,\r\n \"55d4b9964bdc2d1d4e8b456e\": false,\r\n \"5645bcc04bdc2d363b8b4572\": false,\r\n \"5751a25924597722c463c472\": false,\r\n \"5755383e24597772cb798966\": false,\r\n \"5cadc190ae921500103bb3b6\": false,\r\n \"5cadc55cae921500103bb3be\": false,\r\n \"5cadd919ae921500126a77f3\": false,\r\n \"5cadd940ae9215051e1c2316\": false,\r\n \"5cadc431ae921500113bb8d5\": false,\r\n \"5cadc1c6ae9215000f2775a4\": false,\r\n \"5cadc390ae921500126a77f1\": false,\r\n \"5ab8f39486f7745cd93a1cca\": false,\r\n \"5d1b371186f774253763a656\": false,\r\n \"572b7fa524597762b747ce82\": false,\r\n \"5ae30bad5acfc400185c2dc4\": false,\r\n \"5ae30db85acfc408fb139a05\": false,\r\n \"5ae30e795acfc408fb139a0b\": false,\r\n \"5e2af4a786f7746d3f3c3400\": false,\r\n \"5e2af47786f7746d404f3aaa\": false,\r\n \"627a4e6b255f7527fb05a0f6\": false,\r\n \"637f57a68d137b27f70c4968\": false,\r\n \"65703d866584602f7d057a8a\": false,\r\n \"65703fa06584602f7d057a8e\": false,\r\n \"65703fe46a912c8b5c03468b\": false,\r\n \"657040374e67e8ec7a0d261c\": false,\r\n \"64b7bbb74b75259c590fa897\": false,\r\n \"5bc9c29cd4351e003562b8a3\": true,\r\n \"5e2aee0a86f774755a234b62\": true,\r\n \"5bc9b9ecd4351e3bac122519\": true,\r\n \"5737330a2459776af32363a1\": true,\r\n \"5c0e531d86f7747fa23f4d42\": true,\r\n \"5ad5db3786f7743568421cce\": true,\r\n \"5bc9b355d4351e6d1509862a\": true,\r\n \"65815f0e647e3d7246384e14\": true,\r\n \"658199972dc4e60f6d556a2f\": true,\r\n \"5938603e86f77435642354f4\": true,\r\n \"5e54f6af86f7742199090bf3\": true,\r\n \"5fd8d28367cb5e077335170f\": true,\r\n \"5780cf942459777df90dcb72\": true,\r\n \"593aa4be86f77457f56379f8\": true,\r\n \"5a0ee34586f774023b6ee092\": true,\r\n \"60b0f988c4449e4cb624c1da\": true,\r\n \"62a09cfe4f842e1bd12da3e4\": true,\r\n \"609e860ebd219504d8507525\": true,\r\n \"60a7ad2a2198820d95707a2e\": true,\r\n \"6087e570b998180e9f76dc24\": true,\r\n \"60a7acf20c5cb24b01346648\": true,\r\n \"57a349b2245977762b199ec7\": true,\r\n \"5c94bbff86f7747ee735c08f\": true,\r\n \"5c1e2d1f86f77431e9280bee\": true,\r\n \"5d6e68c4a4b9361b93413f79\": true,\r\n \"5c0e531286f7747fa54205c2\": true,\r\n \"5b3b713c5acfc4330140bd8d\": true,\r\n \"5a0dc45586f7742f6b0b73e3\": true,\r\n \"5937ee6486f77408994ba448\": true,\r\n \"5bc9c1e2d4351e00367fbcf0\": true,\r\n \"59136a4486f774447a1ed172\": true,\r\n \"62a09e73af34e73a266d932a\": true,\r\n \"5938994586f774523a425196\": true,\r\n \"59148c8a86f774197930e983\": true,\r\n \"5ed51652f6c34d2cc26336a1\": true,\r\n \"5938504186f7740991483f30\": true,\r\n \"61962b617c6c7b169525f168\": true,\r\n \"5938144586f77473c2087145\": true,\r\n \"5780d0532459777a5108b9a2\": true,\r\n \"5d0376a486f7747d8050965c\": true,\r\n \"5bc9bdb8d4351e003562b8a1\": true,\r\n \"5e54f62086f774219b0f1937\": true,\r\n \"5913611c86f77479e0084092\": true,\r\n \"59387a4986f77401cc236e62\": true,\r\n \"5f745ee30acaeb0d490d8c5b\": true,\r\n \"5737300424597769942d5a01\": true,\r\n \"5780d07a2459777de4559324\": true,\r\n \"62a09e974f842e1bd12da3f0\": true,\r\n \"62a09dd4621468534a797ac7\": true,\r\n \"62a09cb7a04c0c5c6e0a84f8\": true,\r\n \"5ede7b0c6d23e5473e6e8c66\": true,\r\n \"62987cb98081af308d7558c8\": true,\r\n \"5d80c66d86f774405611c7d6\": true,\r\n \"5d80c8f586f77440373c4ed0\": true,\r\n \"5780cfa52459777dfb276eb1\": true,\r\n \"5c05308086f7746b2101e90b\": true,\r\n \"5d0377ce86f774186372f689\": true,\r\n \"62a091170b9d3c46de5b6cf2\": true,\r\n \"5bc9c377d4351e3bac12251b\": true,\r\n \"5a13ef0686f7746e5a411744\": true,\r\n \"5da5cdcd86f774529238fb9b\": true,\r\n \"593962ca86f774068014d9af\": true,\r\n \"60b0f561c4449e4cb624c1d7\": true,\r\n \"5f0596629e22f464da6bbdd9\": true,\r\n \"591382d986f774465a6413a7\": true,\r\n \"5af0534a86f7743b6f354284\": true,\r\n \"59136f6f86f774447a1ed173\": true,\r\n \"5780cda02459777b272ede61\": true,\r\n \"5913915886f774123603c392\": true,\r\n \"5bc9b156d4351e00367fbce9\": true,\r\n \"61aa5b518f5e7a39b41416e2\": true,\r\n \"5780cf722459777a5108b9a1\": true,\r\n \"5bc9be8fd4351e00334cae6e\": true,\r\n \"60b0f6c058e0b0481a09ad11\": true,\r\n \"59136e1e86f774432f15d133\": true,\r\n \"5a0ee37f86f774023657a86f\": true,\r\n \"570fd79bd2720bc7458b4583\": false,\r\n \"57e26fc7245977162a14b800\": false,\r\n \"5a38e6bac4a2826c6e06d79b\": false,\r\n \"5a38ed75c4a28232996e40c6\": false,\r\n \"5a38eecdc4a282329a73b512\": false,\r\n \"5a38ef1fc4a282000b1521f6\": false,\r\n \"5c0e446786f7742013381639\": false,\r\n \"5c6162682e22160010261a2b\": false,\r\n \"5c61627a2e22160012542c55\": false,\r\n \"5d6e6a42a4b9364f07165f52\": false,\r\n \"60b0f93284c20f0feb453da7\": true,\r\n \"61c18db6dfd64163ea78fbb4\": false,\r\n \"657087577f6d4590ac0d2109\": false,\r\n \"6570880f4a747dbb63005ee5\": false,\r\n \"65708afe4a747dbb63005eee\": false,\r\n \"65708b4c4a747dbb63005ef3\": false,\r\n \"5bc9c049d4351e44f824d360\": true,\r\n \"5bc9bc53d4351e00367fbcee\": true,\r\n \"63a71eb5b7f4570d3a29316b\": true,\r\n \"5780cf7f2459777de4559322\": true,\r\n \"5c1d0d6d86f7744bb2683e1f\": true,\r\n \"5780d0652459777df90dcb74\": true,\r\n \"5c052fb986f7746b2101e909\": true,\r\n \"62a09d79de7ac81993580530\": true,\r\n \"637b60c3b7afa97bfc3d7001\": true,\r\n \"5e42c81886f7742a01529f57\": true,\r\n \"66572c82ad599021091c6118\": true,\r\n \"5c1d0f4986f7744bb01837fa\": true,\r\n \"6582dc5740562727a654ebb1\": true,\r\n \"66572be36a723f7f005a066e\": true,\r\n \"5d03794386f77420415576f5\": true,\r\n \"655c669103999d3c810c025b\": true,\r\n \"655c663a6689c676ce57af85\": true,\r\n \"5914578086f774123569ffa4\": true,\r\n \"655c652d60d0ac437100fed7\": true,\r\n \"591afe0186f77431bd616a11\": true,\r\n \"5e54f76986f7740366043752\": true,\r\n \"655c67ab0d37ca5135388f4b\": true,\r\n \"628bc7fb408e2b2e9c0801b1\": true,\r\n \"628baf0b967de16aab5a4f36\": true,\r\n \"628b9c7d45122232a872358f\": true,\r\n \"628b9784bcf6e2659e09b8a2\": true,\r\n \"5ed5166ad380ab312177c100\": true,\r\n \"5d0375ff86f774186372f685\": true,\r\n \"593858c486f774253a24cb52\": true,\r\n \"601949593ae8f707c4608daa\": true,\r\n \"5a0dc95c86f77452440fc675\": true,\r\n \"5c0530ee86f774697952d952\": true,\r\n \"5d80c78786f774403a401e3e\": true,\r\n \"5a145d4786f7744cbb6f4a12\": true,\r\n \"5a13f46386f7741dd7384b04\": true,\r\n \"5a0ee76686f7743698200d5c\": true,\r\n \"5a0ee30786f774023b6ee08f\": true,\r\n \"61aa5aed32a4743c3453d319\": true,\r\n \"619cbf476b8a1b37a54eebf8\": true,\r\n \"5d947d4e86f774447b415895\": true,\r\n \"5d947d3886f774447b415893\": true,\r\n \"62a08f4c4f842e1bd12d9d62\": true,\r\n \"5d9f1fa686f774726974a992\": true,\r\n \"5c052e6986f7746b207bc3c9\": true,\r\n \"5c052f6886f7746b1e3db148\": true,\r\n \"5d03784a86f774203e7e0c4d\": true,\r\n \"5d80c6fc86f774403a401e3c\": true,\r\n \"62a09e08de7ac81993580532\": true,\r\n \"64ccc25f95763a1ae376e447\": true,\r\n \"61a64428a8c6aa1b795f0ba1\": true,\r\n \"5e54f79686f7744022011103\": true,\r\n \"591ae8f986f77406f854be45\": true,\r\n \"62a9cb937377a65d7b070cef\": true,\r\n \"5448ba0b4bdc2d02308b456c\": true,\r\n \"5a0eec9686f77402ac5c39f2\": true,\r\n \"5addaffe86f77470b455f900\": true,\r\n \"5bd073a586f7747e6f135799\": true,\r\n \"5c0d5e4486f77478390952fe\": true,\r\n \"5913651986f774432f15d132\": true,\r\n \"66572cbdad599021091c611a\": true,\r\n \"665732e7ac60f009f270d1ef\": true,\r\n \"66573310a1657263d816a139\": true,\r\n \"66572bb3ac60f009f270d1df\": true,\r\n \"66572b3f6a723f7f005a066c\": true,\r\n \"665730fa4de4820934746c48\": true,\r\n \"5ad5cfbd86f7742c825d6104\": true,\r\n \"665732f4464c4b4ba4670fa9\": true,\r\n \"573733c72459776b0b7b51b0\": true,\r\n \"5d80ccac86f77470841ff452\": true,\r\n \"5d80c6c586f77440351beef1\": true,\r\n \"5d80cd1a86f77402aa362f42\": true,\r\n \"5d80ccdd86f77474f7575e02\": true,\r\n \"60a7ad3a0c5cb24b0134664a\": true,\r\n \"62963c18dbc8ab5f0d382d0b\": true,\r\n \"5ad7247386f7747487619dc3\": true,\r\n \"63a3a93f8a56922e82001f5d\": true,\r\n \"62a09ec84f842e1bd12da3f2\": true,\r\n \"5913877a86f774432f15d444\": true,\r\n \"5ad5d7d286f77450166e0a89\": true,\r\n \"5a0eb6ac86f7743124037a28\": true,\r\n \"5d8e15b686f774445103b190\": true,\r\n \"5672c92d4bdc2d180f8b4567\": true,\r\n \"5780cf692459777de4559321\": true,\r\n \"5c1d0efb86f7744baf2e7b7b\": true,\r\n \"5ad5d20586f77449be26d877\": true,\r\n \"5c1e495a86f7743109743dfb\": true,\r\n \"5d80cb8786f774405611c7d9\": true,\r\n \"601aa3d2b2bcb34913271e6d\": true,\r\n \"5d95d6fa86f77424484aa5e9\": true,\r\n \"5d80c60f86f77440373c4ece\": true,\r\n \"5c0e541586f7747fa54205c9\": true,\r\n \"5c0e874186f7745dc7616606\": true,\r\n \"60b0f7057897d47c5b04ab94\": true,\r\n \"655c66e40b2de553b618d4b8\": true,\r\n \"655c673673a43e23e857aebd\": true,\r\n \"6389c7f115805221fb410466\": true,\r\n \"637b612fb7afa97bfc3d7005\": true,\r\n \"655c67782a1356436041c9c5\": true,\r\n \"637b6179104668754b72f8f5\": true,\r\n \"5fca13ca637ee0341a484f46\": true,\r\n \"5d0378d486f77420421a5ff4\": true,\r\n \"6389c85357baa773a825b356\": true,\r\n \"5d03775b86f774203e7e0c4b\": true,\r\n \"6389c7750ef44505c87f5996\": true,\r\n \"6389c8fb46b54c634724d847\": true,\r\n \"5bc9b720d4351e450201234b\": true,\r\n \"5c05300686f7746dce784e5d\": true,\r\n \"66572b8d80b1cd4b6a67847f\": true,\r\n \"5a145ebb86f77458f1796f05\": true,\r\n \"63a39ce4cd6db0635c1975fa\": true,\r\n \"5e997f0b86f7741ac73993e2\": true,\r\n \"5d80cb5686f77440545d1286\": true,\r\n \"5d95d6be86f77424444eb3a7\": true,\r\n \"5d80cb3886f77440556dbf09\": true,\r\n \"5eff09cd30a7dc22fd1ddfed\": true,\r\n \"5a0eee1486f77402aa773226\": true,\r\n \"5c1e2a1e86f77431ea0ea84c\": true,\r\n \"5e42c83786f7742a021fdf3c\": true,\r\n \"63a39df18a56922e82001f25\": true,\r\n \"5d08d21286f774736e7c94c3\": true,\r\n \"571a12c42459771f627b58a0\": false,\r\n \"571a26d524597720680fbe8a\": false,\r\n \"571a29dc2459771fb2755a6a\": false,\r\n \"573476d324597737da2adc13\": false,\r\n \"5736026a245977644601dc61\": false,\r\n \"57486e672459770abd687134\": false,\r\n \"59e770b986f7742cbd762754\": false,\r\n \"59e7715586f7742ee5789605\": false,\r\n \"5b4327aa5acfc400175496e0\": false,\r\n \"5b432b6c5acfc4001a599bf0\": false,\r\n \"5b44d22286f774172b0c9de8\": false,\r\n \"5bead2e00db834001c062938\": false,\r\n \"5bffcf7a0db83400232fea79\": false,\r\n \"5c165d832e2216398b5a7e36\": false,\r\n \"5c501a4d2e221602b412b540\": false,\r\n \"5c5039be2e221602b177c9ff\": false,\r\n \"5c503ad32e2216398b5aada2\": false,\r\n \"5c503af12e221602b177ca02\": false,\r\n \"5c503b1c2e221602b21d6e9d\": false,\r\n \"5c503d0a2e221602b542b7ef\": false,\r\n \"5e023e6e34d52a55c3304f71\": false,\r\n \"5ed515c8d380ab312177c0fa\": false,\r\n \"5f5e45cc5021ce62144be7aa\": false,\r\n \"5fd4c5477a8d854fa0105061\": false,\r\n \"6033fa48ffd42c541047f728\": false,\r\n \"6034cf5fffd42c541047f72e\": false,\r\n \"656f9d5900d62bcd2e02407c\": false,\r\n \"65704de13e7bba58ea0285c8\": false,\r\n \"65705c3c14f2ed6d7d0b7738\": false,\r\n \"65705c777260e1139e091408\": false,\r\n \"65705cb314f2ed6d7d0b773c\": false,\r\n \"65705cea4916448ae1050897\": false,\r\n \"5ad5d49886f77455f9731921\": true,\r\n \"59e6658b86f77411d949b250\": false,\r\n \"59e763f286f7742ee57895da\": false,\r\n \"5de652c31b7e3716273428be\": false,\r\n \"5de653abf76fdc1ce94a5a2a\": false,\r\n \"5de65547883dde217541644b\": false,\r\n \"5de6558e9f98ac2bc65950fc\": false,\r\n \"5de655be4a9f347bc92edb88\": false,\r\n \"60361b0b5a45383c122086a1\": false,\r\n \"62a09d3bcf4a99369e262447\": true,\r\n \"64be7110bf597ba84a0a41ea\": false,\r\n \"6581998038c79576a2569e11\": true,\r\n \"5c1d0dc586f7744baf2e7b79\": true,\r\n \"5448c1d04bdc2dff2f8b4569\": false,\r\n \"5649ade84bdc2d1b2b8b4587\": false,\r\n \"56dff0bed2720bb0668b4567\": false,\r\n \"56e335e4d2720b6c058b456d\": false,\r\n \"56e33680d2720be2748b4576\": false,\r\n \"57347d9c245977448b40fa85\": false,\r\n \"57e26ea924597715ca604a09\": false,\r\n \"59c6633186f7740cf0493bb9\": false,\r\n \"59e3577886f774176a362503\": false,\r\n \"59e6920f86f77411d82aa167\": false,\r\n \"59e7643b86f7742cbf2c109a\": false,\r\n \"5aa2b9ede5b5b000137b758b\": false,\r\n \"5ac50c185acfc400163398d4\": false,\r\n \"5ac50da15acfc4001718d287\": false,\r\n \"5ac66d9b5acfc4001633997a\": false,\r\n \"5ac72e945acfc43f3b691116\": false,\r\n \"5ac733a45acfc400192630e2\": false,\r\n \"5b4326435acfc433000ed01d\": false,\r\n \"5b432c305acfc40019478128\": false,\r\n \"5b432f3d5acfc4704b4a1dfb\": false,\r\n \"5c07c60e0db834002330051f\": false,\r\n \"5c07df7f0db834001b73588a\": false,\r\n \"5c0e2f26d174af02a9625114\": false,\r\n \"5c0e2f5cd174af02a012cfc9\": false,\r\n \"5c0e2f94d174af029f650d56\": false,\r\n \"5c0e2ff6d174af02a1659d4a\": false,\r\n \"5c0faeddd174af02a962601f\": false,\r\n \"5c0faf68d174af02a96260b8\": false,\r\n \"5c0fafb6d174af02a96260ba\": false,\r\n \"5cbda392ae92155f3c17c39f\": false,\r\n \"5cbdaf89ae9215000e5b9c94\": false,\r\n \"5d80c93086f7744036212b41\": true,\r\n \"5df8a2ca86f7740bfe6df777\": false,\r\n \"5fd4c60f875c30179f5d04c2\": false,\r\n \"64be79e2bf8412471d0d9bcc\": false,\r\n \"656fd7c32668ef0402028fb9\": false,\r\n \"656fd89bf5a9631d4e042575\": false,\r\n \"6570495b45d573133d0d6adb\": false,\r\n \"657049d23425b19bbc0502f0\": false,\r\n \"5649aa744bdc2ded0b8b457e\": false,\r\n \"5649af094bdc2df8348b4586\": false,\r\n \"5649b0544bdc2d1b2b8b458a\": false,\r\n \"5649b1c04bdc2d16268b457c\": false,\r\n \"56dff3afd2720bba668b4567\": false,\r\n \"57e3dba62459770f0c32322b\": false,\r\n \"59d64f2f86f77417193ef8b3\": false,\r\n \"5bf3e03b0db834001d2c4a9c\": false,\r\n \"5e2af22086f7746d3f3c33fa\": false,\r\n \"5e4abc1f86f774069619fbaa\": false,\r\n \"5b2388675acfc4771e1be0be\": false,\r\n \"5bfea6e90db834001b7347f3\": false,\r\n \"5bfea7ad0db834001c38f1ee\": false,\r\n \"5bfeb32b0db834001a6694d9\": false,\r\n \"5bfebc320db8340019668d79\": false,\r\n \"5bfebc5e0db834001a6694e5\": false,\r\n \"5c08f87c0db8340019124324\": false,\r\n \"5e023e53d4353e3302577c4c\": false,\r\n \"657ba85ecfcf63c951052da7\": false,\r\n \"657ba8bccfcf63c951052dab\": false,\r\n \"657ba8eab7e9ca9a02045bfd\": false,\r\n \"65818e4e566d2de69901b1b1\": false,\r\n \"5c1d0c5f86f7744bb2683cf0\": true,\r\n \"5c1f79a086f7746ed066fb8f\": true,\r\n \"5e42c71586f7747f245e1343\": true,\r\n \"55d48a634bdc2d8b2f8b456a\": false,\r\n \"56deee15d2720bee328b4567\": false,\r\n \"56e33634d2720bd8058b456b\": false,\r\n \"5710c24ad2720bc3458b45a3\": false,\r\n \"5aa2b89be5b5b0001569311f\": false,\r\n \"5aa2b986e5b5b00014028f4c\": false,\r\n \"5ab8f04f86f774585f4237d8\": false,\r\n \"5b099ac65acfc400186331e1\": false,\r\n \"5b0bbe4e5acfc40dc528a72d\": false,\r\n \"5b0bc22d5acfc47a8607f085\": false,\r\n \"5b4329075acfc400153b78ff\": false,\r\n \"5b7be1265acfc400161d0798\": false,\r\n \"5b7d63cf5acfc4001876c8df\": false,\r\n \"5b7d671b5acfc43d82528ddd\": false,\r\n \"5b7d678a5acfc4001a5c4022\": false,\r\n \"5b7d68af5acfc400170e30c3\": false,\r\n \"5b7d6c105acfc40015109a5f\": false,\r\n \"5d6e6869a4b9361c140bcfde\": false,\r\n \"603648ff5a45383c122086ac\": false,\r\n \"606dae0ab0e443224b421bb7\": false,\r\n \"6076c1b9f2cb2e02a42acedc\": false,\r\n \"607d5a891246154cad35d6aa\": false,\r\n \"607d5aa50494a626335e12ed\": false,\r\n \"5a0f075686f7745bcc42ee12\": true,\r\n \"5da46e3886f774653b7a83fe\": true,\r\n \"5d80cab086f77440535be201\": true,\r\n \"5d8e0db586f7744450412a42\": true,\r\n \"5d8e0e0e86f774321140eb56\": true,\r\n \"591383f186f7744a4c5edcf3\": true,\r\n \"5d8e3ecc86f774414c78d05e\": true,\r\n \"5a38ebd9c4a282000d722a5b\": false,\r\n \"5a38ee51c4a282000c5a955c\": false,\r\n \"5b432be65acfc433000ed01f\": false,\r\n \"5c0e5bab86f77461f55ed1f3\": false,\r\n \"5c0e6a1586f77404597b4965\": false,\r\n \"5c99f3592e221644fc633070\": false,\r\n \"654a4dea7c17dec2f50cc86a\": false,\r\n \"6571b27a6d84a2b8b6007f92\": false,\r\n \"6571baa74cb80d995d0a1490\": false,\r\n \"6571baac6d84a2b8b6007fa3\": false,\r\n \"6571bab0f41985531a038091\": false,\r\n \"6571babb4076795e5e07383f\": false,\r\n \"6571babf4cb80d995d0a1494\": false,\r\n \"6571bac34076795e5e073843\": false,\r\n \"573719df2459775a626ccbc2\": false,\r\n \"57d1519e24597714373db79d\": false,\r\n \"57d152ec245977144076ccdf\": false,\r\n \"57f3c6bd24597738e730fa2f\": false,\r\n \"57f3c7e024597738ea4ba286\": false,\r\n \"57f3c8cc2459773ec4480328\": false,\r\n \"5ab8ee7786f7742d8f33f0b9\": false,\r\n \"64be7095047e826eae02b0c1\": false,\r\n \"576165642459773c7a400233\": false,\r\n \"576167ab2459773cad038c43\": false,\r\n \"576169e62459773c69055191\": false,\r\n \"57616c112459773cce774d66\": false,\r\n \"57616ca52459773c69055192\": false,\r\n \"57a9b9ce2459770ee926038d\": false,\r\n \"590c657e86f77412b013051d\": false,\r\n \"5a966f51a2750c00156aacf6\": false,\r\n \"5af0454c86f7746bf20992e8\": false,\r\n \"5d6e68e6a4b9361c140bcfe0\": false,\r\n \"60363c0c92ec1c31037959f5\": false,\r\n \"63a399193901f439517cafb6\": true,\r\n \"628e4dd1f477aa12234918aa\": true,\r\n \"62a61bbf8ec41a51b34758d2\": true,\r\n \"61a6444b8c141d68246e2d2f\": true,\r\n \"5672cb124bdc2d1a0f8b4568\": false,\r\n \"5735ff5c245977640e39ba7e\": false,\r\n \"574d967124597745970e7c94\": false,\r\n \"574dad8024597745964bf05c\": false,\r\n \"574db213245977459a2f3f5d\": false,\r\n \"5751496424597720a27126da\": false,\r\n \"5783c43d2459774bbe137486\": false,\r\n \"57c5ac0824597754771e88a9\": false,\r\n \"587df3a12459772c28142567\": false,\r\n \"59e4d3d286f774176a36250a\": false,\r\n \"5a3c16fe86f77452b62de32a\": false,\r\n \"5b432b965acfc47a8774094e\": false,\r\n \"5e340dcdcb6d5863cc5e5efb\": false,\r\n \"5e4abfed86f77406a2713cf7\": false,\r\n \"5e8488fa988a8701445df1e4\": false,\r\n \"5ea02bb600685063ec28bfa1\": false,\r\n \"5ea034eb5aad6446a939737b\": false,\r\n \"5ea03e5009aa976f2e7a514b\": false,\r\n \"5ea03e9400685063ec28bfa4\": false,\r\n \"5ea03f7400685063ec28bfa8\": false,\r\n \"60098af40accd37ef2175f27\": false,\r\n \"618bb76513f5097c8d5aa2d5\": false,\r\n \"62a5c2c98ec41a51b34739c0\": false,\r\n \"62a5c333ec21e50cad3b5dc6\": false,\r\n \"62a5c41e8ec41a51b34739c3\": false,\r\n \"634f02331f9f536910079b51\": false,\r\n \"634f02d7517ccc8a960fc744\": false,\r\n \"634f04d82e5def262d0b30c6\": false,\r\n \"634f05ca517ccc8a960fc748\": false,\r\n \"634f08a21f9f536910079b5a\": false,\r\n \"6572e048371fccfbf909d5d8\": false,\r\n \"6572e059371fccfbf909d5dc\": false,\r\n \"6572e06219b4b511af012f89\": false,\r\n \"6572e06819b4b511af012f8d\": false,\r\n \"5a0eff2986f7741fd654e684\": true,\r\n \"5448be9a4bdc2dfd2f8b456a\": false,\r\n \"5580169d4bdc2d9d138b4585\": false,\r\n \"5580223e4bdc2d1c128b457f\": false,\r\n \"560d5e524bdc2d25448b4571\": false,\r\n \"572b7d8524597762b472f9d1\": false,\r\n \"5887431f2459777e1612938f\": false,\r\n \"590c5d4b86f774784e1b9c45\": false,\r\n \"590c678286f77426c9660122\": false,\r\n \"5aa2b9aee5b5b00015693121\": false,\r\n \"5ae0973a5acfc4001562206c\": false,\r\n \"5ae099875acfc4001714e593\": false,\r\n \"5bbdb83fd4351e44f824c44b\": false,\r\n \"5bfd297f0db834001a669119\": false,\r\n \"5bfd384c0db834001a6691d3\": false,\r\n \"5bfd4c980db834001b73449d\": false,\r\n \"5bfd4cbe0db834001b73449f\": false,\r\n \"5c0e51be86f774598e797894\": false,\r\n \"5c0e5edb86f77461f55ed1f7\": false,\r\n \"5d5d8ca986f7742798716522\": false,\r\n \"60bf74184a63fc79b60c57f6\": false,\r\n \"611a31ce5b7ffe001b4649d1\": false,\r\n \"654a8976f414fcea4004d78b\": false,\r\n \"654a8ae00337d53f9102c2aa\": false,\r\n \"654a8b0b0337d53f9102c2ae\": false,\r\n \"654a8b3df414fcea4004d78f\": false,\r\n \"654a8b80f414fcea4004d797\": false,\r\n \"654a8bc5f414fcea4004d79b\": false,\r\n \"656efd66034e8e01c407f35c\": false,\r\n \"656f57dc27aed95beb08f628\": false,\r\n \"656f603f94b480b8a500c0d6\": false,\r\n \"656fac30c6baea13cd07e10c\": false,\r\n \"6571dbd388ead79fcf091d71\": false,\r\n \"6571dbda88ead79fcf091d75\": false,\r\n \"6571dbe07c02ae206002502e\": false,\r\n \"6571dbeaee8ec43d520cf89e\": false,\r\n \"6571dbef88ead79fcf091d79\": false,\r\n \"55d480c04bdc2d1d4e8b456a\": false,\r\n \"57ae0171245977343c27bfcf\": false,\r\n \"57ffb0062459777a045af529\": false,\r\n \"593d493f86f7745e6b2ceb22\": false,\r\n \"5a0c59791526d8dba737bba7\": false,\r\n \"5ab626e4d8ce87272e4c6e43\": false,\r\n \"5e2aef7986f7746d3f3c33f5\": false,\r\n \"5e2af29386f7746d4159f077\": false,\r\n \"5ad7217186f7746744498875\": true,\r\n \"5ad7242b86f7740a6a3abd43\": true,\r\n \"544fb45d4bdc2dee738b4568\": false,\r\n \"544fb6cc4bdc2d34748b456e\": false,\r\n \"56dff4a2d2720bbd668b456a\": false,\r\n \"5735fdcd2459776445391d61\": false,\r\n \"590c2b4386f77425357b6123\": false,\r\n \"5929a2a086f7744f4b234d43\": false,\r\n \"5ac4cd105acfc40016339859\": false,\r\n \"5ac72e475acfc400180ae6fe\": false,\r\n \"5ac7655e5acfc40016339a19\": false,\r\n \"5bed61680db834001d2c45ab\": false,\r\n \"5c0e530286f7747fa1419862\": false,\r\n \"5ca20d5986f774331e7c9602\": false,\r\n \"6386300124a1dc425c00577a\": false,\r\n \"5efde6b4f5448336730dbd61\": true,\r\n \"5a13ef7e86f7741290491063\": true,\r\n \"5d80c62a86f7744036212b3f\": true,\r\n \"57513f9324597720a7128161\": false,\r\n \"57513fcc24597720a31c09a6\": false,\r\n \"5d6d2ef3a4b93618084f58bd\": false,\r\n \"60a2828e8689911a226117f9\": false,\r\n \"61f4012adfc9f01a816adda1\": false,\r\n \"61f7b234ea4ab34f2f59c3ec\": false,\r\n \"61f7b85367ddd414173fdb36\": false,\r\n \"61f7c9e189e6fb1a5e3ea78d\": false,\r\n \"64b8f7968532cf95ee0a0dbf\": false,\r\n \"62987da96188c076bc0d8c51\": true,\r\n \"5a0eb38b86f774153b320eb0\": true,\r\n \"64ccc1f4ff54fb38131acf27\": true,\r\n \"55d485804bdc2d8c2f8b456b\": false,\r\n \"55d48ebc4bdc2d8c2f8b456c\": false,\r\n \"56083be64bdc2d20478b456f\": false,\r\n \"560d657b4bdc2da74d8b4572\": false,\r\n \"5648a69d4bdc2ded0b8b457b\": false,\r\n \"56dee2bdd2720bc8328b4567\": false,\r\n \"56deec93d2720bec348b4568\": false,\r\n \"56deed6ed2720b4c698b4583\": false,\r\n \"573476f124597737e04bf328\": false,\r\n \"5aa2ba19e5b5b00014028f4e\": false,\r\n \"5ae08f0a5acfc408fb1398a1\": false,\r\n \"5ae096d95acfc400185c2c81\": false,\r\n \"5ae099925acfc4001a5fc7b3\": false,\r\n \"5ae09bff5acfc4001562219d\": false,\r\n \"5b7bef1e5acfc43d82528402\": false,\r\n \"5c0d2727d174af02a012cf58\": false,\r\n \"5c0e53c886f7747fa54205c7\": false,\r\n \"5c6161fb2e221600113fbde5\": false,\r\n \"5cc86840d7f00c002412c56c\": false,\r\n \"5d6e6772a4b936088465b17c\": false,\r\n \"5df8a58286f77412631087ed\": false,\r\n \"5e023cf8186a883be655e54f\": false,\r\n \"6389c6c7dbfd5e4b95197e68\": false,\r\n \"657ba096e57570b7f80a17fb\": false,\r\n \"657ba145e57570b7f80a17ff\": false,\r\n \"657ba18923918923cb0df568\": false,\r\n \"657ba6c3c6f689d3a205b857\": false,\r\n \"657ba737b7e9ca9a02045bf6\": false,\r\n \"657ba75e23918923cb0df573\": false,\r\n \"658188edf026a90c1708c827\": false,\r\n \"6582dbe43a2e5248357dbe9a\": true,\r\n \"62a09e410b9d3c46de5b6e78\": true,\r\n \"57347cd0245977445a2d6ff1\": false,\r\n \"5751435d24597720a27126d1\": false,\r\n \"5998517986f7746017232f7e\": false,\r\n \"599851db86f77467372f0a18\": false,\r\n \"5998598e86f7740b3f498a86\": false,\r\n \"59985a8086f77414ec448d1a\": false,\r\n \"599860e986f7743bb57573a6\": false,\r\n \"59ccd11386f77428f24a488f\": false,\r\n \"59e7635f86f7742cbf2c1095\": false,\r\n \"59f9cabd86f7743a10721f46\": false,\r\n \"5c0672ed0db834001b7353f3\": false,\r\n \"5d1b2f3f86f774252167a52c\": false,\r\n \"65702f87722744627e05cdb8\": false,\r\n \"65702fe593b7ea9c330f4ce8\": false,\r\n \"6570305d93b7ea9c330f4ced\": false,\r\n \"65703472c9030b928a0a8a78\": false,\r\n \"66b37eb4acff495a29492407\": true,\r\n \"66b37ea4c5d72b0277488439\": true,\r\n \"66b37f114410565a8f6789e2\": true,\r\n \"572b7f1624597762ae139822\": false,\r\n \"57347d5f245977448b40fa81\": false,\r\n \"573719762459775a626ccbc1\": false,\r\n \"57616a9e2459773c7a400234\": false,\r\n \"5947db3f86f77447880cf76f\": false,\r\n \"59d6088586f774275f37482f\": false,\r\n \"59d64ec286f774171d1e0a42\": false,\r\n \"59d650cf86f7741b846413a4\": false,\r\n \"59e4cf5286f7741778269d8a\": false,\r\n \"59e7708286f7742cbd762753\": false,\r\n \"5a0071d486f77404e23a12b2\": false,\r\n \"5a01c29586f77474660c694c\": false,\r\n \"5a17f98cfcdbcb0980087290\": false,\r\n \"5a17fb03fcdbcbcae668728f\": false,\r\n \"5a17fc70fcdbcb0176308b3d\": false,\r\n \"5a2a57cfc4a2826c6e06d44a\": false,\r\n \"5aa2b8d7e5b5b00014028f4a\": false,\r\n \"5aba62f8d8ce87001943946b\": false,\r\n \"5aba637ad8ce87001773e17f\": false,\r\n \"5b099b965acfc400186331e6\": false,\r\n \"5b7bed205acfc400161d08cc\": false,\r\n \"5b7d645e5acfc400170e2f90\": false,\r\n \"5bd073c986f7747f627e796c\": true,\r\n \"5c503ac82e221602b21d6e9a\": false,\r\n \"5cbdc23eae9215001136a407\": false,\r\n \"5d2c829448f0353a5c7d6674\": false,\r\n \"5f63407e1b231926f2329f15\": false,\r\n \"5c093ca986f7740a1867ab12\": true,\r\n \"5ede7a8229445733cb4c18e2\": true,\r\n \"59e770f986f7742cbe3164ef\": false,\r\n \"5aa2b923e5b5b000137b7589\": false,\r\n \"5ab8e4ed86f7742d8e50c7fa\": false,\r\n \"657044e971369562b300ce9b\": false,\r\n \"657045741bd9beedc40b7299\": false,\r\n \"657045b97e80617cee095bda\": false,\r\n \"6570460471369562b300ce9f\": false,\r\n \"59e6284f86f77440d569536f\": false,\r\n \"59e6318286f77444dd62c4cc\": false,\r\n \"59e649f986f77411d949b246\": false,\r\n \"59e6687d86f77411d949b251\": false,\r\n \"59e8a00d86f7742ad93b569c\": false,\r\n \"5b1fd4e35acfc40018633c39\": false,\r\n \"5656d7c34bdc2d9d198b4587\": false,\r\n \"59d64fc686f774171b243fe2\": false,\r\n \"59d6507c86f7741b846413a2\": false,\r\n \"59ff346386f77477562ff5e2\": false,\r\n \"59ff3b6a86f77477562ff5ed\": false,\r\n \"5a0060fc86f7745793204432\": false,\r\n \"6034d0230ca681766b6a0fb5\": false,\r\n \"5734770f24597738025ee254\": false,\r\n \"57347c5b245977448d35f6e1\": false,\r\n \"590a391c86f774385a33c404\": false,\r\n \"5c0673fb0db8340023300271\": false,\r\n \"5c06c6a80db834001b735491\": false,\r\n \"5c3df7d588a4501f290594e5\": false,\r\n \"5fd4c4fa16cac650092f6771\": false,\r\n \"6571199565daf6aa960c9b10\": false,\r\n \"657119d49eb8c145180dbb95\": false,\r\n \"657119fea330b8c9060f7afc\": false,\r\n \"6389c8c5dbfd5e4b95197e6b\": true,\r\n \"557ff21e4bdc2d89578b4586\": false,\r\n \"57347c77245977448d35f6e2\": false,\r\n \"59e4d24686f7741776641ac7\": false,\r\n \"5ab8f20c86f7745cdb629fb2\": false,\r\n \"66b5f247af44ca0014063c02\": false,\r\n \"544fb3f34bdc2d03748b456a\": false,\r\n \"5b43271c5acfc432ff4dce65\": false,\r\n \"5d6d2e22a4b9361bd5780d05\": false,\r\n \"60098ad7c2240c0fe85c570a\": false,\r\n \"60098b1705871270cd5352a1\": false,\r\n \"572b7adb24597762ae139821\": false,\r\n \"57d14d2524597714373db789\": false,\r\n \"661cec09b2c6356b4d0c7a36\": true,\r\n \"661520fb6f8e1a96340afaa6\": true,\r\n \"6615211ca031cbb5570e346d\": true,\r\n \"66152153a031cbb5570e346f\": true,\r\n \"661fbe066751ee51930b01f2\": true,\r\n \"573475fb24597737fb1379e1\": false,\r\n \"61c18d83b00456371a66814b\": false,\r\n \"6410745d5dd49d77bd078485\": false,\r\n \"641074a07fd350b98c0b3f96\": false,\r\n \"6410758c857473525b08bb77\": false,\r\n \"64119cdbdcf48d656f0aa272\": false,\r\n \"64119d1f2c6d6f921a0929f8\": false,\r\n \"64119d672c6d6f921a0929fb\": false,\r\n \"64119d90dcf48d656f0aa275\": false,\r\n \"643ea5b23db6f9f57107d9fd\": false,\r\n \"64b8f7b5389d7ffd620ccba2\": false,\r\n \"5648b0744bdc2d363b8b4578\": false,\r\n \"5737218f245977612125ba51\": false,\r\n \"57d14e1724597714010c3f4b\": false,\r\n \"590c695186f7741e566b64a2\": false,\r\n \"62178c4d4ecf221597654e3d\": false,\r\n \"66acd6702b17692df20144c0\": true,\r\n \"5c0e534186f7747fa1419867\": false,\r\n \"5d270b3c8abbc3105335cfb8\": false,\r\n \"575062b524597720a31c09a1\": false,\r\n \"5d80c95986f77440351beef3\": true,\r\n \"59d625f086f774661516605d\": false,\r\n \"59e36c6f86f774176c10a2a7\": false,\r\n \"5b3a337e5acfc4704b4a19a0\": false,\r\n \"5b7be47f5acfc400170e2dd2\": false,\r\n \"5c78f26f2e221601da3581d1\": false,\r\n \"64be79c487d1510151095552\": false,\r\n \"5a1452ee86f7746f33111763\": true,\r\n \"64ccc268c41e91416064ebc7\": true,\r\n \"61aa5ba8018e9821b7368da9\": true,\r\n \"59e68f6f86f7746c9f75e846\": false,\r\n \"5aaa5e60e5b5b000140293d6\": false,\r\n \"5649ae4a4bdc2d1b2b8b4588\": false,\r\n \"6040dd4ddcf9592f401632d2\": false,\r\n \"5734779624597737e04bf329\": false,\r\n \"6499849fc93611967b034949\": false,\r\n \"649ec107961514b22506b10c\": false,\r\n \"649ec127c93611967b034957\": false,\r\n \"64b9e265c94d0d15c5027e35\": false,\r\n \"55d4837c4bdc2d1d4e8b456c\": false,\r\n \"6582dc4b6ba9e979af6b79f4\": true,\r\n \"5a7828548dc32e5a9c28b516\": false,\r\n \"5a787f7ac5856700177af660\": false,\r\n \"5a788089c5856700142fdd9c\": false,\r\n \"5a7880d0c5856700142fdd9d\": false,\r\n \"5a7882dcc5856700177af662\": false,\r\n \"5a7893c1c585673f2b5c374d\": false,\r\n \"57347d3d245977448f7b7f61\": false,\r\n \"57347d90245977448f7b7f65\": false,\r\n \"61a64492ba05ef10d62adcc1\": true,\r\n \"5d6e6891a4b9361bd473feea\": false,\r\n \"60db29ce99594040e04c4a27\": false,\r\n \"60dc519adf4c47305f6d410d\": false,\r\n \"6123649463849f3d843da7c4\": false,\r\n \"612368f58b401f4f51239b33\": false,\r\n \"612781056f3d944a17348d60\": false,\r\n \"619d36da53b4d42ee724fae4\": false,\r\n \"61bf7b6302b3924be92fa8c3\": false,\r\n \"63a71e781031ac76fe773c7d\": true,\r\n \"5947fa2486f77425b47c1a9b\": false,\r\n \"5cc9a96cd7f00c011c04e04a\": false,\r\n \"5cf518cfd7f00c065b422214\": false,\r\n \"5d40412b86f7743cb332ac3a\": false,\r\n \"5d6fc78386f77449d825f9dc\": false,\r\n \"5d80ca9086f774403a401e40\": true,\r\n \"57371f8d24597761006c6a81\": false,\r\n \"6038d614d10cbf667352dd44\": false,\r\n \"590c651286f7741e566b6461\": false,\r\n \"59148f8286f7741b951ea113\": true,\r\n \"5648b1504bdc2d9d488b4584\": false,\r\n \"64ccc1ec1779ad6ba200a137\": true,\r\n \"63a39dfe3901f439517cafba\": true,\r\n \"64ccc206793ca11c8f450a38\": true,\r\n \"62987dfc402c7f69bf010923\": true,\r\n \"587e02ff24597743df3deaeb\": false,\r\n \"587e0531245977466077a0f7\": false,\r\n \"587e08ee245977446b4410cf\": false,\r\n \"5998529a86f774647f44f421\": false,\r\n \"5a26ac06c4a282000c5a90a8\": false,\r\n \"5ca20abf86f77418567a43f2\": false,\r\n \"634eff66517ccc8a960fc735\": false,\r\n \"634f036a517ccc8a960fc746\": false,\r\n \"634f03d40384a3ba4f06f874\": false,\r\n \"634f05a21f9f536910079b56\": false,\r\n \"634f06262e5def262d0b30ca\": false,\r\n \"5c10c8fd86f7743d7d706df3\": false,\r\n \"5cf8f3b0d7f00c00217872ef\": false,\r\n \"591c4efa86f7741030027726\": false,\r\n \"5bbde409d4351e003562b036\": false,\r\n \"66a9f98f3bd5a41b162030f4\": true,\r\n \"5c46fbd72e2216398b5a8c9c\": false,\r\n \"5c471b5d2e221602b21d4e14\": false,\r\n \"5c471b7e2e2216152006e46c\": false,\r\n \"5c471ba12e221602b3137d76\": false,\r\n \"5c471bd12e221602b4129c3a\": false,\r\n \"5c471be12e221602b66cd9ac\": false,\r\n \"5c471bfc2e221602b21d4e17\": false,\r\n \"5c471c2d2e22164bef5d077f\": false,\r\n \"5c471c442e221602b542a6f8\": false,\r\n \"5c471c6c2e221602b66cd9ae\": false,\r\n \"5c471c842e221615214259b5\": false,\r\n \"5c471cb32e221602b177afaa\": false,\r\n \"5e2af51086f7746d3f3c3402\": false,\r\n \"5d1b385e86f774252167b98a\": false,\r\n \"5ea05cf85ad9772e6624305d\": false,\r\n \"6410733d5dd49d77bd07847e\": false,\r\n \"6422e1ea3c0f06190302161a\": false,\r\n \"657ba2eef58ba5a625010798\": false,\r\n \"657ba34b9ba22f103e08139b\": false,\r\n \"637b620db7afa97bfc3d7009\": false,\r\n \"57347d8724597744596b4e76\": false,\r\n \"57513f07245977207e26a311\": false,\r\n \"5b1fb3e15acfc4001637f068\": false,\r\n \"5ed5160a87bb8443d10680b5\": false,\r\n \"669fa3d876116c89840b1217\": true,\r\n \"54491c4f4bdc2db1078b4568\": false,\r\n \"55d45d3f4bdc2d972f8b456c\": false,\r\n \"55d484b44bdc2d1d4e8b456d\": false,\r\n \"560835c74bdc2dc8488b456f\": false,\r\n \"56083cba4bdc2de22e8b456f\": false,\r\n \"57d17c5e2459775a5c57d17d\": false,\r\n \"57d17e212459775a1179a0f5\": false,\r\n \"58272d7f2459774f6311ddfd\": false,\r\n \"58820d1224597753c90aeb13\": false,\r\n \"5c0111ab0db834001966914d\": false,\r\n \"611a30addbdd8440277441dc\": false,\r\n \"55801eed4bdc2d89578b4588\": false,\r\n \"559ba5b34bdc2d1f1a8b4582\": false,\r\n \"56083e1b4bdc2dc8488b4572\": false,\r\n \"56083eab4bdc2d26448b456a\": false,\r\n \"560e620e4bdc2d724b8b456b\": false,\r\n \"56ea8222d2720b69698b4567\": false,\r\n \"61faa91878830f069b6b7967\": false,\r\n \"5448ff904bdc2d6f028b456e\": false,\r\n \"5c0e533786f7747fa23f4d47\": false,\r\n \"5ed515f6915ec335206e4152\": false,\r\n \"5a0ee62286f774369454a7ac\": true,\r\n \"5de8e67c4a9f347bc92edbd7\": false,\r\n \"5de8e8dafd6b4e6e2276dc32\": false,\r\n \"5de8fbf2b74cd90030650c79\": false,\r\n \"5de910da8b6c4240ba2651b5\": false,\r\n \"5de922d4b11454561e39239f\": false,\r\n \"5e00903ae9dc277128008b87\": false,\r\n \"658199aa38c79576a2569e13\": true,\r\n \"5a9fbb74a2750c0032157181\": false,\r\n \"5d6e67fba4b9361bc73bc779\": false,\r\n \"5dff772da3651922b360bf91\": false,\r\n \"5dff77c759400025ea5150cf\": false,\r\n \"63a39c7964283b5e9c56b280\": true,\r\n \"5737280e24597765cc785b5c\": true,\r\n \"5a0ea69f86f7741cd5406619\": true,\r\n \"62987e26a77ec735f90a2995\": true,\r\n \"573601b42459776410737435\": false,\r\n \"590c645c86f77412b01304d9\": false,\r\n \"570fd721d2720bc5458b4596\": false,\r\n \"63a39fd1c9b3aa4b61683efb\": true,\r\n \"63a39f6e64283b5e9c56b289\": true,\r\n \"5737266524597761006c6a8c\": true,\r\n \"5d80c88d86f77440556dbf07\": true,\r\n \"590a386e86f77429692b27ab\": false,\r\n \"590c311186f77424d1667482\": false,\r\n \"5ad5ccd186f774446d5706e9\": true,\r\n \"64d4b23dc1b37504b41ac2b6\": true,\r\n \"5751487e245977207e26a315\": false,\r\n \"590c5a7286f7747884343aea\": false,\r\n \"590c639286f774151567fa95\": false,\r\n \"5c6d42cb2e2216000e69d7d1\": false,\r\n \"573724b42459776125652ac2\": true,\r\n \"5648b4534bdc2d3d1c8b4580\": false,\r\n \"58272b392459774b4c7b3ccd\": false,\r\n \"5b07dd285acfc4001754240d\": false,\r\n \"5bfd36ad0db834001c38ef66\": false,\r\n \"5bfd4cd60db834001c38f095\": false,\r\n \"5cf4fb76d7f00c065703d3ac\": false,\r\n \"5d40407c86f774318526545a\": false,\r\n \"5d6e6a53a4b9361bd473feec\": false,\r\n \"5da743f586f7744014504f72\": true,\r\n \"590a358486f77429692b2790\": false,\r\n \"590c621186f774138d11ea29\": false,\r\n \"5ad5d64486f774079b080af8\": true,\r\n \"5b3f7bf05acfc433000ecf6b\": false,\r\n \"5b3f7c005acfc4704b4a1de8\": false,\r\n \"5b3f7c1c5acfc40dc5296b1d\": false,\r\n \"5bbdb870d4351e00367fb67d\": false,\r\n \"5cc80f8fe4a949033b0224a2\": false,\r\n \"62a0a16d0b9d3c46de5b6e97\": false,\r\n \"5e023d34e8a400319a28ed44\": false,\r\n \"575146b724597720a27126d5\": false,\r\n \"5d1b3f2d86f774253763b735\": false,\r\n \"618a5d5852ecee1505530b2a\": false,\r\n \"59e7711e86f7746cae05fbe1\": false,\r\n \"5bed625c0db834001c062946\": false,\r\n \"5d02778e86f774203e7dedbe\": false,\r\n \"5d02797c86f774203f38e30a\": false,\r\n \"5ed515ece452db0eb56fc028\": false,\r\n \"657ba50c23918923cb0df56c\": false,\r\n \"657ba5439ba22f103e08139f\": false,\r\n \"657ba57af58ba5a62501079e\": false,\r\n \"5a718b548dc32e000d46d262\": false,\r\n \"5dfa3d7ac41b2312ea33362a\": false,\r\n \"5dfa3d950dee1b22f862eae0\": false,\r\n \"602e3f1254072b51b239f713\": false,\r\n \"602e620f9b513876d4338d9a\": false,\r\n \"602e63fb6335467b0c5ac94d\": false,\r\n \"602f85fd9b513876d4338d9c\": false,\r\n \"603372b4da11d6478d5a07ff\": false,\r\n \"60337f5dce399e10262255d1\": false,\r\n \"60339954d62c9b14ed777c06\": false,\r\n \"6034e3cb0ddce744014cb870\": false,\r\n \"6193dcd0f8ee7e52e4210a28\": false,\r\n \"590a3c0a86f774385a33c450\": false,\r\n \"64b8f7c241772715af0f9c3d\": false,\r\n \"5d0379a886f77420407aa271\": false,\r\n \"6582dbf0b8d7830efc45016f\": true,\r\n \"560838c94bdc2d77798b4569\": false,\r\n \"5648ae314bdc2d3d1c8b457f\": false,\r\n \"590c37d286f77443be3d7827\": false,\r\n \"59e8977386f77415a553c453\": false,\r\n \"5c1bc4812e22164bef5cfde7\": false,\r\n \"5d6e68d1a4b93622fe60e845\": false,\r\n \"60361a7497633951dc245eb4\": false,\r\n \"56dff421d2720b5f5a8b4567\": false,\r\n \"61f803b8ced75b2e852e35f8\": false,\r\n \"6076c87f232e5a31c233d50e\": false,\r\n \"59e3556c86f7741776641ac2\": false,\r\n \"5af0548586f7743a532b7e99\": false,\r\n \"5d6e6806a4b936088465b17e\": false,\r\n \"5ed515e03a40a50460332579\": false,\r\n \"572b7fa124597762b472f9d2\": false,\r\n \"5c0517910db83400232ffee5\": false,\r\n \"5cc9c20cd7f00c001336c65d\": false,\r\n \"62a0a124de7ac81993580542\": false,\r\n \"63a39f08cd6db0635c197600\": true,\r\n \"63a39fc0af870e651d58e6ae\": true,\r\n \"64ccc246ff54fb38131acf29\": true,\r\n \"63a71e86b7f4570d3a293169\": true,\r\n \"64ccc1d4a0f13c24561edf27\": true,\r\n \"55d4491a4bdc2d882f8b456e\": false,\r\n \"63a39667c9b3aa4b61683e98\": true,\r\n \"63a39fdf1e21260da44a0256\": true,\r\n \"64ccc2111779ad6ba200a139\": true,\r\n \"66572b88ac60f009f270d1dc\": true,\r\n \"57a0e5022459774d1673f889\": false,\r\n \"590c2d8786f774245b1f03f3\": false,\r\n \"59e0d99486f7744a32234762\": false,\r\n \"5b04473a5acfc40018632f70\": false,\r\n \"5c13cd2486f774072c757944\": false,\r\n \"5e2af4d286f7746d4159f07a\": false,\r\n \"5efb0e16aeb21837e749c7ff\": false,\r\n \"63a71e922b25f7513905ca20\": true,\r\n \"656df4fec921ad01000481a2\": false,\r\n \"64ccc1fe088064307e14a6f7\": true,\r\n \"5cbda9f4ae9215000e5b9bfc\": false,\r\n \"64ccc24de61ea448b507d34d\": true,\r\n \"63a39e1d234195315d4020bd\": true,\r\n \"56dff026d2720bb8668b4567\": false,\r\n \"59e6542b86f77411dc52a77a\": false,\r\n \"64b7af5a8532cf95ee0a0dbd\": false,\r\n \"5a0ee4b586f7743698200d22\": true,\r\n \"5a13eebd86f7746fd639aa93\": true,\r\n \"5c0d5ae286f7741e46554302\": false,\r\n \"63a0b2eabea67a6d93009e52\": true,\r\n \"5b432b2f5acfc4771e1c6622\": false,\r\n \"5d1b5e94d7ad1a2b865a96b0\": false,\r\n \"6113d6c3290d254f5e6b27db\": false,\r\n \"564ca9df4bdc2d35148b4569\": false,\r\n \"57505f6224597709a92585a9\": false,\r\n \"5a13ee1986f774794d4c14cd\": true,\r\n \"5af0484c86f7740f02001f7f\": false,\r\n \"63a397d3af870e651d58e65b\": true,\r\n \"584984812459776a704a82a6\": false,\r\n \"5d6e6a5fa4b93614ec501745\": false,\r\n \"5f63405df5750b524b45f114\": false,\r\n \"5734773724597737fd047c14\": false,\r\n \"5de8fb539f98ac2bc659513a\": false,\r\n \"5e0090f7e9dc277128008b93\": false,\r\n \"63a71ed21031ac76fe773c7f\": true,\r\n \"57347c1124597737fb1379e3\": false,\r\n \"5d1b327086f7742525194449\": false,\r\n \"5e2af41e86f774755a234b67\": false,\r\n \"5afd7ded5acfc40017541f5e\": false,\r\n \"5afd7e095acfc40017541f61\": false,\r\n \"5afd7e445acfc4001637e35a\": false,\r\n \"628a85ee6b1d481ff772e9d5\": false,\r\n \"5d1b392c86f77425243e98fe\": false,\r\n \"5d6e6a05a4b93618084f58d0\": false,\r\n \"5780cf9e2459777df90dcb73\": true,\r\n \"62e910aaf957f2915e0a5e36\": true,\r\n \"62987c658081af308d7558c6\": true,\r\n \"6389c92d52123d5dd17f8876\": true,\r\n \"5737287724597765e1625ae2\": true,\r\n \"5efb0d4f4bc50b58e81710f3\": false,\r\n \"5a0eecf686f7740350630097\": true,\r\n \"56dff216d2720bbd668b4568\": false,\r\n \"5a957c3fa2750c00137fa5f7\": false,\r\n \"6398fd8ad3de3849057f5128\": true,\r\n \"544fb62a4bdc2dfb738b4568\": false,\r\n \"63a39cb1c9b3aa4b61683ee2\": true,\r\n \"5fc64ea372b0dd78d51159dc\": true,\r\n \"66265d7be65f224b2e17c6aa\": true,\r\n \"59e77a2386f7742ee578960a\": false,\r\n \"5c0e842486f77443a74d2976\": true,\r\n \"626a9cb151cb5849f6002890\": true,\r\n \"5a13f35286f77413ef1436b0\": true,\r\n \"5a0eedb386f77403506300be\": true,\r\n \"5a0ec6d286f7742c0b518fb5\": true,\r\n \"61aa5b7db225ac1ead7957c1\": true,\r\n \"5a0eeb1a86f774688b70aa5c\": true,\r\n \"5a144dfd86f77445cb5a0982\": true,\r\n \"5a0f006986f7741ffd2fe484\": true,\r\n \"5a0eeb8e86f77461257ed71a\": true,\r\n \"5d1c819a86f774771b0acd6c\": false,\r\n \"62a09f32621468534a797acb\": false,\r\n \"6655e35b6bc645cb7b059912\": true,\r\n \"66d9f7256916142b3b02276e\": true,\r\n \"66d9f8744827a77e870ecaf1\": true,\r\n \"66d9f7e7099cf6adcc07a369\": true,\r\n \"5a145d7b86f7744cbb6f4a13\": true,\r\n \"5a0f068686f7745b0d4ea242\": true,\r\n \"5a0ea64786f7741707720468\": true,\r\n \"6087e0336d0bd7580617bb7a\": true,\r\n \"6711039f9e648049e50b3307\": true,\r\n \"634959225289190e5e773b3b\": true,\r\n \"5a0ec70e86f7742c0b518fba\": true,\r\n \"61aa81fcb225ac1ead7957c3\": true,\r\n \"59e361e886f774176c10a2a5\": false,\r\n \"66bc98a01a47be227a5e956e\": true,\r\n \"6740987b89d5e1ddc603f4f0\": true,\r\n \"674098588466ebb03408b210\": true,\r\n \"67409848d0b2f8eb9b034db9\": true,\r\n \"674078c4a9c9adf0450d59f9\": true,\r\n \"67449b6c89d5e1ddc603f504\": true,\r\n \"67408903268737ef6908d432\": true,\r\n \"5df8a6a186f77412640e2e80\": true,\r\n \"5df8a72c86f77412640e2e83\": true,\r\n \"5df8a77486f77412672a1e3f\": true,\r\n \"590c35a486f774273531c822\": false,\r\n \"59d790f486f77403cb06aec6\": false,\r\n \"62a0a098de7ac8199358053b\": false,\r\n \"675ac888803644528007b3f6\": false,\r\n \"674da107c512807d1a0e7436\": false,\r\n \"63a898a328e385334e0640a5\": false,\r\n \"675aaa9a3107dac100063331\": false,\r\n \"675ea3d6312c0a5c4e04e317\": false,\r\n \"6389c6463485cf0eeb260715\": false,\r\n \"63a8970d7108f713591149f5\": false,\r\n \"591ee00d86f774592f7b841e\": false,\r\n \"5b30b0dc5acfc400153b7124\": false,\r\n \"573720e02459776143012541\": false,\r\n \"57371e4124597760ff7b25f1\": false,\r\n \"675aaae75a3ab8372d0b02a7\": false,\r\n \"5a43943586f77416ad2f06e2\": false,\r\n \"5a43957686f7742a2c2f11b0\": false,\r\n \"61b9e1aaef9a1b5d6a79899a\": false,\r\n \"675aae1c26dc64e17800fee6\": false,\r\n \"676029a6bdead929d40bc368\": false,\r\n \"57cffd8224597763b03fc609\": false,\r\n \"56def37dd2720bec348b456a\": false,\r\n \"5c9a26332e2216001219ea70\": false,\r\n \"67614b3ab8c060ebb204b106\": false,\r\n \"6761a6f90575f25e020816a4\": false\r\n },\r\n \"Health\": {\r\n \"BodyParts\": {\r\n \"Head\": {\r\n \"Health\": {\r\n \"Current\": 35.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 35.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"Chest\": {\r\n \"Health\": {\r\n \"Current\": 85.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 85.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"Stomach\": {\r\n \"Health\": {\r\n \"Current\": 70.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 70.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"LeftArm\": {\r\n \"Health\": {\r\n \"Current\": 60.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 60.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"RightArm\": {\r\n \"Health\": {\r\n \"Current\": 60.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 60.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"LeftLeg\": {\r\n \"Health\": {\r\n \"Current\": 65.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 65.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n },\r\n \"RightLeg\": {\r\n \"Health\": {\r\n \"Current\": 65.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 65.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Effects\": {}\r\n }\r\n },\r\n \"Energy\": {\r\n \"Current\": 79.38238,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 110.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Hydration\": {\r\n \"Current\": 75.12324,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 100.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Temperature\": {\r\n \"Current\": 36.6,\r\n \"Minimum\": 28.0,\r\n \"Maximum\": 40.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"Poison\": {\r\n \"Current\": 0.0,\r\n \"Minimum\": 0.0,\r\n \"Maximum\": 100.0,\r\n \"OverDamageReceivedMultiplier\": 0.0,\r\n \"EnvironmentDamageMultiplier\": 0.0\r\n },\r\n \"UpdateTime\": null\r\n },\r\n \"Inventory\": {\r\n \"items\": [\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a106\",\r\n \"_tpl\": \"55d7217a4bdc2d86028b456d\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a107\",\r\n \"_tpl\": \"5963866286f7747bf429b572\"\r\n },\r\n {\r\n \"_id\": \"66b0b724b79d70e7f70dab78\",\r\n \"_tpl\": \"602543c13fee350cd564d032\"\r\n },\r\n {\r\n \"_id\": \"676d9683803f4b0a8709c77b\",\r\n \"_tpl\": \"673c7b00cbf4b984b5099181\"\r\n },\r\n {\r\n \"_id\": \"66bb44662492e6db6b1caba1\",\r\n \"_tpl\": \"64381b6e44b37a080d0245b9\"\r\n },\r\n {\r\n \"_id\": \"66bb4a5257f3fc825f328c82\",\r\n \"_tpl\": \"64381b6e44b37a080d0245b9\"\r\n },\r\n {\r\n \"_id\": \"66c5bfd48a24042f1006eadc\",\r\n \"_tpl\": \"66740c3739b9da6ce402ee65\"\r\n },\r\n {\r\n \"_id\": \"66c796575ed30b3e4c0a2851\",\r\n \"_tpl\": \"6542435ea57eea37ed6562f0\"\r\n },\r\n {\r\n \"_id\": \"66ca897f8c07eb59450d8723\",\r\n \"_tpl\": \"65e5972a13227bb7690cea07\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d2\",\r\n \"_tpl\": \"5b0bbe4e5acfc40dc528a72d\",\r\n \"slotId\": \"FirstPrimaryWeapon\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 97.4546661\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa1\",\r\n \"_tpl\": \"674d6121c09f69dfb201a888\",\r\n \"slotId\": \"SecondPrimaryWeapon\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 100.0\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d3\",\r\n \"_tpl\": \"5c012ffc0db834001d23f03f\",\r\n \"slotId\": \"Scabbard\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 90.0,\r\n \"Durability\": 90.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d4\",\r\n \"_tpl\": \"5c1a1e3f2e221602b66cc4c2\",\r\n \"slotId\": \"FaceCover\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d5\",\r\n \"_tpl\": \"5a43957686f7742a2c2f11b0\",\r\n \"slotId\": \"Headwear\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d8\",\r\n \"_tpl\": \"592c2d1a86f7746dbe2af32a\",\r\n \"slotId\": \"TacticalVest\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f3\",\r\n \"_tpl\": \"5c093ca986f7740a1867ab12\",\r\n \"slotId\": \"SecuredContainer\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f4\",\r\n \"_tpl\": \"545cdae64bdc2d39198b4568\",\r\n \"slotId\": \"Backpack\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a102\",\r\n \"_tpl\": \"5b44cd8b86f774503d30cba2\",\r\n \"slotId\": \"ArmorVest\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a103\",\r\n \"_tpl\": \"65e080be269cbd5c5005e529\",\r\n \"slotId\": \"Pockets\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a104\",\r\n \"_tpl\": \"5645bcc04bdc2d363b8b4572\",\r\n \"slotId\": \"Earpiece\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"674731d1170146228c0d222a\",\r\n \"_tpl\": \"59f32c3b86f77472a31742f0\",\r\n \"slotId\": \"Dogtag\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"\",\r\n \"ProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"Nickname\": \"\",\r\n \"Side\": 0,\r\n \"Level\": 0,\r\n \"Time\": \"0001-01-01T00:00:00\",\r\n \"Status\": \"\",\r\n \"KillerAccountId\": \"\",\r\n \"KillerProfileId\": \"\",\r\n \"KillerName\": \"\",\r\n \"WeaponName\": \"\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a105\",\r\n \"_tpl\": \"67614b3ab8c060ebb204b106\",\r\n \"slotId\": \"ArmBand\",\r\n \"parentId\": \"677147dcbe23f047cd02a106\"\r\n },\r\n {\r\n \"_id\": \"6752d81976760bdfcd04002c\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_Gym_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d80affdc8f6873010787\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_PlaceOfFame_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d81091a46f2d53047626\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_Heating_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d8138e5a084a5a0561ab\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_Library_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d81976760bdfcd04002b\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_RestSpace_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d81bd51e30bafb0c8607\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_MedStation_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d81ecb0646bc0306a4d0\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_Kitchen_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d8203c9797ae4c0b99ac\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_BoozeGenerator_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d8203c9797ae4c0b99ad\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_Workbench_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d82db54206f8e3100816\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_IntelligenceCenter_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"6752d82e318aa900b10a50e9\",\r\n \"_tpl\": \"5c94bbff86f7747ee735c08f\",\r\n \"slotId\": \"Statuette_ShootingRange_1\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db1\",\r\n \"_tpl\": \"5aafa857e5b5b00018480968\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 6,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 91.01167,\r\n \"Durability\": 70.06372\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb44662492e6db6b1caba1\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f7\",\r\n \"_tpl\": \"65290f395ae2ae97b80fdf2d\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 7,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 100.0\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb44662492e6db6b1caba1\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afae\",\r\n \"_tpl\": \"65290f395ae2ae97b80fdf2d\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 99.9189148\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb44662492e6db6b1caba1\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b78\",\r\n \"_tpl\": \"627e14b21713922ded6f2c15\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 99.84096\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb44662492e6db6b1caba1\"\r\n },\r\n {\r\n \"_id\": \"6750dfe1ae8f88aca60b4b2d\",\r\n \"_tpl\": \"5e81ebcd8e146c7080625e15\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 10,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 93.0,\r\n \"Durability\": 74.40266\r\n },\r\n \"Foldable\": {\r\n \"Folded\": false\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb4a5257f3fc825f328c82\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f73e\",\r\n \"_tpl\": \"6275303a9f372d6ea97f9ec7\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 6,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 94.0,\r\n \"Durability\": 76.58646\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"single\"\r\n }\r\n },\r\n \"parentId\": \"66bb4a5257f3fc825f328c82\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede59\",\r\n \"_tpl\": \"65290f395ae2ae97b80fdf2d\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 99.55403\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"66bb4a5257f3fc825f328c82\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706372c\",\r\n \"_tpl\": \"65290f395ae2ae97b80fdf2d\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 92.0354843\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"66bb4a5257f3fc825f328c82\"\r\n },\r\n {\r\n \"_id\": \"6741693fbf5b1793870ce04d\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag1\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"67416610ee5a50a02f363dfb\",\r\n \"Nickname\": \"_Sp1der\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 60,\r\n \"Time\": \"2024-11-23T08:30:17.356+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5abcbc27d8ce8700182eceeb ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66e8ef64c1084d130d0dd72d\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag2\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66e8eb51f3ee9b9c01105ef9\",\r\n \"Nickname\": \"Last1k\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 59,\r\n \"Time\": \"2024-09-17T05:40:19.094+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5ac4cd105acfc40016339859 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66e8e5a0859d5edf8d01fdf2\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag3\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66e8e041692019f7761c0dba\",\r\n \"Nickname\": \"Ghoste_YT\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 58,\r\n \"Time\": \"2024-09-17T04:56:31.974+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5ac4cd105acfc40016339859 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66e6efe097c16b0f0a0e06a7\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag4\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66e6ee9867bfb831a71e3314\",\r\n \"Nickname\": \"Gunnerdoor\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 58,\r\n \"Time\": \"2024-09-15T17:28:12.246+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"628a60ae6b1d481ff772e9c8 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"674f36d180ff4612001519d4\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag5\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"674f32d4ce08e339070c8ce5\",\r\n \"Nickname\": \"NakeamG\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 57,\r\n \"Time\": \"2024-12-03T19:34:16.264+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5ac66cb05acfc40198510a10 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66e92e7a3574900f9008c2a3\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag6\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66e92dd97dc87e521d28dcd6\",\r\n \"Nickname\": \"God_Jozin\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 57,\r\n \"Time\": \"2024-09-17T10:22:25.561+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5bb2475ed4351e00853264e3 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6732025b86e69d962d0f4e1e\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag7\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"6731ffaddf41d042503939c5\",\r\n \"Nickname\": \"Narcafro\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 56,\r\n \"Time\": \"2024-11-11T16:00:49.292+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5bb2475ed4351e00853264e3 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66dc64ddd5bc282883128179\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag8\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66dc5647fa9c89a0291a3de0\",\r\n \"Nickname\": \"KwMonolit\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 55,\r\n \"Time\": \"2024-09-07T16:42:28.937+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"58948c8e86f77409493f7266 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c829b6aaa3af85c60b41fb\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag9\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66c826fd5078dc851e05a172\",\r\n \"Nickname\": \"NotJose\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 55,\r\n \"Time\": \"2024-08-23T09:15:31.975+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"65290f395ae2ae97b80fdf2d ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c938b081358c6e990a011c\",\r\n \"_tpl\": \"59f32bb586f774757e1e8442\",\r\n \"slotId\": \"dogtag10\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n },\r\n \"Dogtag\": {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"66c8bc9d440fff2ef714b218\",\r\n \"Nickname\": \"KS_Rico\",\r\n \"Side\": \"Bear\",\r\n \"Level\": 54,\r\n \"Time\": \"2024-08-23T19:56:31.698+03:00\",\r\n \"Status\": \"Killed by\",\r\n \"KillerAccountId\": \"1012053\",\r\n \"KillerProfileId\": \"66b0b724b79d70e7f70daab0\",\r\n \"KillerName\": \"Stealthsuit\",\r\n \"WeaponName\": \"5447a9cd4bdc2dbd208b4567 ShortName\",\r\n \"CarriedByGroupMember\": false\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"675087c2cd1a18e03e09dc5d\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies1\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6752370c81cdc1e2bd0c5650\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies2\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6752370c81cdc1e2bd0c564f\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies3\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6750ed67357c4b1d1610dcc9\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies4\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6750ed67357c4b1d1610dcc5\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies5\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"6750e8353f117dbafb0f35aa\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies6\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d4ba07a6094802af01f9fe\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies7\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d5cd0c21249f93e2029fbb\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies8\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d68e528e02ff27dc0b3eb6\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies9\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"674ef931f22d04c65304b4cd\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies10\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d6c6c5e93d80e04b03b7fc\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies11\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d77603a29d92e68e099374\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies12\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d77603a29d92e68e099375\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies13\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d858bbf4cae3a27a09a16f\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies14\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d87663bcf1c16ce305efdb\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies15\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d88ea19458dafb520c4c30\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies16\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d88638fc2355c4d310f607\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies17\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d89d146fab48fff50dc3b8\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies18\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d8a8e185ca54b8ae05ae07\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"slotId\": \"smallTrophies19\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d6fc0a8507dcbb670d2ed3\",\r\n \"_tpl\": \"5c1d0efb86f7744baf2e7b7b\",\r\n \"slotId\": \"smallTrophies20\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d4a9f3d7c6eb0115085972\",\r\n \"_tpl\": \"5c1d0d6d86f7744bb2683e1f\",\r\n \"slotId\": \"smallTrophies21\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 9\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c5e4bd87c0b1d55e01d7fa\",\r\n \"_tpl\": \"5c1d0dc586f7744baf2e7b79\",\r\n \"slotId\": \"smallTrophies22\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 10\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c5db223d531229e4023dad\",\r\n \"_tpl\": \"5c1d0c5f86f7744bb2683cf0\",\r\n \"slotId\": \"smallTrophies23\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 9\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c5d2f3928d20bf3a0ee6b8\",\r\n \"_tpl\": \"5c1d0f4986f7744bb01837fa\",\r\n \"slotId\": \"smallTrophies24\",\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 46\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c81af32342ae55790aeb9a\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies1\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c9cf5ee336f0590707d7b3\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies2\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c5b8d64c91bf98b60caaac\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies3\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c592b014eefc850909bde3\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies4\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66cd4984a255747776105dc8\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies5\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c592b014eefc850909bda1\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies6\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c7f2e273495a4ad404aab3\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies7\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c81af32342ae55790aeb4a\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies8\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66c64423cf93ef0a140a995e\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies9\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66cdfcab1d5da561b2078dab\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies10\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d554780e1352e8be061fa5\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies11\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d0aea003745a18b20b2169\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies12\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d346ac51bf65ba300dc9d6\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies13\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d60357354e8d48f80a4e0f\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies14\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d55105c95140b103048b7f\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies15\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66ec7583ea0d228c9e033c0c\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies16\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d133f77d57d081ec10dd42\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies17\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d5a196651e54eeb2049b6e\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies18\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66ea92d9f1ae8a72a209a09e\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies19\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d593077482f3cf430c49bd\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies20\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66d133f77d57d081ec10dd18\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies21\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"671fb67e328b37b14f111529\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies22\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"671fb67e328b37b14f111527\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies23\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"672bd76e8c440767c52690c5\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"bigTrophies24\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c796575ed30b3e4c0a2851\"\r\n },\r\n {\r\n \"_id\": \"66ca897f8c07eb59450d8724\",\r\n \"_tpl\": \"55d7217a4bdc2d86028b456d\",\r\n \"slotId\": \"Stand1\",\r\n \"parentId\": \"66ca897f8c07eb59450d8723\"\r\n },\r\n {\r\n \"_id\": \"66cbcee9cc637127230fc5b8\",\r\n \"_tpl\": \"55d7217a4bdc2d86028b456d\",\r\n \"slotId\": \"Stand2\",\r\n \"parentId\": \"66ca897f8c07eb59450d8723\"\r\n },\r\n {\r\n \"_id\": \"66cf2776d069a61b660ae736\",\r\n \"_tpl\": \"55d7217a4bdc2d86028b456d\",\r\n \"slotId\": \"Stand3\",\r\n \"parentId\": \"66ca897f8c07eb59450d8723\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c1\",\r\n \"_tpl\": \"5b7d679f5acfc4001a5c4024\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c5\",\r\n \"_tpl\": \"5b7bef9c5acfc43d102852ec\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c9\",\r\n \"_tpl\": \"5b7bebc85acfc43bca706666\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0cb\",\r\n \"_tpl\": \"5b7be1265acfc400161d0798\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0cc\",\r\n \"_tpl\": \"5b0bc22d5acfc47a8607f085\",\r\n \"slotId\": \"mod_sight_rear\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0cf\",\r\n \"_tpl\": \"5b099bb25acfc400186331e8\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d0\",\r\n \"_tpl\": \"5b7d63b75acfc400170e2f8a\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677149e817d2e7cf8e00003c\",\r\n \"_tpl\": \"58dd3ad986f77403051cba8f\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"677147dcbe23f047cd02a0d2\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa2\",\r\n \"_tpl\": \"63f4da90f31d4a33b87bd054\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa4\",\r\n \"_tpl\": \"628a665a86cbd9750d2ff5e5\",\r\n \"slotId\": \"mod_reciever\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa7\",\r\n \"_tpl\": \"5b0e794b5acfc47a877359b2\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa8\",\r\n \"_tpl\": \"5c0548ae0db834001966a3c2\",\r\n \"slotId\": \"mod_magazine\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa5\",\r\n \"_tpl\": \"5a33b2c9c4a282000c5a9511\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa3\",\r\n \"_tpl\": \"674d5e287075e056160e0176\",\r\n \"slotId\": \"mod_handguard\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677149e817d2e7cf8e00003b\",\r\n \"_tpl\": \"5fbe3ffdf8b6a877a729ea82\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d7\",\r\n \"_tpl\": \"5b7bef9c5acfc43d102852ec\",\r\n \"slotId\": \"2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0d8\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e2\",\r\n \"_tpl\": \"619cbf7d23893217ec30b689\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Tag\": {\r\n \"Color\": 5,\r\n \"Name\": \"Main\"\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e3\",\r\n \"_tpl\": \"5d02797c86f774203f38e30a\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"MedKit\": {\r\n \"HpResource\": 12.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f1\",\r\n \"_tpl\": \"590c60fc86f77412b13fddcf\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Vertical\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f2\",\r\n \"_tpl\": \"590c657e86f77412b013051d\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"MedKit\": {\r\n \"HpResource\": 1406.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c0d\",\r\n \"_tpl\": \"6768c25aa7b238f14a08d3f6\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"StackObjectsCount\": 20,\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c09\",\r\n \"_tpl\": \"5efb0c1bd79ff02a1f5e68d9\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"StackObjectsCount\": 20,\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f3\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c04\",\r\n \"_tpl\": \"6570254fcfc010a0f5006a22\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c5f\",\r\n \"_tpl\": \"5bc9bc53d4351e00367fbcee\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290bb6\",\r\n \"_tpl\": \"656fafe3498d1b7e3e071da4\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Repairable\": {\r\n \"MaxDurability\": 45.0,\r\n \"Durability\": 45.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290bb5\",\r\n \"_tpl\": \"618a431df1eb8e24b8741deb\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c55\",\r\n \"_tpl\": \"5d235a5986f77443f6329bc6\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c57\",\r\n \"_tpl\": \"59faf7ca86f7740dbe19f6c2\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 4,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c59\",\r\n \"_tpl\": \"59faf7ca86f7740dbe19f6c2\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c5b\",\r\n \"_tpl\": \"5e54f62086f774219b0f1937\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c5d\",\r\n \"_tpl\": \"590de71386f774347051a052\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 4,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290bde\",\r\n \"_tpl\": \"618b9643526131765025ab35\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290c0d\",\r\n \"_tpl\": \"5df8a77486f77412672a1e3f\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f4\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f5\",\r\n \"_tpl\": \"656fa8d700d62bcd2e024084\",\r\n \"slotId\": \"Front_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 56.98,\r\n \"Durability\": 54.3535347\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f6\",\r\n \"_tpl\": \"656fa8d700d62bcd2e024084\",\r\n \"slotId\": \"Back_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 44.05,\r\n \"Durability\": 43.48\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f7\",\r\n \"_tpl\": \"6557458f83942d705f0c4962\",\r\n \"slotId\": \"Left_side_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f8\",\r\n \"_tpl\": \"6557458f83942d705f0c4962\",\r\n \"slotId\": \"Right_side_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0f9\",\r\n \"_tpl\": \"6575c2adefc786cd9101a5d9\",\r\n \"slotId\": \"Soft_armor_front\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 52.0,\r\n \"Durability\": 52.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0fa\",\r\n \"_tpl\": \"6575c2be52b7f8c76a05ee25\",\r\n \"slotId\": \"Soft_armor_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 47.71,\r\n \"Durability\": 47.71\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0fb\",\r\n \"_tpl\": \"6575c2cd52b7f8c76a05ee29\",\r\n \"slotId\": \"Soft_armor_left\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 20.0,\r\n \"Durability\": 20.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0fc\",\r\n \"_tpl\": \"6575c2d852b7f8c76a05ee2d\",\r\n \"slotId\": \"soft_armor_right\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 20.0,\r\n \"Durability\": 20.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0fd\",\r\n \"_tpl\": \"6575c2e4efc786cd9101a5dd\",\r\n \"slotId\": \"Collar\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 20.0,\r\n \"Durability\": 20.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0fe\",\r\n \"_tpl\": \"6575c2f7efc786cd9101a5e1\",\r\n \"slotId\": \"Shoulder_l\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 24.0,\r\n \"Durability\": 24.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ff\",\r\n \"_tpl\": \"6575c30352b7f8c76a05ee31\",\r\n \"slotId\": \"Shoulder_r\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 24.0,\r\n \"Durability\": 23.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a100\",\r\n \"_tpl\": \"6575c31b52b7f8c76a05ee35\",\r\n \"slotId\": \"Groin\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 22.0,\r\n \"Durability\": 22.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a101\",\r\n \"_tpl\": \"6575c326c6700bd6b40e8a80\",\r\n \"slotId\": \"Groin_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 13.32,\r\n \"Durability\": 13.08\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a102\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c2\",\r\n \"_tpl\": \"5e023e53d4353e3302577c4c\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 17\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0c5\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c3\",\r\n \"_tpl\": \"58dd3ad986f77403051cba8f\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 1,\r\n \"upd\": {\r\n \"StackObjectsCount\": 5\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0c5\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c7\",\r\n \"_tpl\": \"5b7be4895acfc400170e2dd5\",\r\n \"slotId\": \"mod_mount_000\",\r\n \"parentId\": \"677147dcbe23f047cd02a0c9\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c8\",\r\n \"_tpl\": \"5b7be47f5acfc400170e2dd2\",\r\n \"slotId\": \"mod_mount_001\",\r\n \"parentId\": \"677147dcbe23f047cd02a0c9\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ca\",\r\n \"_tpl\": \"5d026791d7ad1a04a067ea63\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"677147dcbe23f047cd02a0cb\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ce\",\r\n \"_tpl\": \"6567e751a715f85433025998\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"677147dcbe23f047cd02a0cf\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0c6\",\r\n \"_tpl\": \"5b057b4f5acfc4771e1bd3e9\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"677147dcbe23f047cd02a0c7\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0cd\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 24.0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0ce\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa9\",\r\n \"_tpl\": \"5fbe3ffdf8b6a877a729ea82\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 11,\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa8\"\r\n },\r\n {\r\n \"_id\": \"677149e8fb3f2e721e0f6fa6\",\r\n \"_tpl\": \"5a32aa8bc4a2826c6e06d737\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"677149e8fb3f2e721e0f6fa5\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d6\",\r\n \"_tpl\": \"5a6086ea4f39f99cd479502f\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 16\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0d7\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0d9\",\r\n \"_tpl\": \"5c0e531d86f7747fa23f4d42\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0da\",\r\n \"_tpl\": \"5c0e531d86f7747fa23f4d42\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0db\",\r\n \"_tpl\": \"5c0e530286f7747fa1419862\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0dc\",\r\n \"_tpl\": \"637b6251104668754b72f8f9\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0dd\",\r\n \"_tpl\": \"5c0e534186f7747fa1419867\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0de\",\r\n \"_tpl\": \"5c0e534186f7747fa1419867\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0df\",\r\n \"_tpl\": \"5c0e534186f7747fa1419867\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e0\",\r\n \"_tpl\": \"637b6251104668754b72f8f9\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e1\",\r\n \"_tpl\": \"637b6251104668754b72f8f9\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e2\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e6\",\r\n \"_tpl\": \"619cbf9e0a7c3a1a2731940a\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e7\",\r\n \"_tpl\": \"5c1e2a1e86f77431ea0ea84c\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 3\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e8\",\r\n \"_tpl\": \"5c1e2d1f86f77431e9280bee\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 22\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e9\",\r\n \"_tpl\": \"5449016a4bdc2d6f028b456f\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 3,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"StackObjectsCount\": 248246\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ea\",\r\n \"_tpl\": \"64ccc25f95763a1ae376e447\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 1\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0eb\",\r\n \"_tpl\": \"5780cf7f2459777de4559322\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ec\",\r\n \"_tpl\": \"5780d0532459777a5108b9a2\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 5\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ed\",\r\n \"_tpl\": \"6761a6f90575f25e020816a4\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 2,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 1\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ee\",\r\n \"_tpl\": \"5d08d21286f774736e7c94c3\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 0\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0ef\",\r\n \"_tpl\": \"5c12613b86f7743bbe2c3f76\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6d2b\",\r\n \"_tpl\": \"6389c8c5dbfd5e4b95197e6b\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 2,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c53\",\r\n \"_tpl\": \"5d235b4d86f7742e017bc88a\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 3,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0f1\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e4\",\r\n \"_tpl\": \"5c1d0c5f86f7744bb2683cf0\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 7\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e6\"\r\n },\r\n {\r\n \"_id\": \"677147dcbe23f047cd02a0e5\",\r\n \"_tpl\": \"5c1d0d6d86f7744bb2683e1f\",\r\n \"slotId\": \"main\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"Key\": {\r\n \"NumberOfUsages\": 3\r\n }\r\n },\r\n \"parentId\": \"677147dcbe23f047cd02a0e6\"\r\n },\r\n {\r\n \"_id\": \"677149e7fb3f2e721e0f6c05\",\r\n \"_tpl\": \"5a6086ea4f39f99cd479502f\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 20,\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149e7fb3f2e721e0f6c04\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290bdf\",\r\n \"_tpl\": \"618ba27d9008e4636a67f61d\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 26.5\r\n }\r\n },\r\n \"parentId\": \"677149f16597310d96290bde\"\r\n },\r\n {\r\n \"_id\": \"677149f16597310d96290be0\",\r\n \"_tpl\": \"618b9671d14d6d5ab879c5ea\",\r\n \"slotId\": \"mod_mount\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true\r\n },\r\n \"parentId\": \"677149f16597310d96290bde\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027dbc\",\r\n \"_tpl\": \"5addccf45acfc400185c2989\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db1\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db2\",\r\n \"_tpl\": \"5addc7005acfc4001669f275\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db1\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db9\",\r\n \"_tpl\": \"5addbac75acfc400194dbc56\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db1\"\r\n },\r\n {\r\n \"_id\": \"66d044481ff53bf16d0dc428\",\r\n \"_tpl\": \"5d025cc1d7ad1a53845279ef\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f7\"\r\n },\r\n {\r\n \"_id\": \"66d133f77d57d081ec10dcf5\",\r\n \"_tpl\": \"65293c38fc460e50a509cb25\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f7\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f2\",\r\n \"_tpl\": \"6529119424cbe3c74a05e5bb\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f7\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f5\",\r\n \"_tpl\": \"6529348224cbe3c74a05e5c4\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f7\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f6\",\r\n \"_tpl\": \"6529109524cbe3c74a05e5b7\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f7\"\r\n },\r\n {\r\n \"_id\": \"66d2cf73dcea47a5e91025f3\",\r\n \"_tpl\": \"652911675ae2ae97b80fdf3c\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66ce1a26d22817b8ac0f3de9\",\r\n \"_tpl\": \"65293c7a17e14363030ad308\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa8\",\r\n \"_tpl\": \"6529119424cbe3c74a05e5bb\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afab\",\r\n \"_tpl\": \"6529348224cbe3c74a05e5c4\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afac\",\r\n \"_tpl\": \"6529109524cbe3c74a05e5b7\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afad\",\r\n \"_tpl\": \"6529302b8c26af6326029fb7\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"66c93f632da03c79e408afae\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b88\",\r\n \"_tpl\": \"628120fd5631d45211793c9f\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b78\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b79\",\r\n \"_tpl\": \"62811e2510e26c1f344e6554\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"upd\": {\r\n \"Foldable\": {\r\n \"Folded\": false\r\n }\r\n },\r\n \"parentId\": \"66ca06b9ebb18943fb026b78\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b87\",\r\n \"_tpl\": \"62811cd7308cb521f87a8f99\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b78\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db3\",\r\n \"_tpl\": \"5addc7ac5acfc400194dbd90\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db2\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db5\",\r\n \"_tpl\": \"5addbffe5acfc4001714dfac\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db2\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db7\",\r\n \"_tpl\": \"5a7b483fe899ef0016170d15\",\r\n \"slotId\": \"mod_tactical_001\",\r\n \"upd\": {\r\n \"Light\": {\r\n \"IsActive\": false,\r\n \"SelectedMode\": 0\r\n }\r\n },\r\n \"parentId\": \"66ec6c49bed8bafa67027db2\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db8\",\r\n \"_tpl\": \"5a5f1ce64f39f90b401987bc\",\r\n \"slotId\": \"mod_tactical_003\",\r\n \"upd\": {\r\n \"Light\": {\r\n \"IsActive\": true,\r\n \"SelectedMode\": 2\r\n }\r\n },\r\n \"parentId\": \"66ec6c49bed8bafa67027db2\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027dba\",\r\n \"_tpl\": \"5d1f819086f7744b355c219b\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db9\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db4\",\r\n \"_tpl\": \"5addc7db5acfc4001669f279\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66ec6c49bed8bafa67027db3\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027db6\",\r\n \"_tpl\": \"5d1b5e94d7ad1a2b865a96b0\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66ec6c49bed8bafa67027db5\"\r\n },\r\n {\r\n \"_id\": \"66ec6c49bed8bafa67027dbb\",\r\n \"_tpl\": \"5cff9e84d7ad1a049e54ed55\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66ec6c49bed8bafa67027dba\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631ec\",\r\n \"_tpl\": \"6567e751a715f85433025998\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f2\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f0\",\r\n \"_tpl\": \"652910565ae2ae97b80fdf35\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f2\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f1\",\r\n \"_tpl\": \"652910ef50dc782999054b97\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f2\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f4\",\r\n \"_tpl\": \"6529366450dc782999054ba0\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f5\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631eb\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c9c85c97c884b6de0631ec\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631ee\",\r\n \"_tpl\": \"6529113b5ae2ae97b80fdf39\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f0\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631ef\",\r\n \"_tpl\": \"652910bc24cbe3c74a05e5b9\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f0\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631ed\",\r\n \"_tpl\": \"652911e650dc782999054b9d\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c9c85c97c884b6de0631ee\"\r\n },\r\n {\r\n \"_id\": \"66c9c85c97c884b6de0631f3\",\r\n \"_tpl\": \"6529370c405a5f51dd023db8\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c9c85c97c884b6de0631f4\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa2\",\r\n \"_tpl\": \"6567e751a715f85433025998\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"66c93f632da03c79e408afa8\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa6\",\r\n \"_tpl\": \"652910565ae2ae97b80fdf35\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66c93f632da03c79e408afa8\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa7\",\r\n \"_tpl\": \"652910ef50dc782999054b97\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"66c93f632da03c79e408afa8\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afaa\",\r\n \"_tpl\": \"6529366450dc782999054ba0\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66c93f632da03c79e408afab\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa1\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 24.0\r\n }\r\n },\r\n \"parentId\": \"66c93f632da03c79e408afa2\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa4\",\r\n \"_tpl\": \"6529113b5ae2ae97b80fdf39\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c93f632da03c79e408afa6\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa5\",\r\n \"_tpl\": \"652910bc24cbe3c74a05e5b9\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"66c93f632da03c79e408afa6\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa3\",\r\n \"_tpl\": \"652911e650dc782999054b9d\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c93f632da03c79e408afa4\"\r\n },\r\n {\r\n \"_id\": \"66c93f632da03c79e408afa9\",\r\n \"_tpl\": \"6529370c405a5f51dd023db8\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c93f632da03c79e408afaa\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7a\",\r\n \"_tpl\": \"62811f828193841aca4a45c3\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b79\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7b\",\r\n \"_tpl\": \"6281204f308cb521f87a8f9b\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b79\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7c\",\r\n \"_tpl\": \"6281209662cba23f6c4d7a19\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7b\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b81\",\r\n \"_tpl\": \"6281212a09427b40ab14e770\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7b\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b82\",\r\n \"_tpl\": \"62811fbf09427b40ab14e767\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7b\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7d\",\r\n \"_tpl\": \"628120c21d5df4475f46a337\",\r\n \"slotId\": \"mod_mount_000\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7c\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7e\",\r\n \"_tpl\": \"628120d309427b40ab14e76d\",\r\n \"slotId\": \"mod_mount_001\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7c\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b7f\",\r\n \"_tpl\": \"628120d309427b40ab14e76d\",\r\n \"slotId\": \"mod_mount_002\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7c\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b80\",\r\n \"_tpl\": \"628120dd308cb521f87a8fa1\",\r\n \"slotId\": \"mod_mount_003\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b7c\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b83\",\r\n \"_tpl\": \"5d1b5e94d7ad1a2b865a96b0\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 3\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66ca06b9ebb18943fb026b82\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b84\",\r\n \"_tpl\": \"628121434fa03b6b6c35dc6a\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b82\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b85\",\r\n \"_tpl\": \"62812081d23f207deb0ab216\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b84\"\r\n },\r\n {\r\n \"_id\": \"66ca06b9ebb18943fb026b86\",\r\n \"_tpl\": \"628120621d5df4475f46a335\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66ca06b9ebb18943fb026b85\"\r\n },\r\n {\r\n \"_id\": \"6750dfe1ae8f88aca60b4b2a\",\r\n \"_tpl\": \"571659bb2459771fb2755a12\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"6750dfe1ae8f88aca60b4b2d\"\r\n },\r\n {\r\n \"_id\": \"6750dfe1ae8f88aca60b4b2b\",\r\n \"_tpl\": \"6284bd5f95250a29bc628a30\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"6750dfe1ae8f88aca60b4b2d\"\r\n },\r\n {\r\n \"_id\": \"6750dfe1ae8f88aca60b4b2c\",\r\n \"_tpl\": \"5ede474b0c226a66f5402622\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"6750dfe1ae8f88aca60b4b2d\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f736\",\r\n \"_tpl\": \"5bb20e18d4351e00320205d5\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66dada7372029bf1e513f73e\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f737\",\r\n \"_tpl\": \"5d135e83d7ad1a21b83f42d8\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66dada7372029bf1e513f73e\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f73c\",\r\n \"_tpl\": \"627bce33f21bc425b06ab967\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66dada7372029bf1e513f73e\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f73d\",\r\n \"_tpl\": \"6284bd5f95250a29bc628a30\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66dada7372029bf1e513f73e\"\r\n },\r\n {\r\n \"_id\": \"66d1ae29b987b2b64a18e842\",\r\n \"_tpl\": \"55d4b9964bdc2d1d4e8b456e\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66cdedb88140be889e126d9e\",\r\n \"_tpl\": \"65293c38fc460e50a509cb25\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede53\",\r\n \"_tpl\": \"6529119424cbe3c74a05e5bb\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede56\",\r\n \"_tpl\": \"6529348224cbe3c74a05e5c4\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede57\",\r\n \"_tpl\": \"6529109524cbe3c74a05e5b7\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede58\",\r\n \"_tpl\": \"6529302b8c26af6326029fb7\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"66c6a82338563dde3b0ede59\"\r\n },\r\n {\r\n \"_id\": \"66d064cf30015315f60b8abc\",\r\n \"_tpl\": \"6113cce3d92c473c770200c7\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372c\"\r\n },\r\n {\r\n \"_id\": \"66d133f77d57d081ec10dd14\",\r\n \"_tpl\": \"65293c38fc460e50a509cb25\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372c\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706372e\",\r\n \"_tpl\": \"6529119424cbe3c74a05e5bb\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372c\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063739\",\r\n \"_tpl\": \"6529348224cbe3c74a05e5c4\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372c\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706373c\",\r\n \"_tpl\": \"6529109524cbe3c74a05e5b7\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372c\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f738\",\r\n \"_tpl\": \"5f0c892565703e5c461894e9\",\r\n \"slotId\": \"camora_002\",\r\n \"parentId\": \"66dada7372029bf1e513f73c\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f739\",\r\n \"_tpl\": \"5f0c892565703e5c461894e9\",\r\n \"slotId\": \"camora_003\",\r\n \"parentId\": \"66dada7372029bf1e513f73c\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f73a\",\r\n \"_tpl\": \"5f0c892565703e5c461894e9\",\r\n \"slotId\": \"camora_004\",\r\n \"parentId\": \"66dada7372029bf1e513f73c\"\r\n },\r\n {\r\n \"_id\": \"66dada7372029bf1e513f73b\",\r\n \"_tpl\": \"5f0c892565703e5c461894e9\",\r\n \"slotId\": \"camora_005\",\r\n \"parentId\": \"66dada7372029bf1e513f73c\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede68\",\r\n \"_tpl\": \"6567e751a715f85433025998\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"66c6a82338563dde3b0ede53\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede51\",\r\n \"_tpl\": \"652910565ae2ae97b80fdf35\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66c6a82338563dde3b0ede53\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede52\",\r\n \"_tpl\": \"652910ef50dc782999054b97\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"66c6a82338563dde3b0ede53\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede55\",\r\n \"_tpl\": \"6529366450dc782999054ba0\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66c6a82338563dde3b0ede56\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede67\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 14.7\r\n }\r\n },\r\n \"parentId\": \"66c6a82338563dde3b0ede68\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede4f\",\r\n \"_tpl\": \"6529113b5ae2ae97b80fdf39\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c6a82338563dde3b0ede51\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede50\",\r\n \"_tpl\": \"652910bc24cbe3c74a05e5b9\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"66c6a82338563dde3b0ede51\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede4e\",\r\n \"_tpl\": \"652911e650dc782999054b9d\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c6a82338563dde3b0ede4f\"\r\n },\r\n {\r\n \"_id\": \"66c6a82338563dde3b0ede54\",\r\n \"_tpl\": \"6529370c405a5f51dd023db8\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c6a82338563dde3b0ede55\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706372f\",\r\n \"_tpl\": \"6567e751a715f85433025998\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372e\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063731\",\r\n \"_tpl\": \"652910565ae2ae97b80fdf35\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372e\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063735\",\r\n \"_tpl\": \"652910ef50dc782999054b97\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"66c1e71a620fd8ef7706372e\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706373a\",\r\n \"_tpl\": \"6529366450dc782999054ba0\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"66c1e71a620fd8ef77063739\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063730\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 1\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"66c1e71a620fd8ef7706372f\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063732\",\r\n \"_tpl\": \"6529113b5ae2ae97b80fdf39\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c1e71a620fd8ef77063731\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063734\",\r\n \"_tpl\": \"652910bc24cbe3c74a05e5b9\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"66c1e71a620fd8ef77063731\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063736\",\r\n \"_tpl\": \"6269220d70b6c02e665f2635\",\r\n \"slotId\": \"mod_mount_001\",\r\n \"parentId\": \"66c1e71a620fd8ef77063735\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063738\",\r\n \"_tpl\": \"57cffcd624597763133760c5\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"66c1e71a620fd8ef77063735\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063733\",\r\n \"_tpl\": \"652911e650dc782999054b9d\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"66c1e71a620fd8ef77063732\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef77063737\",\r\n \"_tpl\": \"56def37dd2720bec348b456a\",\r\n \"slotId\": \"mod_tactical\",\r\n \"upd\": {\r\n \"Light\": {\r\n \"IsActive\": false,\r\n \"SelectedMode\": 1\r\n }\r\n },\r\n \"parentId\": \"66c1e71a620fd8ef77063736\"\r\n },\r\n {\r\n \"_id\": \"66c1e71a620fd8ef7706373b\",\r\n \"_tpl\": \"6529370c405a5f51dd023db8\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"66c1e71a620fd8ef7706373a\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b297\",\r\n \"_tpl\": \"5abcbc27d8ce8700182eceeb\",\r\n \"slotId\": \"FirstPrimaryWeapon\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 99.65,\r\n \"Durability\": 98.79254\r\n },\r\n \"Foldable\": {\r\n \"Folded\": false\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b299\",\r\n \"_tpl\": \"6570aead4d84f81fd002a033\",\r\n \"slotId\": \"FaceCover\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 29.64,\r\n \"Durability\": 28.8\r\n }\r\n },\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29e\",\r\n \"_tpl\": \"5a7c4850e899ef00150be885\",\r\n \"slotId\": \"Headwear\",\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2ab\",\r\n \"_tpl\": \"628d0618d1ba6e4fa07ce5a4\",\r\n \"slotId\": \"TacticalVest\",\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2e4\",\r\n \"_tpl\": \"5df8a4d786f77412672a1e3b\",\r\n \"slotId\": \"Backpack\",\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"66ca897f8c07eb59450d8725\",\r\n \"_tpl\": \"65e080be269cbd5c5005e529\",\r\n \"slotId\": \"Pockets\",\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2eb\",\r\n \"_tpl\": \"5645bcc04bdc2d363b8b4572\",\r\n \"slotId\": \"Earpiece\",\r\n \"parentId\": \"66ca897f8c07eb59450d8724\"\r\n },\r\n {\r\n \"_id\": \"676f073e44c8a069cd07a4e8\",\r\n \"_tpl\": \"5ac4cd105acfc40016339859\",\r\n \"slotId\": \"FirstPrimaryWeapon\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 100.0,\r\n \"Durability\": 96.98047\r\n },\r\n \"Foldable\": {\r\n \"Folded\": false\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"676efbceba87e60ad600eff5\",\r\n \"_tpl\": \"6570aead4d84f81fd002a033\",\r\n \"slotId\": \"FaceCover\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 30.0,\r\n \"Durability\": 30.0\r\n }\r\n },\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"66ee5449767a6033840353b9\",\r\n \"_tpl\": \"5aa7cfc0e5b5b00015693143\",\r\n \"slotId\": \"Headwear\",\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd88\",\r\n \"_tpl\": \"628dc750b910320f4c27a732\",\r\n \"slotId\": \"TacticalVest\",\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"676f077c987dad5d02046662\",\r\n \"_tpl\": \"6034d103ca006d2dca39b3f0\",\r\n \"slotId\": \"Backpack\",\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"66cbcee9cc637127230fc5b9\",\r\n \"_tpl\": \"65e080be269cbd5c5005e529\",\r\n \"slotId\": \"Pockets\",\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"676eed00d31211294212a7bd\",\r\n \"_tpl\": \"628e4e576d783146b124c64d\",\r\n \"slotId\": \"Earpiece\",\r\n \"parentId\": \"66cbcee9cc637127230fc5b8\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dfe\",\r\n \"_tpl\": \"5bb2475ed4351e00853264e3\",\r\n \"slotId\": \"FirstPrimaryWeapon\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 99.91,\r\n \"Durability\": 99.29095\r\n },\r\n \"FireMode\": {\r\n \"FireMode\": \"fullauto\"\r\n }\r\n },\r\n \"parentId\": \"66cf2776d069a61b660ae736\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e04\",\r\n \"_tpl\": \"5a7c4850e899ef00150be885\",\r\n \"slotId\": \"Headwear\",\r\n \"parentId\": \"66cf2776d069a61b660ae736\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e11\",\r\n \"_tpl\": \"628dc750b910320f4c27a732\",\r\n \"slotId\": \"TacticalVest\",\r\n \"parentId\": \"66cf2776d069a61b660ae736\"\r\n },\r\n {\r\n \"_id\": \"66cf2776d069a61b660ae737\",\r\n \"_tpl\": \"65e080be269cbd5c5005e529\",\r\n \"slotId\": \"Pockets\",\r\n \"parentId\": \"66cf2776d069a61b660ae736\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e2d\",\r\n \"_tpl\": \"628e4e576d783146b124c64d\",\r\n \"slotId\": \"Earpiece\",\r\n \"parentId\": \"66cf2776d069a61b660ae736\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28b\",\r\n \"_tpl\": \"59d64ec286f774171d1e0a42\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28c\",\r\n \"_tpl\": \"62e7e7bbe6da9612f743f1e0\",\r\n \"slotId\": \"mod_launcher\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28d\",\r\n \"_tpl\": \"64942bfc6ee699f6890dff95\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28e\",\r\n \"_tpl\": \"5947fa2486f77425b47c1a9b\",\r\n \"slotId\": \"mod_pistol_grip_akms\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28f\",\r\n \"_tpl\": \"628a665a86cbd9750d2ff5e5\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b290\",\r\n \"_tpl\": \"628a7b23b0f75035732dd565\",\r\n \"slotId\": \"mod_sight_rear\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b292\",\r\n \"_tpl\": \"5abcd472d8ce8700166032ae\",\r\n \"slotId\": \"mod_stock_akms\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b294\",\r\n \"_tpl\": \"5cfe8010d7ad1a59283b14c6\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b295\",\r\n \"_tpl\": \"5a0f096dfcdbcb0176308b15\",\r\n \"slotId\": \"mod_sight_front\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"676fcaf561da5954d3000024\",\r\n \"_tpl\": \"5656d7c34bdc2d9d198b4587\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"_id\": \"676fca26a60e8709bc0b8e30\",\r\n \"_tpl\": \"5c0558060db834001b735271\",\r\n \"slotId\": \"mod_nvg\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n },\r\n \"Togglable\": {\r\n \"On\": true\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29a\",\r\n \"_tpl\": \"5b07dd285acfc4001754240d\",\r\n \"slotId\": \"mod_equipment\",\r\n \"upd\": {\r\n \"Light\": {\r\n \"IsActive\": false,\r\n \"SelectedMode\": 0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29b\",\r\n \"_tpl\": \"657baaf0b7e9ca9a02045c02\",\r\n \"slotId\": \"Helmet_top\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29c\",\r\n \"_tpl\": \"657bab6ec6f689d3a205b85f\",\r\n \"slotId\": \"Helmet_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29d\",\r\n \"_tpl\": \"657babc6f58ba5a6250107a2\",\r\n \"slotId\": \"Helmet_ears\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b29f\",\r\n \"_tpl\": \"656f664200d62bcd2e024077\",\r\n \"slotId\": \"Front_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 45.65,\r\n \"Durability\": 45.38\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a0\",\r\n \"_tpl\": \"657b2797c3dbcb01d60c35ea\",\r\n \"slotId\": \"Back_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 36.69,\r\n \"Durability\": 36.69\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a1\",\r\n \"_tpl\": \"657322988c1cc6dcd9098b2d\",\r\n \"slotId\": \"Soft_armor_front\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 43.37,\r\n \"Durability\": 42.74\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a2\",\r\n \"_tpl\": \"657322a4cea9255e21023651\",\r\n \"slotId\": \"Soft_armor_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 44.52,\r\n \"Durability\": 44.52\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a3\",\r\n \"_tpl\": \"657322acd9d89ff7ac0d961b\",\r\n \"slotId\": \"Soft_armor_left\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 17.52,\r\n \"Durability\": 17.39\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a4\",\r\n \"_tpl\": \"657322b7d9d89ff7ac0d961f\",\r\n \"slotId\": \"soft_armor_right\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 16.91,\r\n \"Durability\": 16.91\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a5\",\r\n \"_tpl\": \"5c0e530286f7747fa1419862\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a8\",\r\n \"_tpl\": \"5cfe8010d7ad1a59283b14c6\",\r\n \"slotId\": \"7\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a9\",\r\n \"_tpl\": \"590c657e86f77412b013051d\",\r\n \"slotId\": \"11\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"MedKit\": {\r\n \"HpResource\": 1395.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2aa\",\r\n \"_tpl\": \"544fb45d4bdc2dee738b4568\",\r\n \"slotId\": \"13\",\r\n \"location\": {\r\n \"x\": 1,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"upd\": {\r\n \"MedKit\": {\r\n \"HpResource\": 331.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2e8\",\r\n \"_tpl\": \"5710c24ad2720bc3458b45a3\",\r\n \"slotId\": \"pocket2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"66ca897f8c07eb59450d8725\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2e9\",\r\n \"_tpl\": \"5710c24ad2720bc3458b45a3\",\r\n \"slotId\": \"pocket2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 1,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"66ca897f8c07eb59450d8725\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b28a\",\r\n \"_tpl\": \"6389f1dfc879ce63f72fc43e\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"674b36db78c1463fea16b28b\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b291\",\r\n \"_tpl\": \"5a0c59791526d8dba737bba7\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"674b36db78c1463fea16b292\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b293\",\r\n \"_tpl\": \"5656d7c34bdc2d9d198b4587\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 50\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b294\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b288\",\r\n \"_tpl\": \"618b9643526131765025ab35\",\r\n \"slotId\": \"mod_scope\",\r\n \"parentId\": \"674b36db78c1463fea16b28a\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b289\",\r\n \"_tpl\": \"5a9d6d00a2750c5c985b5305\",\r\n \"slotId\": \"mod_mount_002\",\r\n \"parentId\": \"674b36db78c1463fea16b28a\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b286\",\r\n \"_tpl\": \"6567e7681265c8a131069b0f\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 24.0\r\n }\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b288\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b287\",\r\n \"_tpl\": \"618b9671d14d6d5ab879c5ea\",\r\n \"slotId\": \"mod_mount\",\r\n \"parentId\": \"674b36db78c1463fea16b288\"\r\n },\r\n {\r\n \"_id\": \"674b36db78c1463fea16b2a6\",\r\n \"_tpl\": \"5656d7c34bdc2d9d198b4587\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 33\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2a8\"\r\n },\r\n {\r\n \"_id\": \"676fcef901000f7155840601\",\r\n \"_tpl\": \"601aa3d2b2bcb34913271e6d\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 1,\r\n \"upd\": {\r\n \"StackObjectsCount\": 17\r\n },\r\n \"parentId\": \"674b36db78c1463fea16b2a8\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c3\",\r\n \"_tpl\": \"59c6633186f7740cf0493bb9\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19ca\",\r\n \"_tpl\": \"5649ab884bdc2ded0b8b457f\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19cb\",\r\n \"_tpl\": \"5947f92f86f77427344a76b1\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19cc\",\r\n \"_tpl\": \"5d2c76ed48f03532f2136169\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c9\",\r\n \"_tpl\": \"5beec8b20db834001961942a\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"676f0f276c5aa5fe3b000051\",\r\n \"_tpl\": \"56dff2ced2720bb4668b4567\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"676f073e44c8a069cd07a4e8\"\r\n },\r\n {\r\n \"_id\": \"66ee4730e81ceef7780719c8\",\r\n \"_tpl\": \"5a16b8a9fcdbcb00165aa6ca\",\r\n \"slotId\": \"mod_nvg\",\r\n \"parentId\": \"66ee5449767a6033840353b9\"\r\n },\r\n {\r\n \"_id\": \"66ee5449767a6033840353ba\",\r\n \"_tpl\": \"657baaf0b7e9ca9a02045c02\",\r\n \"slotId\": \"Helmet_top\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 12.5200882\r\n }\r\n },\r\n \"parentId\": \"66ee5449767a6033840353b9\"\r\n },\r\n {\r\n \"_id\": \"66ee5449767a6033840353bb\",\r\n \"_tpl\": \"657bab6ec6f689d3a205b85f\",\r\n \"slotId\": \"Helmet_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"66ee5449767a6033840353b9\"\r\n },\r\n {\r\n \"_id\": \"66ee5449767a6033840353bc\",\r\n \"_tpl\": \"657babc6f58ba5a6250107a2\",\r\n \"slotId\": \"Helmet_ears\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"66ee5449767a6033840353b9\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8e\",\r\n \"_tpl\": \"656fa25e94b480b8a500c0e0\",\r\n \"slotId\": \"Front_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 55.0,\r\n \"Durability\": 18.8200684\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8f\",\r\n \"_tpl\": \"656fa25e94b480b8a500c0e0\",\r\n \"slotId\": \"Back_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 55.0,\r\n \"Durability\": 49.3306122\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd89\",\r\n \"_tpl\": \"6572f1ca4c8d903cc60c874e\",\r\n \"slotId\": \"Soft_armor_front\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 36.0,\r\n \"Durability\": 34.0\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8a\",\r\n \"_tpl\": \"6572f1d60103b4a3270332db\",\r\n \"slotId\": \"Soft_armor_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 36.0,\r\n \"Durability\": 36.0\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8b\",\r\n \"_tpl\": \"6572f1e10103b4a3270332df\",\r\n \"slotId\": \"Soft_armor_left\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 9.0,\r\n \"Durability\": 8.0\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8c\",\r\n \"_tpl\": \"6572f1edea457732140ce875\",\r\n \"slotId\": \"soft_armor_right\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 9.0,\r\n \"Durability\": 9.0\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0737121416ef5009bd8d\",\r\n \"_tpl\": \"6572f1f7ea457732140ce879\",\r\n \"slotId\": \"Groin\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 18.0,\r\n \"Durability\": 16.0\r\n }\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c6\",\r\n \"_tpl\": \"55d480c04bdc2d1d4e8b456a\",\r\n \"slotId\": \"1\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c7\",\r\n \"_tpl\": \"55d480c04bdc2d1d4e8b456a\",\r\n \"slotId\": \"2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"676f0737121416ef5009bd88\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c5\",\r\n \"_tpl\": \"55d480c04bdc2d1d4e8b456a\",\r\n \"slotId\": \"pocket2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"66cbcee9cc637127230fc5b9\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c8\",\r\n \"_tpl\": \"55d480c04bdc2d1d4e8b456a\",\r\n \"slotId\": \"pocket3\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"66cbcee9cc637127230fc5b9\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c2\",\r\n \"_tpl\": \"5cbda392ae92155f3c17c39f\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"676f0746263281a3000f19c3\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19cf\",\r\n \"_tpl\": \"57ac965c24597706be5f975c\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0,\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 1,\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"676f0746263281a3000f19cc\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19cd\",\r\n \"_tpl\": \"5fbbaa86f9986c4cff3fe5f6\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"676f0746263281a3000f19c9\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19ce\",\r\n \"_tpl\": \"59fc48e086f77463b1118392\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"676f0746263281a3000f19c2\"\r\n },\r\n {\r\n \"_id\": \"66ee4729691f9e408a063c39\",\r\n \"_tpl\": \"5c11046cd174af02a012e42b\",\r\n \"slotId\": \"mod_nvg\",\r\n \"parentId\": \"66ee4730e81ceef7780719c8\"\r\n },\r\n {\r\n \"_id\": \"66ee472099030f63220029d9\",\r\n \"_tpl\": \"5c110624d174af029e69734c\",\r\n \"slotId\": \"mod_nvg\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n },\r\n \"Togglable\": {\r\n \"On\": true\r\n }\r\n },\r\n \"parentId\": \"66ee4729691f9e408a063c39\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19bf\",\r\n \"_tpl\": \"56dff2ced2720bb4668b4567\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 4\r\n },\r\n \"parentId\": \"676f0746263281a3000f19c6\"\r\n },\r\n {\r\n \"_id\": \"676f0746263281a3000f19c0\",\r\n \"_tpl\": \"56dff2ced2720bb4668b4567\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 17\r\n },\r\n \"parentId\": \"676f0746263281a3000f19c8\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dee\",\r\n \"_tpl\": \"5d025cc1d7ad1a53845279ef\",\r\n \"slotId\": \"mod_pistol_grip\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df1\",\r\n \"_tpl\": \"5c6592372e221600133e47d7\",\r\n \"slotId\": \"mod_magazine\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df9\",\r\n \"_tpl\": \"5bb20d53d4351e4502010a69\",\r\n \"slotId\": \"mod_reciever\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dfb\",\r\n \"_tpl\": \"5bb20e58d4351e00320205d7\",\r\n \"slotId\": \"mod_stock\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dfc\",\r\n \"_tpl\": \"5b2240bf5acfc40dc528af69\",\r\n \"slotId\": \"mod_charge\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dfd\",\r\n \"_tpl\": \"601949593ae8f707c4608daa\",\r\n \"slotId\": \"patron_in_weapon\",\r\n \"parentId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e00\",\r\n \"_tpl\": \"6272370ee4013c5d7e31f418\",\r\n \"slotId\": \"mod_equipment\",\r\n \"upd\": {\r\n \"Light\": {\r\n \"IsActive\": true,\r\n \"SelectedMode\": 0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e04\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e01\",\r\n \"_tpl\": \"657baaf0b7e9ca9a02045c02\",\r\n \"slotId\": \"Helmet_top\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e04\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e02\",\r\n \"_tpl\": \"657bab6ec6f689d3a205b85f\",\r\n \"slotId\": \"Helmet_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e04\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e03\",\r\n \"_tpl\": \"657babc6f58ba5a6250107a2\",\r\n \"slotId\": \"Helmet_ears\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e04\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e05\",\r\n \"_tpl\": \"656fa99800d62bcd2e024088\",\r\n \"slotId\": \"Front_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 51.1,\r\n \"Durability\": 47.021946\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e06\",\r\n \"_tpl\": \"656fa8d700d62bcd2e024084\",\r\n \"slotId\": \"Back_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 45.31,\r\n \"Durability\": 44.1\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e07\",\r\n \"_tpl\": \"6557458f83942d705f0c4962\",\r\n \"slotId\": \"Left_side_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 7.87,\r\n \"Durability\": 5.86\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e08\",\r\n \"_tpl\": \"6557458f83942d705f0c4962\",\r\n \"slotId\": \"Right_side_plate\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 15.0,\r\n \"Durability\": 15.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e09\",\r\n \"_tpl\": \"6572f1ca4c8d903cc60c874e\",\r\n \"slotId\": \"Soft_armor_front\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 26.31,\r\n \"Durability\": 26.31\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0a\",\r\n \"_tpl\": \"6572f1d60103b4a3270332db\",\r\n \"slotId\": \"Soft_armor_back\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 34.26,\r\n \"Durability\": 34.26\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0b\",\r\n \"_tpl\": \"6572f1e10103b4a3270332df\",\r\n \"slotId\": \"Soft_armor_left\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 9.0,\r\n \"Durability\": 9.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0c\",\r\n \"_tpl\": \"6572f1edea457732140ce875\",\r\n \"slotId\": \"soft_armor_right\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 9.0,\r\n \"Durability\": 9.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0d\",\r\n \"_tpl\": \"6572f1f7ea457732140ce879\",\r\n \"slotId\": \"Groin\",\r\n \"upd\": {\r\n \"Repairable\": {\r\n \"MaxDurability\": 18.0,\r\n \"Durability\": 18.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e10\",\r\n \"_tpl\": \"5c6592372e221600133e47d7\",\r\n \"slotId\": \"2\",\r\n \"location\": {\r\n \"x\": 0,\r\n \"y\": 0,\r\n \"r\": \"Horizontal\"\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110def\",\r\n \"_tpl\": \"601949593ae8f707c4608daa\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 60\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110df1\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df0\",\r\n \"_tpl\": \"601949593ae8f707c4608daa\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 1,\r\n \"upd\": {\r\n \"StackObjectsCount\": 40\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110df1\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df2\",\r\n \"_tpl\": \"64785e7c19d732620e045e15\",\r\n \"slotId\": \"mod_scope\",\r\n \"upd\": {\r\n \"Sight\": {\r\n \"ScopesCurrentCalibPointIndexes\": [\r\n 0\r\n ],\r\n \"ScopesSelectedModes\": [\r\n 0\r\n ],\r\n \"SelectedScope\": 0,\r\n \"ScopeZoomValue\": 0.0\r\n }\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110df9\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df5\",\r\n \"_tpl\": \"5bb20dadd4351e00367faeff\",\r\n \"slotId\": \"mod_barrel\",\r\n \"parentId\": \"6749f59b58f9032dca110df9\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df8\",\r\n \"_tpl\": \"5c6d11152e2216000f2003e7\",\r\n \"slotId\": \"mod_handguard\",\r\n \"parentId\": \"6749f59b58f9032dca110df9\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110dfa\",\r\n \"_tpl\": \"5d44069ca4b9361ebd26fc37\",\r\n \"slotId\": \"mod_stock_000\",\r\n \"parentId\": \"6749f59b58f9032dca110dfb\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df3\",\r\n \"_tpl\": \"5cf6937cd7f00c056c53fb39\",\r\n \"slotId\": \"mod_muzzle\",\r\n \"parentId\": \"6749f59b58f9032dca110df5\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df4\",\r\n \"_tpl\": \"5bb20dcad4351e3bac1212da\",\r\n \"slotId\": \"mod_gas_block\",\r\n \"parentId\": \"6749f59b58f9032dca110df5\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df7\",\r\n \"_tpl\": \"5b7be4895acfc400170e2dd5\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"6749f59b58f9032dca110df8\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110df6\",\r\n \"_tpl\": \"5b057b4f5acfc4771e1bd3e9\",\r\n \"slotId\": \"mod_foregrip\",\r\n \"parentId\": \"6749f59b58f9032dca110df7\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0e\",\r\n \"_tpl\": \"601949593ae8f707c4608daa\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 0,\r\n \"upd\": {\r\n \"StackObjectsCount\": 60\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e10\"\r\n },\r\n {\r\n \"_id\": \"6749f59b58f9032dca110e0f\",\r\n \"_tpl\": \"601949593ae8f707c4608daa\",\r\n \"slotId\": \"cartridges\",\r\n \"location\": 1,\r\n \"upd\": {\r\n \"StackObjectsCount\": 40\r\n },\r\n \"parentId\": \"6749f59b58f9032dca110e10\"\r\n }\r\n ],\r\n \"equipment\": \"677147dcbe23f047cd02a106\",\r\n \"questRaidItems\": \"677147dcbe23f047cd02a107\",\r\n \"sortingTable\": \"66b0b724b79d70e7f70dab78\",\r\n \"hideoutAreaStashes\": {\r\n \"WeaponStand\": \"66bb44662492e6db6b1caba1\",\r\n \"WeaponStandSecondary\": \"66bb4a5257f3fc825f328c82\",\r\n \"CircleOfCultists\": \"66c5bfd48a24042f1006eadc\",\r\n \"PlaceOfFame\": \"66c796575ed30b3e4c0a2851\",\r\n \"EquipmentPresetsStand\": \"66ca897f8c07eb59450d8723\"\r\n },\r\n \"fastPanel\": {},\r\n \"favoriteItems\": [],\r\n \"hideoutCustomizationStashId\": \"676d9683803f4b0a8709c77b\"\r\n },\r\n \"InsuredItems\": [\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66c031b0f1f8aa53b8044747\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ce1a26d22817b8ac0f3de9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66d133f77d57d081ec10dcf5\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66d133f77d57d081ec10dd14\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec6c49bed8bafa67027dab\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec6c49bed8bafa67027dac\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec6c49bed8bafa67027dad\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ed1d3f82b1a4a3ad0cf2b9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ed1d3f82b1a4a3ad0cf2ba\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ed1d3f82b1a4a3ad0cf2bb\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ecfc1dae4264b98e0ec849\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ecfc1dae4264b98e0ec84a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ecfc1dae4264b98e0ec84b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec7b2905006fa196056d93\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec7b2905006fa196056d94\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ec7b2905006fa196056d95\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee472099030f63220029d8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee4726a08675c3980a8bea\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee472e152eb0b9340f4c2b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee472099030f63220029db\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee4726a08675c3980a8be9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee472e152eb0b9340f4c2a\"\r\n },\r\n {\r\n \"tid\": \"54cb50c76803fa8b248b4571\",\r\n \"itemId\": \"66efc77cb02cebec090c67a1\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f7d9a6a162380edf0e6100\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f7d9a6a162380edf0e6103\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf478\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf479\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47e\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66f8fc155a253e52420bf47f\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6724d8980d49aa2e840ae246\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6724d8980d49aa2e840ae248\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee60fc0fd73b4b900af356\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40e\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6731f0e2624d8fa66013c40f\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"673230d0c1d73922a009394a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"673230d0c1d73922a009394b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"673230d0c1d73922a009394c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674156de120795aad00d3f0f\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674156de120795aad00d3f10\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674156de120795aad00d3f11\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674156de120795aad00d3f12\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674156de120795aad00d3f13\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"67415deb03be2456d6185cb3\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b1\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b2\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b3\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b4\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b5\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b6\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b7\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546d2ee82056a40ea247\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546d2ee82056a40ea248\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546d2ee82056a40ea249\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546d2ee82056a40ea24a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546eac49d3f38301fd50\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546eac49d3f38301fd51\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546eac49d3f38301fd52\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546eac49d3f38301fd53\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546efc5643300b06a8e8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546efc5643300b06a8e9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546efc5643300b06a8ea\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee546efc5643300b06a8eb\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee54718759e5c5b00035f6\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee54718759e5c5b00035f7\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee54718759e5c5b00035f8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee54718759e5c5b00035f9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f3b45f34eb21201735fe\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110dee\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df1\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df2\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df3\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df4\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df5\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df6\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df7\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110df9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110dfa\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110dfb\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110dfc\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110dfe\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e00\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e01\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e02\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e03\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e04\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e06\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e07\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e08\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e09\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e0a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e0b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e0c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e0d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e10\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e11\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"6749f59b58f9032dca110e2d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674a0c66d5665555d80b350a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee472099030f63220029d9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee4729691f9e408a063c39\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee4730e81ceef7780719c8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353b9\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353ba\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353bb\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"66ee5449767a6033840353bc\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b286\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b287\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b288\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b289\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28e\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b28f\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b290\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b291\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b292\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b294\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b295\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b297\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b299\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29a\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29b\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29c\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29d\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29e\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b29f\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a0\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a1\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a2\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a3\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a4\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2a8\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2ab\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2e4\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"674b36db78c1463fea16b2eb\"\r\n },\r\n {\r\n \"tid\": \"54cb57776803fa99248b456e\",\r\n \"itemId\": \"676fca26a60e8709bc0b8e30\"\r\n }\r\n ],\r\n \"Skills\": {\r\n \"Common\": [\r\n {\r\n \"Id\": \"BotReload\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": -2147483648\r\n },\r\n {\r\n \"Id\": \"BotSound\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": -2147483648\r\n },\r\n {\r\n \"Id\": \"Endurance\",\r\n \"Progress\": 5100.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1726973894\r\n },\r\n {\r\n \"Id\": \"Strength\",\r\n \"Progress\": 5100.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1726903897\r\n },\r\n {\r\n \"Id\": \"Vitality\",\r\n \"Progress\": 2747.3,\r\n \"PointsEarnedDuringSession\": 0.236880854,\r\n \"LastAccess\": 1735478068\r\n },\r\n {\r\n \"Id\": \"Health\",\r\n \"Progress\": 4435.4624,\r\n \"PointsEarnedDuringSession\": 0.0473761745,\r\n \"LastAccess\": 1735478068\r\n },\r\n {\r\n \"Id\": \"StressResistance\",\r\n \"Progress\": 3226.612,\r\n \"PointsEarnedDuringSession\": 0.53196007,\r\n \"LastAccess\": 1735478553\r\n },\r\n {\r\n \"Id\": \"Metabolism\",\r\n \"Progress\": 5100.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735402792\r\n },\r\n {\r\n \"Id\": \"Immunity\",\r\n \"Progress\": 1184.29016,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735469619\r\n },\r\n {\r\n \"Id\": \"Perception\",\r\n \"Progress\": 5100.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1731354714\r\n },\r\n {\r\n \"Id\": \"Intellect\",\r\n \"Progress\": 1134.67,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735477649\r\n },\r\n {\r\n \"Id\": \"Attention\",\r\n \"Progress\": 4690.85,\r\n \"PointsEarnedDuringSession\": 2.92584014,\r\n \"LastAccess\": 1735478430\r\n },\r\n {\r\n \"Id\": \"Charisma\",\r\n \"Progress\": 3617.57446,\r\n \"PointsEarnedDuringSession\": 0.851031959,\r\n \"LastAccess\": 1735478430\r\n },\r\n {\r\n \"Id\": \"Pistol\",\r\n \"Progress\": 744.3186,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1731126232\r\n },\r\n {\r\n \"Id\": \"Revolver\",\r\n \"Progress\": 24.7209663,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1725618726\r\n },\r\n {\r\n \"Id\": \"SMG\",\r\n \"Progress\": 865.4693,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1733241270\r\n },\r\n {\r\n \"Id\": \"Assault\",\r\n \"Progress\": 4598.51172,\r\n \"PointsEarnedDuringSession\": 2.46,\r\n \"LastAccess\": 1735478200\r\n },\r\n {\r\n \"Id\": \"Shotgun\",\r\n \"Progress\": 762.6406,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735390800\r\n },\r\n {\r\n \"Id\": \"Sniper\",\r\n \"Progress\": 1761.9043,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735411896\r\n },\r\n {\r\n \"Id\": \"LMG\",\r\n \"Progress\": 483.724,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735326558\r\n },\r\n {\r\n \"Id\": \"HMG\",\r\n \"Progress\": 114.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1732897955\r\n },\r\n {\r\n \"Id\": \"Launcher\",\r\n \"Progress\": 9.420527,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1731620329\r\n },\r\n {\r\n \"Id\": \"AttachedLauncher\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"Throwing\",\r\n \"Progress\": 417.15332,\r\n \"PointsEarnedDuringSession\": 0.52,\r\n \"LastAccess\": 1735478238\r\n },\r\n {\r\n \"Id\": \"Melee\",\r\n \"Progress\": 551.0447,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1731176642\r\n },\r\n {\r\n \"Id\": \"DMR\",\r\n \"Progress\": 785.892,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1733353112\r\n },\r\n {\r\n \"Id\": \"AimDrills\",\r\n \"Progress\": 2086.76855,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735477184\r\n },\r\n {\r\n \"Id\": \"TroubleShooting\",\r\n \"Progress\": 616.798035,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735314362\r\n },\r\n {\r\n \"Id\": \"Surgery\",\r\n \"Progress\": 2006.88684,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735390933\r\n },\r\n {\r\n \"Id\": \"CovertMovement\",\r\n \"Progress\": 93.94295,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735387832\r\n },\r\n {\r\n \"Id\": \"Search\",\r\n \"Progress\": 3751.14941,\r\n \"PointsEarnedDuringSession\": 2.43024039,\r\n \"LastAccess\": 1735478231\r\n },\r\n {\r\n \"Id\": \"MagDrills\",\r\n \"Progress\": 1706.229,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735477737\r\n },\r\n {\r\n \"Id\": \"FieldMedicine\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"FirstAid\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"LightVests\",\r\n \"Progress\": 1001.20483,\r\n \"PointsEarnedDuringSession\": 0.026,\r\n \"LastAccess\": 1735477812\r\n },\r\n {\r\n \"Id\": \"HeavyVests\",\r\n \"Progress\": 1035.24951,\r\n \"PointsEarnedDuringSession\": 0.0341440365,\r\n \"LastAccess\": 1735478068\r\n },\r\n {\r\n \"Id\": \"NightOps\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"SilentOps\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"WeaponTreatment\",\r\n \"Progress\": 1342.67,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735385311\r\n },\r\n {\r\n \"Id\": \"Auctions\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"Cleanoperations\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"Shadowconnections\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"Taskperformance\",\r\n \"Progress\": 0.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 0\r\n },\r\n {\r\n \"Id\": \"Crafting\",\r\n \"Progress\": 2344.46,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735477649\r\n },\r\n {\r\n \"Id\": \"HideoutManagement\",\r\n \"Progress\": 5100.0,\r\n \"PointsEarnedDuringSession\": 0.0,\r\n \"LastAccess\": 1735477285\r\n }\r\n ],\r\n \"Mastering\": [\r\n {\r\n \"Id\": \"AKM\",\r\n \"Progress\": 2206.0\r\n },\r\n {\r\n \"Id\": \"SKS\",\r\n \"Progress\": 9.0\r\n },\r\n {\r\n \"Id\": \"M4\",\r\n \"Progress\": 5100.0\r\n },\r\n {\r\n \"Id\": \"AK74\",\r\n \"Progress\": 5100.0\r\n },\r\n {\r\n \"Id\": \"PP-91\",\r\n \"Progress\": 58.0\r\n },\r\n {\r\n \"Id\": \"AKSU\",\r\n \"Progress\": 4022.0\r\n },\r\n {\r\n \"Id\": \"P226\",\r\n \"Progress\": 29.0\r\n },\r\n {\r\n \"Id\": \"SVD\",\r\n \"Progress\": 201.0\r\n },\r\n {\r\n \"Id\": \"SR2\",\r\n \"Progress\": 626.0\r\n },\r\n {\r\n \"Id\": \"MP153\",\r\n \"Progress\": 2370.0\r\n },\r\n {\r\n \"Id\": \"VSS\",\r\n \"Progress\": 620.0\r\n },\r\n {\r\n \"Id\": \"MCX\",\r\n \"Progress\": 1865.0\r\n },\r\n {\r\n \"Id\": \"PP19\",\r\n \"Progress\": 55.0\r\n },\r\n {\r\n \"Id\": \"G36\",\r\n \"Progress\": 1334.0\r\n },\r\n {\r\n \"Id\": \"PM\",\r\n \"Progress\": 0.0\r\n },\r\n {\r\n \"Id\": \"UMP45\",\r\n \"Progress\": 274.0\r\n },\r\n {\r\n \"Id\": \"r700\",\r\n \"Progress\": 96.0\r\n },\r\n {\r\n \"Id\": \"SPEAR\",\r\n \"Progress\": 1593.0\r\n },\r\n {\r\n \"Id\": \"VSK94\",\r\n \"Progress\": 364.0\r\n },\r\n {\r\n \"Id\": \"VPO_215\",\r\n \"Progress\": 53.0\r\n },\r\n {\r\n \"Id\": \"RFB\",\r\n \"Progress\": 72.0\r\n },\r\n {\r\n \"Id\": \"AUG\",\r\n \"Progress\": 82.0\r\n },\r\n {\r\n \"Id\": \"MDR\",\r\n \"Progress\": 1692.0\r\n },\r\n {\r\n \"Id\": \"M870\",\r\n \"Progress\": 474.0\r\n },\r\n {\r\n \"Id\": \"M590\",\r\n \"Progress\": 6.0\r\n },\r\n {\r\n \"Id\": \"MP133\",\r\n \"Progress\": 274.0\r\n },\r\n {\r\n \"Id\": \"MP5\",\r\n \"Progress\": 139.0\r\n },\r\n {\r\n \"Id\": \"PL15\",\r\n \"Progress\": 7.0\r\n },\r\n {\r\n \"Id\": \"ASH12\",\r\n \"Progress\": 154.0\r\n },\r\n {\r\n \"Id\": \"RPD\",\r\n \"Progress\": 689.0\r\n },\r\n {\r\n \"Id\": \"m9\",\r\n \"Progress\": 15.0\r\n },\r\n {\r\n \"Id\": \"mosin\",\r\n \"Progress\": 61.0\r\n },\r\n {\r\n \"Id\": \"SV98\",\r\n \"Progress\": 167.0\r\n },\r\n {\r\n \"Id\": \"57\",\r\n \"Progress\": 265.0\r\n },\r\n {\r\n \"Id\": \"SA-58\",\r\n \"Progress\": 554.0\r\n },\r\n {\r\n \"Id\": \"mp7\",\r\n \"Progress\": 421.0\r\n },\r\n {\r\n \"Id\": \"MK47\",\r\n \"Progress\": 555.0\r\n },\r\n {\r\n \"Id\": \"Mk17\",\r\n \"Progress\": 1955.0\r\n },\r\n {\r\n \"Id\": \"MPX\",\r\n \"Progress\": 551.0\r\n },\r\n {\r\n \"Id\": \"DVL\",\r\n \"Progress\": 154.0\r\n },\r\n {\r\n \"Id\": \"G28\",\r\n \"Progress\": 89.0\r\n },\r\n {\r\n \"Id\": \"M1A\",\r\n \"Progress\": 1043.0\r\n },\r\n {\r\n \"Id\": \"m1911\",\r\n \"Progress\": 11.0\r\n },\r\n {\r\n \"Id\": \"MP443\",\r\n \"Progress\": 3.0\r\n },\r\n {\r\n \"Id\": \"DEAGLE\",\r\n \"Progress\": 34.0\r\n },\r\n {\r\n \"Id\": \"SR25\",\r\n \"Progress\": 349.0\r\n },\r\n {\r\n \"Id\": \"M60\",\r\n \"Progress\": 283.0\r\n },\r\n {\r\n \"Id\": \"RSH12\",\r\n \"Progress\": 0.0\r\n },\r\n {\r\n \"Id\": \"SVT-40\",\r\n \"Progress\": 8.0\r\n },\r\n {\r\n \"Id\": \"UZI-PRO\",\r\n \"Progress\": 551.0\r\n },\r\n {\r\n \"Id\": \"RHINO\",\r\n \"Progress\": 0.0\r\n },\r\n {\r\n \"Id\": \"AXMC\",\r\n \"Progress\": 55.0\r\n },\r\n {\r\n \"Id\": \"P90\",\r\n \"Progress\": 19.0\r\n },\r\n {\r\n \"Id\": \"GLOCK17\",\r\n \"Progress\": 75.0\r\n },\r\n {\r\n \"Id\": \"PPSH\",\r\n \"Progress\": 7.0\r\n },\r\n {\r\n \"Id\": \"SAIGA\",\r\n \"Progress\": 30.0\r\n },\r\n {\r\n \"Id\": \"MP9\",\r\n \"Progress\": 29.0\r\n },\r\n {\r\n \"Id\": \"MR43\",\r\n \"Progress\": 11.0\r\n },\r\n {\r\n \"Id\": \"UZI\",\r\n \"Progress\": 12.0\r\n },\r\n {\r\n \"Id\": \"VPO101\",\r\n \"Progress\": 1.0\r\n },\r\n {\r\n \"Id\": \"TOZ106\",\r\n \"Progress\": 0.0\r\n },\r\n {\r\n \"Id\": \"PKM\",\r\n \"Progress\": 9.0\r\n },\r\n {\r\n \"Id\": \"PB\",\r\n \"Progress\": 2.0\r\n },\r\n {\r\n \"Id\": \"USP\",\r\n \"Progress\": 0.0\r\n },\r\n {\r\n \"Id\": \"R11SRASS\",\r\n \"Progress\": 23.0\r\n },\r\n {\r\n \"Id\": \"M3S90\",\r\n \"Progress\": 119.0\r\n },\r\n {\r\n \"Id\": \"T5000\",\r\n \"Progress\": 1.0\r\n },\r\n {\r\n \"Id\": \"MP-18\",\r\n \"Progress\": 5.0\r\n },\r\n {\r\n \"Id\": \"Mk18\",\r\n \"Progress\": 34.0\r\n },\r\n {\r\n \"Id\": \"sr1mp\",\r\n \"Progress\": 6.0\r\n },\r\n {\r\n \"Id\": \"VECTOR\",\r\n \"Progress\": 119.0\r\n },\r\n {\r\n \"Id\": \"AA12\",\r\n \"Progress\": 353.0\r\n },\r\n {\r\n \"Id\": \"TT\",\r\n \"Progress\": 0.0\r\n }\r\n ]\r\n },\r\n \"Notes\": {\r\n \"Notes\": []\r\n },\r\n \"TaskConditionCounters\": {\r\n \"6512ea68d94f62c7d905a1ba\": {\r\n \"id\": \"6512ea68d94f62c7d905a1ba\",\r\n \"value\": 1,\r\n \"sourceId\": \"6512ea46f7a078264a4376e4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6513f0735bafc372682987b2\": {\r\n \"id\": \"6513f0735bafc372682987b2\",\r\n \"value\": 1,\r\n \"sourceId\": \"6513f0a10dc723592b0f90cf\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65140aa7877c54335a17c843\": {\r\n \"id\": \"65140aa7877c54335a17c843\",\r\n \"value\": 15,\r\n \"sourceId\": \"65140ab8ec10ff011f17cc10\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651411e599c1dc821414894a\": {\r\n \"id\": \"651411e599c1dc821414894a\",\r\n \"value\": 15,\r\n \"sourceId\": \"651411f1cf2f1c285e606423\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6514124f2898c656ba65b1d6\": {\r\n \"id\": \"6514124f2898c656ba65b1d6\",\r\n \"value\": 1,\r\n \"sourceId\": \"651412b8c31fcb0e163577c5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6514142b50c1d03f34439529\": {\r\n \"id\": \"6514142b50c1d03f34439529\",\r\n \"value\": 23,\r\n \"sourceId\": \"6514143d59647d2cb3213c93\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651414b741f4ad07ba7d55f9\": {\r\n \"id\": \"651414b741f4ad07ba7d55f9\",\r\n \"value\": 1,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651414eb3ec86f33dd54d978\": {\r\n \"id\": \"651414eb3ec86f33dd54d978\",\r\n \"value\": 31,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651415067c262d47d685c6d9\": {\r\n \"id\": \"651415067c262d47d685c6d9\",\r\n \"value\": 20,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6514151b2e8590fc2ac1d859\": {\r\n \"id\": \"6514151b2e8590fc2ac1d859\",\r\n \"value\": 23,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6514151da13f174e3f52bc6e\": {\r\n \"id\": \"6514151da13f174e3f52bc6e\",\r\n \"value\": 51,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65141520143ef6349ad5f071\": {\r\n \"id\": \"65141520143ef6349ad5f071\",\r\n \"value\": 24,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6514156e21e1d85a7d029f8a\": {\r\n \"id\": \"6514156e21e1d85a7d029f8a\",\r\n \"value\": 21,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65141570b18e12f60ba2e450\": {\r\n \"id\": \"65141570b18e12f60ba2e450\",\r\n \"value\": 38,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65141571dbcb26761524e977\": {\r\n \"id\": \"65141571dbcb26761524e977\",\r\n \"value\": 0,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651415cfe97ba875119ef01c\": {\r\n \"id\": \"651415cfe97ba875119ef01c\",\r\n \"value\": 41,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651415d13c02ff4aa9e9a426\": {\r\n \"id\": \"651415d13c02ff4aa9e9a426\",\r\n \"value\": 35,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"657b21a3564a9197c2778f5a\": {\r\n \"id\": \"657b21a3564a9197c2778f5a\",\r\n \"value\": 4,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"651418d2d2b2875692087490\": {\r\n \"id\": \"651418d2d2b2875692087490\",\r\n \"value\": 0,\r\n \"sourceId\": \"651419eea3dd9b6aa7159ee5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"652909ac342bdd14e0bcb1bb\": {\r\n \"id\": \"652909ac342bdd14e0bcb1bb\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"652909cd3f9e480e9d1a3489\": {\r\n \"id\": \"652909cd3f9e480e9d1a3489\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"652909ef8cb2a699ccbc2cf0\": {\r\n \"id\": \"652909ef8cb2a699ccbc2cf0\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290de6e76953256668112c\": {\r\n \"id\": \"65290de6e76953256668112c\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290e22f16e69470b5d6145\": {\r\n \"id\": \"65290e22f16e69470b5d6145\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290e51fee42b19970ccbfd\": {\r\n \"id\": \"65290e51fee42b19970ccbfd\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290e8d6193b1a4e12a7967\": {\r\n \"id\": \"65290e8d6193b1a4e12a7967\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290ed47ef294bc6eb7ee85\": {\r\n \"id\": \"65290ed47ef294bc6eb7ee85\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290f1579363c7810e7233d\": {\r\n \"id\": \"65290f1579363c7810e7233d\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290f3fd7c6005f6d78f453\": {\r\n \"id\": \"65290f3fd7c6005f6d78f453\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290f50897943fb9bf8955d\": {\r\n \"id\": \"65290f50897943fb9bf8955d\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"657b1e91958145eb193f9a40\": {\r\n \"id\": \"657b1e91958145eb193f9a40\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65290a6ee6ae241fdf7ac29c\": {\r\n \"id\": \"65290a6ee6ae241fdf7ac29c\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"655b4a60b530cde7167d842f\": {\r\n \"id\": \"655b4a60b530cde7167d842f\",\r\n \"value\": 4,\r\n \"sourceId\": \"655b4a576689c676ce57acb6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512eb68f6c95fe8862e384d\": {\r\n \"id\": \"6512eb68f6c95fe8862e384d\",\r\n \"value\": 22,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512eb9a12da627da04880b3\": {\r\n \"id\": \"6512eb9a12da627da04880b3\",\r\n \"value\": 1,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512efeca198eb75ff9ca1c7\": {\r\n \"id\": \"6512efeca198eb75ff9ca1c7\",\r\n \"value\": 60,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f0166a9637a1cb352507\": {\r\n \"id\": \"6512f0166a9637a1cb352507\",\r\n \"value\": 22,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f09316440cb67572c0fa\": {\r\n \"id\": \"6512f09316440cb67572c0fa\",\r\n \"value\": 14,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f4a0df345dd5029b586a\": {\r\n \"id\": \"6512f4a0df345dd5029b586a\",\r\n \"value\": 9,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f4fb1ea20e8cd761de2a\": {\r\n \"id\": \"6512f4fb1ea20e8cd761de2a\",\r\n \"value\": 22,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f819fddeee167c2518e3\": {\r\n \"id\": \"6512f819fddeee167c2518e3\",\r\n \"value\": 28,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6512f83596d92e790ada99b0\": {\r\n \"id\": \"6512f83596d92e790ada99b0\",\r\n \"value\": 31,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"657b1feef3231fc23e3ccdf7\": {\r\n \"id\": \"657b1feef3231fc23e3ccdf7\",\r\n \"value\": 9,\r\n \"sourceId\": \"6512eb3ddfb0ae1ee75a0376\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"660fe523f4b8adbe11925c5e\": {\r\n \"id\": \"660fe523f4b8adbe11925c5e\",\r\n \"value\": 0,\r\n \"sourceId\": \"660fe21454670811e304c045\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"664f1f22aa7c03fbe75abc3c\": {\r\n \"id\": \"664f1f22aa7c03fbe75abc3c\",\r\n \"value\": 0,\r\n \"sourceId\": \"664f1f8768508d74604bf556\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65141a397f14aa0040cf561a\": {\r\n \"id\": \"65141a397f14aa0040cf561a\",\r\n \"value\": 2,\r\n \"sourceId\": \"65141a3059647d2cb3213c9e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66742cc94c02b62d30e18379\": {\r\n \"id\": \"66742cc94c02b62d30e18379\",\r\n \"value\": 0,\r\n \"sourceId\": \"66742c003a67b164a300fcbf\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"668bf4fbe40131ddf9bffdc7\": {\r\n \"id\": \"668bf4fbe40131ddf9bffdc7\",\r\n \"value\": 0,\r\n \"sourceId\": \"668bf47c781d446fdc083711\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"657333fee3fbaa77d3b5cd7c\": {\r\n \"id\": \"657333fee3fbaa77d3b5cd7c\",\r\n \"value\": 2,\r\n \"sourceId\": \"657315df034d76585f032e01\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6573340403f471fb2bb12df1\": {\r\n \"id\": \"6573340403f471fb2bb12df1\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315df034d76585f032e01\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"657334311dbb8b7569bb83c4\": {\r\n \"id\": \"657334311dbb8b7569bb83c4\",\r\n \"value\": 13,\r\n \"sourceId\": \"657315df034d76585f032e01\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65732ac3c67dcd96adffa3c7\": {\r\n \"id\": \"65732ac3c67dcd96adffa3c7\",\r\n \"value\": 3,\r\n \"sourceId\": \"657315ddab5a49b71f098853\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65817bf31404f3565aef9fec\": {\r\n \"id\": \"65817bf31404f3565aef9fec\",\r\n \"value\": 3,\r\n \"sourceId\": \"657315ddab5a49b71f098853\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"65733e571b7e7ed95fcd2f0c\": {\r\n \"id\": \"65733e571b7e7ed95fcd2f0c\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315e270bb0b8dba00cc48\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6575a524a39d2be74e620546\": {\r\n \"id\": \"6575a524a39d2be74e620546\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315e4a6af4ab4b50f3459\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6575a62a62028c6d5cb43cb7\": {\r\n \"id\": \"6575a62a62028c6d5cb43cb7\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315e4a6af4ab4b50f3459\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6575a64d3fc09bdfb38b713d\": {\r\n \"id\": \"6575a64d3fc09bdfb38b713d\",\r\n \"value\": 4,\r\n \"sourceId\": \"657315e4a6af4ab4b50f3459\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65817fc99a039ed2e97896e4\": {\r\n \"id\": \"65817fc99a039ed2e97896e4\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315e4a6af4ab4b50f3459\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5accd5e386f77463027e9397\": {\r\n \"id\": \"5accd5e386f77463027e9397\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac23c6186f7741247042bad\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"63ac18f4972364554162a25c\": {\r\n \"id\": \"63ac18f4972364554162a25c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d2495a886f77425cd51e403\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d249aa286f77475e8376399\": {\r\n \"id\": \"5d249aa286f77475e8376399\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d2495a886f77425cd51e403\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5967379186f77463860dadd6\": {\r\n \"id\": \"5967379186f77463860dadd6\",\r\n \"value\": 7,\r\n \"sourceId\": \"5936d90786f7742b1420ba5b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"596737cb86f77463a8115efd\": {\r\n \"id\": \"596737cb86f77463a8115efd\",\r\n \"value\": 2,\r\n \"sourceId\": \"5936d90786f7742b1420ba5b\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"597867e986f7741b265c6bd3\": {\r\n \"id\": \"597867e986f7741b265c6bd3\",\r\n \"value\": 1,\r\n \"sourceId\": \"596b36c586f77450d6045ad2\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ab8d44c86f7745b2325bd0c\": {\r\n \"id\": \"5ab8d44c86f7745b2325bd0c\",\r\n \"value\": 1,\r\n \"sourceId\": \"596b36c586f77450d6045ad2\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d24ba7886f77439c92d6baa\": {\r\n \"id\": \"5d24ba7886f77439c92d6baa\",\r\n \"value\": 3,\r\n \"sourceId\": \"5d24b81486f77439c92d6ba8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d24bb4886f77439c92d6bad\": {\r\n \"id\": \"5d24bb4886f77439c92d6bad\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d24b81486f77439c92d6ba8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d24bb7286f7741f7956be74\": {\r\n \"id\": \"5d24bb7286f7741f7956be74\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d24b81486f77439c92d6ba8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"59689eb886f7740d137ebfc3\": {\r\n \"id\": \"59689eb886f7740d137ebfc3\",\r\n \"value\": 3,\r\n \"sourceId\": \"5967733e86f774602332fc84\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5fd9fad9c1ce6b1a3b486d03\": {\r\n \"id\": \"5fd9fad9c1ce6b1a3b486d03\",\r\n \"value\": 1,\r\n \"sourceId\": \"5fd9fad9c1ce6b1a3b486d00\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5fd9fad9c1ce6b1a3b486d05\": {\r\n \"id\": \"5fd9fad9c1ce6b1a3b486d05\",\r\n \"value\": 2,\r\n \"sourceId\": \"5fd9fad9c1ce6b1a3b486d00\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5fd9fad9c1ce6b1a3b486d0d\": {\r\n \"id\": \"5fd9fad9c1ce6b1a3b486d0d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5fd9fad9c1ce6b1a3b486d00\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6575aa67197bd678a0c3f552\": {\r\n \"id\": \"6575aa67197bd678a0c3f552\",\r\n \"value\": 20,\r\n \"sourceId\": \"657315e1dccd301f1301416a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65817cd2881a7e07b3ec1249\": {\r\n \"id\": \"65817cd2881a7e07b3ec1249\",\r\n \"value\": 1,\r\n \"sourceId\": \"657315e1dccd301f1301416a\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5967920f86f77468d219d632\": {\r\n \"id\": \"5967920f86f77468d219d632\",\r\n \"value\": 1,\r\n \"sourceId\": \"5936da9e86f7742d65037edf\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5accd9b686f774112d7173d1\": {\r\n \"id\": \"5accd9b686f774112d7173d1\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac2426c86f774138762edfe\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5977784486f774285402cf52\": {\r\n \"id\": \"5977784486f774285402cf52\",\r\n \"value\": 1,\r\n \"sourceId\": \"59674eb386f774539f14813a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5cb31b6188a450159d330a18\": {\r\n \"id\": \"5cb31b6188a450159d330a18\",\r\n \"value\": 15,\r\n \"sourceId\": \"59674cd986f7744ab26e32f2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3fb73b86f77458e0324376\": {\r\n \"id\": \"5a3fb73b86f77458e0324376\",\r\n \"value\": 1,\r\n \"sourceId\": \"59689fbd86f7740d137ebfc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5968a06486f7740d14064728\": {\r\n \"id\": \"5968a06486f7740d14064728\",\r\n \"value\": 1,\r\n \"sourceId\": \"59689fbd86f7740d137ebfc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59689f7586f7740d14064726\": {\r\n \"id\": \"59689f7586f7740d14064726\",\r\n \"value\": 1,\r\n \"sourceId\": \"59689ee586f7740d1570bbd5\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596a20ac86f7741ddf17dbf4\": {\r\n \"id\": \"596a20ac86f7741ddf17dbf4\",\r\n \"value\": 2,\r\n \"sourceId\": \"596a204686f774576d4c95de\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c9b5e3f86f7744aab7329b5\": {\r\n \"id\": \"5c9b5e3f86f7744aab7329b5\",\r\n \"value\": 4,\r\n \"sourceId\": \"596b455186f77457cb50eccb\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"596b450986f7745a7e510b54\": {\r\n \"id\": \"596b450986f7745a7e510b54\",\r\n \"value\": 1,\r\n \"sourceId\": \"596b43fb86f77457ca186186\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fbabc86f774231d75afbe\": {\r\n \"id\": \"5a3fbabc86f774231d75afbe\",\r\n \"value\": 1,\r\n \"sourceId\": \"596b43fb86f77457ca186186\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3fbab086f77421593d9bf0\": {\r\n \"id\": \"5a3fbab086f77421593d9bf0\",\r\n \"value\": 1,\r\n \"sourceId\": \"596b43fb86f77457ca186186\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5be0198686f774595412d9c4\": {\r\n \"id\": \"5be0198686f774595412d9c4\",\r\n \"value\": 7,\r\n \"sourceId\": \"5a27c99a86f7747d2c6bdd8e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ec137dcc367fc6781104613\": {\r\n \"id\": \"5ec137dcc367fc6781104613\",\r\n \"value\": 7,\r\n \"sourceId\": \"5a27c99a86f7747d2c6bdd8e\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5969f99286f77456630ea442\": {\r\n \"id\": \"5969f99286f77456630ea442\",\r\n \"value\": 4,\r\n \"sourceId\": \"5969f90786f77420d2328015\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5969fa8986f7741ddc2d3154\": {\r\n \"id\": \"5969fa8986f7741ddc2d3154\",\r\n \"value\": 1,\r\n \"sourceId\": \"5969f9e986f7741dde183a50\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fb8f686f7742384533f10\": {\r\n \"id\": \"5a3fb8f686f7742384533f10\",\r\n \"value\": 0,\r\n \"sourceId\": \"5969f9e986f7741dde183a50\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3fb92286f77422b46cdb18\": {\r\n \"id\": \"5a3fb92286f77422b46cdb18\",\r\n \"value\": 2,\r\n \"sourceId\": \"5969f9e986f7741dde183a50\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"596b470c86f77457ca18618a\": {\r\n \"id\": \"596b470c86f77457ca18618a\",\r\n \"value\": 4,\r\n \"sourceId\": \"596a218586f77420d232807c\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596b472686f77457c7006f8a\": {\r\n \"id\": \"596b472686f77457c7006f8a\",\r\n \"value\": 8,\r\n \"sourceId\": \"596a218586f77420d232807c\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596a1f1586f77420d2328077\": {\r\n \"id\": \"596a1f1586f77420d2328077\",\r\n \"value\": 15,\r\n \"sourceId\": \"596a1e6c86f7741ddc2d3206\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596a10d886f7741ddf17dbf0\": {\r\n \"id\": \"596a10d886f7741ddf17dbf0\",\r\n \"value\": 0,\r\n \"sourceId\": \"596a101f86f7741ddb481582\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596a0eaf86f774576d4c957f\": {\r\n \"id\": \"596a0eaf86f774576d4c957f\",\r\n \"value\": 2,\r\n \"sourceId\": \"596a0e1686f7741ddf17dbee\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"596a0e8086f7741ddd6c104c\": {\r\n \"id\": \"596a0e8086f7741ddd6c104c\",\r\n \"value\": 1,\r\n \"sourceId\": \"596a0e1686f7741ddf17dbee\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"609169cfeca522371e5725c5\": {\r\n \"id\": \"609169cfeca522371e5725c5\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896e28e4a85c72ef3fa301\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60ae134cabb9675f0062cf6e\": {\r\n \"id\": \"60ae134cabb9675f0062cf6e\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896e28e4a85c72ef3fa301\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac5e0fa86f77431c305d243\": {\r\n \"id\": \"5ac5e0fa86f77431c305d243\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3467986f7741d6224abc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac5e13586f7746074388f93\": {\r\n \"id\": \"5ac5e13586f7746074388f93\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3467986f7741d6224abc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac5e18c86f7743ebd6c9575\": {\r\n \"id\": \"5ac5e18c86f7743ebd6c9575\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3467986f7741d6224abc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac5eee986f77401fd341c9e\": {\r\n \"id\": \"5ac5eee986f77401fd341c9e\",\r\n \"value\": 5,\r\n \"sourceId\": \"5ac3475486f7741d6224abd3\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac5ef5686f77416ca60f644\": {\r\n \"id\": \"5ac5ef5686f77416ca60f644\",\r\n \"value\": 5,\r\n \"sourceId\": \"5ac3475486f7741d6224abd3\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac5eff886f7740f43322559\": {\r\n \"id\": \"5ac5eff886f7740f43322559\",\r\n \"value\": 5,\r\n \"sourceId\": \"5ac3475486f7741d6224abd3\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac624b286f77416781dd3ac\": {\r\n \"id\": \"5ac624b286f77416781dd3ac\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3462b86f7741d6118b983\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac6240786f77417204ca2b9\": {\r\n \"id\": \"5ac6240786f77417204ca2b9\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ac3462b86f7741d6118b983\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63ac232087413d64ae0ac23c\": {\r\n \"id\": \"63ac232087413d64ae0ac23c\",\r\n \"value\": 2,\r\n \"sourceId\": \"626bd75e47ea7f506e5493c5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a27d34586f7744e1115b327\": {\r\n \"id\": \"5a27d34586f7744e1115b327\",\r\n \"value\": 12630,\r\n \"sourceId\": \"5a27d2af86f7744e1115b323\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae44ecd86f77414a13c970e\": {\r\n \"id\": \"5ae44ecd86f77414a13c970e\",\r\n \"value\": 29,\r\n \"sourceId\": \"5ae448bf86f7744d733e55ee\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae4508386f7741250488337\": {\r\n \"id\": \"5ae4508386f7741250488337\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae450db86f7741250488359\": {\r\n \"id\": \"5ae450db86f7741250488359\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae450ee86f7740f9307859d\": {\r\n \"id\": \"5ae450ee86f7740f9307859d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae4510786f7740fa614399f\": {\r\n \"id\": \"5ae4510786f7740fa614399f\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae4511d86f7740ffc31ccb5\": {\r\n \"id\": \"5ae4511d86f7740ffc31ccb5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae4514986f7740e915d218c\": {\r\n \"id\": \"5ae4514986f7740e915d218c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448e586f7744dcf0c2a67\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c939d0e86f774185203c4c3\": {\r\n \"id\": \"5c939d0e86f774185203c4c3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b7d686f77460d847e6a6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"617bf29a52e86c73d372a917\": {\r\n \"id\": \"617bf29a52e86c73d372a917\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179ad56c760af5ad2053587\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae34b8b86f7741e5b1e5d48\": {\r\n \"id\": \"5ae34b8b86f7741e5b1e5d48\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae3267986f7742a413592fe\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5ac5082586f77418804f7d4c\": {\r\n \"id\": \"5ac5082586f77418804f7d4c\",\r\n \"value\": 3,\r\n \"sourceId\": \"5ac3464c86f7741d651d6877\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ac5084d86f7740bde1b0031\": {\r\n \"id\": \"5ac5084d86f7740bde1b0031\",\r\n \"value\": 15,\r\n \"sourceId\": \"5ac3464c86f7741d651d6877\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c0bdf2c86f7746f016734a8\": {\r\n \"id\": \"5c0bdf2c86f7746f016734a8\",\r\n \"value\": 6,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c137b8886f7747ae3220ff4\": {\r\n \"id\": \"5c137b8886f7747ae3220ff4\",\r\n \"value\": 11,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c137ef386f7747ae10a821e\": {\r\n \"id\": \"5c137ef386f7747ae10a821e\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c137f5286f7747ae267d8a3\": {\r\n \"id\": \"5c137f5286f7747ae267d8a3\",\r\n \"value\": 12,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"629f10b114061f3074380298\": {\r\n \"id\": \"629f10b114061f3074380298\",\r\n \"value\": 6,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63aec6f256503c322a190374\": {\r\n \"id\": \"63aec6f256503c322a190374\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64b694c8a857ea477002a408\": {\r\n \"id\": \"64b694c8a857ea477002a408\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65e0812209dffc3fd97b99e8\": {\r\n \"id\": \"65e0812209dffc3fd97b99e8\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c0bde0986f77479cf22c2f8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"617bf77a3de8a6689b533a2a\": {\r\n \"id\": \"617bf77a3de8a6689b533a2a\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179b3bdc7560e13d23eeb8d\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"61951c3e2e2805073c2d29db\": {\r\n \"id\": \"61951c3e2e2805073c2d29db\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179b3bdc7560e13d23eeb8d\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c1fa9c986f7740de474cb3d\": {\r\n \"id\": \"5c1fa9c986f7740de474cb3d\",\r\n \"value\": 16,\r\n \"sourceId\": \"5c1234c286f77406fa13baeb\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5b0e766b86f7746bfa618964\": {\r\n \"id\": \"5b0e766b86f7746bfa618964\",\r\n \"value\": 26,\r\n \"sourceId\": \"5979f8bb86f7743ec214c7a6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5979fc7e86f77426d702a0f4\": {\r\n \"id\": \"5979fc7e86f77426d702a0f4\",\r\n \"value\": 1,\r\n \"sourceId\": \"5979f9ba86f7740f6c3fe9f2\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5979fc9286f77426d702a0f5\": {\r\n \"id\": \"5979fc9286f77426d702a0f5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5979f9ba86f7740f6c3fe9f2\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fbbfd86f77459d52a16a8\": {\r\n \"id\": \"5a3fbbfd86f77459d52a16a8\",\r\n \"value\": 3,\r\n \"sourceId\": \"5979f9ba86f7740f6c3fe9f2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5968948986f7740d121082d4\": {\r\n \"id\": \"5968948986f7740d121082d4\",\r\n \"value\": 1,\r\n \"sourceId\": \"5967530a86f77462ba22226b\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fbdb086f7745a554f0c31\": {\r\n \"id\": \"5a3fbdb086f7745a554f0c31\",\r\n \"value\": 0,\r\n \"sourceId\": \"5967530a86f77462ba22226b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"596762ec86f77426d3687a87\": {\r\n \"id\": \"596762ec86f77426d3687a87\",\r\n \"value\": 1,\r\n \"sourceId\": \"5967530a86f77462ba22226b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8eea538ca5b3b4f3c4647\": {\r\n \"id\": \"5ee8eea538ca5b3b4f3c4647\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ede55112c95834b583f052a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8eecc0b4ef7326256c660\": {\r\n \"id\": \"5ee8eecc0b4ef7326256c660\",\r\n \"value\": 5,\r\n \"sourceId\": \"5ede55112c95834b583f052a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee0e5a8c321a77fc55084d2\": {\r\n \"id\": \"5ee0e5a8c321a77fc55084d2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ede55112c95834b583f052a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae3550b86f7741cf44fc799\": {\r\n \"id\": \"5ae3550b86f7741cf44fc799\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae3270f86f77445ba41d4dd\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5accdfdb86f77412265cbfc9\": {\r\n \"id\": \"5accdfdb86f77412265cbfc9\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac244eb86f7741356335af1\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5ae3570b86f7746efa6b4494\": {\r\n \"id\": \"5ae3570b86f7746efa6b4494\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae3277186f7745973054106\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"59675e1d86f77414b07f137d\": {\r\n \"id\": \"59675e1d86f77414b07f137d\",\r\n \"value\": 3,\r\n \"sourceId\": \"59675d6c86f7740a842fc482\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5967938c86f77468cf5f9f54\": {\r\n \"id\": \"5967938c86f77468cf5f9f54\",\r\n \"value\": 0,\r\n \"sourceId\": \"59675d6c86f7740a842fc482\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fbe3a86f77414422e0d9b\": {\r\n \"id\": \"5a3fbe3a86f77414422e0d9b\",\r\n \"value\": 0,\r\n \"sourceId\": \"59675d6c86f7740a842fc482\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"597a0bf886f7742717106d13\": {\r\n \"id\": \"597a0bf886f7742717106d13\",\r\n \"value\": 1,\r\n \"sourceId\": \"597a0b2986f77426d66c0633\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"597a0bdb86f7742717106d12\": {\r\n \"id\": \"597a0bdb86f7742717106d12\",\r\n \"value\": 1,\r\n \"sourceId\": \"597a0b2986f77426d66c0633\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"597a15c386f77405ba6887d2\": {\r\n \"id\": \"597a15c386f77405ba6887d2\",\r\n \"value\": 1,\r\n \"sourceId\": \"597a0e5786f77426d66c0636\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"596a10d886f7741ddf11dbf0\": {\r\n \"id\": \"596a10d886f7741ddf11dbf0\",\r\n \"value\": 9863608,\r\n \"sourceId\": \"59c93e8e86f7742a406989c4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"608ab22755f4ac386d7e7fdc\": {\r\n \"id\": \"608ab22755f4ac386d7e7fdc\",\r\n \"value\": 10,\r\n \"sourceId\": \"6089743983426423753cd58a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59ca1b4f86f774509a270943\": {\r\n \"id\": \"59ca1b4f86f774509a270943\",\r\n \"value\": 10,\r\n \"sourceId\": \"59ca1a6286f774509a270942\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ee8ec5ed72d953f5d2aabd1\": {\r\n \"id\": \"5ee8ec5ed72d953f5d2aabd1\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8ecd75eb3205dae135d17\": {\r\n \"id\": \"5ee8ecd75eb3205dae135d17\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8ed18d72d953f5d2aabd4\": {\r\n \"id\": \"5ee8ed18d72d953f5d2aabd4\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8eddde932d53763761b2c\": {\r\n \"id\": \"5ee8eddde932d53763761b2c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee8edf1500391756d7498a7\": {\r\n \"id\": \"5ee8edf1500391756d7498a7\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ee0e722c321a77fc55084d5\": {\r\n \"id\": \"5ee0e722c321a77fc55084d5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bffeee0cc9c2d4d2ccb29\": {\r\n \"id\": \"608bffeee0cc9c2d4d2ccb29\",\r\n \"value\": 5,\r\n \"sourceId\": \"60896bca6ee58f38c417d4f2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25af3c86f77443ff46b9e7\": {\r\n \"id\": \"5d25af3c86f77443ff46b9e7\",\r\n \"value\": 5,\r\n \"sourceId\": \"5d25aed386f77442734d25d2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d27491686f77475aa5cf5b9\": {\r\n \"id\": \"5d27491686f77475aa5cf5b9\",\r\n \"value\": 3,\r\n \"sourceId\": \"5d25e48d86f77408251c4bfb\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5bc850d186f7747213700892\": {\r\n \"id\": \"5bc850d186f7747213700892\",\r\n \"value\": 5,\r\n \"sourceId\": \"5bc4776586f774512d07cf05\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bd983d886f7747ba73fc246\": {\r\n \"id\": \"5bd983d886f7747ba73fc246\",\r\n \"value\": 3,\r\n \"sourceId\": \"5bc479e586f7747f376c7da3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bd9944f86f774035c4877f3\": {\r\n \"id\": \"5bd9944f86f774035c4877f3\",\r\n \"value\": 4,\r\n \"sourceId\": \"5bc479e586f7747f376c7da3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60916b41b89a3c264d7296f9\": {\r\n \"id\": \"60916b41b89a3c264d7296f9\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896b7bfa70fc097863b8f5\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60ae0f0586046842a754e21e\": {\r\n \"id\": \"60ae0f0586046842a754e21e\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896b7bfa70fc097863b8f5\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60ae0f17b809a4748759078c\": {\r\n \"id\": \"60ae0f17b809a4748759078c\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896b7bfa70fc097863b8f5\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b478f8886f7744d1b23c622\": {\r\n \"id\": \"5b478f8886f7744d1b23c622\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b478eca86f7744642012254\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4c832686f77419603eb8f0\": {\r\n \"id\": \"5b4c832686f77419603eb8f0\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b478eca86f7744642012254\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4c836486f77417063a09dc\": {\r\n \"id\": \"5b4c836486f77417063a09dc\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b478eca86f7744642012254\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d25c5a186f77443fe457661\": {\r\n \"id\": \"5d25c5a186f77443fe457661\",\r\n \"value\": 25,\r\n \"sourceId\": \"5d25bfd086f77442734d3007\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d9f035086f7741cac4a9713\": {\r\n \"id\": \"5d9f035086f7741cac4a9713\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25bfd086f77442734d3007\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a98cfbc31b00242d28a95b\": {\r\n \"id\": \"63a98cfbc31b00242d28a95b\",\r\n \"value\": 11,\r\n \"sourceId\": \"63a88045abf76d719f42d715\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a98d24655ec5555b4aa9e7\": {\r\n \"id\": \"63a98d24655ec5555b4aa9e7\",\r\n \"value\": 2,\r\n \"sourceId\": \"63a88045abf76d719f42d715\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a98d39da7999196148ba3a\": {\r\n \"id\": \"63a98d39da7999196148ba3a\",\r\n \"value\": 1,\r\n \"sourceId\": \"63a88045abf76d719f42d715\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a98d60c0f61a5d8731cd9f\": {\r\n \"id\": \"63a98d60c0f61a5d8731cd9f\",\r\n \"value\": 3,\r\n \"sourceId\": \"63a88045abf76d719f42d715\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a98cdf655ec5555b4aa9e6\": {\r\n \"id\": \"63a98cdf655ec5555b4aa9e6\",\r\n \"value\": 1,\r\n \"sourceId\": \"63a88045abf76d719f42d715\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63ab184ff627f540861d1185\": {\r\n \"id\": \"63ab184ff627f540861d1185\",\r\n \"value\": 1,\r\n \"sourceId\": \"63ab180c87413d64ae0ac20a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25c8c986f77443e47ad47a\": {\r\n \"id\": \"5d25c8c986f77443e47ad47a\",\r\n \"value\": 3,\r\n \"sourceId\": \"5d25c81b86f77443e625dd71\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a68763786f77474c33a40a1\": {\r\n \"id\": \"5a68763786f77474c33a40a1\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a68663e86f774501078f78a\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a68764c86f77474c4269f3c\": {\r\n \"id\": \"5a68764c86f77474c4269f3c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a68663e86f774501078f78a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65802b627b44fa5e1463889a\": {\r\n \"id\": \"65802b627b44fa5e1463889a\",\r\n \"value\": 1,\r\n \"sourceId\": \"65802b627b44fa5e14638899\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65802bfabac8c53c548fca2a\": {\r\n \"id\": \"65802bfabac8c53c548fca2a\",\r\n \"value\": 1,\r\n \"sourceId\": \"65802b627b44fa5e14638899\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25d4e786f77442734d335d\": {\r\n \"id\": \"5d25d4e786f77442734d335d\",\r\n \"value\": 3,\r\n \"sourceId\": \"5d25d2c186f77443e35162e5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25d09286f77444001e284c\": {\r\n \"id\": \"5d25d09286f77444001e284c\",\r\n \"value\": 3,\r\n \"sourceId\": \"5d25cf2686f77443e75488d4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25d0d186f7740a22515975\": {\r\n \"id\": \"5d25d0d186f7740a22515975\",\r\n \"value\": 0,\r\n \"sourceId\": \"5d25cf2686f77443e75488d4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5b47905886f7746807461fe2\": {\r\n \"id\": \"5b47905886f7746807461fe2\",\r\n \"value\": 4,\r\n \"sourceId\": \"5b478ff486f7744d184ecbbf\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4790a886f774563c7a489f\": {\r\n \"id\": \"5b4790a886f774563c7a489f\",\r\n \"value\": 3,\r\n \"sourceId\": \"5b478ff486f7744d184ecbbf\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5acce11786f77411ed6fa6eb\": {\r\n \"id\": \"5acce11786f77411ed6fa6eb\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac244c486f77413e12cf945\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5a3ba34286f7744eb240406a\": {\r\n \"id\": \"5a3ba34286f7744eb240406a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b80086f774429a5d7e20\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba3b086f7745ab1081101\": {\r\n \"id\": \"5a3ba3b086f7745ab1081101\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b80086f774429a5d7e20\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a27ffc786f77415ca58ae47\": {\r\n \"id\": \"5a27ffc786f77415ca58ae47\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b80086f774429a5d7e20\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a294f3386f77433e923f9cd\": {\r\n \"id\": \"5a294f3386f77433e923f9cd\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b80086f774429a5d7e20\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d4bfe7c86f7744a9c66b316\": {\r\n \"id\": \"5d4bfe7c86f7744a9c66b316\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d4bec3486f7743cac246665\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d4c028c86f774389001e027\": {\r\n \"id\": \"5d4c028c86f774389001e027\",\r\n \"value\": 5,\r\n \"sourceId\": \"5d4bec3486f7743cac246665\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4c769686f7746e535a5c0e\": {\r\n \"id\": \"5b4c769686f7746e535a5c0e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b4794cb86f774598100d5d4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4c76d886f77471d31735a3\": {\r\n \"id\": \"5b4c76d886f77471d31735a3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b4794cb86f774598100d5d4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4795a586f774587a39506d\": {\r\n \"id\": \"5b4795a586f774587a39506d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b4794cb86f774598100d5d4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5b4c7aec86f77459732b4b08\": {\r\n \"id\": \"5b4c7aec86f77459732b4b08\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b4794cb86f774598100d5d4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a28023f86f774528903dd1e\": {\r\n \"id\": \"5a28023f86f774528903dd1e\",\r\n \"value\": 5,\r\n \"sourceId\": \"5a27b87686f77460de0252a8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c939f2186f774122b6e7854\": {\r\n \"id\": \"5c939f2186f774122b6e7854\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b87686f77460de0252a8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c9a170386f77438c80164eb\": {\r\n \"id\": \"5c9a170386f77438c80164eb\",\r\n \"value\": 10,\r\n \"sourceId\": \"5a27b87686f77460de0252a8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba47986f7744df8667505\": {\r\n \"id\": \"5a3ba47986f7744df8667505\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27b87686f77460de0252a8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba4ba86f7744df759b1e5\": {\r\n \"id\": \"5a3ba4ba86f7744df759b1e5\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27b87686f77460de0252a8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a68770f86f774747d4b0d8b\": {\r\n \"id\": \"5a68770f86f774747d4b0d8b\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a68665c86f774255929b4c7\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a68778c86f77423391f38f0\": {\r\n \"id\": \"5a68778c86f77423391f38f0\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a68665c86f774255929b4c7\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a68777586f774747d4b0d9e\": {\r\n \"id\": \"5a68777586f774747d4b0d9e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a68665c86f774255929b4c7\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d6fb8a886f77449db3db8b6\": {\r\n \"id\": \"5d6fb8a886f77449db3db8b6\",\r\n \"value\": 2521381,\r\n \"sourceId\": \"5d6fb2c086f77449da599c24\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a6879be86f774284429b1bb\": {\r\n \"id\": \"5a6879be86f774284429b1bb\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a68669a86f774255929b4d4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63ac0c99f83fd608393890bf\": {\r\n \"id\": \"63ac0c99f83fd608393890bf\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179afd0bca27a099552e040\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6190464d74169a76c90aa230\": {\r\n \"id\": \"6190464d74169a76c90aa230\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179afd0bca27a099552e040\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae9b34686f7743129512ccf\": {\r\n \"id\": \"5ae9b34686f7743129512ccf\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4493486f7744efa289417\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae9b38a86f77432c81e2ce3\": {\r\n \"id\": \"5ae9b38a86f77432c81e2ce3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4493486f7744efa289417\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae9b3c986f77432c81e2ce6\": {\r\n \"id\": \"5ae9b3c986f77432c81e2ce6\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4493486f7744efa289417\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae4531986f774177033c3e6\": {\r\n \"id\": \"5ae4531986f774177033c3e6\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae448f286f77448d73c0131\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba51d86f7743af1475c3a\": {\r\n \"id\": \"5a3ba51d86f7743af1475c3a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b9de86f77464e5044585\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a28051286f7740eb10bac04\": {\r\n \"id\": \"5a28051286f7740eb10bac04\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27b9de86f77464e5044585\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c9a17c686f7747dbe2da3c1\": {\r\n \"id\": \"5c9a17c686f7747dbe2da3c1\",\r\n \"value\": 7,\r\n \"sourceId\": \"5a03153686f77442d90e2171\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6087d553d79a2b4e943482bf\": {\r\n \"id\": \"6087d553d79a2b4e943482bf\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60882695949eb1096c454fcd\": {\r\n \"id\": \"60882695949eb1096c454fcd\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608826f3949eb1096c454fd0\": {\r\n \"id\": \"608826f3949eb1096c454fd0\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6088274a82e40b3c727fd164\": {\r\n \"id\": \"6088274a82e40b3c727fd164\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60892585b90d6f39cb74b114\": {\r\n \"id\": \"60892585b90d6f39cb74b114\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60892590fa70fc097863b8e5\": {\r\n \"id\": \"60892590fa70fc097863b8e5\",\r\n \"value\": 1,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608930aa1124f748c94b801e\": {\r\n \"id\": \"608930aa1124f748c94b801e\",\r\n \"value\": 2,\r\n \"sourceId\": \"6086c852c945025d41566124\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a37d80986f774245c063b69\": {\r\n \"id\": \"5a37d80986f774245c063b69\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a03173786f77451cb427172\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a03289686f7745dbc6c5063\": {\r\n \"id\": \"5a03289686f7745dbc6c5063\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a0327ba86f77456b9154236\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a0328cb86f77456b91543b8\": {\r\n \"id\": \"5a0328cb86f77456b91543b8\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a0327ba86f77456b9154236\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a03290586f774584d1594c4\": {\r\n \"id\": \"5a03290586f774584d1594c4\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a0327ba86f77456b9154236\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a280b5486f7741f751bfeea\": {\r\n \"id\": \"5a280b5486f7741f751bfeea\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a0327ba86f77456b9154236\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60929afc35915c62b44fd05c\": {\r\n \"id\": \"60929afc35915c62b44fd05c\",\r\n \"value\": 1,\r\n \"sourceId\": \"60896888e4a85c72ef3fa300\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5968988286f7740d14064724\": {\r\n \"id\": \"5968988286f7740d14064724\",\r\n \"value\": 1,\r\n \"sourceId\": \"5967725e86f774601a446662\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3fc03286f77414d64f9941\": {\r\n \"id\": \"5a3fc03286f77414d64f9941\",\r\n \"value\": 1,\r\n \"sourceId\": \"5967725e86f774601a446662\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5968975586f7740e7266d974\": {\r\n \"id\": \"5968975586f7740e7266d974\",\r\n \"value\": 1,\r\n \"sourceId\": \"596760e186f7741e11214d58\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5968962686f7740e7266d973\": {\r\n \"id\": \"5968962686f7740e7266d973\",\r\n \"value\": 1,\r\n \"sourceId\": \"59675ea386f77414b32bded2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5f0389268580cc37797e0026\": {\r\n \"id\": \"5f0389268580cc37797e0026\",\r\n \"value\": 1,\r\n \"sourceId\": \"5eda19f0edce541157209cee\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59674d5186f00443b872d5f7\": {\r\n \"id\": \"59674d5186f00443b872d5f7\",\r\n \"value\": 17,\r\n \"sourceId\": \"59c50a9e86f7745fef66f4ff\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59624d5386f77446b872d5f7\": {\r\n \"id\": \"59624d5386f77446b872d5f7\",\r\n \"value\": 12,\r\n \"sourceId\": \"59c50c8886f7745fed3193bf\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59c50f1686f77412ef2c01e7\": {\r\n \"id\": \"59c50f1686f77412ef2c01e7\",\r\n \"value\": 7,\r\n \"sourceId\": \"59c50c8886f7745fed3193bf\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"59674d5186f77446b852d5f7\": {\r\n \"id\": \"59674d5186f77446b852d5f7\",\r\n \"value\": 26,\r\n \"sourceId\": \"59c512ad86f7741f0d09de9b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba62786f7742c9d4f5ee9\": {\r\n \"id\": \"5a3ba62786f7742c9d4f5ee9\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a03296886f774569778596a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba65f86f7743af1475f11\": {\r\n \"id\": \"5a3ba65f86f7743af1475f11\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a03296886f774569778596a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c94f65286f77455185027ee\": {\r\n \"id\": \"5c94f65286f77455185027ee\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a03296886f774569778596a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d27446f86f77475a86565a3\": {\r\n \"id\": \"5d27446f86f77475a86565a3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e46e86f77409453bce7c\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d7782c686f7742fa732bf07\": {\r\n \"id\": \"5d7782c686f7742fa732bf07\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d25e46e86f77409453bce7c\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"59674d5986f77446b872d5f7\": {\r\n \"id\": \"59674d5986f77446b872d5f7\",\r\n \"value\": 13,\r\n \"sourceId\": \"59ca264786f77445a80ed044\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59ca27f786f77445aa0ddc14\": {\r\n \"id\": \"59ca27f786f77445aa0ddc14\",\r\n \"value\": 11,\r\n \"sourceId\": \"59ca264786f77445a80ed044\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59ca29ab86f77445ab431c86\": {\r\n \"id\": \"59ca29ab86f77445ab431c86\",\r\n \"value\": 5,\r\n \"sourceId\": \"59ca264786f77445a80ed044\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63ac210b1287ef0b827d0cb8\": {\r\n \"id\": \"63ac210b1287ef0b827d0cb8\",\r\n \"value\": 1,\r\n \"sourceId\": \"626bd75b05f287031503c7f6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"59ca29ab86f77445ab133c86\": {\r\n \"id\": \"59ca29ab86f77445ab133c86\",\r\n \"value\": 1,\r\n \"sourceId\": \"59ca29fb86f77445ab465c87\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"59ca2c3086f77445aa0ddc15\": {\r\n \"id\": \"59ca2c3086f77445aa0ddc15\",\r\n \"value\": 1,\r\n \"sourceId\": \"59ca29fb86f77445ab465c87\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"59ca2cbe86f7740fe95c3e52\": {\r\n \"id\": \"59ca2cbe86f7740fe95c3e52\",\r\n \"value\": 2,\r\n \"sourceId\": \"59ca29fb86f77445ab465c87\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c922dde86f77438500a0fec\": {\r\n \"id\": \"5c922dde86f77438500a0fec\",\r\n \"value\": 12,\r\n \"sourceId\": \"59ca29fb86f77445ab465c87\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac61a8a86f7743a8d663c77\": {\r\n \"id\": \"5ac61a8a86f7743a8d663c77\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3477486f7741d651d6885\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac61ab986f7746e352cec8c\": {\r\n \"id\": \"5ac61ab986f7746e352cec8c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3477486f7741d651d6885\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac61adf86f774741c1bf096\": {\r\n \"id\": \"5ac61adf86f774741c1bf096\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ac3477486f7741d651d6885\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a865ce1943b749b5021f86\": {\r\n \"id\": \"63a865ce1943b749b5021f86\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3477486f7741d651d6885\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac61b1486f7743a8f30fc84\": {\r\n \"id\": \"5ac61b1486f7743a8f30fc84\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac3477486f7741d651d6885\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ac7a93286f774664f4cbd8c\": {\r\n \"id\": \"5ac7a93286f774664f4cbd8c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ac346cf86f7741d63233a02\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64ee9df4496db64f9b7a4433\": {\r\n \"id\": \"64ee9df4496db64f9b7a4433\",\r\n \"value\": 12,\r\n \"sourceId\": \"64ee9df4496db64f9b7a4432\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64ee9df4496db64f9b7a4437\": {\r\n \"id\": \"64ee9df4496db64f9b7a4437\",\r\n \"value\": 1,\r\n \"sourceId\": \"64ee9df4496db64f9b7a4432\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a280f8d86f774141b501756\": {\r\n \"id\": \"5a280f8d86f774141b501756\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a0449d586f77474e66227b7\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f039da057a46716b610b577\": {\r\n \"id\": \"5f039da057a46716b610b577\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edabd13218d181e29451442\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5edac1040880da21347b3845\": {\r\n \"id\": \"5edac1040880da21347b3845\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac1530880da21347b3846\": {\r\n \"id\": \"5edac1530880da21347b3846\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac1b2930f5454f51dcac4\": {\r\n \"id\": \"5edac1b2930f5454f51dcac4\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac1fccc183c769d778bd3\": {\r\n \"id\": \"5edac1fccc183c769d778bd3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac2582ddc9e4c802cd970\": {\r\n \"id\": \"5edac2582ddc9e4c802cd970\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac2a260bdcc7ff3558127\": {\r\n \"id\": \"5edac2a260bdcc7ff3558127\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edac2e10bb72a50635c2bf9\": {\r\n \"id\": \"5edac2e10bb72a50635c2bf9\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac020218d181e29451446\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a28127b86f7743808504ecc\": {\r\n \"id\": \"5a28127b86f7743808504ecc\",\r\n \"value\": 17199,\r\n \"sourceId\": \"5a27ba9586f7741b543d8e85\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a28152b86f7740ab40845fb\": {\r\n \"id\": \"5a28152b86f7740ab40845fb\",\r\n \"value\": 4,\r\n \"sourceId\": \"5a27bafb86f7741c73584017\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a28159686f77405710b1e65\": {\r\n \"id\": \"5a28159686f77405710b1e65\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27bafb86f7741c73584017\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a2815d786f774725a5893a6\": {\r\n \"id\": \"5a2815d786f774725a5893a6\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27bafb86f7741c73584017\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a28164786f77405822f36d9\": {\r\n \"id\": \"5a28164786f77405822f36d9\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27bafb86f7741c73584017\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edab7d3cc183c769d778bc5\": {\r\n \"id\": \"5edab7d3cc183c769d778bc5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edab736cc183c769d778bc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5edab8890880da21347b3826\": {\r\n \"id\": \"5edab8890880da21347b3826\",\r\n \"value\": 2,\r\n \"sourceId\": \"5edab736cc183c769d778bc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5edab8e216d985118871ba18\": {\r\n \"id\": \"5edab8e216d985118871ba18\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edab736cc183c769d778bc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5f03969a51823847c253afa0\": {\r\n \"id\": \"5f03969a51823847c253afa0\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edab736cc183c769d778bc2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5ae9b63286f774229110402d\": {\r\n \"id\": \"5ae9b63286f774229110402d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4493d86f7744b8e15aa8f\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae4543686f7742dc043c903\": {\r\n \"id\": \"5ae4543686f7742dc043c903\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ae4490786f7744ca822adcc\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae454a086f7742be909a81a\": {\r\n \"id\": \"5ae454a086f7742be909a81a\",\r\n \"value\": 2,\r\n \"sourceId\": \"5ae4490786f7744ca822adcc\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"608bfe32c61c4b541b381da9\": {\r\n \"id\": \"608bfe32c61c4b541b381da9\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974d01a66564e74191fc0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5b477f1486f7743009493232\": {\r\n \"id\": \"5b477f1486f7743009493232\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b477b6f86f7747290681823\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5b478de086f7744d1c3533a1\": {\r\n \"id\": \"5b478de086f7744d1c3533a1\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b478d0f86f7744d190d91b5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bd0a053b9dd01a116f474\": {\r\n \"id\": \"608bd0a053b9dd01a116f474\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bd2465e0ef91ab810f98a\": {\r\n \"id\": \"608bd2465e0ef91ab810f98a\",\r\n \"value\": 2,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bd0c20637f21f9934b6e4\": {\r\n \"id\": \"608bd0c20637f21f9934b6e4\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bd136c61c4b541b381da3\": {\r\n \"id\": \"608bd136c61c4b541b381da3\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608bd149f597ad0a33574d74\": {\r\n \"id\": \"608bd149f597ad0a33574d74\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608c187853b9dd01a116f480\": {\r\n \"id\": \"608c187853b9dd01a116f480\",\r\n \"value\": 1,\r\n \"sourceId\": \"608974af4b05530f55550c21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608a94101a66564e74191fc3\": {\r\n \"id\": \"608a94101a66564e74191fc3\",\r\n \"value\": 1,\r\n \"sourceId\": \"6089736efa70fc097863b8f6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"608a94ae1a66564e74191fc6\": {\r\n \"id\": \"608a94ae1a66564e74191fc6\",\r\n \"value\": 1,\r\n \"sourceId\": \"6089736efa70fc097863b8f6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6092947635915c62b44fd05b\": {\r\n \"id\": \"6092947635915c62b44fd05b\",\r\n \"value\": 1,\r\n \"sourceId\": \"6089732b59b92115597ad789\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c923d3d86f774556e08d7a5\": {\r\n \"id\": \"5c923d3d86f774556e08d7a5\",\r\n \"value\": 5,\r\n \"sourceId\": \"5b4795fb86f7745876267770\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a28184c86f774376e43772a\": {\r\n \"id\": \"5a28184c86f774376e43772a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bb1e86f7741f27621b7e\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c9de99286f7741ced54c902\": {\r\n \"id\": \"5c9de99286f7741ced54c902\",\r\n \"value\": 14,\r\n \"sourceId\": \"5a27bb8386f7741c770d2d0a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7d444f32fa1316250c3d5\": {\r\n \"id\": \"63a7d444f32fa1316250c3d5\",\r\n \"value\": 12,\r\n \"sourceId\": \"639282134ed9512be67647ed\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7d461f32fa1316250c3d7\": {\r\n \"id\": \"63a7d461f32fa1316250c3d7\",\r\n \"value\": 1,\r\n \"sourceId\": \"639282134ed9512be67647ed\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639cdf9aad9d7e3216668fd0\": {\r\n \"id\": \"639cdf9aad9d7e3216668fd0\",\r\n \"value\": 1,\r\n \"sourceId\": \"639282134ed9512be67647ed\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d25fd8386f77443fe457cae\": {\r\n \"id\": \"5d25fd8386f77443fe457cae\",\r\n \"value\": 7,\r\n \"sourceId\": \"5d25e29d86f7740a22516326\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d26143c86f77469ef0f894c\": {\r\n \"id\": \"5d26143c86f77469ef0f894c\",\r\n \"value\": 6,\r\n \"sourceId\": \"5d25e2b486f77409de05bba0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d357b6c86f774588d4d7e25\": {\r\n \"id\": \"5d357b6c86f774588d4d7e25\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d25e48186f77443e625e386\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d357b9586f7745b422d653f\": {\r\n \"id\": \"5d357b9586f7745b422d653f\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d25e48186f77443e625e386\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d357bb786f774588d4d7e27\": {\r\n \"id\": \"5d357bb786f774588d4d7e27\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e48186f77443e625e386\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"629f4f080f57046e362e6e9e\": {\r\n \"id\": \"629f4f080f57046e362e6e9e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e48186f77443e625e386\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63ac22351b5c95746621ddc4\": {\r\n \"id\": \"63ac22351b5c95746621ddc4\",\r\n \"value\": 2,\r\n \"sourceId\": \"61904daa7d0d857927447b9c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"61904ebb22e6d82ee97ccbbe\": {\r\n \"id\": \"61904ebb22e6d82ee97ccbbe\",\r\n \"value\": 1,\r\n \"sourceId\": \"61904daa7d0d857927447b9c\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66696cd3997231debad40d19\": {\r\n \"id\": \"66696cd3997231debad40d19\",\r\n \"value\": 15,\r\n \"sourceId\": \"6663149cfd5ca9577902e037\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d357e0e86f7745b3f307c56\": {\r\n \"id\": \"5d357e0e86f7745b3f307c56\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e4ad86f77443e625e387\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d27522686f774304e316405\": {\r\n \"id\": \"5d27522686f774304e316405\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e4ad86f77443e625e387\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c0be66c86f7744523489ab2\": {\r\n \"id\": \"5c0be66c86f7744523489ab2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c0be5fc86f774467a116593\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c0be69086f7743c9c1ecf43\": {\r\n \"id\": \"5c0be69086f7743c9c1ecf43\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c0be5fc86f774467a116593\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edabb950c502106f869bc04\": {\r\n \"id\": \"5edabb950c502106f869bc04\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edaba7c0c502106f869bc02\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5edabc2ca0055865214cb5a6\": {\r\n \"id\": \"5edabc2ca0055865214cb5a6\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edaba7c0c502106f869bc02\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3ba76486f7744d39436da2\": {\r\n \"id\": \"5a3ba76486f7744d39436da2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bb3d86f77411ea361a21\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a2e966286f7742f6c4f27a6\": {\r\n \"id\": \"5a2e966286f7742f6c4f27a6\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bb3d86f77411ea361a21\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f0488c590eea473df674002\": {\r\n \"id\": \"5f0488c590eea473df674002\",\r\n \"value\": 3,\r\n \"sourceId\": \"5f04886a3937dc337a6b8238\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5f04983ffbed7a08077b4367\": {\r\n \"id\": \"5f04983ffbed7a08077b4367\",\r\n \"value\": 3,\r\n \"sourceId\": \"5f04886a3937dc337a6b8238\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d8a09d386f77410b4225d13\": {\r\n \"id\": \"5d8a09d386f77410b4225d13\",\r\n \"value\": 2,\r\n \"sourceId\": \"5d25e4b786f77408251c4bfc\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5a3ba97386f77459df27d10e\": {\r\n \"id\": \"5a3ba97386f77459df27d10e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bbf886f774333a418eeb\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a37dc0c86f77469da071ef2\": {\r\n \"id\": \"5a37dc0c86f77469da071ef2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bbf886f774333a418eeb\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3ba7db86f7744f0e568c9c\": {\r\n \"id\": \"5a3ba7db86f7744f0e568c9c\",\r\n \"value\": 2,\r\n \"sourceId\": \"5a27bb5986f7741dfb660900\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a37de5486f7741535394d69\": {\r\n \"id\": \"5a37de5486f7741535394d69\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bb5986f7741dfb660900\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a3baa2586f7745b791b72fa\": {\r\n \"id\": \"5a3baa2586f7745b791b72fa\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bc1586f7741f6d40fa2f\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a37db0c86f7745b8f4be68a\": {\r\n \"id\": \"5a37db0c86f7745b8f4be68a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bc1586f7741f6d40fa2f\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5eaaaa7c93afa0558f3b5a1f\": {\r\n \"id\": \"5eaaaa7c93afa0558f3b5a1f\",\r\n \"value\": 15,\r\n \"sourceId\": \"5eaaaa7c93afa0558f3b5a1c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63987a4e3693c63d86328f27\": {\r\n \"id\": \"63987a4e3693c63d86328f27\",\r\n \"value\": 1,\r\n \"sourceId\": \"639873003693c63d86328f25\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5d2701b586f77469f1599fe2\": {\r\n \"id\": \"5d2701b586f77469f1599fe2\",\r\n \"value\": 35,\r\n \"sourceId\": \"5d25e2cc86f77443e47ae019\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d26fd8886f77469f0445745\": {\r\n \"id\": \"5d26fd8886f77469f0445745\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e2c386f77443e7549029\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d2710e686f7742e9019a6b2\": {\r\n \"id\": \"5d2710e686f7742e9019a6b2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e2c386f77443e7549029\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d272bd386f77446085fa4f9\": {\r\n \"id\": \"5d272bd386f77446085fa4f9\",\r\n \"value\": 4,\r\n \"sourceId\": \"5d25e43786f7740a212217fa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"666973ee1d80fbbbfeaf46c9\": {\r\n \"id\": \"666973ee1d80fbbbfeaf46c9\",\r\n \"value\": 333,\r\n \"sourceId\": \"6663149f1d3ec95634095e75\",\r\n \"type\": \"SellItemToTrader\"\r\n },\r\n \"617bf1e1d93d977d2452051f\": {\r\n \"id\": \"617bf1e1d93d977d2452051f\",\r\n \"value\": 10,\r\n \"sourceId\": \"6179ad0a6e9dd54ac275e3f2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d2733c586f7741dea4f3072\": {\r\n \"id\": \"5d2733c586f7741dea4f3072\",\r\n \"value\": 7,\r\n \"sourceId\": \"5d25e44386f77409453bce7b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5b47886986f7744d1a393e65\": {\r\n \"id\": \"5b47886986f7744d1a393e65\",\r\n \"value\": 4,\r\n \"sourceId\": \"5b47876e86f7744d1c353205\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae9c0c986f77468ab400f88\": {\r\n \"id\": \"5ae9c0c986f77468ab400f88\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4498786f7744bde357695\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ae9c10686f774703201f146\": {\r\n \"id\": \"5ae9c10686f774703201f146\",\r\n \"value\": 1,\r\n \"sourceId\": \"5ae4498786f7744bde357695\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c139eb686f7747878361a72\": {\r\n \"id\": \"5c139eb686f7747878361a72\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c139eb686f7747878361a6f\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c139eb686f7747878361a73\": {\r\n \"id\": \"5c139eb686f7747878361a73\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c139eb686f7747878361a6f\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c1129ed86f7746569440e88\": {\r\n \"id\": \"5c1129ed86f7746569440e88\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c1128e386f7746565181106\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c112a1b86f774656777d1ae\": {\r\n \"id\": \"5c112a1b86f774656777d1ae\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c1128e386f7746565181106\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6669abb8dac5788ebd0ff74a\": {\r\n \"id\": \"6669abb8dac5788ebd0ff74a\",\r\n \"value\": 5,\r\n \"sourceId\": \"666314a31cd52e3d040a2e76\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5b47824386f7744d190d8dd1\": {\r\n \"id\": \"5b47824386f7744d190d8dd1\",\r\n \"value\": 1,\r\n \"sourceId\": \"5b477f7686f7744d1b23c4d2\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"63987b49cd51826f7a069b85\": {\r\n \"id\": \"63987b49cd51826f7a069b85\",\r\n \"value\": 1,\r\n \"sourceId\": \"63987301e11ec11ff5504036\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"63987b9c05aa481907106505\": {\r\n \"id\": \"63987b9c05aa481907106505\",\r\n \"value\": 1,\r\n \"sourceId\": \"63987301e11ec11ff5504036\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"5c10f94386f774227172c577\": {\r\n \"id\": \"5c10f94386f774227172c577\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c10f94386f774227172c572\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5f04935cde3b9e0ecf03d864\": {\r\n \"id\": \"5f04935cde3b9e0ecf03d864\",\r\n \"value\": 10,\r\n \"sourceId\": \"5edac34d0bb72a50635c2bfa\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f0495458654d20be3564f4c\": {\r\n \"id\": \"5f0495458654d20be3564f4c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac34d0bb72a50635c2bfa\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f0495b8efefac7f7227de63\": {\r\n \"id\": \"5f0495b8efefac7f7227de63\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac34d0bb72a50635c2bfa\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f04539a29383318cb417b44\": {\r\n \"id\": \"5f04539a29383318cb417b44\",\r\n \"value\": 0,\r\n \"sourceId\": \"5edac34d0bb72a50635c2bfa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5edab5a6cecc0069284c0ec2\": {\r\n \"id\": \"5edab5a6cecc0069284c0ec2\",\r\n \"value\": 0,\r\n \"sourceId\": \"5edab4b1218d181e29451435\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5a28223786f7741c7a0b5401\": {\r\n \"id\": \"5a28223786f7741c7a0b5401\",\r\n \"value\": 1,\r\n \"sourceId\": \"5a27bc3686f7741c73584026\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5fd8aa3206fb3a6b8154a2c3\": {\r\n \"id\": \"5fd8aa3206fb3a6b8154a2c3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e4ca86f77409dd5cdf2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1233ac86f77406fa13baea\": {\r\n \"id\": \"5c1233ac86f77406fa13baea\",\r\n \"value\": 0,\r\n \"sourceId\": \"5c0bbaa886f7746941031d82\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c0bc95086f7746e784f39ec\": {\r\n \"id\": \"5c0bc95086f7746e784f39ec\",\r\n \"value\": 26,\r\n \"sourceId\": \"5c0bc91486f7746ab41857a2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c0bcc9c86f7746fe16dbba9\": {\r\n \"id\": \"5c0bcc9c86f7746fe16dbba9\",\r\n \"value\": 10,\r\n \"sourceId\": \"5c0bc91486f7746ab41857a2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d271a3486f774483c7bdb12\": {\r\n \"id\": \"5d271a3486f774483c7bdb12\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e2e286f77444001e2e48\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5d2719b186f7740701348573\": {\r\n \"id\": \"5d2719b186f7740701348573\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e2e286f77444001e2e48\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1fd66286f7743c7b261f7b\": {\r\n \"id\": \"5c1fd66286f7743c7b261f7b\",\r\n \"value\": 17,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1b713486f77413bc250406\": {\r\n \"id\": \"5c1b713486f77413bc250406\",\r\n \"value\": 16,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1b713986f77470d8650910\": {\r\n \"id\": \"5c1b713986f77470d8650910\",\r\n \"value\": 13,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1b713f86f774719c22e8a0\": {\r\n \"id\": \"5c1b713f86f774719c22e8a0\",\r\n \"value\": 12,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63aec4fe6d6c3377e64b9f39\": {\r\n \"id\": \"63aec4fe6d6c3377e64b9f39\",\r\n \"value\": 18,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65e08aa9f5879b2586d5fd4c\": {\r\n \"id\": \"65e08aa9f5879b2586d5fd4c\",\r\n \"value\": 14,\r\n \"sourceId\": \"5c0d4c12d09282029f539173\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bc84f7a86f774294c2f6862\": {\r\n \"id\": \"5bc84f7a86f774294c2f6862\",\r\n \"value\": 9,\r\n \"sourceId\": \"5bc4826c86f774106d22d88b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bc483ba86f77415034ba8d0\": {\r\n \"id\": \"5bc483ba86f77415034ba8d0\",\r\n \"value\": 5,\r\n \"sourceId\": \"5bc4836986f7740c0152911c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bc485b586f774726473a858\": {\r\n \"id\": \"5bc485b586f774726473a858\",\r\n \"value\": 5,\r\n \"sourceId\": \"5bc4856986f77454c317bea7\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5bc48aed86f77452c947ce67\": {\r\n \"id\": \"5bc48aed86f77452c947ce67\",\r\n \"value\": 3,\r\n \"sourceId\": \"5bc4893c86f774626f5ebf3e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64b6a5a525251516d7685428\": {\r\n \"id\": \"64b6a5a525251516d7685428\",\r\n \"value\": 0,\r\n \"sourceId\": \"5bc4893c86f774626f5ebf3e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64f83e9d52fc01298e2c857e\": {\r\n \"id\": \"64f83e9d52fc01298e2c857e\",\r\n \"value\": 1,\r\n \"sourceId\": \"64f83bcdde58fc437700d8fa\",\r\n \"type\": \"WeaponAssembly\"\r\n },\r\n \"639135534b15ca31f76bc319\": {\r\n \"id\": \"639135534b15ca31f76bc319\",\r\n \"value\": 1,\r\n \"sourceId\": \"639135534b15ca31f76bc317\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c1242fa86f7742aa04fed52\": {\r\n \"id\": \"5c1242fa86f7742aa04fed52\",\r\n \"value\": 26,\r\n \"sourceId\": \"5c0bd01e86f7747cdd799e56\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7da6f5199ab1f7d4a774a\": {\r\n \"id\": \"63a7da6f5199ab1f7d4a774a\",\r\n \"value\": 1,\r\n \"sourceId\": \"639135a7e705511c8a4a1b78\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7daae04d3dc28a52a2109\": {\r\n \"id\": \"63a7daae04d3dc28a52a2109\",\r\n \"value\": 1,\r\n \"sourceId\": \"639135a7e705511c8a4a1b78\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64b67c6358b5637e2d71a655\": {\r\n \"id\": \"64b67c6358b5637e2d71a655\",\r\n \"value\": 5,\r\n \"sourceId\": \"5c0be13186f7746f016734aa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64b67fcd3e349c7dbd06bd16\": {\r\n \"id\": \"64b67fcd3e349c7dbd06bd16\",\r\n \"value\": 0,\r\n \"sourceId\": \"5c0be13186f7746f016734aa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5eec9d054110547f1f545c99\": {\r\n \"id\": \"5eec9d054110547f1f545c99\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac63b930f5454f51e128b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5edac8483c809a44ef12b4d2\": {\r\n \"id\": \"5edac8483c809a44ef12b4d2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5edac63b930f5454f51e128b\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"608a8356fa70fc097863b8f8\": {\r\n \"id\": \"608a8356fa70fc097863b8f8\",\r\n \"value\": 11,\r\n \"sourceId\": \"608a768d82e40b3c727fd17d\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60e740b8b567ff641b129573\": {\r\n \"id\": \"60e740b8b567ff641b129573\",\r\n \"value\": 20,\r\n \"sourceId\": \"60e71d23c1bfa3050473b8e6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c1b765d86f77413193fa4f2\": {\r\n \"id\": \"5c1b765d86f77413193fa4f2\",\r\n \"value\": 6,\r\n \"sourceId\": \"5c0bd94186f7747a727f09b2\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"61a00f3f177fb945751bbe92\": {\r\n \"id\": \"61a00f3f177fb945751bbe92\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179b4f16e9dd54ac275e407\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63ac1a941b5c95746621ddb2\": {\r\n \"id\": \"63ac1a941b5c95746621ddb2\",\r\n \"value\": 1,\r\n \"sourceId\": \"6179b4f16e9dd54ac275e407\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d27369586f774457411b264\": {\r\n \"id\": \"5d27369586f774457411b264\",\r\n \"value\": 1,\r\n \"sourceId\": \"5d25e44f86f77443e625e385\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5d273a4d86f774457411b266\": {\r\n \"id\": \"5d273a4d86f774457411b266\",\r\n \"value\": 6,\r\n \"sourceId\": \"5d25e45e86f77408251c4bfa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a5cf262964a7488f5243d1\": {\r\n \"id\": \"63a5cf262964a7488f5243d1\",\r\n \"value\": 20,\r\n \"sourceId\": \"63a5cf262964a7488f5243ce\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5c52da1086f7742fbb42a814\": {\r\n \"id\": \"5c52da1086f7742fbb42a814\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c52da5886f7747364267a14\": {\r\n \"id\": \"5c52da5886f7747364267a14\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51bed886f77478bb033461\": {\r\n \"id\": \"5c51bed886f77478bb033461\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51bf8786f77416a11e5cb2\": {\r\n \"id\": \"5c51bf8786f77416a11e5cb2\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51bf9a86f77478bf5632aa\": {\r\n \"id\": \"5c51bf9a86f77478bf5632aa\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51bfb186f77478bd516d37\": {\r\n \"id\": \"5c51bfb186f77478bd516d37\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51bfc286f77478bc7ae1d9\": {\r\n \"id\": \"5c51bfc286f77478bc7ae1d9\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51c03186f7740ada3f2c3d\": {\r\n \"id\": \"5c51c03186f7740ada3f2c3d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51c04286f77478be4009f5\": {\r\n \"id\": \"5c51c04286f77478be4009f5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51c23a86f77478bb033466\": {\r\n \"id\": \"5c51c23a86f77478bb033466\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51c24c86f77416a11e5cb7\": {\r\n \"id\": \"5c51c24c86f77416a11e5cb7\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5c51c25c86f77478bf5632af\": {\r\n \"id\": \"5c51c25c86f77478bf5632af\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ec7998dc1683c0db84484e7\": {\r\n \"id\": \"5ec7998dc1683c0db84484e7\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ec79b3ced84ad5ddb58e24c\": {\r\n \"id\": \"5ec79b3ced84ad5ddb58e24c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ec79c5ac1683c0db84484eb\": {\r\n \"id\": \"5ec79c5ac1683c0db84484eb\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5ec79fb273279f683254baaa\": {\r\n \"id\": \"5ec79fb273279f683254baaa\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f75d4558f70ca7a1d684dac\": {\r\n \"id\": \"5f75d4558f70ca7a1d684dac\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5f75d521edb90b73913272a3\": {\r\n \"id\": \"5f75d521edb90b73913272a3\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60cfa136f81cc57f471718cb\": {\r\n \"id\": \"60cfa136f81cc57f471718cb\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60d06e921bdece56c249cc0c\": {\r\n \"id\": \"60d06e921bdece56c249cc0c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60d06f3420a6283a506aeb69\": {\r\n \"id\": \"60d06f3420a6283a506aeb69\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e827faf09904268a4dbc40\": {\r\n \"id\": \"60e827faf09904268a4dbc40\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60d074211bdece56c249cc13\": {\r\n \"id\": \"60d074211bdece56c249cc13\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60d074ef401d874962160aee\": {\r\n \"id\": \"60d074ef401d874962160aee\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff004de19a4c3422ea5d\": {\r\n \"id\": \"62a6ff004de19a4c3422ea5d\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff141c307729c3264f96\": {\r\n \"id\": \"62a6ff141c307729c3264f96\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff203e015d7ce1151d8a\": {\r\n \"id\": \"62a6ff203e015d7ce1151d8a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff454de19a4c3422ea5e\": {\r\n \"id\": \"62a6ff454de19a4c3422ea5e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff633e015d7ce1151d8b\": {\r\n \"id\": \"62a6ff633e015d7ce1151d8b\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff6b3e015d7ce1151d8c\": {\r\n \"id\": \"62a6ff6b3e015d7ce1151d8c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff7f1c307729c3264f97\": {\r\n \"id\": \"62a6ff7f1c307729c3264f97\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ff897230237f257cac2a\": {\r\n \"id\": \"62a6ff897230237f257cac2a\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ffaa7230237f257cac2c\": {\r\n \"id\": \"62a6ffaa7230237f257cac2c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ffb4a9a0ea77981b57d5\": {\r\n \"id\": \"62a6ffb4a9a0ea77981b57d5\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a6ffbcec21e50cad3b6708\": {\r\n \"id\": \"62a6ffbcec21e50cad3b6708\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"65b10c6a8511b7ef8694e060\": {\r\n \"id\": \"65b10c6a8511b7ef8694e060\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66b4bcc0e6d7bc4faf7f817c\": {\r\n \"id\": \"66b4bcc0e6d7bc4faf7f817c\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66b4bcec0f6e68013a5f0bac\": {\r\n \"id\": \"66b4bcec0f6e68013a5f0bac\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66b4bd0fe194ef246734689e\": {\r\n \"id\": \"66b4bd0fe194ef246734689e\",\r\n \"value\": 1,\r\n \"sourceId\": \"5c51aac186f77432ea65c552\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"669fb1ffe34e78d618792b41\": {\r\n \"id\": \"669fb1ffe34e78d618792b41\",\r\n \"value\": 5,\r\n \"sourceId\": \"669fa3979b0ce3feae01a130\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b38c7bf85b8bf7250f9cb7\": {\r\n \"id\": \"66b38c7bf85b8bf7250f9cb7\",\r\n \"value\": 4,\r\n \"sourceId\": \"66b38c7bf85b8bf7250f9cb6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b38de6a97d8cbafd711846\": {\r\n \"id\": \"66b38de6a97d8cbafd711846\",\r\n \"value\": 1,\r\n \"sourceId\": \"66b38c7bf85b8bf7250f9cb6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66c34bbbd5d174a3c9cd1382\": {\r\n \"id\": \"66c34bbbd5d174a3c9cd1382\",\r\n \"value\": 12,\r\n \"sourceId\": \"651415feb49e3253755f4b68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66c34ab2c3eee7ac0c41d160\": {\r\n \"id\": \"66c34ab2c3eee7ac0c41d160\",\r\n \"value\": 0,\r\n \"sourceId\": \"6529097eccf6aa5f8737b3d0\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b49441b14491e93b51599c\": {\r\n \"id\": \"66b49441b14491e93b51599c\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b49a1662133b59e3e9a92c\": {\r\n \"id\": \"66b49a1662133b59e3e9a92c\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b49a3e5665abc69d87b5e6\": {\r\n \"id\": \"66b49a3e5665abc69d87b5e6\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b4993717f669ba37f271a9\": {\r\n \"id\": \"66b4993717f669ba37f271a9\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b4997047402dedee9d1c55\": {\r\n \"id\": \"66b4997047402dedee9d1c55\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b499a1257913079a6e3645\": {\r\n \"id\": \"66b499a1257913079a6e3645\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b499c730acccbfc0436665\": {\r\n \"id\": \"66b499c730acccbfc0436665\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b499d7eb712b1555360355\": {\r\n \"id\": \"66b499d7eb712b1555360355\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b499eac980c9c597d23296\": {\r\n \"id\": \"66b499eac980c9c597d23296\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66bb14f05e2afbaa6ee7f9ff\": {\r\n \"id\": \"66bb14f05e2afbaa6ee7f9ff\",\r\n \"value\": 0,\r\n \"sourceId\": \"66b493bc2d8cd3b5e90a3648\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66c329f6f07551de7372f589\": {\r\n \"id\": \"66c329f6f07551de7372f589\",\r\n \"value\": 12,\r\n \"sourceId\": \"66c32996b4c0c017a3319cc3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669faf99963982aef42a5ba4\": {\r\n \"id\": \"669faf99963982aef42a5ba4\",\r\n \"value\": 6,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa09a13dcb8bf66e6bd\": {\r\n \"id\": \"669fafa09a13dcb8bf66e6bd\",\r\n \"value\": 8,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa1d0fe63abcf15fac8\": {\r\n \"id\": \"669fafa1d0fe63abcf15fac8\",\r\n \"value\": 6,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa2394f7353883ffd8d\": {\r\n \"id\": \"669fafa2394f7353883ffd8d\",\r\n \"value\": 3,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa49bf4b277e24f3681\": {\r\n \"id\": \"669fafa49bf4b277e24f3681\",\r\n \"value\": 1,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa5f597899ad6bc55bb\": {\r\n \"id\": \"669fafa5f597899ad6bc55bb\",\r\n \"value\": 11,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa76172f63531f6e74d\": {\r\n \"id\": \"669fafa76172f63531f6e74d\",\r\n \"value\": 3,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"669fafa9299830ffe78e937d\": {\r\n \"id\": \"669fafa9299830ffe78e937d\",\r\n \"value\": 3,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66a80f20fe47046136f14c8b\": {\r\n \"id\": \"66a80f20fe47046136f14c8b\",\r\n \"value\": 4,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66bd67615936a4753b7345be\": {\r\n \"id\": \"66bd67615936a4753b7345be\",\r\n \"value\": 6,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66bd6765b9e77d3672edfeee\": {\r\n \"id\": \"66bd6765b9e77d3672edfeee\",\r\n \"value\": 3,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66c2331d75e8aa67fbf65930\": {\r\n \"id\": \"66c2331d75e8aa67fbf65930\",\r\n \"value\": 4,\r\n \"sourceId\": \"669fa394e0c9f9fafa082897\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66a7eebed6bac3ecc16f7d6b\": {\r\n \"id\": \"66a7eebed6bac3ecc16f7d6b\",\r\n \"value\": 1,\r\n \"sourceId\": \"669fa39ee749756c920d02c8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e729cf5698ee7b0505743c\": {\r\n \"id\": \"60e729cf5698ee7b0505743c\",\r\n \"value\": 18,\r\n \"sourceId\": \"60e729cf5698ee7b05057439\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60e73397479eef59b01b0bd5\": {\r\n \"id\": \"60e73397479eef59b01b0bd5\",\r\n \"value\": 10,\r\n \"sourceId\": \"60e71dc67fcf9c556f325056\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e733b80367e10a450f7807\": {\r\n \"id\": \"60e733b80367e10a450f7807\",\r\n \"value\": 10,\r\n \"sourceId\": \"60e71dc67fcf9c556f325056\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60f0284e8b669d08a35bfada\": {\r\n \"id\": \"60f0284e8b669d08a35bfada\",\r\n \"value\": 3,\r\n \"sourceId\": \"60e71dc67fcf9c556f325056\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a70110eb3cb46d9a0bba78\": {\r\n \"id\": \"62a70110eb3cb46d9a0bba78\",\r\n \"value\": 20,\r\n \"sourceId\": \"60e71dc67fcf9c556f325056\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"666719fc7c5ae40e6adcf43e\": {\r\n \"id\": \"666719fc7c5ae40e6adcf43e\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ca9290f9e0806cca1\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"625eb7fe1ed3bb5bcc5bd9e6\": {\r\n \"id\": \"625eb7fe1ed3bb5bcc5bd9e6\",\r\n \"value\": 4,\r\n \"sourceId\": \"625d6ff5ddc94657c21a1625\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"625eb80da4eb80027c4f2e0a\": {\r\n \"id\": \"625eb80da4eb80027c4f2e0a\",\r\n \"value\": 4,\r\n \"sourceId\": \"625d6ff5ddc94657c21a1625\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"625eb81df7308432be1d44c6\": {\r\n \"id\": \"625eb81df7308432be1d44c6\",\r\n \"value\": 4,\r\n \"sourceId\": \"625d6ff5ddc94657c21a1625\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"625eb82ac4874104f230c0c6\": {\r\n \"id\": \"625eb82ac4874104f230c0c6\",\r\n \"value\": 4,\r\n \"sourceId\": \"625d6ff5ddc94657c21a1625\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"65734c186dc1e402c80dc1a2\": {\r\n \"id\": \"65734c186dc1e402c80dc1a2\",\r\n \"value\": 33,\r\n \"sourceId\": \"65734c186dc1e402c80dc19e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6615141bfda04449120269a8\": {\r\n \"id\": \"6615141bfda04449120269a8\",\r\n \"value\": 139,\r\n \"sourceId\": \"6615141bfda04449120269a7\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"661682aed31d408548016468\": {\r\n \"id\": \"661682aed31d408548016468\",\r\n \"value\": 50,\r\n \"sourceId\": \"6615141bfda04449120269a7\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"64f5deac39e45b527a7c4235\": {\r\n \"id\": \"64f5deac39e45b527a7c4235\",\r\n \"value\": 20,\r\n \"sourceId\": \"64f5deac39e45b527a7c4232\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"64e7bdd52d369a1c0172722f\": {\r\n \"id\": \"64e7bdd52d369a1c0172722f\",\r\n \"value\": 30,\r\n \"sourceId\": \"64e7b9bffd30422ed03dad38\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"665ef4f08f3a505364a8ab09\": {\r\n \"id\": \"665ef4f08f3a505364a8ab09\",\r\n \"value\": 2,\r\n \"sourceId\": \"665eec1f5e47a79f8605565a\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6661a14545909ae2e92ca2d5\": {\r\n \"id\": \"6661a14545909ae2e92ca2d5\",\r\n \"value\": 1,\r\n \"sourceId\": \"665eec4a4dfc83b0ed0a9dca\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6661a18a12e8457716d59f5d\": {\r\n \"id\": \"6661a18a12e8457716d59f5d\",\r\n \"value\": 1,\r\n \"sourceId\": \"665eec4a4dfc83b0ed0a9dca\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6660785fc37356435d193ae4\": {\r\n \"id\": \"6660785fc37356435d193ae4\",\r\n \"value\": 2,\r\n \"sourceId\": \"665eeca45d86b6c8aa03c79d\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"666078bee6ed30ab2294f593\": {\r\n \"id\": \"666078bee6ed30ab2294f593\",\r\n \"value\": 1,\r\n \"sourceId\": \"665eeca45d86b6c8aa03c79d\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6391e329c115f907b14700b1\": {\r\n \"id\": \"6391e329c115f907b14700b1\",\r\n \"value\": 1,\r\n \"sourceId\": \"625d700cc48e6c62a440fab5\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63ab727b1287ef0b827d0c95\": {\r\n \"id\": \"63ab727b1287ef0b827d0c95\",\r\n \"value\": 2,\r\n \"sourceId\": \"625d700cc48e6c62a440fab5\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"5e4d515e86f77438b2195246\": {\r\n \"id\": \"5e4d515e86f77438b2195246\",\r\n \"value\": 10,\r\n \"sourceId\": \"5e4d515e86f77438b2195244\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5e4d515e86f77438b2195248\": {\r\n \"id\": \"5e4d515e86f77438b2195248\",\r\n \"value\": 10,\r\n \"sourceId\": \"5e4d515e86f77438b2195244\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"5e4d515e86f77438b219524a\": {\r\n \"id\": \"5e4d515e86f77438b219524a\",\r\n \"value\": 5,\r\n \"sourceId\": \"5e4d515e86f77438b2195244\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6661a28be2cdba6a469447c7\": {\r\n \"id\": \"6661a28be2cdba6a469447c7\",\r\n \"value\": 2,\r\n \"sourceId\": \"665eeca92f7aedcc900b0437\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6661a2ae387c59056c822add\": {\r\n \"id\": \"6661a2ae387c59056c822add\",\r\n \"value\": 4,\r\n \"sourceId\": \"665eeca92f7aedcc900b0437\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6661a2bf4846fd2b6ba30f90\": {\r\n \"id\": \"6661a2bf4846fd2b6ba30f90\",\r\n \"value\": 3,\r\n \"sourceId\": \"665eeca92f7aedcc900b0437\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6397a2eee5d9c6753c61e2d8\": {\r\n \"id\": \"6397a2eee5d9c6753c61e2d8\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966faeea19ac7ed845db2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397a3b6f376f0344e45711b\": {\r\n \"id\": \"6397a3b6f376f0344e45711b\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966faeea19ac7ed845db2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397a47fe5d9c6753c61e2da\": {\r\n \"id\": \"6397a47fe5d9c6753c61e2da\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966faeea19ac7ed845db2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397a5cbdcdd126fef173f36\": {\r\n \"id\": \"6397a5cbdcdd126fef173f36\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966faeea19ac7ed845db2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65e09d3f0d1442c78274027e\": {\r\n \"id\": \"65e09d3f0d1442c78274027e\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966faeea19ac7ed845db2c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7cee004d3dc28a52a20f8\": {\r\n \"id\": \"63a7cee004d3dc28a52a20f8\",\r\n \"value\": 5,\r\n \"sourceId\": \"63966fbeea19ac7ed845db2e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63990ae2dcdd126fef1771c2\": {\r\n \"id\": \"63990ae2dcdd126fef1771c2\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966fbeea19ac7ed845db2e\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63b33cd9862e1142130b610c\": {\r\n \"id\": \"63b33cd9862e1142130b610c\",\r\n \"value\": 3,\r\n \"sourceId\": \"63966fccac6f8f3c677b9d89\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6399cc30b5992f573c65782b\": {\r\n \"id\": \"6399cc30b5992f573c65782b\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966fccac6f8f3c677b9d89\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"639914b61c712b1e1d4dafcb\": {\r\n \"id\": \"639914b61c712b1e1d4dafcb\",\r\n \"value\": 16,\r\n \"sourceId\": \"63966fe7ea74a47c2d3fc0e6\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60e74302d1a062318d3d225f\": {\r\n \"id\": \"60e74302d1a062318d3d225f\",\r\n \"value\": 5,\r\n \"sourceId\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e7432875131b4e61703b7a\": {\r\n \"id\": \"60e7432875131b4e61703b7a\",\r\n \"value\": 5,\r\n \"sourceId\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e7449875131b4e61703b7e\": {\r\n \"id\": \"60e7449875131b4e61703b7e\",\r\n \"value\": 5,\r\n \"sourceId\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60e744c9d1a062318d3d2262\": {\r\n \"id\": \"60e744c9d1a062318d3d2262\",\r\n \"value\": 5,\r\n \"sourceId\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"62a7019ea9a0ea77981b57da\": {\r\n \"id\": \"62a7019ea9a0ea77981b57da\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"60ec07bcd7b7cb55e94c1760\": {\r\n \"id\": \"60ec07bcd7b7cb55e94c1760\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec08fafd1bf4491c4e4550\": {\r\n \"id\": \"60ec08fafd1bf4491c4e4550\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec09f05d67b234af3d392f\": {\r\n \"id\": \"60ec09f05d67b234af3d392f\",\r\n \"value\": 6,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec0a9571035f300c301acb\": {\r\n \"id\": \"60ec0a9571035f300c301acb\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec0ad2ad25e3185465bbd0\": {\r\n \"id\": \"60ec0ad2ad25e3185465bbd0\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec0af8a664b027ab1441af\": {\r\n \"id\": \"60ec0af8a664b027ab1441af\",\r\n \"value\": 4,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec0b1871035f300c301acd\": {\r\n \"id\": \"60ec0b1871035f300c301acd\",\r\n \"value\": 6,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"65e19abadf39d26751b3bb1e\": {\r\n \"id\": \"65e19abadf39d26751b3bb1e\",\r\n \"value\": 5,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"60ec2b04bc9a8b34cd453b81\": {\r\n \"id\": \"60ec2b04bc9a8b34cd453b81\",\r\n \"value\": 0,\r\n \"sourceId\": \"60e71b62a0beca400d69efc4\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66672a1a928cfea6db3ff6cb\": {\r\n \"id\": \"66672a1a928cfea6db3ff6cb\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66672a9e351098ce6dee9d3e\": {\r\n \"id\": \"66672a9e351098ce6dee9d3e\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66672b18eba38faad31d29c3\": {\r\n \"id\": \"66672b18eba38faad31d29c3\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66672b47d515c72d9075fe64\": {\r\n \"id\": \"66672b47d515c72d9075fe64\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"66672b88a8236f9caf29c39e\": {\r\n \"id\": \"66672b88a8236f9caf29c39e\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6667308a456e86f33c87437c\": {\r\n \"id\": \"6667308a456e86f33c87437c\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"666730d6386cf75012a431f2\": {\r\n \"id\": \"666730d6386cf75012a431f2\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6667310584936a1238607d39\": {\r\n \"id\": \"6667310584936a1238607d39\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"6667314ae24cc783e69ad784\": {\r\n \"id\": \"6667314ae24cc783e69ad784\",\r\n \"value\": 1,\r\n \"sourceId\": \"6663148ed7f171c4c20226c1\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"666732298477f79f3f6ea229\": {\r\n \"id\": \"666732298477f79f3f6ea229\",\r\n \"value\": 11,\r\n \"sourceId\": \"6663149196a9349baa021baa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6667323ff686168c451ad02c\": {\r\n \"id\": \"6667323ff686168c451ad02c\",\r\n \"value\": 0,\r\n \"sourceId\": \"6663149196a9349baa021baa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397ae22e301557ae24cbfe7\": {\r\n \"id\": \"6397ae22e301557ae24cbfe7\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966fd9ea19ac7ed845db30\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397ae672e519e69d2139b28\": {\r\n \"id\": \"6397ae672e519e69d2139b28\",\r\n \"value\": 6,\r\n \"sourceId\": \"63966fd9ea19ac7ed845db30\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a9ad4cc31b00242d28a99d\": {\r\n \"id\": \"63a9ad4cc31b00242d28a99d\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966fd9ea19ac7ed845db30\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397af5cf376f0344e457120\": {\r\n \"id\": \"6397af5cf376f0344e457120\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966fd9ea19ac7ed845db30\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639a76e3e4aa7349085cb6e3\": {\r\n \"id\": \"639a76e3e4aa7349085cb6e3\",\r\n \"value\": 22,\r\n \"sourceId\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639a79785e3c9b787264d672\": {\r\n \"id\": \"639a79785e3c9b787264d672\",\r\n \"value\": 1,\r\n \"sourceId\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66e2a74cbe26c77a31e40e21\": {\r\n \"id\": \"66e2a74cbe26c77a31e40e21\",\r\n \"value\": 0,\r\n \"sourceId\": \"66e2a7e5919bad697104f4b3\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aba85403e0ee3101042878\": {\r\n \"id\": \"66aba85403e0ee3101042878\",\r\n \"value\": 4,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aba85403e0ee310104287a\": {\r\n \"id\": \"66aba85403e0ee310104287a\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b090f5723e7bbe8b518ca8\": {\r\n \"id\": \"66b090f5723e7bbe8b518ca8\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b0910951c5294b9d213918\": {\r\n \"id\": \"66b0910951c5294b9d213918\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b10eef0951e90ec383850b\": {\r\n \"id\": \"66b10eef0951e90ec383850b\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aba97b1000025218c82ea8\": {\r\n \"id\": \"66aba97b1000025218c82ea8\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aba85403e0ee3101042877\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa5b2cecad9c067780924b\": {\r\n \"id\": \"66aa5b2cecad9c067780924b\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa5bb281dff8466b076894\": {\r\n \"id\": \"66aa5bb281dff8466b076894\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa5be8035c6a410dc570b2\": {\r\n \"id\": \"66aa5be8035c6a410dc570b2\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa5c88c085db7d8158db4a\": {\r\n \"id\": \"66aa5c88c085db7d8158db4a\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66b0e57eddc25d8d17e3e3c0\": {\r\n \"id\": \"66b0e57eddc25d8d17e3e3c0\",\r\n \"value\": 2,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa5c8ba8c36eaef492ef92\": {\r\n \"id\": \"66aa5c8ba8c36eaef492ef92\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa58245ab22944110db6e9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66ab9da7eb102b9bcd08591d\": {\r\n \"id\": \"66ab9da7eb102b9bcd08591d\",\r\n \"value\": 7,\r\n \"sourceId\": \"66ab9da7eb102b9bcd08591c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66ab9da7eb102b9bcd08591f\": {\r\n \"id\": \"66ab9da7eb102b9bcd08591f\",\r\n \"value\": 1,\r\n \"sourceId\": \"66ab9da7eb102b9bcd08591c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66ab9da7eb102b9bcd085922\": {\r\n \"id\": \"66ab9da7eb102b9bcd085922\",\r\n \"value\": 5,\r\n \"sourceId\": \"66ab9da7eb102b9bcd08591c\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa61663aa37705c5024278\": {\r\n \"id\": \"66aa61663aa37705c5024278\",\r\n \"value\": 6,\r\n \"sourceId\": \"66aa61663aa37705c5024277\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa61663aa37705c502427c\": {\r\n \"id\": \"66aa61663aa37705c502427c\",\r\n \"value\": 1,\r\n \"sourceId\": \"66aa61663aa37705c5024277\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66aa61663aa37705c502427e\": {\r\n \"id\": \"66aa61663aa37705c502427e\",\r\n \"value\": 7,\r\n \"sourceId\": \"66aa61663aa37705c5024277\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"66ab970848ddbe9d4a0c49ab\": {\r\n \"id\": \"66ab970848ddbe9d4a0c49ab\",\r\n \"value\": 1,\r\n \"sourceId\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639adf3edbf1d842d260cda6\": {\r\n \"id\": \"639adf3edbf1d842d260cda6\",\r\n \"value\": 22,\r\n \"sourceId\": \"639670029113f06a7c3b2377\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7cf9f04d3dc28a52a20fa\": {\r\n \"id\": \"63a7cf9f04d3dc28a52a20fa\",\r\n \"value\": 1,\r\n \"sourceId\": \"639670029113f06a7c3b2377\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7cfe104d3dc28a52a20fc\": {\r\n \"id\": \"63a7cfe104d3dc28a52a20fc\",\r\n \"value\": 1,\r\n \"sourceId\": \"639670029113f06a7c3b2377\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639ae5445b201a534f436ef3\": {\r\n \"id\": \"639ae5445b201a534f436ef3\",\r\n \"value\": 1,\r\n \"sourceId\": \"639670029113f06a7c3b2377\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"63a7d2acee7b4d0d5507baf2\": {\r\n \"id\": \"63a7d2acee7b4d0d5507baf2\",\r\n \"value\": 6,\r\n \"sourceId\": \"6396700fea19ac7ed845db32\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63a7d315f32fa1316250c3d2\": {\r\n \"id\": \"63a7d315f32fa1316250c3d2\",\r\n \"value\": 1,\r\n \"sourceId\": \"6396700fea19ac7ed845db32\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639c3e21a1c5f814670c35e8\": {\r\n \"id\": \"639c3e21a1c5f814670c35e8\",\r\n \"value\": 1,\r\n \"sourceId\": \"6396700fea19ac7ed845db32\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6397ac912e519e69d2139b26\": {\r\n \"id\": \"6397ac912e519e69d2139b26\",\r\n \"value\": 10,\r\n \"sourceId\": \"6396701b9113f06a7c3b2379\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63bd64552803ffbfad0e3e48\": {\r\n \"id\": \"63bd64552803ffbfad0e3e48\",\r\n \"value\": 9,\r\n \"sourceId\": \"63967028c4a91c5cb76abd81\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639ae7423174277743234bb7\": {\r\n \"id\": \"639ae7423174277743234bb7\",\r\n \"value\": 52,\r\n \"sourceId\": \"63967028c4a91c5cb76abd81\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"63bd64ba3d34b0e64b0d0a17\": {\r\n \"id\": \"63bd64ba3d34b0e64b0d0a17\",\r\n \"value\": 1,\r\n \"sourceId\": \"63967028c4a91c5cb76abd81\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"639b002fda859817035a344b\": {\r\n \"id\": \"639b002fda859817035a344b\",\r\n \"value\": 1,\r\n \"sourceId\": \"63967028c4a91c5cb76abd81\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"670feb56b91cd521b33d16ad\": {\r\n \"id\": \"670feb56b91cd521b33d16ad\",\r\n \"value\": 0,\r\n \"sourceId\": \"670feb95a4e71050310cc14b\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675709e6d99b59e15bcd69f5\": {\r\n \"id\": \"675709e6d99b59e15bcd69f5\",\r\n \"value\": 0,\r\n \"sourceId\": \"675709bef4e2a2ce0f058f56\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675998e314f914c3859afd4f\": {\r\n \"id\": \"675998e314f914c3859afd4f\",\r\n \"value\": 0,\r\n \"sourceId\": \"675998a894008342eb04e47f\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675c1ff1a757ddd00404f0ae\": {\r\n \"id\": \"675c1ff1a757ddd00404f0ae\",\r\n \"value\": 61,\r\n \"sourceId\": \"675c1ff1a757ddd00404f0aa\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"676418a60b9bcbe280972288\": {\r\n \"id\": \"676418a60b9bcbe280972288\",\r\n \"value\": 0,\r\n \"sourceId\": \"6764174c86addd02bc033d68\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67585f77650907d333a3f082\": {\r\n \"id\": \"67585f77650907d333a3f082\",\r\n \"value\": 0,\r\n \"sourceId\": \"675031d3884e1da4a90b3bc9\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67583687e90b8dcb52b2390f\": {\r\n \"id\": \"67583687e90b8dcb52b2390f\",\r\n \"value\": 35,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6758369a1ac8288e78e907b9\": {\r\n \"id\": \"6758369a1ac8288e78e907b9\",\r\n \"value\": 3,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6758369be66a1e49655a8f6d\": {\r\n \"id\": \"6758369be66a1e49655a8f6d\",\r\n \"value\": 1,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6758369d70ddf414fe0e06e3\": {\r\n \"id\": \"6758369d70ddf414fe0e06e3\",\r\n \"value\": 2,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6758369eac845ae2d6446a0e\": {\r\n \"id\": \"6758369eac845ae2d6446a0e\",\r\n \"value\": 86,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"6758369f71ddaaf12e484444\": {\r\n \"id\": \"6758369f71ddaaf12e484444\",\r\n \"value\": 1,\r\n \"sourceId\": \"675031e1f300496cc4104450\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67684b24f737fc7c0f1056d8\": {\r\n \"id\": \"67684b24f737fc7c0f1056d8\",\r\n \"value\": 0,\r\n \"sourceId\": \"67684b24f737fc7c0f1056d95\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67570d63b9619534bf4857a1\": {\r\n \"id\": \"67570d63b9619534bf4857a1\",\r\n \"value\": 5,\r\n \"sourceId\": \"6750320e23fc8fd9cc087d14\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675c1f311bd716cdb87947d1\": {\r\n \"id\": \"675c1f311bd716cdb87947d1\",\r\n \"value\": 1,\r\n \"sourceId\": \"675c1ec7a46173572a0bf20a\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"675c1f040a1128e59422a876\": {\r\n \"id\": \"675c1f040a1128e59422a876\",\r\n \"value\": 10,\r\n \"sourceId\": \"675c1ec7a46173572a0bf20a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675c1f17cf59d5433be7ae77\": {\r\n \"id\": \"675c1f17cf59d5433be7ae77\",\r\n \"value\": 12,\r\n \"sourceId\": \"675c1ec7a46173572a0bf20a\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675708d9432e1eb103266d6e\": {\r\n \"id\": \"675708d9432e1eb103266d6e\",\r\n \"value\": 0,\r\n \"sourceId\": \"67503247622398376d0b57cd\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67703e07c5e4e7eb0d09bdfb\": {\r\n \"id\": \"67703e07c5e4e7eb0d09bdfb\",\r\n \"value\": 0,\r\n \"sourceId\": \"67703e07c5e4e7eb0d09bdfc4\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"67703e07c5e4e7eb0d09bde6\": {\r\n \"id\": \"67703e07c5e4e7eb0d09bde6\",\r\n \"value\": 0,\r\n \"sourceId\": \"67703e07c5e4e7eb0d09bde74\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67703e07c5e4e7eb0d09bdf1\": {\r\n \"id\": \"67703e07c5e4e7eb0d09bdf1\",\r\n \"value\": 0,\r\n \"sourceId\": \"67703e07c5e4e7eb0d09bdf34\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"67703e08c5e4e7eb0d09be07\": {\r\n \"id\": \"67703e08c5e4e7eb0d09be07\",\r\n \"value\": 0,\r\n \"sourceId\": \"67703e08c5e4e7eb0d09be099\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675c04f4db8807b75d0f38ec\": {\r\n \"id\": \"675c04f4db8807b75d0f38ec\",\r\n \"value\": 1,\r\n \"sourceId\": \"675c04f4db8807b75d0f38e8\",\r\n \"type\": \"HandoverItem\"\r\n },\r\n \"67583391869cf73efa21169f\": {\r\n \"id\": \"67583391869cf73efa21169f\",\r\n \"value\": 0,\r\n \"sourceId\": \"67503260899713ccad00060e\",\r\n \"type\": \"CounterCreator\"\r\n },\r\n \"675833a7fbbf777212206513\": {\r\n \"id\": \"675833a7fbbf777212206513\",\r\n \"value\": 0,\r\n \"sourceId\": \"67503260899713ccad00060e\",\r\n \"type\": \"CounterCreator\"\r\n }\r\n },\r\n \"Quests\": [\r\n {\r\n \"qid\": \"5936d90786f7742b1420ba5b\",\r\n \"startTime\": 1722866077,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722866077.0,\r\n \"AvailableForFinish\": 1722870233.0,\r\n \"Success\": 1722870413.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5936da9e86f7742d65037edf\",\r\n \"startTime\": 1722872043,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722872043.0,\r\n \"Success\": 1722879837.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59674cd986f7744ab26e32f2\",\r\n \"startTime\": 1722879842,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722879842.0,\r\n \"AvailableForFinish\": 1723057407.0,\r\n \"Success\": 1723057517.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59674eb386f774539f14813a\",\r\n \"startTime\": 1722879840,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722879840.0,\r\n \"AvailableForFinish\": 1722946400.0,\r\n \"Success\": 1722980937.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5967530a86f77462ba22226b\",\r\n \"startTime\": 1722995615,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722995615.0,\r\n \"Success\": 1723032215.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59675d6c86f7740a842fc482\",\r\n \"startTime\": 1723032223,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723032223.0,\r\n \"Success\": 1723219054.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59675ea386f77414b32bded2\",\r\n \"startTime\": 1723219059,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723219059.0,\r\n \"Success\": 1723221365.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596760e186f7741e11214d58\",\r\n \"startTime\": 1723219060,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723219060.0,\r\n \"Success\": 1723221361.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5967725e86f774601a446662\",\r\n \"startTime\": 1723219056,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723219056.0,\r\n \"Success\": 1723220498.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5967733e86f774602332fc84\",\r\n \"startTime\": 1722868599,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722868599.0,\r\n \"Success\": 1722888466.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59689ee586f7740d1570bbd5\",\r\n \"startTime\": 1722888470,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722888470.0,\r\n \"Success\": 1722888474.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59689fbd86f7740d137ebfc4\",\r\n \"startTime\": 1722888469,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722888469.0,\r\n \"AvailableForFinish\": 1722889121.0,\r\n \"Success\": 1722889277.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5968eb3186f7741dde183a4d\",\r\n \"startTime\": 1722889282,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722889282.0,\r\n \"AvailableForFinish\": 1722904697.0,\r\n \"Success\": 1722905005.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5969f90786f77420d2328015\",\r\n \"startTime\": 1722899402,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722899402.0,\r\n \"Success\": 1722900711.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5969f9e986f7741dde183a50\",\r\n \"startTime\": 1722900713,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722900713.0,\r\n \"Success\": 1722902759.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596a0e1686f7741ddf17dbee\",\r\n \"startTime\": 1722902772,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902772.0,\r\n \"Success\": 1723058376.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596a101f86f7741ddb481582\",\r\n \"startTime\": 1722902772,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902772.0,\r\n \"Fail\": 1723058376.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596a1e6c86f7741ddc2d3206\",\r\n \"startTime\": 1722902768,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902768.0,\r\n \"Success\": 1723386581.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596a204686f774576d4c95de\",\r\n \"startTime\": 1722888477,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722888477.0,\r\n \"Success\": 1722899400.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596a218586f77420d232807c\",\r\n \"startTime\": 1722902762,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902762.0,\r\n \"Success\": 1723379704.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596b36c586f77450d6045ad2\",\r\n \"startTime\": 1722866086,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722866086.0,\r\n \"Success\": 1722892242.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596b43fb86f77457ca186186\",\r\n \"startTime\": 1722892245,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722892245.0,\r\n \"Success\": 1722902788.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"596b455186f77457cb50eccb\",\r\n \"startTime\": 1722892245,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722892245.0,\r\n \"AvailableForFinish\": 1723304402.0,\r\n \"Success\": 1723307186.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5979ed3886f77431307dc512\",\r\n \"startTime\": 1722902792,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902792.0,\r\n \"Success\": 1722943393.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5979eee086f774311955e614\",\r\n \"startTime\": 1722943396,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943396.0,\r\n \"AvailableForFinish\": 1722985564.0,\r\n \"Success\": 1722986037.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5979f8bb86f7743ec214c7a6\",\r\n \"startTime\": 1722986040,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722986040.0,\r\n \"AvailableForFinish\": 1723031957.0,\r\n \"Success\": 1723032221.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5979f9ba86f7740f6c3fe9f2\",\r\n \"startTime\": 1722986040,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722986040.0,\r\n \"Success\": 1723032245.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"597a0b2986f77426d66c0633\",\r\n \"startTime\": 1723032250,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723032250.0,\r\n \"Success\": 1723033551.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"597a0e5786f77426d66c0636\",\r\n \"startTime\": 1723033554,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723033554.0,\r\n \"Success\": 1723034717.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"597a0f5686f774273b74f676\",\r\n \"startTime\": 1723034719,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1723034719.0,\r\n \"AvailableForFinish\": 1723035856.0,\r\n \"Fail\": 1723035935.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"597a160786f77477531d39d2\",\r\n \"startTime\": 1723034719,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723034719.0,\r\n \"AvailableForFinish\": 1723035856.0,\r\n \"Success\": 1723035935.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"597a171586f77405ba6887d3\",\r\n \"startTime\": 1723034720,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1723034720.0,\r\n \"AvailableForFinish\": 1723035856.0,\r\n \"Fail\": 1723035935.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59c124d686f774189b3c843f\",\r\n \"startTime\": 1722980940,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722980940.0,\r\n \"AvailableForFinish\": 1722994925.0,\r\n \"Success\": 1722995612.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59c50a9e86f7745fef66f4ff\",\r\n \"startTime\": 1723220504,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723220504.0,\r\n \"AvailableForFinish\": 1723228013.0,\r\n \"Success\": 1723228201.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59c50c8886f7745fed3193bf\",\r\n \"startTime\": 1723228206,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723228206.0,\r\n \"AvailableForFinish\": 1723230963.0,\r\n \"Success\": 1723231471.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59c512ad86f7741f0d09de9b\",\r\n \"startTime\": 1723231474,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723231474.0,\r\n \"AvailableForFinish\": 1723243047.0,\r\n \"Success\": 1723243324.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59c93e8e86f7742a406989c4\",\r\n \"startTime\": 1723036042,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723036042.0,\r\n \"Success\": 1723036084.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59ca1a6286f774509a270942\",\r\n \"startTime\": 1723036045,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723036045.0,\r\n \"Success\": 1723036074.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59ca264786f77445a80ed044\",\r\n \"startTime\": 1723243326,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723243326.0,\r\n \"AvailableForFinish\": 1723256993.0,\r\n \"Success\": 1723257049.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59ca29fb86f77445ab465c87\",\r\n \"startTime\": 1723257052,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723257052.0,\r\n \"AvailableForFinish\": 1723296273.0,\r\n \"Success\": 1723296483.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"59ca2eb686f77445a80ed049\",\r\n \"startTime\": 1723296485,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723296485.0,\r\n \"AvailableForFinish\": 1723311009.0,\r\n \"Success\": 1723311098.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a03153686f77442d90e2171\",\r\n \"startTime\": 1723208157,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723208157.0,\r\n \"AvailableForFinish\": 1723212649.0,\r\n \"Success\": 1723212899.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a03173786f77451cb427172\",\r\n \"startTime\": 1723212904,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723212904.0,\r\n \"AvailableForFinish\": 1723213909.0,\r\n \"Success\": 1723214156.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a0327ba86f77456b9154236\",\r\n \"startTime\": 1723214158,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723214158.0,\r\n \"Success\": 1723231682.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a03296886f774569778596a\",\r\n \"startTime\": 1723231684,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723231684.0,\r\n \"AvailableForFinish\": 1723381198.0,\r\n \"Success\": 1723381355.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a0449d586f77474e66227b7\",\r\n \"startTime\": 1723381361,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723381361.0,\r\n \"Success\": 1723382931.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b75b86f7742e97191958\",\r\n \"startTime\": 1722933050,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722933050.0,\r\n \"AvailableForFinish\": 1722937517.0,\r\n \"Success\": 1722937584.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b7a786f774579c3eb376\",\r\n \"startTime\": 1722937587,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722937587.0,\r\n \"AvailableForFinish\": 1722943100.0,\r\n \"Success\": 1722943373.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b7d686f77460d847e6a6\",\r\n \"startTime\": 1722943377,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943377.0,\r\n \"AvailableForFinish\": 1723118136.0,\r\n \"Success\": 1723121328.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b80086f774429a5d7e20\",\r\n \"startTime\": 1723121332,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723121332.0,\r\n \"Success\": 1723122481.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b87686f77460de0252a8\",\r\n \"startTime\": 1723122483,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723122483.0,\r\n \"AvailableForFinish\": 1723208090.0,\r\n \"Success\": 1723208153.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27b9de86f77464e5044585\",\r\n \"startTime\": 1723208156,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723208156.0,\r\n \"AvailableForFinish\": 1723212649.0,\r\n \"Success\": 1723212901.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27ba1c86f77461ea5a3c56\",\r\n \"startTime\": 1723212908,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723212908.0,\r\n \"AvailableForFinish\": 1724087270.0,\r\n \"Success\": 1724087324.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27ba9586f7741b543d8e85\",\r\n \"startTime\": 1723382933,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723382933.0,\r\n \"Success\": 1723382936.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bafb86f7741c73584017\",\r\n \"startTime\": 1723382942,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723382942.0,\r\n \"Success\": 1723412085.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bb1e86f7741f27621b7e\",\r\n \"startTime\": 1723412088,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723412088.0,\r\n \"Success\": 1723430163.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bb3d86f77411ea361a21\",\r\n \"startTime\": 1723430167,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723430167.0,\r\n \"Success\": 1723464092.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bb5986f7741dfb660900\",\r\n \"startTime\": 1723464107,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723464107.0,\r\n \"AvailableForFinish\": 1723465865.0,\r\n \"Success\": 1723465981.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bb8386f7741c770d2d0a\",\r\n \"startTime\": 1723412090,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723412090.0,\r\n \"AvailableForFinish\": 1723463961.0,\r\n \"Success\": 1723464088.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bbf886f774333a418eeb\",\r\n \"startTime\": 1723464104,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723464104.0,\r\n \"AvailableForFinish\": 1723465865.0,\r\n \"Success\": 1723465975.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bc1586f7741f6d40fa2f\",\r\n \"startTime\": 1723465984,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723465984.0,\r\n \"AvailableForFinish\": 1723648805.0,\r\n \"Success\": 1723649206.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bc3686f7741c73584026\",\r\n \"startTime\": 1723649212,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723649212.0,\r\n \"Success\": 1723650065.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bc6986f7741c7358402b\",\r\n \"startTime\": 1723650090,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723650090.0,\r\n \"Success\": 1723651143.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27bc8586f7741b543d8ea4\",\r\n \"startTime\": 1723651146,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723651146.0,\r\n \"Success\": 1723869869.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27c99a86f7747d2c6bdd8e\",\r\n \"startTime\": 1722892246,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722892246.0,\r\n \"AvailableForFinish\": 1722914153.0,\r\n \"Success\": 1722932481.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a27d2af86f7744e1115b323\",\r\n \"startTime\": 1722932484,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722932484.0,\r\n \"Success\": 1722932487.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a68661a86f774500f48afb0\",\r\n \"startTime\": 1723032235,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723032235.0,\r\n \"AvailableForFinish\": 1723066289.0,\r\n \"Success\": 1723066396.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a68663e86f774501078f78a\",\r\n \"startTime\": 1723066398,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723066398.0,\r\n \"Success\": 1723122533.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a68665c86f774255929b4c7\",\r\n \"startTime\": 1723122539,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723122539.0,\r\n \"Success\": 1723125135.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a68667486f7742607157d28\",\r\n \"startTime\": 1723125138,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723125138.0,\r\n \"Success\": 1723125145.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5a68669a86f774255929b4d4\",\r\n \"startTime\": 1723125157,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723125157.0,\r\n \"AvailableForFinish\": 1723125598.0,\r\n \"Success\": 1723125667.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac23c6186f7741247042bad\",\r\n \"startTime\": 1722864929,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722864929.0,\r\n \"Success\": 1722877393.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac2426c86f774138762edfe\",\r\n \"startTime\": 1722877431,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722877431.0,\r\n \"Success\": 1722913047.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac2428686f77412450b42bf\",\r\n \"startTime\": 1722877432,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722877432.0,\r\n \"Success\": 1722943694.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac242ab86f77412464f68b4\",\r\n \"startTime\": 1723330482,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723330482.0,\r\n \"Success\": 1723330575.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac244c486f77413e12cf945\",\r\n \"startTime\": 1723121257,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723121257.0,\r\n \"Success\": 1723231973.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac244eb86f7741356335af1\",\r\n \"startTime\": 1723030068,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723030068.0,\r\n \"Success\": 1723030278.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac345dc86f774288030817f\",\r\n \"startTime\": 1722888490,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722888490.0,\r\n \"AvailableForFinish\": 1722914153.0,\r\n \"Success\": 1722914314.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3460c86f7742880308185\",\r\n \"startTime\": 1722914316,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722914316.0,\r\n \"Success\": 1722914328.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3462b86f7741d6118b983\",\r\n \"startTime\": 1722914333,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722914333.0,\r\n \"Success\": 1722945920.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3464c86f7741d651d6877\",\r\n \"startTime\": 1722945924,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722945924.0,\r\n \"Success\": 1723568173.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3467986f7741d6224abc2\",\r\n \"startTime\": 1722913049,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722913049.0,\r\n \"AvailableForFinish\": 1723066289.0,\r\n \"Success\": 1723066406.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac346a886f7744e1b083d67\",\r\n \"startTime\": 1723066411,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723066411.0,\r\n \"Success\": 1723343865.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac346cf86f7741d63233a02\",\r\n \"startTime\": 1723343870,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723343870.0,\r\n \"AvailableForFinish\": 1723382824.0,\r\n \"Success\": 1723382897.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac346e886f7741d6118b99b\",\r\n \"startTime\": 1723382899,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723382899.0,\r\n \"AvailableForFinish\": 1723491666.0,\r\n \"Success\": 1723491842.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3475486f7741d6224abd3\",\r\n \"startTime\": 1722914331,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722914331.0,\r\n \"Success\": 1723127827.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3477486f7741d651d6885\",\r\n \"startTime\": 1723343868,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723343868.0,\r\n \"AvailableForFinish\": 1723398059.0,\r\n \"Success\": 1723398308.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ac3479086f7742880308199\",\r\n \"startTime\": 1723066409,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723066409.0,\r\n \"Success\": 1723126991.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae3267986f7742a413592fe\",\r\n \"startTime\": 1722944198,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722944198.0,\r\n \"Success\": 1722944398.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae3270f86f77445ba41d4dd\",\r\n \"startTime\": 1723029848,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723029848.0,\r\n \"Success\": 1723030066.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723019998\r\n },\r\n {\r\n \"qid\": \"5ae3277186f7745973054106\",\r\n \"startTime\": 1723030280,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723030280.0,\r\n \"Success\": 1723030453.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae327c886f7745c7b3f2f3f\",\r\n \"startTime\": 1723110129,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723110129.0,\r\n \"Success\": 1723110340.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae3280386f7742a41359364\",\r\n \"startTime\": 1723330389,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723330389.0,\r\n \"Success\": 1723330480.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae448a386f7744d3730fff0\",\r\n \"startTime\": 1722913039,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722913039.0,\r\n \"Success\": 1722943439.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae448bf86f7744d733e55ee\",\r\n \"startTime\": 1722943441,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943441.0,\r\n \"AvailableForFinish\": 1723134832.0,\r\n \"Success\": 1723134960.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae448e586f7744dcf0c2a67\",\r\n \"startTime\": 1722943442,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943442.0,\r\n \"AvailableForFinish\": 1723116204.0,\r\n \"Success\": 1723116447.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae448f286f77448d73c0131\",\r\n \"startTime\": 1723134964,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723134964.0,\r\n \"AvailableForFinish\": 1723391159.0,\r\n \"Success\": 1723391303.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4490786f7744ca822adcc\",\r\n \"startTime\": 1723391308,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723391308.0,\r\n \"Success\": 1723642292.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4493486f7744efa289417\",\r\n \"startTime\": 1723134963,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723134963.0,\r\n \"Success\": 1723391300.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4493d86f7744b8e15aa8f\",\r\n \"startTime\": 1723391305,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723391305.0,\r\n \"Success\": 1723394696.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4495086f77443c122bc40\",\r\n \"startTime\": 1723394702,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723394702.0,\r\n \"Success\": 1723503421.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4495c86f7744e87761355\",\r\n \"startTime\": 1723503428,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723503428.0,\r\n \"Success\": 1723503456.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4496986f774459e77beb6\",\r\n \"startTime\": 1723503458,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723503458.0,\r\n \"Success\": 1723732703.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4497b86f7744cf402ed00\",\r\n \"startTime\": 1723732706,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723732706.0,\r\n \"Success\": 1723732834.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4498786f7744bde357695\",\r\n \"startTime\": 1723503491,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723503491.0,\r\n \"Success\": 1723506331.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae4499a86f77449783815db\",\r\n \"startTime\": 1723732928,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723732928.0,\r\n \"Success\": 1723732931.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae449a586f7744bde357696\",\r\n \"startTime\": 1723506334,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723506334.0,\r\n \"Success\": 1723506338.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae449b386f77446d8741719\",\r\n \"startTime\": 1723642295,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723642295.0,\r\n \"AvailableForFinish\": 1723642750.0,\r\n \"Success\": 1723642834.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae449c386f7744bde357697\",\r\n \"startTime\": 1723642839,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723642839.0,\r\n \"AvailableForFinish\": 1723756526.0,\r\n \"Success\": 1723756713.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ae449d986f774453a54a7e1\",\r\n \"startTime\": 1723756716,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723756716.0,\r\n \"Success\": 1723756738.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b47749f86f7746c5d6a5fd4\",\r\n \"startTime\": 1723330579,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723330579.0,\r\n \"Success\": 1723330915.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b47799d86f7746c5d6a5fd8\",\r\n \"startTime\": 1723110929,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723110929.0,\r\n \"Success\": 1723111043.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b477b6f86f7747290681823\",\r\n \"startTime\": 1723391339,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723391339.0,\r\n \"Success\": 1723393296.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b477f7686f7744d1b23c4d2\",\r\n \"startTime\": 1723589840,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723589840.0,\r\n \"Success\": 1723590042.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b47825886f77468074618d3\",\r\n \"startTime\": 1723669056,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723669056.0,\r\n \"Success\": 1723669457.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723665932\r\n },\r\n {\r\n \"qid\": \"5b47876e86f7744d1c353205\",\r\n \"startTime\": 1723503424,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723503424.0,\r\n \"Success\": 1723640007.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b47891f86f7744d1b23c571\",\r\n \"startTime\": 1723732727,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723732727.0,\r\n \"Success\": 1723732838.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b478b1886f7744d1b23c57d\",\r\n \"startTime\": 1723642836,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723642836.0,\r\n \"AvailableForFinish\": 1723644062.0,\r\n \"Success\": 1723644155.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b478d0f86f7744d190d91b5\",\r\n \"startTime\": 1723394699,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723394699.0,\r\n \"AvailableForFinish\": 1723406393.0,\r\n \"Success\": 1723406467.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b478eca86f7744642012254\",\r\n \"startTime\": 1723047638,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723047638.0,\r\n \"Success\": 1723116512.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b478ff486f7744d184ecbbf\",\r\n \"startTime\": 1723116514,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723116514.0,\r\n \"Success\": 1723395710.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b47926a86f7747ccc057c15\",\r\n \"startTime\": 1723340689,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723340689.0,\r\n \"AvailableForFinish\": 1723407454.0,\r\n \"Success\": 1723407583.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b4794cb86f774598100d5d4\",\r\n \"startTime\": 1723121361,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723121361.0,\r\n \"Success\": 1723382975.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5b4795fb86f7745876267770\",\r\n \"startTime\": 1723407585,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723407585.0,\r\n \"AvailableForFinish\": 1723748108.0,\r\n \"Success\": 1723748257.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc4776586f774512d07cf05\",\r\n \"startTime\": 1723043995,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723043995.0,\r\n \"AvailableForFinish\": 1723410573.0,\r\n \"Success\": 1723410782.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc479e586f7747f376c7da3\",\r\n \"startTime\": 1723044003,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723044003.0,\r\n \"AvailableForFinish\": 1723411974.0,\r\n \"Success\": 1723412064.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc47dbf86f7741ee74e93b9\",\r\n \"startTime\": 1723412066,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723412066.0,\r\n \"AvailableForFinish\": 1723417331.0,\r\n \"Success\": 1723417972.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc480a686f7741af0342e29\",\r\n \"startTime\": 1723417978,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723417978.0,\r\n \"AvailableForFinish\": 1723811074.0,\r\n \"Success\": 1723811137.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc4826c86f774106d22d88b\",\r\n \"startTime\": 1723811141,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723811141.0,\r\n \"AvailableForFinish\": 1723814552.0,\r\n \"Success\": 1723814651.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc4836986f7740c0152911c\",\r\n \"startTime\": 1723814655,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723814655.0,\r\n \"AvailableForFinish\": 1723817472.0,\r\n \"Success\": 1723817675.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc4856986f77454c317bea7\",\r\n \"startTime\": 1723817678,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723817678.0,\r\n \"AvailableForFinish\": 1723822948.0,\r\n \"Success\": 1723823023.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5bc4893c86f774626f5ebf3e\",\r\n \"startTime\": 1723823028,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723823028.0,\r\n \"AvailableForFinish\": 1723827990.0,\r\n \"Success\": 1723828148.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bbaa886f7746941031d82\",\r\n \"startTime\": 1723748274,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723748274.0,\r\n \"AvailableForFinish\": 1723749055.0,\r\n \"Success\": 1723749482.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bc91486f7746ab41857a2\",\r\n \"startTime\": 1723749485,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723749485.0,\r\n \"AvailableForFinish\": 1723768938.0,\r\n \"Success\": 1723769727.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bd01e86f7747cdd799e56\",\r\n \"startTime\": 1723852520,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723852520.0,\r\n \"AvailableForFinish\": 1724007111.0,\r\n \"Success\": 1724007204.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bd94186f7747a727f09b2\",\r\n \"startTime\": 1723990609,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723990609.0,\r\n \"AvailableForFinish\": 1724027097.0,\r\n \"Success\": 1724027150.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bdb5286f774166e38eed4\",\r\n \"startTime\": 1723748260,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723748260.0,\r\n \"Success\": 1723748270.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0bde0986f77479cf22c2f8\",\r\n \"startTime\": 1722945930,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722945930.0,\r\n \"AvailableForFinish\": 1723869772.0,\r\n \"Success\": 1723869855.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0be13186f7746f016734aa\",\r\n \"startTime\": 1723869875,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723869875.0,\r\n \"AvailableForFinish\": 1723871664.0,\r\n \"Success\": 1723871728.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0be5fc86f774467a116593\",\r\n \"startTime\": 1723428816,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723428816.0,\r\n \"Success\": 1723568328.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d0d5086f774363760aef2\",\r\n \"startTime\": 1723296473,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723296473.0,\r\n \"AvailableForFinish\": 1723432630.0,\r\n \"Success\": 1723462400.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d0f1886f77457b8210226\",\r\n \"startTime\": 1723382980,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723382980.0,\r\n \"Success\": 1723811247.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d190cd09282029f5390d8\",\r\n \"startTime\": 1723033563,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723033563.0,\r\n \"AvailableForFinish\": 1723990520.0,\r\n \"Success\": 1723990607.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d1c4cd0928202a02a6f5c\",\r\n \"startTime\": 1723593770,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723593770.0,\r\n \"AvailableForFinish\": 1723683173.0,\r\n \"Success\": 1723683994.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d4c12d09282029f539173\",\r\n \"startTime\": 1723811250,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723811250.0,\r\n \"AvailableForFinish\": 1723940212.0,\r\n \"Success\": 1723940352.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c0d4e61d09282029f53920e\",\r\n \"startTime\": 1723898745,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723898745.0,\r\n \"AvailableForFinish\": 1723906609.0,\r\n \"Success\": 1723906701.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c10f94386f774227172c572\",\r\n \"startTime\": 1723640010,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723640010.0,\r\n \"AvailableForFinish\": 1723640902.0,\r\n \"Success\": 1723640995.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c1128e386f7746565181106\",\r\n \"startTime\": 1723568182,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723568182.0,\r\n \"Success\": 1723568246.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c112d7e86f7740d6f647486\",\r\n \"startTime\": 1723644159,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723644159.0,\r\n \"Success\": 1723644161.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c1141f386f77430ff393792\",\r\n \"startTime\": 1723732908,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723732908.0,\r\n \"Success\": 1723732925.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c1234c286f77406fa13baeb\",\r\n \"startTime\": 1722980943,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722980943.0,\r\n \"AvailableForFinish\": 1723340263.0,\r\n \"Success\": 1723340685.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c12452c86f7744b83469073\",\r\n \"startTime\": 1723431889,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723431889.0,\r\n \"Success\": 1723669561.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c139eb686f7747878361a6f\",\r\n \"startTime\": 1723568176,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723568176.0,\r\n \"Success\": 1723568307.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5c51aac186f77432ea65c552\",\r\n \"startTime\": 1724089224,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724089224.0,\r\n \"Success\": 1724206295.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d2495a886f77425cd51e403\",\r\n \"startTime\": 1722864935,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722864935.0,\r\n \"Success\": 1722867632.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d24b81486f77439c92d6ba8\",\r\n \"startTime\": 1722867636,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722867636.0,\r\n \"Success\": 1723043990.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25aed386f77442734d25d2\",\r\n \"startTime\": 1723043993,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723043993.0,\r\n \"AvailableForFinish\": 1723056087.0,\r\n \"Success\": 1723056245.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25b6be86f77444001e1b89\",\r\n \"startTime\": 1723056248,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723056248.0,\r\n \"AvailableForFinish\": 1723057407.0,\r\n \"Success\": 1723057527.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25bfd086f77442734d3007\",\r\n \"startTime\": 1723057530,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723057530.0,\r\n \"AvailableForFinish\": 1723060565.0,\r\n \"Success\": 1723060876.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25c81b86f77443e625dd71\",\r\n \"startTime\": 1723060880,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723060880.0,\r\n \"AvailableForFinish\": 1723116204.0,\r\n \"Success\": 1723116452.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25cf2686f77443e75488d4\",\r\n \"startTime\": 1723116458,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723116458.0,\r\n \"AvailableForFinish\": 1723422079.0,\r\n \"Success\": 1723422265.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25d2c186f77443e35162e5\",\r\n \"startTime\": 1723116456,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723116456.0,\r\n \"AvailableForFinish\": 1723126830.0,\r\n \"Success\": 1723126977.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e29d86f7740a22516326\",\r\n \"startTime\": 1723422267,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723422267.0,\r\n \"AvailableForFinish\": 1723469527.0,\r\n \"Success\": 1723469623.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2a986f77409dd5cdf2a\",\r\n \"startTime\": 1723469626,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723469626.0,\r\n \"Success\": 1723469628.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2b486f77409de05bba0\",\r\n \"startTime\": 1723422274,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723422274.0,\r\n \"AvailableForFinish\": 1723476300.0,\r\n \"Success\": 1723476578.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2c386f77443e7549029\",\r\n \"startTime\": 1723476586,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723476586.0,\r\n \"AvailableForFinish\": 1723480808.0,\r\n \"Success\": 1723481518.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2cc86f77443e47ae019\",\r\n \"startTime\": 1723476584,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723476584.0,\r\n \"AvailableForFinish\": 1723489839.0,\r\n \"Success\": 1723490141.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2d886f77442734d335e\",\r\n \"startTime\": 1723490155,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723490155.0,\r\n \"AvailableForFinish\": 1723999936.0,\r\n \"Success\": 1724000007.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2e286f77444001e2e48\",\r\n \"startTime\": 1723756750,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723756750.0,\r\n \"AvailableForFinish\": 1723917120.0,\r\n \"Success\": 1723917240.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e2ee86f77443e35162ea\",\r\n \"startTime\": 1723476581,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723476581.0,\r\n \"Success\": 1723672074.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e43786f7740a212217fa\",\r\n \"startTime\": 1723476589,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723476589.0,\r\n \"AvailableForFinish\": 1723483244.0,\r\n \"Success\": 1723484034.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e44386f77409453bce7b\",\r\n \"startTime\": 1723490158,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723490158.0,\r\n \"AvailableForFinish\": 1723494397.0,\r\n \"Success\": 1723494623.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e44f86f77443e625e385\",\r\n \"startTime\": 1724004177,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724004177.0,\r\n \"AvailableForFinish\": 1724009316.0,\r\n \"Success\": 1724009416.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e45e86f77408251c4bfa\",\r\n \"startTime\": 1724009418,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724009418.0,\r\n \"AvailableForFinish\": 1724013642.0,\r\n \"Success\": 1724013843.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e46e86f77409453bce7c\",\r\n \"startTime\": 1723234137,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723234137.0,\r\n \"Success\": 1723405308.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e48186f77443e625e386\",\r\n \"startTime\": 1723422276,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723422276.0,\r\n \"AvailableForFinish\": 1723427793.0,\r\n \"Success\": 1723427936.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e48d86f77408251c4bfb\",\r\n \"startTime\": 1723043993,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723043993.0,\r\n \"Success\": 1723234128.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e4ad86f77443e625e387\",\r\n \"startTime\": 1723427941,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723427941.0,\r\n \"Success\": 1723464051.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e4b786f77408251c4bfc\",\r\n \"startTime\": 1723464053,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723464053.0,\r\n \"Success\": 1723464060.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e4ca86f77409dd5cdf2c\",\r\n \"startTime\": 1723672078,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723672078.0,\r\n \"AvailableForFinish\": 1723831799.0,\r\n \"Success\": 1723832195.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d25e4d586f77443e625e388\",\r\n \"startTime\": 1723940424,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723940424.0,\r\n \"AvailableForFinish\": 1723984276.0,\r\n \"Success\": 1723984557.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d4bec3486f7743cac246665\",\r\n \"startTime\": 1723121335,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723121335.0,\r\n \"Success\": 1723823014.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d6fb2c086f77449da599c24\",\r\n \"startTime\": 1723125147,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723125147.0,\r\n \"Success\": 1723125153.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5d6fbc2886f77449d825f9d3\",\r\n \"startTime\": 1723650240,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723650240.0,\r\n \"Success\": 1726688433.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5dc53acb86f77469c740c893\",\r\n \"startTime\": 1723756865,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1723756865.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5e383a6386f77465910ce1f3\",\r\n \"startTime\": 1723732906,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723732906.0,\r\n \"Success\": 1725475497.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5e4d515e86f77438b2195244\",\r\n \"startTime\": 1725475503,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725475503.0,\r\n \"Success\": 1725811708.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5eaaaa7c93afa0558f3b5a1c\",\r\n \"startTime\": 1723469633,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723469633.0,\r\n \"AvailableForFinish\": 1723489839.0,\r\n \"Success\": 1723490139.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5eda19f0edce541157209cee\",\r\n \"startTime\": 1723220502,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723220502.0,\r\n \"AvailableForFinish\": 1723381198.0,\r\n \"Success\": 1723381368.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edab4b1218d181e29451435\",\r\n \"startTime\": 1723647373,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1723647373.0,\r\n \"Fail\": 1723929429.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edab736cc183c769d778bc2\",\r\n \"startTime\": 1723386584,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723386584.0,\r\n \"AvailableForFinish\": 1723428756.0,\r\n \"Success\": 1723428813.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edaba7c0c502106f869bc02\",\r\n \"startTime\": 1723428821,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723428821.0,\r\n \"Success\": 1723464084.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edabd13218d181e29451442\",\r\n \"startTime\": 1723381378,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723381378.0,\r\n \"AvailableForFinish\": 1723389670.0,\r\n \"Success\": 1723389761.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edac020218d181e29451446\",\r\n \"startTime\": 1723381387,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723381387.0,\r\n \"Success\": 1723553623.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edac34d0bb72a50635c2bfa\",\r\n \"startTime\": 1723647373,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723647373.0,\r\n \"Success\": 1723929429.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5edac63b930f5454f51e128b\",\r\n \"startTime\": 1723929436,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723929436.0,\r\n \"Success\": 1723930221.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ede55112c95834b583f052a\",\r\n \"startTime\": 1722995617,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722995617.0,\r\n \"AvailableForFinish\": 1723039705.0,\r\n \"Success\": 1723039955.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5ede567cfa6dc072ce15d6e3\",\r\n \"startTime\": 1723039960,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723039960.0,\r\n \"AvailableForFinish\": 1723041087.0,\r\n \"Success\": 1723041176.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5f04886a3937dc337a6b8238\",\r\n \"startTime\": 1723432043,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723432043.0,\r\n \"AvailableForFinish\": 1723647240.0,\r\n \"Success\": 1723647351.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"5fd9fad9c1ce6b1a3b486d00\",\r\n \"startTime\": 1722870415,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722870415.0,\r\n \"AvailableForFinish\": 1723037926.0,\r\n \"Success\": 1723038300.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"600302d73b897b11364cd161\",\r\n \"startTime\": 1723497240,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723497240.0,\r\n \"AvailableForFinish\": 1732361163.0,\r\n \"Success\": 1732361280.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6086c852c945025d41566124\",\r\n \"startTime\": 1723208159,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723208159.0,\r\n \"AvailableForFinish\": 1723216406.0,\r\n \"Success\": 1723216559.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60896888e4a85c72ef3fa300\",\r\n \"startTime\": 1723216561,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723216561.0,\r\n \"Success\": 1723222143.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60896b7bfa70fc097863b8f5\",\r\n \"startTime\": 1723047627,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723047627.0,\r\n \"Success\": 1723051345.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60896bca6ee58f38c417d4f2\",\r\n \"startTime\": 1723041178,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723041178.0,\r\n \"AvailableForFinish\": 1723044809.0,\r\n \"Success\": 1723047623.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60896e28e4a85c72ef3fa301\",\r\n \"startTime\": 1722905008,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722905008.0,\r\n \"Success\": 1723130617.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6089732b59b92115597ad789\",\r\n \"startTime\": 1723402102,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723402102.0,\r\n \"Success\": 1723403777.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6089736efa70fc097863b8f6\",\r\n \"startTime\": 1723398311,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723398311.0,\r\n \"AvailableForFinish\": 1723401764.0,\r\n \"Success\": 1723402099.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6089743983426423753cd58a\",\r\n \"startTime\": 1723036043,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723036043.0,\r\n \"AvailableForFinish\": 1724004932.0,\r\n \"Success\": 1724005039.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"608974af4b05530f55550c21\",\r\n \"startTime\": 1723395737,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723395737.0,\r\n \"AvailableForFinish\": 1723396570.0,\r\n \"Success\": 1723396827.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"608974d01a66564e74191fc0\",\r\n \"startTime\": 1723391313,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723391313.0,\r\n \"AvailableForFinish\": 1723395563.0,\r\n \"Success\": 1723395734.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"608a768d82e40b3c727fd17d\",\r\n \"startTime\": 1723984561,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723984561.0,\r\n \"AvailableForFinish\": 1724004050.0,\r\n \"Success\": 1724004174.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60c0c018f7afb4354815096a\",\r\n \"startTime\": 1723490148,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723490148.0,\r\n \"AvailableForFinish\": 1723514548.0,\r\n \"Success\": 1723514618.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71b62a0beca400d69efc4\",\r\n \"startTime\": 1726535321,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726535321.0,\r\n \"AvailableForFinish\": 1726557818.0,\r\n \"Success\": 1726557898.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71b9bbd90872cb85440f3\",\r\n \"startTime\": 1723670908,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723670908.0,\r\n \"AvailableForFinish\": 1725634071.0,\r\n \"Success\": 1725634175.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71bb4e456d449cd47ca75\",\r\n \"startTime\": 1723846140,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723846140.0,\r\n \"AvailableForFinish\": 1723866783.0,\r\n \"Success\": 1723866946.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71c11d54b755a3b53eb65\",\r\n \"startTime\": 1724316499,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724316499.0,\r\n \"Success\": 1728679157.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71c48c1bfa3050473b8e5\",\r\n \"startTime\": 1724025616,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724025616.0,\r\n \"Success\": 1724084727.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71c9ad54b755a3b53eb66\",\r\n \"startTime\": 1723906706,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723906706.0,\r\n \"AvailableForFinish\": 1726426199.0,\r\n \"Success\": 1726426608.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71ccb5688f6424c7bfec4\",\r\n \"startTime\": 1724934093,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724934093.0,\r\n \"Success\": 1725360838.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71ce009d7c801eb0c0ec6\",\r\n \"startTime\": 1726424624,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726424624.0,\r\n \"Success\": 1726956096.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71d23c1bfa3050473b8e6\",\r\n \"startTime\": 1723985598,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723985598.0,\r\n \"AvailableForFinish\": 1726882933.0,\r\n \"Success\": 1726883181.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71d6d7fcf9c556f325055\",\r\n \"startTime\": 1726883184,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726883184.0,\r\n \"AvailableForFinish\": 1726884115.0,\r\n \"Success\": 1726884228.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71dc0a94be721b065bbfc\",\r\n \"startTime\": 1723844732,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723844732.0,\r\n \"AvailableForFinish\": 1724375940.0,\r\n \"Success\": 1724376100.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71dc67fcf9c556f325056\",\r\n \"startTime\": 1724376105,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724376105.0,\r\n \"Success\": 1724989248.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e71e8ed54b755a3b53eb67\",\r\n \"startTime\": 1732115459,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1732115459.0,\r\n \"AvailableForFinish\": 1732335326.0,\r\n \"Success\": 1732335418.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60e729cf5698ee7b05057439\",\r\n \"startTime\": 1724314222,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724314222.0,\r\n \"AvailableForFinish\": 1726602852.0,\r\n \"Success\": 1726603367.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"60effd818b669d08a35bfad5\",\r\n \"startTime\": 1724316522,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724316522.0,\r\n \"Success\": 1724316534.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179ac7511973d018217d0b9\",\r\n \"startTime\": 1723231478,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723231478.0,\r\n \"AvailableForFinish\": 1723948644.0,\r\n \"Success\": 1723948826.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179acbdc760af5ad2053585\",\r\n \"startTime\": 1723948828,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723948828.0,\r\n \"AvailableForFinish\": 1723999272.0,\r\n \"Success\": 1723999344.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179ad0a6e9dd54ac275e3f2\",\r\n \"startTime\": 1723490146,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723490146.0,\r\n \"AvailableForFinish\": 1723944303.0,\r\n \"Success\": 1723944432.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179ad56c760af5ad2053587\",\r\n \"startTime\": 1722944194,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722944194.0,\r\n \"Success\": 1723423331.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179afd0bca27a099552e040\",\r\n \"startTime\": 1723127886,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723127886.0,\r\n \"AvailableForFinish\": 1723246007.0,\r\n \"Success\": 1723246591.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179aff8f57fb279792c60a1\",\r\n \"startTime\": 1723212906,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723212906.0,\r\n \"AvailableForFinish\": 1723859074.0,\r\n \"Success\": 1723859250.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179b3a12153c15e937d52bc\",\r\n \"startTime\": 1723121260,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723121260.0,\r\n \"AvailableForFinish\": 1723948644.0,\r\n \"Success\": 1723948765.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179b3bdc7560e13d23eeb8d\",\r\n \"startTime\": 1722945931,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722945931.0,\r\n \"Success\": 1723992612.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179b4d1bca27a099552e04e\",\r\n \"startTime\": 1723208163,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723208163.0,\r\n \"AvailableForFinish\": 1723957226.0,\r\n \"Success\": 1723957301.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179b4f16e9dd54ac275e407\",\r\n \"startTime\": 1723995199,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723995199.0,\r\n \"Success\": 1724089220.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6179b5eabca27a099552e052\",\r\n \"startTime\": 1723296467,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723296467.0,\r\n \"AvailableForFinish\": 1724316354.0,\r\n \"Success\": 1724316517.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"61904daa7d0d857927447b9c\",\r\n \"startTime\": 1723422279,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723422279.0,\r\n \"Success\": 1723423314.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6193850f60b34236ee0483de\",\r\n \"startTime\": 1723033518,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723033518.0,\r\n \"AvailableForFinish\": 1723995064.0,\r\n \"Success\": 1723995196.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"61958c366726521dd96828ec\",\r\n \"startTime\": 1723465987,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723465987.0,\r\n \"AvailableForFinish\": 1723852348.0,\r\n \"Success\": 1723852517.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"625d6ff5ddc94657c21a1625\",\r\n \"startTime\": 1724840891,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724840891.0,\r\n \"Success\": 1725045933.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"625d6ffaf7308432be1d44c5\",\r\n \"startTime\": 1725072889,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725072889.0,\r\n \"AvailableForFinish\": 1725074831.0,\r\n \"Success\": 1725074996.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725045933\r\n },\r\n {\r\n \"qid\": \"625d6ffcaa168e51321d69d7\",\r\n \"startTime\": 1725075000,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725075000.0,\r\n \"AvailableForFinish\": 1725111933.0,\r\n \"Success\": 1725112057.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"625d6fff4149f1149b5b12c9\",\r\n \"startTime\": 1725112059,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725112059.0,\r\n \"AvailableForFinish\": 1725116316.0,\r\n \"Success\": 1725116379.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"625d7001c4874104f230c0c5\",\r\n \"startTime\": 1725116382,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725116382.0,\r\n \"Success\": 1725166520.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"625d70031ed3bb5bcc5bd9e5\",\r\n \"startTime\": 1725252965,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725252965.0,\r\n \"Success\": 1725360997.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725252920\r\n },\r\n {\r\n \"qid\": \"625d7005a4eb80027c4f2e09\",\r\n \"startTime\": 1725447799,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725447799.0,\r\n \"AvailableForFinish\": 1725448388.0,\r\n \"Success\": 1725448480.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725447397\r\n },\r\n {\r\n \"qid\": \"625d700cc48e6c62a440fab5\",\r\n \"startTime\": 1725448483,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725448483.0,\r\n \"AvailableForFinish\": 1725512184.0,\r\n \"Success\": 1725512268.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"626bd75b05f287031503c7f6\",\r\n \"startTime\": 1723246596,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723246596.0,\r\n \"AvailableForFinish\": 1723993402.0,\r\n \"Success\": 1723993473.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"626bd75c71bd851e971b82a5\",\r\n \"startTime\": 1723948835,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723948835.0,\r\n \"AvailableForFinish\": 1724017865.0,\r\n \"Success\": 1724017935.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"626bd75d5bef5d7d590bd415\",\r\n \"startTime\": 1725618899,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725618899.0,\r\n \"Success\": 1725622847.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725590096\r\n },\r\n {\r\n \"qid\": \"626bd75e47ea7f506e5493c5\",\r\n \"startTime\": 1722914336,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722914336.0,\r\n \"AvailableForFinish\": 1723993402.0,\r\n \"Success\": 1723993468.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"626bdcc3a371ee3a7a3514c5\",\r\n \"startTime\": 1723917244,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723917244.0,\r\n \"AvailableForFinish\": 1724015068.0,\r\n \"Success\": 1724015130.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"638fcd23dc65553116701d33\",\r\n \"startTime\": 1722943443,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943443.0,\r\n \"Success\": 1723861168.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135534b15ca31f76bc317\",\r\n \"startTime\": 1723852530,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723852530.0,\r\n \"Success\": 1725190493.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6391359b9444fb141f4e6ee6\",\r\n \"startTime\": 1723221371,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723221371.0,\r\n \"Success\": 1724824494.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135a7e705511c8a4a1b78\",\r\n \"startTime\": 1723861171,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723861171.0,\r\n \"AvailableForFinish\": 1724936806.0,\r\n \"Success\": 1724936909.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135b04ed9512be67647d7\",\r\n \"startTime\": 1724824497,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724824497.0,\r\n \"AvailableForFinish\": 1724825873.0,\r\n \"Success\": 1724825983.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135bbc115f907b14700a6\",\r\n \"startTime\": 1724936918,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724936918.0,\r\n \"Success\": 1725019283.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135c3744e452011470807\",\r\n \"startTime\": 1724838829,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724838829.0,\r\n \"AvailableForFinish\": 1724839660.0,\r\n \"Success\": 1724839776.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135cd8ba6894d155e77cb\",\r\n \"startTime\": 1724924648,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724924648.0,\r\n \"AvailableForFinish\": 1724926516.0,\r\n \"Success\": 1724926803.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1724905946\r\n },\r\n {\r\n \"qid\": \"639135d89444fb141f4e6eea\",\r\n \"startTime\": 1722902766,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722902766.0,\r\n \"Success\": 1724434731.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135e0fa894f0a866afde6\",\r\n \"startTime\": 1724434733,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724434733.0,\r\n \"Success\": 1724816066.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135e8c115f907b14700aa\",\r\n \"startTime\": 1724840878,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724840878.0,\r\n \"Success\": 1724842945.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639135f286e646067c176a87\",\r\n \"startTime\": 1723208161,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723208161.0,\r\n \"AvailableForFinish\": 1724930683.0,\r\n \"Success\": 1724931625.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639136df4b15ca31f76bc31f\",\r\n \"startTime\": 1723490153,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723490153.0,\r\n \"AvailableForFinish\": 1724930683.0,\r\n \"Success\": 1724931577.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639136e84ed9512be67647db\",\r\n \"startTime\": 1723940427,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723940427.0,\r\n \"AvailableForFinish\": 1724930683.0,\r\n \"Success\": 1724931574.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639136f086e646067c176a8b\",\r\n \"startTime\": 1723257207,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723257207.0,\r\n \"AvailableForFinish\": 1724845591.0,\r\n \"Success\": 1724845725.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639136fa9444fb141f4e6eee\",\r\n \"startTime\": 1724840887,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724840887.0,\r\n \"Success\": 1725020373.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63913715f8e5dd32bf4e3aaa\",\r\n \"startTime\": 1723993470,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723993470.0,\r\n \"AvailableForFinish\": 1724840787.0,\r\n \"Success\": 1724840875.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6391372c8ba6894d155e77d7\",\r\n \"startTime\": 1724844400,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724844400.0,\r\n \"AvailableForFinish\": 1725168571.0,\r\n \"Success\": 1725168644.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639282134ed9512be67647ed\",\r\n \"startTime\": 1723412093,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723412093.0,\r\n \"AvailableForFinish\": 1725045747.0,\r\n \"Success\": 1725045944.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63966faeea19ac7ed845db2c\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725448485\r\n },\r\n {\r\n \"qid\": \"63966fbeea19ac7ed845db2e\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725607527\r\n },\r\n {\r\n \"qid\": \"63966fccac6f8f3c677b9d89\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725676749\r\n },\r\n {\r\n \"qid\": \"63966fd9ea19ac7ed845db30\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727112420\r\n },\r\n {\r\n \"qid\": \"63966fe7ea74a47c2d3fc0e6\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725755773\r\n },\r\n {\r\n \"qid\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727233943\r\n },\r\n {\r\n \"qid\": \"639670029113f06a7c3b2377\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727567332\r\n },\r\n {\r\n \"qid\": \"6396700fea19ac7ed845db32\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727662596\r\n },\r\n {\r\n \"qid\": \"6396701b9113f06a7c3b2379\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727753623\r\n },\r\n {\r\n \"qid\": \"63967028c4a91c5cb76abd81\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1727998225\r\n },\r\n {\r\n \"qid\": \"639872f9decada40426d3447\",\r\n \"startTime\": 1722943696,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722943696.0,\r\n \"Success\": 1722943814.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639872fa9b4fb827b200d8e5\",\r\n \"startTime\": 1723110011,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723110011.0,\r\n \"Success\": 1723110124.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723106053\r\n },\r\n {\r\n \"qid\": \"639872fc93ae507d5858c3a6\",\r\n \"startTime\": 1723110344,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723110344.0,\r\n \"Success\": 1723110594.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639872fe8871e1272b10ccf6\",\r\n \"startTime\": 1723311120,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723311120.0,\r\n \"Success\": 1723330383.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723307573\r\n },\r\n {\r\n \"qid\": \"639873003693c63d86328f25\",\r\n \"startTime\": 1723469826,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723469826.0,\r\n \"Success\": 1723589838.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723468896\r\n },\r\n {\r\n \"qid\": \"63987301e11ec11ff5504036\",\r\n \"startTime\": 1723590045,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723590045.0,\r\n \"Success\": 1723590332.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"639dbaf17c898a131e1cffff\",\r\n \"startTime\": 1723748276,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723748276.0,\r\n \"AvailableForFinish\": 1724838732.0,\r\n \"Success\": 1724838824.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63a511ea30d85e10e375b045\",\r\n \"startTime\": 1724841069,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724841069.0,\r\n \"AvailableForFinish\": 1724844268.0,\r\n \"Success\": 1724844396.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63a5cf262964a7488f5243ce\",\r\n \"startTime\": 1724073124,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724073124.0,\r\n \"AvailableForFinish\": 1725082455.0,\r\n \"Success\": 1725082573.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1724072203\r\n },\r\n {\r\n \"qid\": \"63a88045abf76d719f42d715\",\r\n \"startTime\": 1723057532,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723057532.0,\r\n \"AvailableForFinish\": 1723940212.0,\r\n \"Success\": 1723940421.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63a9ae24009ffc6a551631a5\",\r\n \"startTime\": 1724845728,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724845728.0,\r\n \"AvailableForFinish\": 1724994158.0,\r\n \"Success\": 1724994380.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63a9b229813bba58a50c9ee5\",\r\n \"startTime\": 1724931628,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724931628.0,\r\n \"AvailableForFinish\": 1725011846.0,\r\n \"Success\": 1725011987.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63a9b36cc31b00242d28a99f\",\r\n \"startTime\": 1725168648,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725168648.0,\r\n \"AvailableForFinish\": 1731133973.0,\r\n \"Success\": 1731134576.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"63ab180c87413d64ae0ac20a\",\r\n \"startTime\": 1723058379,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723058379.0,\r\n \"AvailableForFinish\": 1724420135.0,\r\n \"Success\": 1724420217.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64e7b971f9d6fa49d6769b44\",\r\n \"startTime\": 1724816293,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724816293.0,\r\n \"AvailableForFinish\": 1725396141.0,\r\n \"Success\": 1725396250.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64e7b99017ab941a6f7bf9d7\",\r\n \"startTime\": 1723311102,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723311102.0,\r\n \"AvailableForFinish\": 1725198789.0,\r\n \"Success\": 1725198893.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64e7b9a4aac4cd0a726562cb\",\r\n \"startTime\": 1725198897,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725198897.0,\r\n \"AvailableForFinish\": 1725210135.0,\r\n \"Success\": 1725210359.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64e7b9bffd30422ed03dad38\",\r\n \"startTime\": 1725210364,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725210364.0,\r\n \"AvailableForFinish\": 1725211839.0,\r\n \"Success\": 1725211968.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64ee99639878a0569d6ec8c9\",\r\n \"startTime\": 1725168658,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725168658.0,\r\n \"AvailableForFinish\": 1726411752.0,\r\n \"Success\": 1726411931.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64ee9df4496db64f9b7a4432\",\r\n \"startTime\": 1723391340,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723391340.0,\r\n \"AvailableForFinish\": 1724780680.0,\r\n \"Success\": 1724780947.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723389852\r\n },\r\n {\r\n \"qid\": \"64f1cc571a5f313cb144bf90\",\r\n \"startTime\": 0,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1728337855\r\n },\r\n {\r\n \"qid\": \"64f1d6e732bed22c3e0c7423\",\r\n \"startTime\": 1732906891,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1732906891.0,\r\n \"Success\": 1732906894.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f3176921045e77405d63b5\",\r\n \"startTime\": 1724931704,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724931704.0,\r\n \"Success\": 1725459207.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f5aac4b63b74469b6c14c2\",\r\n \"startTime\": 1724825991,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724825991.0,\r\n \"Success\": 1724828831.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f5deac39e45b527a7c4232\",\r\n \"startTime\": 1725082576,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725082576.0,\r\n \"AvailableForFinish\": 1725114368.0,\r\n \"Success\": 1725114450.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f5e20652fc01298e2c61e3\",\r\n \"startTime\": 1723395713,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723395713.0,\r\n \"Success\": 1724920348.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f6aafd67e11a7c6206e0d0\",\r\n \"startTime\": 1724920351,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724920351.0,\r\n \"Success\": 1724924643.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f731ab83cfca080a361e42\",\r\n \"startTime\": 1724434735,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724434735.0,\r\n \"AvailableForFinish\": 1724786614.0,\r\n \"Success\": 1724786824.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"64f83bb69878a0569d6ecfbe\",\r\n \"startTime\": 1723746311,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723746311.0,\r\n \"Success\": 1723766749.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723746045\r\n },\r\n {\r\n \"qid\": \"64f83bcdde58fc437700d8fa\",\r\n \"startTime\": 1723843372,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723843372.0,\r\n \"Success\": 1723843529.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723841027\r\n },\r\n {\r\n \"qid\": \"64f83bd983cfca080a362c82\",\r\n \"startTime\": 1723919984,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723919984.0,\r\n \"Success\": 1725396483.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723918071\r\n },\r\n {\r\n \"qid\": \"6572e876dc0d635f633a5714\",\r\n \"startTime\": 1723395717,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723395717.0,\r\n \"AvailableForFinish\": 1726744644.0,\r\n \"Success\": 1726744838.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"657315ddab5a49b71f098853\",\r\n \"startTime\": 1722858624,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722858624.0,\r\n \"AvailableForFinish\": 1722868215.0,\r\n \"Success\": 1722868596.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"657315df034d76585f032e01\",\r\n \"startTime\": 1722858623,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722858623.0,\r\n \"AvailableForFinish\": 1722865799.0,\r\n \"Success\": 1722866072.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"657315e1dccd301f1301416a\",\r\n \"startTime\": 1722870416,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722870416.0,\r\n \"Success\": 1722872041.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"657315e270bb0b8dba00cc48\",\r\n \"startTime\": 1722858625,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722858625.0,\r\n \"AvailableForFinish\": 1722864592.0,\r\n \"Success\": 1722864923.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"657315e4a6af4ab4b50f3459\",\r\n \"startTime\": 1722858626,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722858626.0,\r\n \"Success\": 1722864927.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"65733403eefc2c312a759ddb\",\r\n \"startTime\": 1724842948,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724842948.0,\r\n \"AvailableForFinish\": 1724844268.0,\r\n \"Success\": 1724844411.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6573382e557ff128bf3da536\",\r\n \"startTime\": 1724844414,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724844414.0,\r\n \"AvailableForFinish\": 1724845591.0,\r\n \"Success\": 1724845741.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6573387d0b26ed4fde798de3\",\r\n \"startTime\": 1724786831,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724786831.0,\r\n \"AvailableForFinish\": 1724787862.0,\r\n \"Success\": 1724788008.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6573397ef3f8344c4575cd87\",\r\n \"startTime\": 1724828838,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724828838.0,\r\n \"Success\": 1724829901.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"65734c186dc1e402c80dc19e\",\r\n \"startTime\": 1724936927,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724936927.0,\r\n \"AvailableForFinish\": 1725564132.0,\r\n \"Success\": 1725564490.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6574e0dedc0d635f633a5805\",\r\n \"startTime\": 1725114456,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725114456.0,\r\n \"AvailableForFinish\": 1725555885.0,\r\n \"Success\": 1725555973.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6578eb36e5020875d64645cd\",\r\n \"startTime\": 1724931580,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724931580.0,\r\n \"AvailableForFinish\": 1725435649.0,\r\n \"Success\": 1725435826.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6578ec473dbd035d04531a8d\",\r\n \"startTime\": 1723491845,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723491845.0,\r\n \"AvailableForFinish\": 1724086191.0,\r\n \"Success\": 1724086321.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"658027799634223183395339\",\r\n \"startTime\": 1723748279,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723748279.0,\r\n \"AvailableForFinish\": 1726561569.0,\r\n \"Success\": 1726562786.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"65802b627b44fa5e14638899\",\r\n \"startTime\": 1723116449,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723116449.0,\r\n \"AvailableForFinish\": 1723118136.0,\r\n \"Success\": 1723121341.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66151401efb0539ae10875ae\",\r\n \"startTime\": 1723394707,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723394707.0,\r\n \"AvailableForFinish\": 1724632308.0,\r\n \"Success\": 1724632684.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6615141bfda04449120269a7\",\r\n \"startTime\": 1724936932,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724936932.0,\r\n \"Success\": 1726705857.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"665eeacf5d86b6c8aa03c79b\",\r\n \"startTime\": 1723940429,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723940429.0,\r\n \"AvailableForFinish\": 1725439436.0,\r\n \"Success\": 1725439602.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"665eec1f5e47a79f8605565a\",\r\n \"startTime\": 1725439610,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725439610.0,\r\n \"Success\": 1725443626.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"665eec4a4dfc83b0ed0a9dca\",\r\n \"startTime\": 1725443629,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725443629.0,\r\n \"AvailableForFinish\": 1725445437.0,\r\n \"Success\": 1725446504.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"665eeca45d86b6c8aa03c79d\",\r\n \"startTime\": 1725446512,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725446512.0,\r\n \"Success\": 1725447775.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"665eeca92f7aedcc900b0437\",\r\n \"startTime\": 1725510086,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725510086.0,\r\n \"Success\": 1725544154.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1725490590\r\n },\r\n {\r\n \"qid\": \"66631489acf8442f8b05319f\",\r\n \"startTime\": 1724422475,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724422475.0,\r\n \"AvailableForFinish\": 1724424570.0,\r\n \"Success\": 1724424730.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6663148ca9290f9e0806cca1\",\r\n \"startTime\": 1724424733,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724424733.0,\r\n \"AvailableForFinish\": 1726955895.0,\r\n \"Success\": 1726955941.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6663148ed7f171c4c20226c1\",\r\n \"startTime\": 1726955944,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726955944.0,\r\n \"Success\": 1726956065.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6663149196a9349baa021baa\",\r\n \"startTime\": 1726956068,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726956068.0,\r\n \"AvailableForFinish\": 1726972530.0,\r\n \"Success\": 1726972610.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66631493312343839d032d22\",\r\n \"startTime\": 1726972614,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1726972614.0,\r\n \"AvailableForFinish\": 1726974119.0,\r\n \"Success\": 1726974270.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6663149cfd5ca9577902e037\",\r\n \"startTime\": 1723423945,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723423945.0,\r\n \"AvailableForFinish\": 1723480808.0,\r\n \"Success\": 1723481485.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6663149f1d3ec95634095e75\",\r\n \"startTime\": 1723481489,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723481489.0,\r\n \"Success\": 1723497377.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"666314a1920800278d0f6746\",\r\n \"startTime\": 1723497382,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723497382.0,\r\n \"Success\": 1723576958.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"666314a31cd52e3d040a2e76\",\r\n \"startTime\": 1723576961,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723576961.0,\r\n \"AvailableForFinish\": 1723586426.0,\r\n \"Success\": 1723586476.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"666314a50aa5c7436c00908a\",\r\n \"startTime\": 1723586481,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1723586481.0,\r\n \"Success\": 1723646116.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6672d9def1c88688a707d042\",\r\n \"startTime\": 1724317097,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724317097.0,\r\n \"Success\": 1724422471.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa38fad7f1eac2607ed46\",\r\n \"startTime\": 1724168076,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168076.0,\r\n \"Fail\": 1724297745.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3910c828825de06d69f\",\r\n \"startTime\": 1724168082,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168082.0,\r\n \"Success\": 1724297745.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa394e0c9f9fafa082897\",\r\n \"startTime\": 1724209985,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724209985.0,\r\n \"AvailableForFinish\": 1724300121.0,\r\n \"Success\": 1724300206.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa395c4c5c04798002497\",\r\n \"startTime\": 1724168069,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168069.0,\r\n \"AvailableForFinish\": 1724297522.0,\r\n \"Success\": 1724297643.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3979b0ce3feae01a130\",\r\n \"startTime\": 1724172625,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724172625.0,\r\n \"AvailableForFinish\": 1724211604.0,\r\n \"Success\": 1724211669.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa399033a3ce9870338a8\",\r\n \"startTime\": 1724168056,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168056.0,\r\n \"Success\": 1724299560.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa39b91b0a8c9680fc467\",\r\n \"startTime\": 1724168089,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168089.0,\r\n \"AvailableForFinish\": 1724209906.0,\r\n \"Success\": 1724209982.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa39c64ea11e84c0642a6\",\r\n \"startTime\": 1724297648,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724297648.0,\r\n \"AvailableForFinish\": 1724299511.0,\r\n \"Success\": 1724299564.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa39ee749756c920d02c8\",\r\n \"startTime\": 1724302481,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724302481.0,\r\n \"Success\": 1724303162.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3a08b4a64b332041ff7\",\r\n \"startTime\": 1724299569,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724299569.0,\r\n \"Success\": 1724911738.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3a1c26f13bd04030f37\",\r\n \"startTime\": 1724300209,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724300209.0,\r\n \"AvailableForFinish\": 1724302428.0,\r\n \"Success\": 1724302476.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3a3ad7f1eac2607ed48\",\r\n \"startTime\": 1724168063,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724168063.0,\r\n \"Success\": 1724297634.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"669fa3a40c828825de06d6a1\",\r\n \"startTime\": 1725555976,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1725555976.0,\r\n \"AvailableForFinish\": 1725562144.0,\r\n \"Success\": 1725562316.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66a74c628410476dd65543be\",\r\n \"startTime\": 1722858629,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722858629.0,\r\n \"Success\": 1722865043.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66a75b44243a6548ff5e5ff9\",\r\n \"startTime\": 1722865046,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1722865046.0,\r\n \"AvailableForFinish\": 1722884387.0,\r\n \"Success\": 1722884745.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66a77394243a6548ff5e601d\",\r\n \"startTime\": 1722884752,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1722884752.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66aa58245ab22944110db6e9\",\r\n \"startTime\": 1727354913,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354913.0,\r\n \"AvailableForFinish\": 1727523318.0,\r\n \"Success\": 1727523477.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66aa61663aa37705c5024277\",\r\n \"startTime\": 1727354940,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354940.0,\r\n \"AvailableForFinish\": 1727501462.0,\r\n \"Success\": 1727501598.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66aa74571e5e199ecd094f18\",\r\n \"startTime\": 1727354920,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354920.0,\r\n \"AvailableForFinish\": 1727520816.0,\r\n \"Success\": 1727521596.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"startTime\": 1727354897,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354897.0,\r\n \"AvailableForFinish\": 1727374100.0,\r\n \"Success\": 1727374195.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66ab9da7eb102b9bcd08591c\",\r\n \"startTime\": 1727354951,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354951.0,\r\n \"AvailableForFinish\": 1727519142.0,\r\n \"Success\": 1727519476.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66aba85403e0ee3101042877\",\r\n \"startTime\": 1727354891,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354891.0,\r\n \"AvailableForFinish\": 1727372347.0,\r\n \"Success\": 1727372584.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66b38c7bf85b8bf7250f9cb6\",\r\n \"startTime\": 1724172627,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724172627.0,\r\n \"AvailableForFinish\": 1724215218.0,\r\n \"Success\": 1724215308.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66b38e144f2ab7cc530c3fe7\",\r\n \"startTime\": 1724215311,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1724215311.0,\r\n \"AvailableForFinish\": 1724297522.0,\r\n \"Success\": 1724297661.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"startTime\": 1727354874,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354874.0,\r\n \"AvailableForFinish\": 1733329906.0,\r\n \"Success\": 1733330585.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01aca214f88109006a4b5\",\r\n \"startTime\": 1727354895,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727354895.0,\r\n \"AvailableForFinish\": 1727374100.0,\r\n \"Success\": 1727374199.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01ad15a8890455a0d9eea\",\r\n \"startTime\": 1727374204,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727374204.0,\r\n \"Success\": 1727383030.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01ad6835f78499f049180\",\r\n \"startTime\": 1727383033,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727383033.0,\r\n \"AvailableForFinish\": 1727387313.0,\r\n \"Success\": 1727387383.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01adbd3d014f3ae061c12\",\r\n \"startTime\": 1727387386,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727387386.0,\r\n \"AvailableForFinish\": 1727460897.0,\r\n \"Success\": 1727460995.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01ae0c391e4c94903d220\",\r\n \"startTime\": 1727460999,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727460999.0,\r\n \"AvailableForFinish\": 1727463958.0,\r\n \"Success\": 1727464063.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e01c4c475acf7e0102d296\",\r\n \"startTime\": 1727464070,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1727464070.0,\r\n \"Success\": 1727615275.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e3e2ee2136472d220bcb36\",\r\n \"startTime\": 1728663013,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1728663013.0,\r\n \"AvailableForFinish\": 1728666332.0,\r\n \"Success\": 1728666400.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"66e3e2fcb26de0e0790d3fe6\",\r\n \"startTime\": 1728666402,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1728666402.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"670404a2ea1caa8f2e0be106\",\r\n \"startTime\": 1730392705,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730392705.0,\r\n \"AvailableForFinish\": 1730393757.0,\r\n \"Success\": 1730393921.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040b3d10b18d153a08f636\",\r\n \"startTime\": 1730393925,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730393925.0,\r\n \"Success\": 1730397175.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040b6c45eaf70db10dbec6\",\r\n \"startTime\": 1730460018,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730460018.0,\r\n \"AvailableForFinish\": 1730461334.0,\r\n \"Success\": 1730461401.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040ba4578a46e44a05c0a8\",\r\n \"startTime\": 1730461408,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730461408.0,\r\n \"Success\": 1730462090.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040c22cc1f3752720376e9\",\r\n \"startTime\": 1730542012,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730542012.0,\r\n \"AvailableForFinish\": 1730546071.0,\r\n \"Success\": 1730546154.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040c43ce929d6ee506c7c7\",\r\n \"startTime\": 1730546159,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730546159.0,\r\n \"Success\": 1730546632.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040c5b4ac6d9c18c0ade26\",\r\n \"startTime\": 1730633132,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730633132.0,\r\n \"AvailableForFinish\": 1730634708.0,\r\n \"Success\": 1730634904.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040c78bf4be8a4ef041a65\",\r\n \"startTime\": 1730637709,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730637709.0,\r\n \"AvailableForFinish\": 1730643276.0,\r\n \"Success\": 1730643408.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040c92bf4be8a4ef041a6c\",\r\n \"startTime\": 1730712096,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730712096.0,\r\n \"AvailableForFinish\": 1730716125.0,\r\n \"Success\": 1730716720.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"startTime\": 1730716726,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730716726.0,\r\n \"AvailableForFinish\": 1730723342.0,\r\n \"Success\": 1730723422.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67040ccdcc1f3752720376ef\",\r\n \"startTime\": 1730716726,\r\n \"status\": \"Fail\",\r\n \"statusTimers\": {\r\n \"Started\": 1730716726.0,\r\n \"Fail\": 1730723422.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67165d59a9c06627040a9094\",\r\n \"startTime\": 1731255420,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1731255420.0,\r\n \"AvailableForFinish\": 1731261122.0,\r\n \"Success\": 1731261301.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67190f157b0991dc22064755\",\r\n \"startTime\": 1731168313,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1731168313.0,\r\n \"AvailableForFinish\": 1731171303.0,\r\n \"Success\": 1731171643.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67190f6c1b3f4964d90d71e9\",\r\n \"startTime\": 1730806037,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730806037.0,\r\n \"AvailableForFinish\": 1730809016.0,\r\n \"Success\": 1730809515.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67190f9c7b0991dc22064766\",\r\n \"startTime\": 1730806032,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730806032.0,\r\n \"AvailableForFinish\": 1730806923.0,\r\n \"Success\": 1730807061.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67190febcce4a5fdf605d4f8\",\r\n \"startTime\": 1730894332,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730894332.0,\r\n \"AvailableForFinish\": 1730899595.0,\r\n \"Success\": 1730899808.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6719101deddf081d340d4c60\",\r\n \"startTime\": 1731168324,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1731168324.0,\r\n \"AvailableForFinish\": 1731169795.0,\r\n \"Success\": 1731171630.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67191048eddf081d340d4c6e\",\r\n \"startTime\": 1730994208,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730994208.0,\r\n \"AvailableForFinish\": 1730995682.0,\r\n \"Success\": 1730996443.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"671910d5dbd4354ac10e9784\",\r\n \"startTime\": 1730894336,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730894336.0,\r\n \"AvailableForFinish\": 1730904553.0,\r\n \"Success\": 1730904647.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6719116460f6f081570d05f7\",\r\n \"startTime\": 1730994205,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730994205.0,\r\n \"AvailableForFinish\": 1730997730.0,\r\n \"Success\": 1730998172.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"671911bbcee3738f8502d401\",\r\n \"startTime\": 1731092142,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1731092142.0,\r\n \"AvailableForFinish\": 1731095886.0,\r\n \"Success\": 1731095967.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"671a49f77d49aea42c029b5f\",\r\n \"startTime\": 1730392685,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730392685.0,\r\n \"Success\": 1730395653.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"671a59e43d73dac1360765cc\",\r\n \"startTime\": 1730395656,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730395656.0,\r\n \"AvailableForFinish\": 1730397020.0,\r\n \"Success\": 1730397167.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6727ef2c6015b7cc540ea754\",\r\n \"startTime\": 1730712107,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1730712107.0,\r\n \"AvailableForFinish\": 1730758230.0,\r\n \"Success\": 1730758317.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"674647f38466ebb03408b291\",\r\n \"startTime\": 1733480234,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1733480234.0,\r\n \"Success\": 1733487796.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6746480040ea3d1d4f0e5d51\",\r\n \"startTime\": 1733498351,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1733498351.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6746480cd0b2f8eb9b034e3e\",\r\n \"startTime\": 1733487801,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1733487801.0,\r\n \"AvailableForFinish\": 1733498227.0,\r\n \"Success\": 1733498348.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675031be899713ccad00060c\",\r\n \"startTime\": 1735235633,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235633.0,\r\n \"Success\": 1735295993.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675031d3884e1da4a90b3bc9\",\r\n \"startTime\": 1735235833,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235833.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675031e1f300496cc4104450\",\r\n \"startTime\": 1735235748,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235748.0,\r\n \"AvailableForFinish\": 1735472598.0,\r\n \"Success\": 1735472676.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675031f57775aada6b0f96a1\",\r\n \"startTime\": 1735304245,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735304245.0,\r\n \"Success\": 1735304272.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6750320e23fc8fd9cc087d14\",\r\n \"startTime\": 1735304241,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735304241.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67503247622398376d0b57cd\",\r\n \"startTime\": 1735398682,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735398682.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67503260899713ccad00060e\",\r\n \"startTime\": 1735472679,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735472679.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c03d1f7da9792a405549a\",\r\n \"startTime\": 1735235653,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235653.0,\r\n \"AvailableForFinish\": 1735391053.0,\r\n \"Success\": 1735391139.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c047fa46173572a0bd878\",\r\n \"startTime\": 1735391141,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735391141.0,\r\n \"Success\": 1735412897.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c04f4db8807b75d0f38e8\",\r\n \"startTime\": 1735412900,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735412900.0,\r\n \"Success\": 1735470980.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c085d59b0575973005f52\",\r\n \"startTime\": 1735235737,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235737.0,\r\n \"AvailableForFinish\": 1735477212.0,\r\n \"Success\": 1735477343.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c1570526ff496850895d9\",\r\n \"startTime\": 1735235699,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235699.0,\r\n \"Success\": 1735387430.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c1cf4a757ddd00404f0a3\",\r\n \"startTime\": 1735235773,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235773.0,\r\n \"AvailableForFinish\": 1735393285.0,\r\n \"Success\": 1735393376.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c1ec7a46173572a0bf20a\",\r\n \"startTime\": 1735393379,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735393379.0\r\n },\r\n \"completedConditions\": [\r\n \"675c1f040a1128e59422a876\",\r\n \"675c1f17cf59d5433be7ae77\"\r\n ],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c1ff1a757ddd00404f0aa\",\r\n \"startTime\": 1735235619,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235619.0,\r\n \"AvailableForFinish\": 1735391053.0,\r\n \"Success\": 1735391131.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c3507a06634b5110e3c18\",\r\n \"startTime\": 1735235624,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235624.0,\r\n \"AvailableForFinish\": 1735385011.0,\r\n \"Success\": 1735385223.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"675c3582f6ddc329a90f9c6d\",\r\n \"startTime\": 1735235664,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235664.0,\r\n \"Success\": 1735393369.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"6764174c86addd02bc033d68\",\r\n \"startTime\": 1735235667,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235667.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 1723903859\r\n },\r\n {\r\n \"qid\": \"676529af9c90953d090882e7\",\r\n \"startTime\": 1735235705,\r\n \"status\": \"Success\",\r\n \"statusTimers\": {\r\n \"Started\": 1735235705.0,\r\n \"Success\": 1735299898.0\r\n },\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67703e07c5e4e7eb0d09bde74\",\r\n \"startTime\": 1735409159,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67703e07c5e4e7eb0d09bdf34\",\r\n \"startTime\": 1735409159,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67703e07c5e4e7eb0d09bdfc4\",\r\n \"startTime\": 1735409159,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67684b24f737fc7c0f1056d95\",\r\n \"startTime\": 1734888228,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n },\r\n {\r\n \"qid\": \"67703e08c5e4e7eb0d09be099\",\r\n \"startTime\": 1735409160,\r\n \"status\": \"Started\",\r\n \"statusTimers\": {},\r\n \"completedConditions\": [],\r\n \"availableAfter\": 0\r\n }\r\n ],\r\n \"Achievements\": {\r\n \"6513eb6e0dc723592b0f9095\": 1722870162,\r\n \"6513ee11a3dd9b6aa7159b4a\": 1722878495,\r\n \"6513f1feec10ff011f17c7ea\": 1723037028,\r\n \"6513eec00dc723592b0f90cc\": 1723228477,\r\n \"65141b9859647d2cb3213ca2\": 1723244332,\r\n \"65141bdfcf2f1c285e606446\": 1723247020,\r\n \"65141cd2cf2f1c285e606449\": 1723405050,\r\n \"6512f1e3be73cc7f07358ed5\": 1723505619,\r\n \"6513efa1b49e3253755f47eb\": 1723576697,\r\n \"6513ed89cf2f1c285e606068\": 1723668804,\r\n \"655b49bc91aa9e07687ae47c\": 1723839605,\r\n \"6512eb3ddfb0ae1ee75a0376\": 1723861070,\r\n \"65141dd6303df252af1c72c9\": 1724121122,\r\n \"6514134eec10ff011f17cc26\": 1724129403,\r\n \"664f1f8768508d74604bf556\": 1724206295,\r\n \"6527d2e2c656a951ad1528c3\": 1724567657,\r\n \"66c328de9dc78468f4040f35\": 1725042924,\r\n \"6513f0a10dc723592b0f90cf\": 1725395960,\r\n \"664f23e44702fd5db50ee732\": 1725396483,\r\n \"6527d3aac656a951ad1528ce\": 1725437643,\r\n \"6514321bec10ff011f17ccac\": 1725511743,\r\n \"65140b55cf2f1c285e606414\": 1725532442,\r\n \"66c328aca91e7d66fa1b0b7b\": 1727371376,\r\n \"66e2a7e5919bad697104f4b3\": 1727464063,\r\n \"65140c00b1c08b0feb216d50\": 1728695358,\r\n \"670febed5ee0fc738a0965a4\": 1730723422,\r\n \"651411f1cf2f1c285e606423\": 1730860781,\r\n \"6512ea46f7a078264a4376e4\": 1731094726,\r\n \"65140ab8ec10ff011f17cc10\": 1731195853,\r\n \"65140bbec31fcb0e163577b9\": 1731988227,\r\n \"65141032a3dd9b6aa7159ed3\": 1732886089\r\n },\r\n \"Prestige\": {},\r\n \"UnlockedInfo\": {\r\n \"unlockedProductionRecipe\": [\r\n \"5d5c1f25d582a5479d4ec458\",\r\n \"655b5fd2975a7f3c734661a8\",\r\n \"5f245f875b664e084523a4ce\",\r\n \"655b457c9db22d43ab42b706\",\r\n \"655b5ebc32b0b1645e6f54c9\",\r\n \"5f7f4bb2c642570650138fee\",\r\n \"5d8f7cc588a8334b29697b60\",\r\n \"655b63ac9db22d43ab42b70a\",\r\n \"655b65fc1273611d2462ab77\",\r\n \"655b675e1f2b6843ec751fd6\",\r\n \"655b598db71eeb7c4168c626\",\r\n \"655b4f57769de97e1d62d116\",\r\n \"655b4a73975a7f3c734661a5\",\r\n \"63baedefe6ebc10fe0201083\",\r\n \"655b5af31273611d2462ab76\",\r\n \"64b6aefe25251516d768542d\",\r\n \"5dde60e0e2c8f57eb6465327\",\r\n \"6012ee7e44a0465ee67a58de\",\r\n \"64b6b5c1c3abf20a9660daad\",\r\n \"5dceb6964a98801ba2075d27\",\r\n \"5dceb6964a98801ba2075d27\",\r\n \"63a571802116d261d2336cd1\",\r\n \"655b4489065b076eb02c4b45\",\r\n \"655b33429db22d43ab42b704\",\r\n \"6399c421d65735732c6ba765\",\r\n \"6671d4fef3bee343f5000703\",\r\n \"5ed9ff023a68ec264e5233c2\",\r\n \"5eda007f658fac5b8c3862a6\",\r\n \"5ee4a093a297eb185236194f\",\r\n \"5ed9ff023a68ec264e5233c2\",\r\n \"5eda007f658fac5b8c3862a6\",\r\n \"5ee4a093a297eb185236194f\",\r\n \"655b4669b71eeb7c4168c625\",\r\n \"655b6a50b71eeb7c4168c628\",\r\n \"6002eec9cc73cd34ac64188a\",\r\n \"5eda0ad40699b81bb9142aae\",\r\n \"60048c82a7903e00382d9593\",\r\n \"63a232f8ab6bb51044344bff\",\r\n \"63a2327c151bfb591645c104\",\r\n \"5eda0ad40699b81bb9142aae\",\r\n \"60048c82a7903e00382d9593\",\r\n \"63a232f8ab6bb51044344bff\",\r\n \"63a2327c151bfb591645c104\",\r\n \"670932d7b564327a0e023fcb\",\r\n \"67092bbfc45f0546bf097a7e\",\r\n \"67449c79268737ef6908d636\",\r\n \"6745925da9c9adf0450d5bca\"\r\n ]\r\n },\r\n \"moneyTransferLimitData\": {\r\n \"nextResetTime\": 1735495543,\r\n \"remainingLimit\": 1500000,\r\n \"totalLimit\": 1500000,\r\n \"resetInterval\": 86400\r\n },\r\n \"Bonuses\": [\r\n {\r\n \"type\": \"StashSize\",\r\n \"id\": \"64f5b9e5fa34f11b380756c0\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"templateId\": \"566abbc34bdc2d92178b4576\"\r\n },\r\n {\r\n \"type\": \"StashSize\",\r\n \"id\": \"64f5b9e5fa34f11b380756c2\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"templateId\": \"5811ce572459770cba1a34ea\"\r\n },\r\n {\r\n \"type\": \"StashSize\",\r\n \"id\": \"64f5b9e5fa34f11b380756c4\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"templateId\": \"5811ce662459770f6f490f32\"\r\n },\r\n {\r\n \"type\": \"StashSize\",\r\n \"id\": \"64f5b9e5fa34f11b380756c6\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"templateId\": \"5811ce772459770e9e5f9532\"\r\n },\r\n {\r\n \"type\": \"UnlockArmorRepair\",\r\n \"id\": \"64f5b9e5fa34f11b380756ba\",\r\n \"value\": 1.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"RepairArmorBonus\",\r\n \"id\": \"64f5b9e5fa34f11b380756bc\",\r\n \"value\": 3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"RepairArmorBonus\",\r\n \"id\": \"64f5b9e5fa34f11b380756be\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b380756b4\",\r\n \"value\": 2.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"5d1b371186f774253763a656\",\r\n \"5d1b36a186f7742523398433\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b380756b6\",\r\n \"value\": 2.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"5d1b371186f774253763a656\",\r\n \"5d1b36a186f7742523398433\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b380756b8\",\r\n \"value\": 2.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"5d1b371186f774253763a656\",\r\n \"5d1b36a186f7742523398433\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b380756ce\",\r\n \"value\": 1.0,\r\n \"visible\": false,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"5d1b385e86f774252167b98a\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b380756fc\",\r\n \"value\": 3.0,\r\n \"visible\": false,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"5d1b2f3f86f774252167a52c\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b38075700\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"57347ca924597744596b4e71\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b38075702\",\r\n \"value\": 15.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"57347ca924597744596b4e71\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"64f5b9e5fa34f11b38075704\",\r\n \"value\": 25.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"57347ca924597744596b4e71\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AdditionalSlots\",\r\n \"id\": \"669f9fbaddfe0dab8d0f359b\",\r\n \"value\": 1.0,\r\n \"visible\": false,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"filter\": [\r\n \"64d0b40fbe2eed70e254e2d4\"\r\n ]\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756ac\",\r\n \"value\": 4.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756ae\",\r\n \"value\": 8.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756b1\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756d6\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756d9\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756dd\",\r\n \"value\": 30.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756e3\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b3807571f\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075733\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075747\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b3807575b\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"EnergyRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075765\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"DebuffEndDelay\",\r\n \"id\": \"64f5b9e5fa34f11b380756b2\",\r\n \"value\": -50.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"DebuffEndDelay\",\r\n \"id\": \"64f5b9e5fa34f11b380756e0\",\r\n \"value\": -10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HydrationRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756c8\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HydrationRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756ca\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HydrationRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756cd\",\r\n \"value\": 30.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HydrationRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756de\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d836517a57db3778f31fde7\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_createitem_generic.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d8b89addfc57a648453e89d\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_createitem_meds.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d78c1461d79cb822a38b5f7\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_unlocked.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d6282a3b9c45949bb2992d6\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_shootingrangeunlock.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d6282d64e7f7ccdcb940567\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_scavitem.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6548afcae28f7800b02d2004\",\r\n \"value\": 3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_DogTag.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6548afd9eb937c71d7776652\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_SmallTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6548afe3e7726b6d1b4317d5\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_BigTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f1926b29cf3df65ea139\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_DogTag.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f19ae28f7800b02d204f\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_SmallTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f1a284d9162bba1fbbb1\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_BigTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f1c405b256642e3e9131\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_DogTag.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f1cdde376a2fc737e8a8\",\r\n \"value\": 24.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_SmallTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6549f1d37d6e4756c83afa77\",\r\n \"value\": 24.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/EfT_UI_Icons_BigTrophy.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d8b82b854358e8b7383cf4f\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_createitem_generic.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"5d8b8310270eff88e1f47beb\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/icon_hideout_createitem_bitcoin.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6698e6d817b8f677b3077ef0\",\r\n \"value\": 1.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/Icon_Preset-stand_Mannequin_Small.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6698e72c17b8f677b3077ef1\",\r\n \"value\": 2.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/Icon_Preset-stand_Mannequin_Small.png\"\r\n },\r\n {\r\n \"type\": \"TextBonus\",\r\n \"id\": \"6698e73c0ab2cbb83904ee2a\",\r\n \"value\": 3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": \"/files/Hideout/Icon_Preset-stand_Mannequin_Small.png\"\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756d0\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756d2\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756d4\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756da\",\r\n \"value\": 7.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756e4\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b380756e7\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075720\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075734\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075748\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b3807575c\",\r\n \"value\": -5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"HealthRegeneration\",\r\n \"id\": \"64f5b9e5fa34f11b38075766\",\r\n \"value\": 20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"MaximumEnergyReserve\",\r\n \"id\": \"64f5b9e5fa34f11b380756e8\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"UnlockWeaponModification\",\r\n \"id\": \"64f5b9e5fa34f11b38075707\",\r\n \"value\": 1.0,\r\n \"visible\": false,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"UnlockWeaponRepair\",\r\n \"id\": \"64f5b9e5fa34f11b38075708\",\r\n \"value\": 1.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"RepairWeaponBonus\",\r\n \"id\": \"64f5b9e5fa34f11b3807570a\",\r\n \"value\": 3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"RepairWeaponBonus\",\r\n \"id\": \"64f5b9e5fa34f11b3807570c\",\r\n \"value\": 6.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ScavCooldownTimer\",\r\n \"id\": \"64f5b9e5fa34f11b380756eb\",\r\n \"value\": -15.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ScavCooldownTimer\",\r\n \"id\": \"64f5b9e5fa34f11b380756f3\",\r\n \"value\": -20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"QuestMoneyReward\",\r\n \"id\": \"64f5b9e5fa34f11b380756ec\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"QuestMoneyReward\",\r\n \"id\": \"64f5b9e5fa34f11b380756ef\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"InsuranceReturnTime\",\r\n \"id\": \"64f5b9e5fa34f11b380756f0\",\r\n \"value\": -20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"RagfairCommission\",\r\n \"id\": \"64f5b9e5fa34f11b380756f4\",\r\n \"value\": -30.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b3807570e\",\r\n \"value\": 10.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Combat\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"6548ae1b0d23be12146d70ee\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Combat\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"6548ae2c84d9162bba1fbb04\",\r\n \"value\": 0.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Combat\"\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b380756f7\",\r\n \"value\": 15.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b38075721\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b38075735\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b38075749\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b3807575d\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"ExperienceRate\",\r\n \"id\": \"64f5b9e5fa34f11b38075767\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b380756f8\",\r\n \"value\": 30.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Practical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b380756fb\",\r\n \"value\": 40.0,\r\n \"visible\": true,\r\n \"passive\": false,\r\n \"production\": true,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b38075722\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b38075736\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b3807574a\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b3807575e\",\r\n \"value\": -3.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"SkillGroupLevelingBoost\",\r\n \"id\": \"64f5b9e5fa34f11b38075768\",\r\n \"value\": 12.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null,\r\n \"skillType\": \"Physical\"\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b380756fe\",\r\n \"value\": -50.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b3807571e\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b38075732\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b38075746\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b3807575a\",\r\n \"value\": 5.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n },\r\n {\r\n \"type\": \"FuelConsumption\",\r\n \"id\": \"64f5b9e5fa34f11b38075764\",\r\n \"value\": -20.0,\r\n \"visible\": true,\r\n \"passive\": true,\r\n \"production\": false,\r\n \"icon\": null\r\n }\r\n ],\r\n \"Hideout\": {\r\n \"Production\": {\r\n \"5d5589c1f934db045e6c5492\": {\r\n \"Progress\": 2411.0,\r\n \"StartTimestamp\": 1723763006,\r\n \"ProductionTime\": 16136,\r\n \"inProgress\": true,\r\n \"RecipeId\": \"5d5589c1f934db045e6c5492\",\r\n \"Products\": [],\r\n \"Interrupted\": false,\r\n \"Code\": null,\r\n \"Decoded\": false,\r\n \"AvailableForFinish\": false\r\n },\r\n \"5d5c205bd582a50d042a3c0e\": {\r\n \"Progress\": 6498.37549,\r\n \"StartTimestamp\": 1723809813,\r\n \"ProductionTime\": 145000,\r\n \"inProgress\": true,\r\n \"RecipeId\": \"5d5c205bd582a50d042a3c0e\",\r\n \"Products\": [\r\n {\r\n \"_id\": \"6770c46593065e1ccf24796d\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"StackObjectsCount\": 1\r\n }\r\n },\r\n {\r\n \"_id\": \"67714415e63ab76abb1504ba\",\r\n \"_tpl\": \"59faff1d86f7746c51718c9c\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ],\r\n \"Interrupted\": false,\r\n \"Code\": null,\r\n \"Decoded\": false,\r\n \"AvailableForFinish\": true\r\n },\r\n \"5eeca812c4c989140245ae0c\": {\r\n \"Progress\": 188546.0,\r\n \"StartTimestamp\": 1735289103,\r\n \"ProductionTime\": 288797,\r\n \"inProgress\": true,\r\n \"RecipeId\": \"5eeca812c4c989140245ae0c\",\r\n \"Products\": [],\r\n \"Interrupted\": false,\r\n \"Code\": null,\r\n \"Decoded\": false,\r\n \"AvailableForFinish\": false\r\n },\r\n \"66827062405f392b203a44cf\": {\r\n \"Progress\": 2418.0,\r\n \"StartTimestamp\": 1735475231,\r\n \"ProductionTime\": 14400,\r\n \"inProgress\": true,\r\n \"RecipeId\": \"66827062405f392b203a44cf\",\r\n \"Products\": [],\r\n \"Interrupted\": false,\r\n \"Code\": null,\r\n \"Decoded\": false,\r\n \"AvailableForFinish\": false\r\n },\r\n \"5d5c1fd4d582a500650132f0\": {\r\n \"Progress\": 2382.0,\r\n \"StartTimestamp\": 1735475267,\r\n \"ProductionTime\": 9102,\r\n \"inProgress\": true,\r\n \"RecipeId\": \"5d5c1fd4d582a500650132f0\",\r\n \"Products\": [],\r\n \"Interrupted\": false,\r\n \"Code\": null,\r\n \"Decoded\": false,\r\n \"AvailableForFinish\": false\r\n }\r\n },\r\n \"Improvements\": {\r\n \"639199277a9178252d38c990\": {\r\n \"completed\": true,\r\n \"improveCompleteTimestamp\": 1723393911\r\n },\r\n \"639199277a9178252d38c991\": {\r\n \"completed\": true,\r\n \"improveCompleteTimestamp\": 1723477037\r\n },\r\n \"639199277a9178252d38c992\": {\r\n \"completed\": true,\r\n \"improveCompleteTimestamp\": 1723498814\r\n }\r\n },\r\n \"Areas\": [\r\n {\r\n \"active\": true,\r\n \"type\": 3,\r\n \"level\": 4,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 0,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 1,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 2,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5ffcab66fd851f4b000d61ef\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 4,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": [\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044c564d2805d2a025b4a\",\r\n \"_tpl\": \"5d1b371186f774253763a656\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 26.965234375\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044f693f60983cc0b053e\",\r\n \"_tpl\": \"5d1b36a186f7742523398433\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1,\r\n \"Resource\": {\r\n \"Value\": 100\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044e2cde023ddb20e72fd\",\r\n \"_tpl\": \"5d1b371186f774253763a656\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 60\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044f86b3acb999f01edb5\",\r\n \"_tpl\": \"5d1b36a186f7742523398433\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1,\r\n \"Resource\": {\r\n \"Value\": 100\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044f9cea712dd3a0691f9\",\r\n \"_tpl\": \"5d1b36a186f7742523398433\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 100\r\n },\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"677044fb183aa3726206230c\",\r\n \"_tpl\": \"5d1b36a186f7742523398433\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 100\r\n },\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": null\r\n },\r\n {\r\n \"item\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 5,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 6,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5d5589c1f934db045e6c5492\",\r\n \"slots\": [\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"6770454142ecc45af10d22aa\",\r\n \"_tpl\": \"5d1b385e86f774252167b98a\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1,\r\n \"Resource\": {\r\n \"Value\": 29.7524876889032\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"67704542a2ba7600d9088b39\",\r\n \"_tpl\": \"5d1b385e86f774252167b98a\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 100\r\n },\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"67704545ea63ee0c130c851c\",\r\n \"_tpl\": \"5d1b385e86f774252167b98a\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 100\r\n },\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 7,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"600abc08e4022c380a7260a8\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 8,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5f241246232409155b66b809\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 9,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 10,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"6745925da9c9adf0450d5bca\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 11,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5eeca812c4c989140245ae0c\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 12,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 13,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 14,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 15,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 16,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 17,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": [\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"6770032b040b6ce12509d8ba\",\r\n \"_tpl\": \"5d1b2f3f86f774252167a52c\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1,\r\n \"Resource\": {\r\n \"Value\": 4.0654166666665565\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"6770032d27cee48a92096df3\",\r\n \"_tpl\": \"5d1b2f3f86f774252167a52c\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"67700330703aab22df0d8992\",\r\n \"_tpl\": \"5d1b2f3f86f774252167a52c\",\r\n \"upd\": {\r\n \"StackObjectsCount\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": null\r\n },\r\n {\r\n \"item\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 18,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 19,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5d5c1fd4d582a500650132f0\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 20,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"5d5c205bd582a50d042a3c0e\",\r\n \"slots\": [\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66bf4016847f5bd02c06e4cf\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66bf4016847f5bd02c06e4d0\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66bf4016847f5bd02c06e4d1\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c0c42399b785f8fc0bb888\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c107e5434d0d33ca00fd45\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c3d28bca61312d5606ffe9\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c3d28bca61312d5606ffea\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c4d0889b8bb95bd6073d5b\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c54224716f70a09402413e\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66c54224716f70a09402413f\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050236\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050237\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050238\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050239\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023a\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023b\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023c\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023d\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023e\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e6751605023f\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050240\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050241\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050242\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050243\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66cbb88ed297e67516050244\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a67\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a68\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a69\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6a\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6b\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6c\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6d\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6e\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a6f\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a70\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a71\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a72\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a73\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a74\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a75\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a76\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a77\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a78\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a79\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7a\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7b\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7c\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7d\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7e\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"item\": [\r\n {\r\n \"_id\": \"66d5cd07ef5bf1053d041a7f\",\r\n \"_tpl\": \"57347ca924597744596b4e71\",\r\n \"upd\": {\r\n \"SpawnedInSession\": true,\r\n \"Resource\": {\r\n \"Value\": 0\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 21,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 22,\r\n \"level\": 6,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 23,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 24,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 25,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 26,\r\n \"level\": 3,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": []\r\n },\r\n {\r\n \"active\": true,\r\n \"type\": 27,\r\n \"level\": 1,\r\n \"completeTime\": 0,\r\n \"constructing\": false,\r\n \"passiveBonusesEnabled\": true,\r\n \"lastRecipe\": \"\",\r\n \"slots\": [\r\n {\r\n \"item\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"Seed\": 276531708,\r\n \"Customization\": {\r\n \"Wall\": \"675467d8b784110b2702fe11\",\r\n \"Floor\": \"6754662cc6e063d76309c607\",\r\n \"Light\": \"675fe8abbc3deae49a0b947f\",\r\n \"Ceiling\": \"675468937dadca6836092b2a\",\r\n \"ShootingRangeMark\": \"67585bf5428877c04c038ee3\"\r\n },\r\n \"MannequinPoses\": {}\r\n },\r\n \"RagfairInfo\": {\r\n \"offers\": [],\r\n \"rating\": 316.33,\r\n \"isRatingGrowing\": true\r\n },\r\n \"WishList\": {\r\n \"56dff061d2720bb5668b4567\": 3,\r\n \"5fbe3ffdf8b6a877a729ea82\": 3,\r\n \"64b8725c4b75259c590fa899\": 3,\r\n \"5efb0cabfb3e451d70735af5\": 3,\r\n \"5c925fa22e221601da359b7b\": 3,\r\n \"59e6906286f7746c9f75e847\": 3,\r\n \"64b6979341772715af0f9c39\": 3,\r\n \"5e023e53d4353e3302577c4c\": 3,\r\n \"5c0e534186f7747fa1419867\": 3,\r\n \"5c0e531d86f7747fa23f4d42\": 3,\r\n \"5ed51652f6c34d2cc26336a1\": 4,\r\n \"5c0e533786f7747fa23f4d47\": 3,\r\n \"5d0375ff86f774186372f685\": 1,\r\n \"59e35de086f7741778269d84\": 4,\r\n \"5af0561e86f7745f5f3ad6ac\": 2,\r\n \"5d1b304286f774253763a528\": 3,\r\n \"5e2aedd986f7746d404f3aa4\": 4,\r\n \"62a0a16d0b9d3c46de5b6e97\": 2,\r\n \"59e35abd86f7741778269d82\": 4,\r\n \"5d1b385e86f774252167b98a\": 2,\r\n \"58dd3ad986f77403051cba8f\": 3,\r\n \"5c12688486f77426843c7d32\": 4,\r\n \"59e3596386f774176c10a2a2\": 4,\r\n \"64785e7c19d732620e045e15\": 3,\r\n \"5e2af41e86f774755a234b67\": 4,\r\n \"5e2af47786f7746d404f3aaa\": 4,\r\n \"5c05300686f7746dce784e5d\": 4,\r\n \"5c1d0c5f86f7744bb2683cf0\": 4,\r\n \"5c1d0f4986f7744bb01837fa\": 4,\r\n \"5c1d0dc586f7744baf2e7b79\": 4,\r\n \"5c1d0d6d86f7744bb2683e1f\": 4,\r\n \"5c1e495a86f7743109743dfb\": 4,\r\n \"5c94bbff86f7747ee735c08f\": 4,\r\n \"5780cf7f2459777de4559322\": 4,\r\n \"5c12613b86f7743bbe2c3f76\": 4,\r\n \"6389c8c5dbfd5e4b95197e6b\": 4,\r\n \"5c0530ee86f774697952d952\": 2,\r\n \"5c052fb986f7746b2101e909\": 2,\r\n \"66acd6702b17692df20144c0\": 4,\r\n \"62a0a124de7ac81993580542\": 4,\r\n \"5c052f6886f7746b1e3db148\": 1,\r\n \"5d1b2ffd86f77425243e8d17\": 4,\r\n \"5d80c60f86f77440373c4ece\": 4,\r\n \"5d80c62a86f7744036212b3f\": 4,\r\n \"5ede7a8229445733cb4c18e2\": 4,\r\n \"62987dfc402c7f69bf010923\": 4,\r\n \"63a3a93f8a56922e82001f5d\": 4,\r\n \"64ccc25f95763a1ae376e447\": 4,\r\n \"5b3b99475acfc432ff4dcbee\": 4,\r\n \"5bc9bc53d4351e00367fbcee\": 3,\r\n \"57347ca924597744596b4e71\": 4,\r\n \"57372c21245977670937c6c2\": 0,\r\n \"5e2aee0a86f774755a234b62\": 1,\r\n \"5c05308086f7746b2101e90b\": 3,\r\n \"59e3577886f774176a362503\": 4,\r\n \"5af04b6486f774195a3ebb49\": 4,\r\n \"5a7c4850e899ef00150be885\": 3,\r\n \"5d1b2fa286f77425227d1674\": 4,\r\n \"618ba27d9008e4636a67f61d\": 3,\r\n \"545cdae64bdc2d39198b4568\": 3,\r\n \"628dc750b910320f4c27a732\": 3,\r\n \"5d6fc87386f77449db3db94e\": 1,\r\n \"65702681bfc87b3a3409325f\": 0,\r\n \"5e9db13186f7742f845ee9d3\": 3,\r\n \"5c1d0efb86f7744baf2e7b7b\": 4,\r\n \"5d0378d486f77420421a5ff4\": 1,\r\n \"590c651286f7741e566b6461\": 1,\r\n \"5c052e6986f7746b207bc3c9\": 2,\r\n \"5dfa3d2b0dee1b22f862eade\": 4,\r\n \"5d1b33a686f7742523398398\": 2,\r\n \"590c5a7286f7747884343aea\": 2,\r\n \"54527a984bdc2d4e668b4567\": 2,\r\n \"590a391c86f774385a33c404\": 2,\r\n \"590c392f86f77444754deb29\": 2,\r\n \"5d1b36a186f7742523398433\": 2,\r\n \"590c595c86f7747884343ad7\": 4,\r\n \"5d03784a86f774203e7e0c4d\": 2,\r\n \"590c37d286f77443be3d7827\": 3,\r\n \"61bf7c024770ee6f9c6b8b53\": 3,\r\n \"590c645c86f77412b01304d9\": 3,\r\n \"5ef1ba28c64c5d0dfc0571a5\": 1,\r\n \"6570265bcfc010a0f5006a56\": 0,\r\n \"657024f01419851aef03e715\": 0,\r\n \"619cbf476b8a1b37a54eebf8\": 1,\r\n \"5d0377ce86f774186372f689\": 1,\r\n \"5d03775b86f774203e7e0c4b\": 1,\r\n \"6389c7750ef44505c87f5996\": 1,\r\n \"6389c7f115805221fb410466\": 1,\r\n \"6389c85357baa773a825b356\": 1,\r\n \"5c6592372e221600133e47d7\": 3,\r\n \"5af0534a86f7743b6f354284\": 2,\r\n \"5c0e530286f7747fa1419862\": 2,\r\n \"637b6251104668754b72f8f9\": 3,\r\n \"57347c93245977448d35f6e3\": 2,\r\n \"5af0548586f7743a532b7e99\": 2\r\n },\r\n \"Stats\": {\r\n \"Eft\": {\r\n \"SessionCounters\": {\r\n \"Items\": [\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"RightArm\"\r\n ],\r\n \"Value\": 3354\r\n },\r\n {\r\n \"Key\": [\r\n \"CombatDamage\"\r\n ],\r\n \"Value\": 9109\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"Chest\"\r\n ],\r\n \"Value\": 120\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpDamage\"\r\n ],\r\n \"Value\": 35\r\n },\r\n {\r\n \"Key\": [\r\n \"CauseBodyDamage\"\r\n ],\r\n \"Value\": 79411\r\n },\r\n {\r\n \"Key\": [\r\n \"CauseArmorDamage\"\r\n ],\r\n \"Value\": 104142\r\n },\r\n {\r\n \"Key\": [\r\n \"HitCount\"\r\n ],\r\n \"Value\": 27\r\n },\r\n {\r\n \"Key\": [\r\n \"AmmoReached\"\r\n ],\r\n \"Value\": 19\r\n },\r\n {\r\n \"Key\": [\r\n \"HeadShots\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"Kills\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"Kills\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel0010\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledUsec\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledPmc\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpKill\",\r\n \"ExpKillBase\"\r\n ],\r\n \"Value\": 1075\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpKill\",\r\n \"ExpKillBodyPartBonus\"\r\n ],\r\n \"Value\": 1024\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithAssaultRifle\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithTemplate\",\r\n \"5b0bbe4e5acfc40dc528a72d\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillShot\"\r\n ],\r\n \"Value\": 3347\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillShotOnBot\"\r\n ],\r\n \"Value\": 3347\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"674d6121c09f69dfb201a888\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpLooting\",\r\n \"ExpItemLooting\"\r\n ],\r\n \"Value\": 1450\r\n },\r\n {\r\n \"Key\": [\r\n \"Weapons\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"63f4da90f31d4a33b87bd054\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Mods\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"628a665a86cbd9750d2ff5e5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b0e794b5acfc47a877359b2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c0548ae0db834001966a3c2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5fbe3ffdf8b6a877a729ea82\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5a33b2c9c4a282000c5a9511\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5a32aa8bc4a2826c6e06d737\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"674d5e287075e056160e0176\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570254fcfc010a0f5006a22\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5a6086ea4f39f99cd479502f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"648984e3f09d032aa9399d53\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5efb0c1bd79ff02a1f5e68d9\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6769b8e3c1a1466c850658a8\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6768c25aa7b238f14a08d3f6\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpDoorUnlocked\"\r\n ],\r\n \"Value\": 30\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6389c8c5dbfd5e4b95197e6b\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bc9bc53d4351e00367fbcee\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"BartItems\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d235b4d86f7742e017bc88a\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d235a5986f77443f6329bc6\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"59faf7ca86f7740dbe19f6c2\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5e54f62086f774219b0f1937\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"590de71386f774347051a052\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d1b39a386f774252339976f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"LeftArm\"\r\n ],\r\n \"Value\": 5635\r\n },\r\n {\r\n \"Key\": [\r\n \"Fractures\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel1030\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpKill\",\r\n \"ExpKillStreakBonus\"\r\n ],\r\n \"Value\": 334\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel3050\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Heal\"\r\n ],\r\n \"Value\": 9109\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpHeal\"\r\n ],\r\n \"Value\": 121\r\n },\r\n {\r\n \"Key\": [\r\n \"BodiesLooted\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"55d7217a4bdc2d86028b456d\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6718817435e3cfd9550d2c27\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"62e7c98b550c8218d602cbb4\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"59e6920f86f77411d82aa167\"\r\n ],\r\n \"Value\": 58\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"62ebbc53e3c1e1ec7c02c44f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"67110d8d388bded67304ceb4\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6333f05d1bc0e6217a0e9d34\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"630f27f04f3f6281050b94d7\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c6d710d2e22165df16b81e7\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"55d6190f4bdc2d87028b4567\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6711107e1ad01bb88705347e\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"67111094d1758189fc0bd223\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6272370ee4013c5d7e31f418\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6711109e723c2733410161eb\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b057b4f5acfc4771e1bd3e9\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"67110dd41ad01bb88705347b\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"58491f3324597764bc48fa02\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc190ae921500103bb3b6\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc1c6ae9215000f2775a4\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc390ae921500126a77f1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc431ae921500113bb8d5\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc55cae921500103bb3be\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadd940ae9215051e1c2316\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadd919ae921500126a77f3\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cadc2e0ae9215051e1c21e7\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"64b7bbb74b75259c590fa897\"\r\n ],\r\n \"Value\": 15\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"675ac888803644528007b3f6\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Equipments\"\r\n ],\r\n \"Value\": 55\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d5e7d28a4b936645d161203\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657f8a8d7db258e5600fe33d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657f8b05f4c82973640b2348\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60a3c70cde5f453f634816a3\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"656fb21fa0dce000a2020f7c\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fae34c65ab77a6015146\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fa1f4c65ab77a601512f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fb22584a51c23e03251f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fb6ad3eefd23430f8c7c\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fb8f4c65ab77a601514d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fbdd74d84423df065f60\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570fc41d3eefd23430f8c83\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60098ad7c2240c0fe85c570a\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"544fb3364bdc2d34748b456a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c0a794586f77461c458f892\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"MobContainers\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"557ffd194bdc2d28148b457f\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5710c24ad2720bc3458b45a3\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c165d832e2216398b5a7e36\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"59f32c3b86f77472a31742f0\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"603409c80ca681766b6a0fb2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"ThrowWeapons\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb2475ed4351e00853264e3\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb20e0ed4351e3bac1212dc\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c05413a0db834001c390617\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"59e68f6f86f7746c9f75e846\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb20d53d4351e4502010a69\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"558022b54bdc2dac148b458d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb20d92d4351e00853263eb\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5ea172e498dacb342978818e\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb20dcad4351e3bac1212da\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c6d10fa2e221600106f3f23\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b7be47f5acfc400170e2dd2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"56def37dd2720bec348b456a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"57cffcd624597763133760c5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5dfa3d950dee1b22f862eae0\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5dfa3d7ac41b2312ea33362a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5bb20e58d4351e00320205d7\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6529370c405a5f51dd023db8\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5ea16d4d5aad6446a939753d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b432f3d5acfc4704b4a1dfb\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b40e3f35acfc40016388218\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657f95bff92cd718b701550c\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657f9605f4c82973640b2358\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5e9db13186f7742f845ee9d3\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"55802d5f4bdc2dac148b458e\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60a272cc93ef783291411d8e\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"656fafe3498d1b7e3e071da4\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"590c5f0d86f77413997acfab\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"64abd93857958b4249003418\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"656fb0bd7c2d57afe200c0dc\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570f30b0921c914bf07964c\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570f35cd67d0309980a7acb\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570f3890b4ae5847f060dad\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6570f3bb0b4ae5847f060db2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618a431df1eb8e24b8741deb\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"557ff21e4bdc2d89578b4586\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618428466ef05c2ce828f218\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"571659bb2459771fb2755a12\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"61840d85568c120fdd2962a5\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618426d96c780c1e710c9b9f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618b9643526131765025ab35\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618ba27d9008e4636a67f61d\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"618b9671d14d6d5ab879c5ea\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6183fd911cb55961fa0fdce9\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5ea17bbc09aa976f2e7a51cd\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"61816fcad92c473c770215cc\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"61817865d3a39d50044c13a4\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"66ffc6ceb7ff397142017c3a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b7be4895acfc400170e2dd5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"655df24fdf80b12750626d0a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"66ffc20ba73a7bce3d0b45ab\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"58d2946386f774496974c37e\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"58d2912286f7744e27117493\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6181688c6c780c1e710c9b04\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"64a5366719bab53bd203bf33\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"656fac30c6baea13cd07e10c\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"544fb45d4bdc2dee738b4568\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"544a5cde4bdc2d39388b456b\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5df8a77486f77412672a1e3f\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"573478bc24597738002c6175\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d1c774f86f7746d6620f8db\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5aa2ba71e5b5b000137b758f\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"62a61c988ec41a51b34758d5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledBoss\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledBossName\",\r\n \"pmcBot\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60339954d62c9b14ed777c06\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"602e71bd53a60014f9705bfa\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5a718f958dc32e00094b97e7\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5efb0e16aeb21837e749c7ff\"\r\n ],\r\n \"Value\": 30\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"602e63fb6335467b0c5ac94d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"603372b4da11d6478d5a07ff\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60337f5dce399e10262255d1\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6034e3cb0ddce744014cb870\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"602e3f1254072b51b239f713\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"602e620f9b513876d4338d9a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6033749e88382f4fab3fd2c5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"602f85fd9b513876d4338d9c\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"669fa409933e898cce0c2166\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"669fa4c61bd4416eaa09b3ca\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"668fe5ec4315934ba10c6f96\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"66a0da76b6f47fcfeb025e96\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"669fa5127a09bc295603b499\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"668fe5e1800f0244f9036e46\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"669fa435803b94fb5d0e3a76\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"62330b3ed4dc74626d570b95\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5b432c305acfc40019478128\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60a3c68c37ea821725773ef5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"656fa53d94b480b8a500c0e4\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6557458f83942d705f0c4962\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"65733312ca0ca984940a2d53\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657333232cc8dfad2c0a3d97\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657333302cc8dfad2c0a3d9b\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6573333eca0ca984940a2d57\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6573334aca0ca984940a2d5b\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"65733375b7a8d286530e3dd7\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6573337f2cc8dfad2c0a3da7\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6259b864ebedf17603599e88\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6259c2c1d714855d182bad85\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5c0111ab0db834001966914d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"58272d7f2459774f6311ddfd\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"676177b09cfcc4c25b027446\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"57d17e212459775a1179a0f5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"57d17c5e2459775a5c57d17d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6259c4347d6aab70bc23a190\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"625ff2ccb8c587128c1a01dd\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d6e6869a4b9361c140bcfde\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6259c3387d6aab70bc23a18d\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6259c3d8012d6678ec38eeb8\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"625ed7c64d9b6612df732146\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"570fd721d2720bc5458b4596\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"625ebcef6f53af4aa66b44dc\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"625ec45bb14d7326ac20f572\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d3eb3b0a4b93615055e84d2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d3eb59ea4b9361c284bb4b2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d3eb44aa4b93650d64e4979\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5d3eb5eca4b9363b1f22f8e4\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5cc80f8fe4a949033b0224a2\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"60a621c49c197e4e8c4455e6\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5648a7494bdc2d9d488b4583\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"65703d866584602f7d057a8a\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"65703fa06584602f7d057a8e\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"65703fe46a912c8b5c03468b\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"657040374e67e8ec7a0d261c\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"6033fa48ffd42c541047f728\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"57347c5b245977448d35f6e1\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"590a3c0a86f774385a33c450\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"590c5a7286f7747884343aea\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LootItem\",\r\n \"5672cb124bdc2d1a0f8b4568\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpExitStatus\"\r\n ],\r\n \"Value\": 300\r\n },\r\n {\r\n \"Key\": [\r\n \"Pedometer\"\r\n ],\r\n \"Value\": 2250\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillStreak\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"ExpKill\"\r\n ],\r\n \"Value\": 2433\r\n },\r\n {\r\n \"Key\": [\r\n \"ExpLooting\"\r\n ],\r\n \"Value\": 1450\r\n },\r\n {\r\n \"Key\": [\r\n \"Ammunitions\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"Money\",\r\n \"RUB\"\r\n ],\r\n \"Value\": 1\r\n }\r\n ]\r\n },\r\n \"OverallCounters\": {\r\n \"Items\": [\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"pr_scout_base\"\r\n ],\r\n \"Value\": 119\r\n },\r\n {\r\n \"Key\": [\r\n \"Triggers\"\r\n ],\r\n \"Value\": 283\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper5\"\r\n ],\r\n \"Value\": 202\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"NosQuests_5_Flaer_off\"\r\n ],\r\n \"Value\": 21\r\n },\r\n {\r\n \"Key\": [\r\n \"CurrentWinStreak\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"Sessions\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 2360\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"Survived\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 1495\r\n },\r\n {\r\n \"Key\": [\r\n \"LifeTime\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 1465814\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpHeal\"\r\n ],\r\n \"Value\": 203376\r\n },\r\n {\r\n \"Key\": [\r\n \"Exp\",\r\n \"ExpExitStatus\"\r\n ],\r\n \"Value\": 472900\r\n },\r\n {\r\n \"Key\": [\r\n \"Kills\"\r\n ],\r\n \"Value\": 12778\r\n },\r\n {\r\n \"Key\": [\r\n \"Deaths\"\r\n ],\r\n \"Value\": 722\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel0010\"\r\n ],\r\n \"Value\": 323\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel1030\"\r\n ],\r\n \"Value\": 1354\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel3050\"\r\n ],\r\n \"Value\": 777\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel5070\"\r\n ],\r\n \"Value\": 241\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel7099\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledLevel100\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledBear\"\r\n ],\r\n \"Value\": 1372\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledUsec\"\r\n ],\r\n \"Value\": 1323\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledSavage\"\r\n ],\r\n \"Value\": 8892\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledPmc\"\r\n ],\r\n \"Value\": 2695\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledBoss\"\r\n ],\r\n \"Value\": 1191\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithKnife\"\r\n ],\r\n \"Value\": 109\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithPistol\"\r\n ],\r\n \"Value\": 175\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithSmg\"\r\n ],\r\n \"Value\": 609\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithShotgun\"\r\n ],\r\n \"Value\": 420\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithAssaultRifle\"\r\n ],\r\n \"Value\": 9824\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithAssaultCarbine\"\r\n ],\r\n \"Value\": 253\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithGrenadeLauncher\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithMachineGun\"\r\n ],\r\n \"Value\": 331\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithMarksmanRifle\"\r\n ],\r\n \"Value\": 671\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithSniperRifle\"\r\n ],\r\n \"Value\": 310\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithSpecialWeapon\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithThrowWeapon\"\r\n ],\r\n \"Value\": 67\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"Head\"\r\n ],\r\n \"Value\": 2928284\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"Chest\"\r\n ],\r\n \"Value\": 8695694\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"Stomach\"\r\n ],\r\n \"Value\": 4186424\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"LeftArm\"\r\n ],\r\n \"Value\": 7130765\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"RightArm\"\r\n ],\r\n \"Value\": 5558487\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"LeftLeg\"\r\n ],\r\n \"Value\": 4106349\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartDamage\",\r\n \"RightLeg\"\r\n ],\r\n \"Value\": 4171565\r\n },\r\n {\r\n \"Key\": [\r\n \"HeadShots\"\r\n ],\r\n \"Value\": 9644\r\n },\r\n {\r\n \"Key\": [\r\n \"BloodLoss\"\r\n ],\r\n \"Value\": 5175241\r\n },\r\n {\r\n \"Key\": [\r\n \"BodyPartsDestroyed\"\r\n ],\r\n \"Value\": 2773\r\n },\r\n {\r\n \"Key\": [\r\n \"Heal\"\r\n ],\r\n \"Value\": 15394267\r\n },\r\n {\r\n \"Key\": [\r\n \"Fractures\"\r\n ],\r\n \"Value\": 481\r\n },\r\n {\r\n \"Key\": [\r\n \"Contusions\"\r\n ],\r\n \"Value\": 99\r\n },\r\n {\r\n \"Key\": [\r\n \"Dehydrations\"\r\n ],\r\n \"Value\": 227\r\n },\r\n {\r\n \"Key\": [\r\n \"Exhaustions\"\r\n ],\r\n \"Value\": 162\r\n },\r\n {\r\n \"Key\": [\r\n \"Medicines\"\r\n ],\r\n \"Value\": 157\r\n },\r\n {\r\n \"Key\": [\r\n \"UsedFoods\"\r\n ],\r\n \"Value\": 352\r\n },\r\n {\r\n \"Key\": [\r\n \"UsedDrinks\"\r\n ],\r\n \"Value\": 738\r\n },\r\n {\r\n \"Key\": [\r\n \"Pedometer\"\r\n ],\r\n \"Value\": 3930876\r\n },\r\n {\r\n \"Key\": [\r\n \"BodiesLooted\"\r\n ],\r\n \"Value\": 4267\r\n },\r\n {\r\n \"Key\": [\r\n \"SafeLooted\"\r\n ],\r\n \"Value\": 1150\r\n },\r\n {\r\n \"Key\": [\r\n \"LockableContainers\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"Weapons\"\r\n ],\r\n \"Value\": 2240\r\n },\r\n {\r\n \"Key\": [\r\n \"Ammunitions\"\r\n ],\r\n \"Value\": 117358\r\n },\r\n {\r\n \"Key\": [\r\n \"Mods\"\r\n ],\r\n \"Value\": 23450\r\n },\r\n {\r\n \"Key\": [\r\n \"ThrowWeapons\"\r\n ],\r\n \"Value\": 1249\r\n },\r\n {\r\n \"Key\": [\r\n \"SpecialItems\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"FoodDrinks\"\r\n ],\r\n \"Value\": 2486\r\n },\r\n {\r\n \"Key\": [\r\n \"Keys\"\r\n ],\r\n \"Value\": 714\r\n },\r\n {\r\n \"Key\": [\r\n \"BartItems\"\r\n ],\r\n \"Value\": 15152\r\n },\r\n {\r\n \"Key\": [\r\n \"MobContainers\"\r\n ],\r\n \"Value\": 3677\r\n },\r\n {\r\n \"Key\": [\r\n \"Equipments\"\r\n ],\r\n \"Value\": 29871\r\n },\r\n {\r\n \"Key\": [\r\n \"CauseBodyDamage\"\r\n ],\r\n \"Value\": 189077882\r\n },\r\n {\r\n \"Key\": [\r\n \"CauseArmorDamage\"\r\n ],\r\n \"Value\": 53614687\r\n },\r\n {\r\n \"Key\": [\r\n \"HitCount\"\r\n ],\r\n \"Value\": 51875\r\n },\r\n {\r\n \"Key\": [\r\n \"LongShots\"\r\n ],\r\n \"Value\": 440\r\n },\r\n {\r\n \"Key\": [\r\n \"ExpKill\"\r\n ],\r\n \"Value\": 4382389\r\n },\r\n {\r\n \"Key\": [\r\n \"ExpLooting\"\r\n ],\r\n \"Value\": 1483450\r\n },\r\n {\r\n \"Key\": [\r\n \"Money\",\r\n \"RUB\"\r\n ],\r\n \"Value\": 913992\r\n },\r\n {\r\n \"Key\": [\r\n \"Money\",\r\n \"EUR\"\r\n ],\r\n \"Value\": 5827\r\n },\r\n {\r\n \"Key\": [\r\n \"Money\",\r\n \"USD\"\r\n ],\r\n \"Value\": 5947\r\n },\r\n {\r\n \"Key\": [\r\n \"AmmoUsed\"\r\n ],\r\n \"Value\": 37515\r\n },\r\n {\r\n \"Key\": [\r\n \"AmmoReached\"\r\n ],\r\n \"Value\": 36616\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"CombatDamage\"\r\n ],\r\n \"Value\": 38944158\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestWinStreak\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 41\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"Killed\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 712\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillShot\"\r\n ],\r\n \"Value\": 70622\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillShotOnBot\"\r\n ],\r\n \"Value\": 70622\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestKillStreak\"\r\n ],\r\n \"Value\": 64\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_2_AGS_exploration\"\r\n ],\r\n \"Value\": 22\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_stryker_area_check_4\"\r\n ],\r\n \"Value\": 51\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_terminal_find_zone\"\r\n ],\r\n \"Value\": 135\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_020\"\r\n ],\r\n \"Value\": 333\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_5_DeadGroup_exploration\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_5_Laborant_exploration\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_5_Office_exploration\"\r\n ],\r\n \"Value\": 22\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_2_Kord_exploration\"\r\n ],\r\n \"Value\": 44\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"achiv_plane\"\r\n ],\r\n \"Value\": 17\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_001\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_1_MedicalArea_exploration\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_stryker_area_check_3\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"achiv_office\"\r\n ],\r\n \"Value\": 47\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"office01\"\r\n ],\r\n \"Value\": 30\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_pacemaker_SCOUT_03\"\r\n ],\r\n \"Value\": 124\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"exit3zone\"\r\n ],\r\n \"Value\": 127\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_3_Vino_exploration\"\r\n ],\r\n \"Value\": 38\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"showers\"\r\n ],\r\n \"Value\": 63\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon05\"\r\n ],\r\n \"Value\": 49\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon04\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon07\"\r\n ],\r\n \"Value\": 23\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon01\"\r\n ],\r\n \"Value\": 51\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"gazel\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_terminal_final_zone\"\r\n ],\r\n \"Value\": 53\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_kill_christmas_guys_cust\"\r\n ],\r\n \"Value\": 207\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_find_christmas_tree_cust\"\r\n ],\r\n \"Value\": 77\r\n },\r\n {\r\n \"Key\": [\r\n \"LongestShot\"\r\n ],\r\n \"Value\": 56143\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"room206_water\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"room214\"\r\n ],\r\n \"Value\": 71\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"room114\"\r\n ],\r\n \"Value\": 70\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"vaz_feld\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_025_area_1\"\r\n ],\r\n \"Value\": 52\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_hq_area_check_1\"\r\n ],\r\n \"Value\": 78\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_024_area_2\"\r\n ],\r\n \"Value\": 67\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_024_area_1\"\r\n ],\r\n \"Value\": 87\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"mechanik_exit_area_1\"\r\n ],\r\n \"Value\": 15\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"eger_barracks_area_1\"\r\n ],\r\n \"Value\": 64\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_bmp2_area_check_13\"\r\n ],\r\n \"Value\": 22\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dead_posylni\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_27_1\"\r\n ],\r\n \"Value\": 118\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"vremyan_case\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon02\"\r\n ],\r\n \"Value\": 19\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SADOVOD_01_2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SADOVOD_01_1\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_001\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_023_area_3_1\"\r\n ],\r\n \"Value\": 117\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q14_10_kill\"\r\n ],\r\n \"Value\": 89\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_010_3\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SADOVOD_03\"\r\n ],\r\n \"Value\": 17\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"caseextr\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"bomj_place\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"pr_scout_col\"\r\n ],\r\n \"Value\": 17\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"eger_barracks_area_2\"\r\n ],\r\n \"Value\": 64\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_025_area_3\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_025_area_2\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_025_area_5\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_025_area_4\"\r\n ],\r\n \"Value\": 24\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_005_N2\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_27_3\"\r\n ],\r\n \"Value\": 118\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_003_N2\"\r\n ],\r\n \"Value\": 18\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_013_area_2\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_013_area_1\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_008_2_N1\"\r\n ],\r\n \"Value\": 18\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_023_area_1_1\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_013_area_3\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SIGNAL_01_1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_003_N3\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SIGNAL_01_2\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_1\"\r\n ],\r\n \"Value\": 44\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_3\"\r\n ],\r\n \"Value\": 120\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SALE_03_TREND\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SALE_03_DINO\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SALE_03_KOSTIN\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper6_kiba_kill\"\r\n ],\r\n \"Value\": 152\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_5\"\r\n ],\r\n \"Value\": 24\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_4\"\r\n ],\r\n \"Value\": 20\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SALE_03_TOPBRAND\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_SALE_03_AVOKADO\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_003_N1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q14_11_jeep\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_004_N1\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_004_N2\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_015_area_1\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_017_area_1\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"Runner\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 65\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_2\"\r\n ],\r\n \"Value\": 127\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_6\"\r\n ],\r\n \"Value\": 50\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_005_N1\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_024_2\"\r\n ],\r\n \"Value\": 15\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_024_1\"\r\n ],\r\n \"Value\": 19\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_024_3\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_007_1_N1\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_008_2_N2\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_bmp2_area_check_12\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_bmp2_area_check_2\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_t90_area_check_1\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_bmp2_area_check_11\"\r\n ],\r\n \"Value\": 73\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"meh_44_eastLight_kill\"\r\n ],\r\n \"Value\": 319\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_br_secure_road\"\r\n ],\r\n \"Value\": 351\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_pc1_ucot_kill\"\r\n ],\r\n \"Value\": 158\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_find_scav_group1\"\r\n ],\r\n \"Value\": 27\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_find_crushed_heli\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_kill_christmas_guys_light\"\r\n ],\r\n \"Value\": 54\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyAvgCompletionTimeDay\"\r\n ],\r\n \"Value\": -3013\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyCurrentCompleteStreak\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyCurrentFailStreak\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyExpEarned\"\r\n ],\r\n \"Value\": 1454684\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyMaxCompleteStreak\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyMediumCount\"\r\n ],\r\n \"Value\": 15\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyMoneyEarned\"\r\n ],\r\n \"Value\": 4518485\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalCompleteCount\"\r\n ],\r\n \"Value\": 43\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalCompleteCountDay\"\r\n ],\r\n \"Value\": 38\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalCompletionTimeDay\"\r\n ],\r\n \"Value\": -114493\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"QuestTypes\",\r\n \"BringItemToTrader\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_pr1_heli2_kill\"\r\n ],\r\n \"Value\": 178\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"MissingInAction\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_008_4_N1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_008_4_N2\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_kill_christmas_guys_int\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"ter_023_area_2_1\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_merch_022_7\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"baraholshik_arsenal_area_5\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"baraholshik_arsenal_area_4\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"baraholshik_arsenal_area_3\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"baraholshik_dejurniy_area_2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"baraholshik_arsenal_area_1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon03\"\r\n ],\r\n \"Value\": 8\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_pacemaker_SCOUT_01\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_pacemaker_SCOUT_04\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_pacemaker_SCOUT_02\"\r\n ],\r\n \"Value\": 84\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"prapor_27_2\"\r\n ],\r\n \"Value\": 56\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_hunt_fr_find\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"unkown_mark_2\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"Left\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 23\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_026\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_009_2\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_010_2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_009_3_N1\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyMaxFailStreak\"\r\n ],\r\n \"Value\": 51\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalFailCount\"\r\n ],\r\n \"Value\": 175\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"dungeon06\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper7_test\"\r\n ],\r\n \"Value\": 124\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper7_saferoom\"\r\n ],\r\n \"Value\": 625\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"lijnik_storage_area_1\"\r\n ],\r\n \"Value\": 69\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"huntsman_029\"\r\n ],\r\n \"Value\": 53\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_THX_15\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_meh_sanitar_room\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyVeryEasyCount\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"QuestTypes\",\r\n \"Eliminate\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyAvgCompletionTimeWeek\"\r\n ],\r\n \"Value\": -531\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyEasyCount\"\r\n ],\r\n \"Value\": 14\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalCompleteCountWeek\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyTotalCompletionTimeWeek\"\r\n ],\r\n \"Value\": -2653\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_2A2_unlock_3_woods\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q14_10_point_area\"\r\n ],\r\n \"Value\": 36\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_5\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"QuestTypes\",\r\n \"SurviveOnLocation\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_kill_cinema\"\r\n ],\r\n \"Value\": 151\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_weap_race\"\r\n ],\r\n \"Value\": 386\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_produkt1\"\r\n ],\r\n \"Value\": 26\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper10_kill\"\r\n ],\r\n \"Value\": 262\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c16_koll_1\"\r\n ],\r\n \"Value\": 26\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_produkt2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_kill_stilo\"\r\n ],\r\n \"Value\": 34\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_kill_c17_adm\"\r\n ],\r\n \"Value\": 78\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"fond_quest\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_produkt4\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_kill_kardinal\"\r\n ],\r\n \"Value\": 90\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"peace_027_area\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_produkt3\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_exploration2\"\r\n ],\r\n \"Value\": 22\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_ags_exploration7\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_pr1_heli1_find\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration11\"\r\n ],\r\n \"Value\": 17\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration8\"\r\n ],\r\n \"Value\": 18\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_mechanik1_exploration1\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_medic1_exploration1\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_8\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_exploration3\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_exploration1\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_6\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_peacemaker_007_2_N3\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"KilledWithTripwires\"\r\n ],\r\n \"Value\": 0\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Check_mine_zone_custom\"\r\n ],\r\n \"Value\": 109\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Control_room\"\r\n ],\r\n \"Value\": 79\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Dome\"\r\n ],\r\n \"Value\": 159\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Server_room\"\r\n ],\r\n \"Value\": 391\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Transits_streets\"\r\n ],\r\n \"Value\": 83\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"locked_office\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Check_mine_zone_factory\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"exit0zone\"\r\n ],\r\n \"Value\": 44\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"pumproom\"\r\n ],\r\n \"Value\": 95\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"exit2zone\"\r\n ],\r\n \"Value\": 22\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_3\"\r\n ],\r\n \"Value\": 15\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_2\"\r\n ],\r\n \"Value\": 27\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"secretpassage\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_1\"\r\n ],\r\n \"Value\": 31\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_12\"\r\n ],\r\n \"Value\": 105\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_4\"\r\n ],\r\n \"Value\": 25\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_3_exit\"\r\n ],\r\n \"Value\": 21\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_6\"\r\n ],\r\n \"Value\": 97\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_9\"\r\n ],\r\n \"Value\": 65\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_11\"\r\n ],\r\n \"Value\": 56\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_10\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_8\"\r\n ],\r\n \"Value\": 61\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_7\"\r\n ],\r\n \"Value\": 19\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"exit1zone\"\r\n ],\r\n \"Value\": 17\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Sandbox_mine_quest\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Prospect_mira\"\r\n ],\r\n \"Value\": 159\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Woods_mine_quest\"\r\n ],\r\n \"Value\": 46\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Marafon_kill_village_lighthouse\"\r\n ],\r\n \"Value\": 155\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_ags_exploration4\"\r\n ],\r\n \"Value\": 18\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"roof02\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"catwalk06\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_2_5\"\r\n ],\r\n \"Value\": 50\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"catwalk03\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"catwalk02\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration5\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_kill_christmas_guys_rez\"\r\n ],\r\n \"Value\": 13\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_7\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_find_christmas_tree_rez\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_find_christmas_tree_light\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Check_cinema\"\r\n ],\r\n \"Value\": 218\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Check_primorsky\"\r\n ],\r\n \"Value\": 117\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_9\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"QuestTypes\",\r\n \"PickUp\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"ScavTotalCompleteCount\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyVeryHardCount\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_find_sillent\"\r\n ],\r\n \"Value\": 12\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_kill_shool\"\r\n ],\r\n \"Value\": 87\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_find_2st_med_invent1\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_find_2st_med_invent2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Pharma_2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Pharma_1\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Pharma_3\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"RepeatableQuest\",\r\n \"DailyHardCount\"\r\n ],\r\n \"Value\": 8\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c11_gmed\"\r\n ],\r\n \"Value\": 73\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c8_dom1\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c6_kpss\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_find_2st_kpss2\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_4\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c29_debt\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c25_cinem\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c25_cinem2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Office_enter\"\r\n ],\r\n \"Value\": 8\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Office_quest\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Hookah_quest\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c8_dom2\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c8_dom2_dead\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c5_mar\"\r\n ],\r\n \"Value\": 16\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c7_mel\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper8_2\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c21_look\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c16_koll_2\"\r\n ],\r\n \"Value\": 59\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Transits_to_streets\"\r\n ],\r\n \"Value\": 14\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"meh_48_transponder_area_check_1\"\r\n ],\r\n \"Value\": 79\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"marafon_kill_village_shoreline\"\r\n ],\r\n \"Value\": 48\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_10\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_14\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"nf2024_1\"\r\n ],\r\n \"Value\": 7\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_c27_sect\"\r\n ],\r\n \"Value\": 10\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_2\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"place_2A2_unlock_3_customs\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"2A2_unlock_4_discover\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_find_light_merchant\"\r\n ],\r\n \"Value\": 59\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"meh_50_visit_area_check_1\"\r\n ],\r\n \"Value\": 55\r\n },\r\n {\r\n \"Key\": [\r\n \"LightkeeperVisited\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"LightkeeperWhoAreYou\"\r\n ],\r\n \"Value\": 11\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper00\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper99\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_bariga1_exploration1\"\r\n ],\r\n \"Value\": 14\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_find_2st_mech\"\r\n ],\r\n \"Value\": 21\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration6\"\r\n ],\r\n \"Value\": 21\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration10\"\r\n ],\r\n \"Value\": 8\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"qlight_extension_prapor1_utes_exploration9\"\r\n ],\r\n \"Value\": 26\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_find_christmas_tree_int\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_3\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_6\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_5\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_11\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_12\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_8\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_13\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_15\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_1\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Bank_points_16\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_terminal_cottage\"\r\n ],\r\n \"Value\": 9\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"catwalk01\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"ExitStatus\",\r\n \"Transit\",\r\n \"Pmc\"\r\n ],\r\n \"Value\": 62\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Labs_transits\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"quest_zone_keeper8_1\"\r\n ],\r\n \"Value\": 6\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Halloween_lab_section1\"\r\n ],\r\n \"Value\": 510\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Halloween_lab_section2\"\r\n ],\r\n \"Value\": 999\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Halloween_closed_places\"\r\n ],\r\n \"Value\": 1112\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_9\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"halloween_unlock_pc\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"q_ny_kill_christmas_guys_shorl\"\r\n ],\r\n \"Value\": 2\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"tadeush_tunguska_area_check_10\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"kill_in_forest_lighthouse\"\r\n ],\r\n \"Value\": 56\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_lighthouse\"\r\n ],\r\n \"Value\": 35\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"kill_in_forest_shoreline\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"kill_in_forest_customs\"\r\n ],\r\n \"Value\": 29\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_customs\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"killCam\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Killnewoil\"\r\n ],\r\n \"Value\": 3\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"exit777\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_shoreline\"\r\n ],\r\n \"Value\": 86\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"Killoldoil\"\r\n ],\r\n \"Value\": 4\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_reservee\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"kill_in_forest_woods\"\r\n ],\r\n \"Value\": 5\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_woods\"\r\n ],\r\n \"Value\": 1\r\n },\r\n {\r\n \"Key\": [\r\n \"TriggerVisited\",\r\n \"new_year_2024_market_interchange\"\r\n ],\r\n \"Value\": 2\r\n }\r\n ]\r\n },\r\n \"SessionExperienceMult\": 1.3,\r\n \"ExperienceBonusMult\": 1.225,\r\n \"TotalSessionExperience\": 6957,\r\n \"LastSessionDate\": 1735477736,\r\n \"Aggressor\": {\r\n \"AccountId\": null,\r\n \"ProfileId\": null,\r\n \"MainProfileNickname\": null,\r\n \"Name\": \"semyon2\",\r\n \"Side\": \"Savage\",\r\n \"PrestigeLevel\": 0,\r\n \"ColliderType\": \"RibcageUp\",\r\n \"WeaponName\": \"6718817435e3cfd9550d2c27 ShortName\",\r\n \"Category\": \"Default\",\r\n \"Role\": \"pmcUSEC\"\r\n },\r\n \"DroppedItems\": [\r\n {\r\n \"QuestId\": \"5ac345dc86f774288030817f\",\r\n \"ItemId\": \"590c2e1186f77425357b6124\",\r\n \"ZoneId\": \"place_SADOVOD_01_2\"\r\n },\r\n {\r\n \"QuestId\": \"5ac345dc86f774288030817f\",\r\n \"ItemId\": \"590c2e1186f77425357b6124\",\r\n \"ZoneId\": \"place_SADOVOD_01_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b75b86f7742e97191958\",\r\n \"ItemId\": \"55801eed4bdc2d89578b4588\",\r\n \"ZoneId\": \"place_peacemaker_001\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b75b86f7742e97191958\",\r\n \"ItemId\": \"544fb5454bdc2df8738b456a\",\r\n \"ZoneId\": \"place_peacemaker_001\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7a786f774579c3eb376\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_002_N3\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7a786f774579c3eb376\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_002_N2\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7a786f774579c3eb376\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_002_N1\"\r\n },\r\n {\r\n \"QuestId\": \"59674eb386f774539f14813a\",\r\n \"ItemId\": \"591092ef86f7747bb8703422\",\r\n \"ZoneId\": \"case_extraction\"\r\n },\r\n {\r\n \"QuestId\": \"59c124d686f774189b3c843f\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"fuel2\"\r\n },\r\n {\r\n \"QuestId\": \"5979eee086f774311955e614\",\r\n \"ItemId\": \"5939a00786f7742fe8132936\",\r\n \"ZoneId\": \"extraction_zone_zibbo\"\r\n },\r\n {\r\n \"QuestId\": \"59c124d686f774189b3c843f\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"fuel4\"\r\n },\r\n {\r\n \"QuestId\": \"59c124d686f774189b3c843f\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"fuel3\"\r\n },\r\n {\r\n \"QuestId\": \"59c124d686f774189b3c843f\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"fuel1\"\r\n },\r\n {\r\n \"QuestId\": \"597a160786f77477531d39d2\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"gazel\"\r\n },\r\n {\r\n \"QuestId\": \"5d25b6be86f77444001e1b89\",\r\n \"ItemId\": \"590c5d4b86f774784e1b9c45\",\r\n \"ZoneId\": \"huntsman_005_2\"\r\n },\r\n {\r\n \"QuestId\": \"5d25b6be86f77444001e1b89\",\r\n \"ItemId\": \"5448fee04bdc2dbc018b4567\",\r\n \"ZoneId\": \"huntsman_005_2\"\r\n },\r\n {\r\n \"QuestId\": \"5d25b6be86f77444001e1b89\",\r\n \"ItemId\": \"590c5d4b86f774784e1b9c45\",\r\n \"ZoneId\": \"huntsman_005_1\"\r\n },\r\n {\r\n \"QuestId\": \"5d25b6be86f77444001e1b89\",\r\n \"ItemId\": \"5448fee04bdc2dbc018b4567\",\r\n \"ZoneId\": \"huntsman_005_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7d686f77460d847e6a6\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_003_N2\"\r\n },\r\n {\r\n \"QuestId\": \"5a68661a86f774500f48afb0\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"ter_013_area_2\"\r\n },\r\n {\r\n \"QuestId\": \"5a68661a86f774500f48afb0\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"ter_013_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a68661a86f774500f48afb0\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"ter_013_area_3\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7d686f77460d847e6a6\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_003_N3\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b7d686f77460d847e6a6\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_003_N1\"\r\n },\r\n {\r\n \"QuestId\": \"5a68669a86f774255929b4d4\",\r\n \"ItemId\": \"590c5a7286f7747884343aea\",\r\n \"ZoneId\": \"ter_017_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a68669a86f774255929b4d4\",\r\n \"ItemId\": \"590c5a7286f7747884343aea\",\r\n \"ZoneId\": \"ter_017_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a68669a86f774255929b4d4\",\r\n \"ItemId\": \"590c5a7286f7747884343aea\",\r\n \"ZoneId\": \"ter_017_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b87686f77460de0252a8\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_005_N2\"\r\n },\r\n {\r\n \"QuestId\": \"5a27b87686f77460de0252a8\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_005_N1\"\r\n },\r\n {\r\n \"QuestId\": \"5a03173786f77451cb427172\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_008_2_N2\"\r\n },\r\n {\r\n \"QuestId\": \"5a03173786f77451cb427172\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_008_2_N1\"\r\n },\r\n {\r\n \"QuestId\": \"6086c852c945025d41566124\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"tadeush_bmp2_area_mark_12\"\r\n },\r\n {\r\n \"QuestId\": \"6086c852c945025d41566124\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"tadeush_stryker_area_mark_3\"\r\n },\r\n {\r\n \"QuestId\": \"6086c852c945025d41566124\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"tadeush_bmp2_area_mark_2\"\r\n },\r\n {\r\n \"QuestId\": \"6086c852c945025d41566124\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"tadeush_bmp2_area_mark_11\"\r\n },\r\n {\r\n \"QuestId\": \"6086c852c945025d41566124\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"tadeush_bmp2_area_mark_13\"\r\n },\r\n {\r\n \"QuestId\": \"5eda19f0edce541157209cee\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"prapor_022_area_2\"\r\n },\r\n {\r\n \"QuestId\": \"5eda19f0edce541157209cee\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"prapor_022_area_3\"\r\n },\r\n {\r\n \"QuestId\": \"5eda19f0edce541157209cee\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"prapor_022_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5ac346cf86f7741d63233a02\",\r\n \"ItemId\": \"5ac78a9b86f7741cca0bbd8d\",\r\n \"ZoneId\": \"place_SIGNAL_03_2\"\r\n },\r\n {\r\n \"QuestId\": \"5ac346cf86f7741d63233a02\",\r\n \"ItemId\": \"5ac78a9b86f7741cca0bbd8d\",\r\n \"ZoneId\": \"place_SIGNAL_03_1\"\r\n },\r\n {\r\n \"QuestId\": \"5ac346cf86f7741d63233a02\",\r\n \"ItemId\": \"5ac78a9b86f7741cca0bbd8d\",\r\n \"ZoneId\": \"place_SIGNAL_03_3\"\r\n },\r\n {\r\n \"QuestId\": \"5ae448f286f77448d73c0131\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_WARBLOOD_04_2\"\r\n },\r\n {\r\n \"QuestId\": \"5edabd13218d181e29451442\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"skier_022_area_3\"\r\n },\r\n {\r\n \"QuestId\": \"5edabd13218d181e29451442\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"skier_022_area_2\"\r\n },\r\n {\r\n \"QuestId\": \"5edabd13218d181e29451442\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"skier_022_area_1\"\r\n },\r\n {\r\n \"QuestId\": \"5ae448f286f77448d73c0131\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_WARBLOOD_04_1\"\r\n },\r\n {\r\n \"QuestId\": \"5ae448f286f77448d73c0131\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_WARBLOOD_04_3\"\r\n },\r\n {\r\n \"QuestId\": \"608974d01a66564e74191fc0\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"baraholshik_fuel_area_3\"\r\n },\r\n {\r\n \"QuestId\": \"608974d01a66564e74191fc0\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"baraholshik_fuel_area_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b47926a86f7747ccc057c15\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"place_skier_11_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b47926a86f7747ccc057c15\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"place_skier_11_3\"\r\n },\r\n {\r\n \"QuestId\": \"5b478d0f86f7744d190d91b5\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_merch_21_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b478d0f86f7744d190d91b5\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_merch_21_3\"\r\n },\r\n {\r\n \"QuestId\": \"5b478d0f86f7744d190d91b5\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_merch_21_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b47926a86f7747ccc057c15\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"place_skier_11_2\"\r\n },\r\n {\r\n \"QuestId\": \"5a27bbf886f774333a418eeb\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_010_2\"\r\n },\r\n {\r\n \"QuestId\": \"6578ec473dbd035d04531a8d\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"q14_8_2\"\r\n },\r\n {\r\n \"QuestId\": \"6578ec473dbd035d04531a8d\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"q14_8_3\"\r\n },\r\n {\r\n \"QuestId\": \"5c10f94386f774227172c572\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"bar_fuel3_3\"\r\n },\r\n {\r\n \"QuestId\": \"5c10f94386f774227172c572\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"bar_fuel3_2\"\r\n },\r\n {\r\n \"QuestId\": \"5c10f94386f774227172c572\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"bar_fuel3_1\"\r\n },\r\n {\r\n \"QuestId\": \"5ae449b386f77446d8741719\",\r\n \"ItemId\": \"5ab8f4ff86f77431c60d91ba\",\r\n \"ZoneId\": \"place_THX_15\"\r\n },\r\n {\r\n \"QuestId\": \"5ae449b386f77446d8741719\",\r\n \"ItemId\": \"5ab8f85d86f7745cd93a1cf5\",\r\n \"ZoneId\": \"place_THX_15\"\r\n },\r\n {\r\n \"QuestId\": \"5ae449b386f77446d8741719\",\r\n \"ItemId\": \"5aa2b9aee5b5b00015693121\",\r\n \"ZoneId\": \"place_THX_15\"\r\n },\r\n {\r\n \"QuestId\": \"5ae449b386f77446d8741719\",\r\n \"ItemId\": \"5aa2b923e5b5b000137b7589\",\r\n \"ZoneId\": \"place_THX_15\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5645bcc04bdc2d363b8b4572\",\r\n \"ZoneId\": \"place_merch_020_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5645bcc04bdc2d363b8b4572\",\r\n \"ZoneId\": \"place_merch_020_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5a7c4850e899ef00150be885\",\r\n \"ZoneId\": \"place_merch_020_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5a7c4850e899ef00150be885\",\r\n \"ZoneId\": \"place_merch_020_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5ab8e79e86f7742d8b372e78\",\r\n \"ZoneId\": \"place_merch_020_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b478b1886f7744d1b23c57d\",\r\n \"ItemId\": \"5ab8e79e86f7742d8b372e78\",\r\n \"ZoneId\": \"place_merch_020_2\"\r\n },\r\n {\r\n \"QuestId\": \"61958c366726521dd96828ec\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight16_peace_terra\"\r\n },\r\n {\r\n \"QuestId\": \"6179b3a12153c15e937d52bc\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_fuel_blood_bezovoz2\"\r\n },\r\n {\r\n \"QuestId\": \"6578ec473dbd035d04531a8d\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"q14_8_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_1\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_2\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_3\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_3\"\r\n },\r\n {\r\n \"QuestId\": \"5b4795fb86f7745876267770\",\r\n \"ItemId\": \"5734758f24597738025ee253\",\r\n \"ZoneId\": \"place_skier_12_3\"\r\n },\r\n {\r\n \"QuestId\": \"5c0bbaa886f7746941031d82\",\r\n \"ItemId\": \"55801eed4bdc2d89578b4588\",\r\n \"ZoneId\": \"Q019_3\"\r\n },\r\n {\r\n \"QuestId\": \"5c0bbaa886f7746941031d82\",\r\n \"ItemId\": \"59faf7ca86f7740dbe19f6c2\",\r\n \"ZoneId\": \"Q019_3\"\r\n },\r\n {\r\n \"QuestId\": \"5c0bbaa886f7746941031d82\",\r\n \"ItemId\": \"5c12301c86f77419522ba7e4\",\r\n \"ZoneId\": \"Q019_3\"\r\n },\r\n {\r\n \"QuestId\": \"6179b4d1bca27a099552e04e\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_mark_vech4\"\r\n },\r\n {\r\n \"QuestId\": \"6179b4d1bca27a099552e04e\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_mark_vech3\"\r\n },\r\n {\r\n \"QuestId\": \"639135f286e646067c176a87\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_place_c14_revx_1\"\r\n },\r\n {\r\n \"QuestId\": \"6179ac7511973d018217d0b9\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_pr1_heli1_mark\"\r\n },\r\n {\r\n \"QuestId\": \"6179b3a12153c15e937d52bc\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_fuel_blood\"\r\n },\r\n {\r\n \"QuestId\": \"6179b3a12153c15e937d52bc\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_fuel_blood_bezovoz1\"\r\n },\r\n {\r\n \"QuestId\": \"6179b3a12153c15e937d52bc\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_fuel_blood_bezovoz3\"\r\n },\r\n {\r\n \"QuestId\": \"6179b4d1bca27a099552e04e\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_mark_vech1\"\r\n },\r\n {\r\n \"QuestId\": \"6179b4d1bca27a099552e04e\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"qlight_mark_vech2\"\r\n },\r\n {\r\n \"QuestId\": \"626bd75e47ea7f506e5493c5\",\r\n \"ItemId\": \"5ac78a9b86f7741cca0bbd8d\",\r\n \"ZoneId\": \"qlight_extension_mechanik1_hide1\"\r\n },\r\n {\r\n \"QuestId\": \"626bd75b05f287031503c7f6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"qlight_extension_medic1_hide1\"\r\n },\r\n {\r\n \"QuestId\": \"6578ec473dbd035d04531a8d\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"q14_8_5\"\r\n },\r\n {\r\n \"QuestId\": \"5a27ba1c86f77461ea5a3c56\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N2_1\"\r\n },\r\n {\r\n \"QuestId\": \"5a27ba1c86f77461ea5a3c56\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N2\"\r\n },\r\n {\r\n \"QuestId\": \"6578ec473dbd035d04531a8d\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"q14_8_4\"\r\n },\r\n {\r\n \"QuestId\": \"5a27ba1c86f77461ea5a3c56\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N3\"\r\n },\r\n {\r\n \"QuestId\": \"5a27ba1c86f77461ea5a3c56\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"place_peacemaker_007_N1\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39b91b0a8c9680fc467\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"nf2024_6_beacon_2\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39b91b0a8c9680fc467\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"nf2024_6_beacon_3\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39b91b0a8c9680fc467\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"nf2024_6_beacon_1\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39c64ea11e84c0642a6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"nf2024_7_3\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39c64ea11e84c0642a6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"nf2024_7_1\"\r\n },\r\n {\r\n \"QuestId\": \"669fa39c64ea11e84c0642a6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"nf2024_7_2\"\r\n },\r\n {\r\n \"QuestId\": \"669fa3a1c26f13bd04030f37\",\r\n \"ItemId\": \"590c2e1186f77425357b6124\",\r\n \"ZoneId\": \"nf2024_10_1\"\r\n },\r\n {\r\n \"QuestId\": \"669fa3a1c26f13bd04030f37\",\r\n \"ItemId\": \"590c2e1186f77425357b6124\",\r\n \"ZoneId\": \"nf2024_10_2\"\r\n },\r\n {\r\n \"QuestId\": \"669fa3a1c26f13bd04030f37\",\r\n \"ItemId\": \"590c2e1186f77425357b6124\",\r\n \"ZoneId\": \"nf2024_10_3\"\r\n },\r\n {\r\n \"QuestId\": \"64ee9df4496db64f9b7a4432\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"quest_zone_hide_sillent\"\r\n },\r\n {\r\n \"QuestId\": \"64ee9df4496db64f9b7a4432\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"quest_zone_hide_sillent2\"\r\n },\r\n {\r\n \"QuestId\": \"639135f286e646067c176a87\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_place_c14_revx_2\"\r\n },\r\n {\r\n \"QuestId\": \"639135f286e646067c176a87\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_place_c14_revx_3\"\r\n },\r\n {\r\n \"QuestId\": \"625d6ffaf7308432be1d44c5\",\r\n \"ItemId\": \"63a0b2eabea67a6d93009e52\",\r\n \"ZoneId\": \"meh_42_radio_area_mark_3\"\r\n },\r\n {\r\n \"QuestId\": \"625d6ffaf7308432be1d44c5\",\r\n \"ItemId\": \"63a0b2eabea67a6d93009e52\",\r\n \"ZoneId\": \"meh_42_radio_area_mark_4\"\r\n },\r\n {\r\n \"QuestId\": \"625d6ffaf7308432be1d44c5\",\r\n \"ItemId\": \"63a0b2eabea67a6d93009e52\",\r\n \"ZoneId\": \"meh_42_radio_area_mark_2\"\r\n },\r\n {\r\n \"QuestId\": \"625d6ffaf7308432be1d44c5\",\r\n \"ItemId\": \"63a0b2eabea67a6d93009e52\",\r\n \"ZoneId\": \"meh_42_radio_area_mark_1\"\r\n },\r\n {\r\n \"QuestId\": \"625d6fff4149f1149b5b12c9\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"meh_45_radio_area_mark_3\"\r\n },\r\n {\r\n \"QuestId\": \"625d6fff4149f1149b5b12c9\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"meh_45_radio_area_mark_2\"\r\n },\r\n {\r\n \"QuestId\": \"625d6fff4149f1149b5b12c9\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"meh_45_radio_area_mark_1\"\r\n },\r\n {\r\n \"QuestId\": \"625d6fff4149f1149b5b12c9\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"meh_45_radio_area_mark_4\"\r\n },\r\n {\r\n \"QuestId\": \"665eec4a4dfc83b0ed0a9dca\",\r\n \"ItemId\": \"59fafb5d86f774067a6f2084\",\r\n \"ZoneId\": \"place_2A2_unlock_3_customs\"\r\n },\r\n {\r\n \"QuestId\": \"665eec4a4dfc83b0ed0a9dca\",\r\n \"ItemId\": \"59fafb5d86f774067a6f2084\",\r\n \"ZoneId\": \"place_2A2_unlock_3_woods\"\r\n },\r\n {\r\n \"QuestId\": \"63966faeea19ac7ed845db2c\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_place_c24_tigr2\"\r\n },\r\n {\r\n \"QuestId\": \"63966faeea19ac7ed845db2c\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_place_c24_tigr1\"\r\n },\r\n {\r\n \"QuestId\": \"65734c186dc1e402c80dc19e\",\r\n \"ItemId\": \"5aa2b9aee5b5b00015693121\",\r\n \"ZoneId\": \"quest_zone_hide_barber2\"\r\n },\r\n {\r\n \"QuestId\": \"65734c186dc1e402c80dc19e\",\r\n \"ItemId\": \"60bf74184a63fc79b60c57f6\",\r\n \"ZoneId\": \"quest_zone_hide_barber1\"\r\n },\r\n {\r\n \"QuestId\": \"63966fccac6f8f3c677b9d89\",\r\n \"ItemId\": \"6398a0861c712b1e1d4dadf1\",\r\n \"ZoneId\": \"tadeush_bmp2_area_mark_12\"\r\n },\r\n {\r\n \"QuestId\": \"64ee99639878a0569d6ec8c9\",\r\n \"ItemId\": \"5fc64ea372b0dd78d51159dc\",\r\n \"ZoneId\": \"quest_zone_hide_2st_mech\"\r\n },\r\n {\r\n \"QuestId\": \"63966fe7ea74a47c2d3fc0e6\",\r\n \"ItemId\": \"6389c8c5dbfd5e4b95197e6b\",\r\n \"ZoneId\": \"place_keeper5_2\"\r\n },\r\n {\r\n \"QuestId\": \"63966fe7ea74a47c2d3fc0e6\",\r\n \"ItemId\": \"6389c8c5dbfd5e4b95197e6b\",\r\n \"ZoneId\": \"place_keeper5_1\"\r\n },\r\n {\r\n \"QuestId\": \"60e71d6d7fcf9c556f325055\",\r\n \"ItemId\": \"5a1eaa87fcdbcb001865f75e\",\r\n \"ZoneId\": \"mech_41_2\"\r\n },\r\n {\r\n \"QuestId\": \"60e71d6d7fcf9c556f325055\",\r\n \"ItemId\": \"5a1eaa87fcdbcb001865f75e\",\r\n \"ZoneId\": \"mech_41_1\"\r\n },\r\n {\r\n \"QuestId\": \"66631493312343839d032d22\",\r\n \"ItemId\": \"5fc64ea372b0dd78d51159dc\",\r\n \"ZoneId\": \"unkown_mark_2\"\r\n },\r\n {\r\n \"QuestId\": \"66631493312343839d032d22\",\r\n \"ItemId\": \"5fc64ea372b0dd78d51159dc\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N3\"\r\n },\r\n {\r\n \"QuestId\": \"66631493312343839d032d22\",\r\n \"ItemId\": \"5fc64ea372b0dd78d51159dc\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N2_1\"\r\n },\r\n {\r\n \"QuestId\": \"66631493312343839d032d22\",\r\n \"ItemId\": \"5fc64ea372b0dd78d51159dc\",\r\n \"ZoneId\": \"place_peacemaker_007_2_N2\"\r\n },\r\n {\r\n \"QuestId\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"ItemId\": \"5d0375ff86f774186372f685\",\r\n \"ZoneId\": \"Place_item_tools_woods\"\r\n },\r\n {\r\n \"QuestId\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"ItemId\": \"619cbfeb6b8a1b37a54eebfa\",\r\n \"ZoneId\": \"Place_item_tools_woods\"\r\n },\r\n {\r\n \"QuestId\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"ItemId\": \"5d0375ff86f774186372f685\",\r\n \"ZoneId\": \"Place_item_tools_rezerve\"\r\n },\r\n {\r\n \"QuestId\": \"66ab970848ddbe9d4a0c49a8\",\r\n \"ItemId\": \"619cbfeb6b8a1b37a54eebfa\",\r\n \"ZoneId\": \"Place_item_tools_rezerve\"\r\n },\r\n {\r\n \"QuestId\": \"66e01adbd3d014f3ae061c12\",\r\n \"ItemId\": \"66d9f7256916142b3b02276e\",\r\n \"ZoneId\": \"em_quest4_1\"\r\n },\r\n {\r\n \"QuestId\": \"66e01adbd3d014f3ae061c12\",\r\n \"ItemId\": \"66d9f8744827a77e870ecaf1\",\r\n \"ZoneId\": \" em_quest4_3\"\r\n },\r\n {\r\n \"QuestId\": \"66e01ae0c391e4c94903d220\",\r\n \"ItemId\": \"66d9f7e7099cf6adcc07a369\",\r\n \"ZoneId\": \"em_quest5_1\"\r\n },\r\n {\r\n \"QuestId\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"ItemId\": \"635a758bfefc88a93f021b8a\",\r\n \"ZoneId\": \"quest_zone_keeper6_kiba_hide\"\r\n },\r\n {\r\n \"QuestId\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"ItemId\": \"5d1b376e86f774252519444e\",\r\n \"ZoneId\": \"quest_zone_keeper6_safe_hide\"\r\n },\r\n {\r\n \"QuestId\": \"63966ff54c3ef01b6f3ffad8\",\r\n \"ItemId\": \"5c13cef886f774072e618e82\",\r\n \"ZoneId\": \"quest_zone_keeper6_cont_hide\"\r\n },\r\n {\r\n \"QuestId\": \"66aa74571e5e199ecd094f18\",\r\n \"ItemId\": \"66b22630a6b4e5ec7c02cdb7\",\r\n \"ZoneId\": \"Place_accurate_tools\"\r\n },\r\n {\r\n \"QuestId\": \"6396700fea19ac7ed845db32\",\r\n \"ItemId\": \"5a1eaa87fcdbcb001865f75e\",\r\n \"ZoneId\": \"quest_zone_keeper8_1_hide2\"\r\n },\r\n {\r\n \"QuestId\": \"6396700fea19ac7ed845db32\",\r\n \"ItemId\": \"62811fa609427b40ab14e765\",\r\n \"ZoneId\": \"quest_zone_keeper8_1_hide1\"\r\n },\r\n {\r\n \"QuestId\": \"63967028c4a91c5cb76abd81\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"quest_zone_keeper10_place\"\r\n },\r\n {\r\n \"QuestId\": \"67040c22cc1f3752720376e9\",\r\n \"ItemId\": \"6707d13e4e617ec94f0e5631\",\r\n \"ZoneId\": \"halloween_unlock_pc\"\r\n },\r\n {\r\n \"QuestId\": \"67040c78bf4be8a4ef041a65\",\r\n \"ItemId\": \"6707cf827d279daad80fa95f\",\r\n \"ZoneId\": \"quest_city_trotil2\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(bigmap)\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(woods)\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(factory)\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(lighthouse)\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(shoreline)\"\r\n },\r\n {\r\n \"QuestId\": \"67040cae4ac6d9c18c0ade2c\",\r\n \"ItemId\": \"6707d0804e617ec94f0e562f\",\r\n \"ZoneId\": \"Halloween_zone_for_antivirus(lab)\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_451\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_Always_sunny\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_harry_potter\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_sapper\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_stairway\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_terminator\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_half-life\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_six_chair\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_computer\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_nakatoimi\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_grass_green\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_tanchiki\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_two_chairs\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_battlefield\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_vedro\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_unity\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_two_toilets\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_cursed\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_ball\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_bonfire\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_welcome_silient_hill\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"zone_rick_and_morty\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_silient_hill_ward\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_death_strending\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_silient_toilet\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Zone_mutant\"\r\n },\r\n {\r\n \"QuestId\": \"66d9cbb67b491f9d5304f6e6\",\r\n \"ItemId\": \"5b4391a586f7745321235ab2\",\r\n \"ZoneId\": \"Bear_in_car\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_7\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_3\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_6\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_4\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_5\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_1\"\r\n },\r\n {\r\n \"QuestId\": \"675c03d1f7da9792a405549a\",\r\n \"ItemId\": \"5991b51486f77447b112d44f\",\r\n \"ZoneId\": \"TerragroupBOX_2\"\r\n },\r\n {\r\n \"QuestId\": \"675c085d59b0575973005f52\",\r\n \"ItemId\": \"5888988e24597752fe43a6fa\",\r\n \"ZoneId\": \"Sniper_2\"\r\n },\r\n {\r\n \"QuestId\": \"675c085d59b0575973005f52\",\r\n \"ItemId\": \"588892092459774ac91d4b11\",\r\n \"ZoneId\": \"Sniper_1\"\r\n },\r\n {\r\n \"QuestId\": \"675c085d59b0575973005f52\",\r\n \"ItemId\": \"57aca93d2459771f2c7e26db\",\r\n \"ZoneId\": \"Sniper_3\"\r\n },\r\n {\r\n \"QuestId\": \"675c085d59b0575973005f52\",\r\n \"ItemId\": \"6570254fcfc010a0f5006a22\",\r\n \"ZoneId\": \"Sniper_4\"\r\n }\r\n ],\r\n \"FoundInRaidItems\": [],\r\n \"Victims\": [\r\n {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"677149f16597310d96290bd3\",\r\n \"Name\": \"Puxlii\",\r\n \"Side\": \"Usec\",\r\n \"Time\": \"00:01:35.4350000\",\r\n \"Level\": 5,\r\n \"PrestigeLevel\": 0,\r\n \"BodyPart\": \"Head\",\r\n \"Weapon\": \"5b0bbe4e5acfc40dc528a72d ShortName\",\r\n \"Distance\": 33.4786034,\r\n \"Role\": \"pmcUSEC\",\r\n \"Location\": \"laboratory\"\r\n },\r\n {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"677149f16597310d96290b70\",\r\n \"Name\": \"XpHunter2000\",\r\n \"Side\": \"Usec\",\r\n \"Time\": \"00:05:34.5060000\",\r\n \"Level\": 15,\r\n \"PrestigeLevel\": 0,\r\n \"BodyPart\": \"Chest\",\r\n \"Weapon\": \"5b0bbe4e5acfc40dc528a72d ShortName\",\r\n \"Distance\": 22.3948364,\r\n \"Role\": \"pmcUSEC\",\r\n \"Location\": \"laboratory\"\r\n },\r\n {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"677149f16597310d96290cc7\",\r\n \"Name\": \"semyon2\",\r\n \"Side\": \"Usec\",\r\n \"Time\": \"00:05:35.8090000\",\r\n \"Level\": 43,\r\n \"PrestigeLevel\": 0,\r\n \"BodyPart\": \"Head\",\r\n \"Weapon\": \"5b0bbe4e5acfc40dc528a72d ShortName\",\r\n \"Distance\": 15.6158762,\r\n \"Role\": \"pmcUSEC\",\r\n \"Location\": \"laboratory\"\r\n },\r\n {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"677149ef78bbf14a5a2393cb\",\r\n \"Name\": \"Кобра\",\r\n \"Side\": \"Savage\",\r\n \"Time\": \"00:07:37.2060000\",\r\n \"Level\": 1,\r\n \"PrestigeLevel\": 0,\r\n \"BodyPart\": \"Head\",\r\n \"Weapon\": \"5b0bbe4e5acfc40dc528a72d ShortName\",\r\n \"Distance\": 18.1775818,\r\n \"Role\": \"pmcBot\",\r\n \"Location\": \"laboratory\"\r\n },\r\n {\r\n \"AccountId\": \"0\",\r\n \"ProfileId\": \"677149ef78bbf14a5a239a77\",\r\n \"Name\": \"Акула\",\r\n \"Side\": \"Savage\",\r\n \"Time\": \"00:07:43.1560000\",\r\n \"Level\": 1,\r\n \"PrestigeLevel\": 0,\r\n \"BodyPart\": \"Head\",\r\n \"Weapon\": \"5b0bbe4e5acfc40dc528a72d ShortName\",\r\n \"Distance\": 21.1527939,\r\n \"Role\": \"pmcBot\",\r\n \"Location\": \"laboratory\"\r\n }\r\n ],\r\n \"CarriedQuestItems\": [\r\n \"6575a6ca8778e96ded05a802\",\r\n \"5d3ec50586f774183a607442\",\r\n \"6582bd252b50c61c565828e2\",\r\n \"5937fd0086f7742bf33fc198\",\r\n \"593965cf86f774087a77e1b6\",\r\n \"5910922b86f7747d96753483\",\r\n \"591092ef86f7747bb8703422\",\r\n \"5ac620eb86f7743a8e6e0da0\",\r\n \"5939a00786f7742fe8132936\",\r\n \"5939e5a786f77461f11c0098\",\r\n \"5938188786f77474f723e87f\",\r\n \"5939e9b286f77462a709572c\",\r\n \"590c62a386f77412b0130255\",\r\n \"593a87af86f774122f54a951\",\r\n \"60a3b6359c427533db36cf84\",\r\n \"60915994c49cf53e4772cc38\",\r\n \"60a3b65c27adf161da7b6e14\",\r\n \"5938878586f7741b797c562f\",\r\n \"5b43237186f7742f3a4ab252\",\r\n \"5b4c81a086f77417d26be63f\",\r\n \"5b4c81bd86f77418a75ae159\",\r\n \"5a294d7c86f7740651337cf9\",\r\n \"5b4c72c686f77462ac37e907\",\r\n \"5a6860d886f77411cd3a9e47\",\r\n \"5b4c72fb86f7745cef1cffc5\",\r\n \"5a294d8486f774068638cd93\",\r\n \"5a687e7886f7740c4a5133fb\",\r\n \"608c22a003292f4ba43f8a1a\",\r\n \"60a3b5b05f84d429b732e934\",\r\n \"5b4c72b386f7745b453af9c0\",\r\n \"590dde5786f77405e71908b2\",\r\n \"591093bb86f7747caa7bb2ee\",\r\n \"609267a2bb3f46069c3e6c7d\",\r\n \"619252352be33f26043400a7\",\r\n \"5af04e0a86f7743a532b79e2\",\r\n \"5af04c0b86f774138708f78e\",\r\n \"5a0448bc86f774736f14efa8\",\r\n \"5ae9a18586f7746e381e16a3\",\r\n \"5ae9a1b886f77404c8537c62\",\r\n \"5ae9a0dd86f7742e5f454a05\",\r\n \"5ae9a25386f7746dd946e6d9\",\r\n \"60c080eb991ac167ad1c3ad4\",\r\n \"61904c9df62c89219a56e034\",\r\n \"5a29284f86f77463ef3db363\",\r\n \"5efdaf6de6a30218ed211a48\",\r\n \"5efdafc1e70b5e33f86de058\",\r\n \"5d357d6b86f7745b606e3508\",\r\n \"5ae9a3f586f7740aab00e4e6\",\r\n \"5ae9a4fc86f7746e381e1753\",\r\n \"5a29357286f77409c705e025\",\r\n \"5a29276886f77435ed1b117c\",\r\n \"5c12301c86f77419522ba7e4\",\r\n \"63a943cead5cc12f22161ff7\",\r\n \"5eff135be0d3331e9d282b7b\",\r\n \"619268ad78f4fa33f173dbe5\",\r\n \"619268de2be33f2604340159\",\r\n \"61a00bcb177fb945751bbe6a\",\r\n \"66a0f0926fee20fa70036da6\",\r\n \"66c0b39ca1f68fcc1d0c0cc3\",\r\n \"66c0b90c8398582e4b0c2e27\",\r\n \"669fac549b0ce3feae01a137\",\r\n \"638e0057ab150a5f56238960\",\r\n \"63927b29c115f907b14700b9\",\r\n \"638cbc68a63f1b49be6a3010\",\r\n \"64f07f7726cfa02c506f8ac0\",\r\n \"657acb2ac900be5902191ac9\",\r\n \"638dfc803083a019d447768e\",\r\n \"66a0e523e749756c920d02d0\",\r\n \"64f69b4267e11a7c6206e010\",\r\n \"64f5b4f71a5f313cb144c06c\",\r\n \"638df4cc7b560b03794a18d2\",\r\n \"638e9d5536b3b72c944e2fc7\",\r\n \"638cbb3ba63f1b49be6a300e\",\r\n \"6399f54b0a36db13c823ad21\",\r\n \"666073159916667083033cb9\",\r\n \"6331bb0d1aa9f42b804997a6\",\r\n \"64f09c02b63b74469b6c149f\",\r\n \"63989ced706b793c7d60cfef\",\r\n \"628393620d8524273e7eb028\",\r\n \"6398a0861c712b1e1d4dadf1\",\r\n \"6398a072e301557ae24cec92\",\r\n \"66b22630a6b4e5ec7c02cdb7\",\r\n \"6398a4cfb5992f573c6562b3\",\r\n \"671a406a6d315b526708f103\",\r\n \"6707cc67cc1667e49e0f7232\",\r\n \"6707cd70aab679420007e018\",\r\n \"6707cef3571b50abc703b64f\",\r\n \"6707cf827d279daad80fa95f\",\r\n \"675f80d4fe1b59cf490d3527\",\r\n \"675f7f224076a741a3061568\",\r\n \"675f7acc4076a741a3061566\",\r\n \"675f7b168d28a25ec7007dbb\"\r\n ],\r\n \"DamageHistory\": {\r\n \"LethalDamagePart\": \"Common\",\r\n \"LethalDamage\": null,\r\n \"BodyParts\": {\r\n \"Head\": [],\r\n \"Chest\": [],\r\n \"Stomach\": [],\r\n \"LeftArm\": [],\r\n \"RightArm\": [],\r\n \"LeftLeg\": [],\r\n \"RightLeg\": []\r\n }\r\n },\r\n \"TotalInGameTime\": 4019412,\r\n \"SurvivorClass\": \"Neutralizer\"\r\n }\r\n },\r\n \"CheckedMagazines\": {\r\n \"66ec6c49bed8bafa67027dbc\": 2,\r\n \"66d133f77d57d081ec10dcf5\": 2,\r\n \"66ce1a26d22817b8ac0f3de9\": 2,\r\n \"66ca06b9ebb18943fb026b88\": 2,\r\n \"66dada7372029bf1e513f73c\": 1,\r\n \"66cdedb88140be889e126d9e\": 2,\r\n \"66d133f77d57d081ec10dd14\": 2,\r\n \"674b36db78c1463fea16b294\": 2,\r\n \"674b36db78c1463fea16b2a8\": 2,\r\n \"676f0746263281a3000f19c6\": 1,\r\n \"676f0746263281a3000f19c7\": 2,\r\n \"676f0746263281a3000f19c5\": 2,\r\n \"676f0746263281a3000f19c8\": 1,\r\n \"6749f59b58f9032dca110df1\": 2,\r\n \"6749f59b58f9032dca110e10\": 2\r\n },\r\n \"CheckedChambers\": [],\r\n \"TradersInfo\": {\r\n \"54cb50c76803fa8b248b4571\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 36166721,\r\n \"standing\": 1.49,\r\n \"nextResupply\": 1735480510,\r\n \"disabled\": false\r\n },\r\n \"54cb57776803fa99248b456e\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 843345339,\r\n \"standing\": 1.48,\r\n \"nextResupply\": 1735479289,\r\n \"disabled\": false\r\n },\r\n \"579dc571d53a0658a154fbec\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 2,\r\n \"salesSum\": 31185448,\r\n \"standing\": 6.51,\r\n \"nextResupply\": 1735477933,\r\n \"disabled\": false\r\n },\r\n \"58330581ace78e27b8b10cee\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 83038912,\r\n \"standing\": 1.89,\r\n \"nextResupply\": 1735478160,\r\n \"disabled\": false\r\n },\r\n \"5935c25fb3acc3127c3d8cd9\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 652120,\r\n \"standing\": 1.32,\r\n \"nextResupply\": 1735484817,\r\n \"disabled\": false\r\n },\r\n \"5a7c2eca46aef81a7ca2145d\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 99540180,\r\n \"standing\": 1.6,\r\n \"nextResupply\": 1735479231,\r\n \"disabled\": false\r\n },\r\n \"5ac3b934156ae10c4430e83c\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 67358598,\r\n \"standing\": 1.26,\r\n \"nextResupply\": 1735477976,\r\n \"disabled\": false\r\n },\r\n \"5c0647fdd443bc2504c2d371\": {\r\n \"unlocked\": true,\r\n \"loyaltyLevel\": 4,\r\n \"salesSum\": 27764334,\r\n \"standing\": 1.42,\r\n \"nextResupply\": 1735478273,\r\n \"disabled\": false\r\n },\r\n \"638f541a29ffd1183d187f57\": {\r\n \"unlocked\": false,\r\n \"loyaltyLevel\": 1,\r\n \"salesSum\": 0,\r\n \"standing\": 0.341,\r\n \"nextResupply\": 1735478512,\r\n \"disabled\": false\r\n },\r\n \"656f0f98d80a697f855d34b1\": {\r\n \"unlocked\": false,\r\n \"loyaltyLevel\": 1,\r\n \"salesSum\": 0,\r\n \"standing\": 0.0,\r\n \"nextResupply\": 1735477855,\r\n \"disabled\": false\r\n }\r\n }\r\n },\r\n \"result\": \"Survived\",\r\n \"killerId\": \"677149f16597310d96290cc7\",\r\n \"killerAid\": \"0\",\r\n \"exitName\": \"lab_Elevator_Main\",\r\n \"inSession\": true,\r\n \"favorite\": false,\r\n \"playTime\": 791\r\n },\r\n \"lostInsuredItems\": [],\r\n \"transferItems\": {\r\n \"656f0f98d80a697f855d34b1_transit\": [\r\n {\r\n \"_id\": \"656f0f98d80a697f855d34b1\",\r\n \"_tpl\": \"566abbc34bdc2d92178b4576\"\r\n }\r\n ]\r\n },\r\n \"locationTransit\": null\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/local/end" + }, + "response": [] + }, + { + "name": "client/match/local/start", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"serverId\" : null,\r\n \"location\" : \"Sandbox\",\r\n \"timeVariant\" : \"CURR\",\r\n \"mode\" : \"PVE_OFFLINE\",\r\n \"playerSide\" : \"Pmc\",\r\n \"transitionType\" : 1,\r\n \"transition\" : null\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/match/local/start" + }, + "response": [] + } + ] + }, + { + "name": "Notifier", + "item": [ + { + "name": "client/notifier/channel/create", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/notifier/channel/create" + }, + "response": [] + }, + { + "name": "client/game/profile/select", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/select" + }, + "response": [] + }, + { + "name": "?last_id", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{host}}/?last_id", + "host": [ + "{{host}}" + ], + "path": [ + "" + ], + "query": [ + { + "key": "last_id", + "value": null + } + ] + } + }, + "response": [] + }, + { + "name": "notifierServer", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/notifierServer" + }, + "response": [] + } + ] + }, + { + "name": "Prestige", + "item": [ + { + "name": "client/prestige/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/prestige/list" + }, + "response": [] + }, + { + "name": "client/prestige/obtain", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/prestige/obtain" + }, + "response": [] + } + ] + }, + { + "name": "Profile", + "item": [ + { + "name": "client/game/profile/create", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/create" + }, + "response": [] + }, + { + "name": "client/game/profile/list", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/list" + }, + "response": [] + }, + { + "name": "client/game/profile/savage/regenerate", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/savage/regenerate" + }, + "response": [] + }, + { + "name": "client/game/profile/voice/change", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/voice/change" + }, + "response": [] + }, + { + "name": "client/game/profile/nickname/change", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/nickname/change" + }, + "response": [] + }, + { + "name": "client/game/profile/nickname/validate", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/nickname/validate" + }, + "response": [] + }, + { + "name": "client/game/profile/nickname/reserved", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/nickname/reserved" + }, + "response": [] + }, + { + "name": "client/profile/status", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/profile/status" + }, + "response": [] + }, + { + "name": "client/profile/view", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/profile/view" + }, + "response": [] + }, + { + "name": "client/profile/settings", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/profile/settings" + }, + "response": [] + }, + { + "name": "client/game/profile/search", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/game/profile/search" + }, + "response": [] + }, + { + "name": "launcher/profile/info", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/profile/info" + }, + "response": [] + }, + { + "name": "launcher/profiles", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/launcher/profiles" + }, + "response": [] + } + ] + }, + { + "name": "Quest", + "item": [ + { + "name": "client/quest/list", + "protocolProfileBehavior": { + "disabledSystemHeaders": { + "user-agent": true, + "accept-encoding": true, + "host": true, + "content-type": true + } + }, + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"completed\": true\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/quest/list" + }, + "response": [] + }, + { + "name": "client/repeatalbeQuests/activityPeriods", + "protocolProfileBehavior": { + "disabledSystemHeaders": { + "user-agent": true, + "accept-encoding": true, + "host": true, + "content-type": true + } + }, + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"completed\": true\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/repeatalbeQuests/activityPeriods" + }, + "response": [] + } + ] + }, + { + "name": "Ragfair", + "item": [ + { + "name": "client/ragfair/search", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/bundles" + }, + "response": [] + }, + { + "name": "client/ragfair/find", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/ragfair/find" + }, + "response": [] + }, + { + "name": "client/ragfair/itemMarketPrice", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/ragfair/itemMarketPrice" + }, + "response": [] + }, + { + "name": "client/ragfair/offerfees", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/ragfair/offerfees" + }, + "response": [] + }, + { + "name": "client/reports/ragfair/send", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/reports/ragfair/send" + }, + "response": [] + }, + { + "name": "client/items/prices", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/items/prices" + }, + "response": [] + }, + { + "name": "client/ragfair/offer/findbyid", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/ragfair/offer/findbyid" + }, + "response": [] + } + ] + }, + { + "name": "Trader", + "item": [ + { + "name": "client/trading/api/traderSettings", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/trading/api/traderSettings" + }, + "response": [] + }, + { + "name": "singleplayer/moddedTraders", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/singleplayer/moddedTraders" + }, + "response": [] + }, + { + "name": "client/trading/api/getTrader/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/trading/api/getTrader/" + }, + "response": [] + }, + { + "name": "client/trading/api/getTraderAssort/", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/trading/api/getTraderAssort/" + }, + "response": [] + } + ] + }, + { + "name": "Weather", + "item": [ + { + "name": "client/weather", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/weather" + }, + "response": [] + }, + { + "name": "client/localGame/weather", + "request": { + "auth": { + "type": "noauth" + }, + "method": "POST", + "header": [ + { + "key": "PHPSESSID", + "value": "{{PHPSESSID}}", + "type": "text" + }, + { + "key": "cookie", + "value": "{{cookie}}", + "type": "text" + }, + { + "key": "Accept-Encoding", + "value": "{{Accept-Encoding}}", + "type": "text" + }, + { + "key": "requestcompressed", + "value": "{{requestcompressed}}", + "type": "text" + }, + { + "key": "responsecompressed", + "value": "{{responsecompressed}}", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "{{host}}/client/localGame/weather" + }, + "response": [] + } + ] + } + ], + "event": [ + { + "listen": "prerequest", + "script": { + "type": "text/javascript", + "packages": {}, + "exec": [ + "" + ] + } + }, + { + "listen": "test", + "script": { + "type": "text/javascript", + "packages": {}, + "exec": [ + "" + ] + } + } + ], + "variable": [ + { + "key": "PHPSESSID", + "value": "67f3c7670003fca5a21ce81c", + "type": "string" + }, + { + "key": "cookie", + "value": "PHPSESSID=67f3c7670003fca5a21ce81c", + "type": "string" + }, + { + "key": "Accept-Encoding", + "value": "deflate", + "type": "string" + }, + { + "key": "requestcompressed", + "value": "0", + "type": "string" + }, + { + "key": "responsecompressed", + "value": "0", + "type": "string" + }, + { + "key": "host", + "value": "https://127.0.0.1:6969", + "type": "string" + } + ] +} \ No newline at end of file diff --git a/SPTarkov.Server/Logger/AbstractFormatter.cs b/SPTarkov.Server/Logger/AbstractFormatter.cs deleted file mode 100644 index 0bfa9665..00000000 --- a/SPTarkov.Server/Logger/AbstractFormatter.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Text; -using Serilog.Events; -using Serilog.Formatting; - -namespace SPTarkov.Server.Logger; - -public abstract class AbstractFormatter : ITextFormatter -{ - public void Format(LogEvent logEvent, TextWriter output) - { - Console.OutputEncoding = Encoding.UTF8; - var newLine = Environment.NewLine; - var timestamp = logEvent.Timestamp.ToString("HH:mm:ss.fff"); - var logLevel = logEvent.Level.ToString().ToUpper().Substring(0, 4); - var message = logEvent.RenderMessage(); - var exception = logEvent.Exception != null ? $"{newLine}{logEvent.Exception}{newLine}{logEvent.Exception.StackTrace}" : ""; - var sourceContext = logEvent.Properties["SourceContext"].ToString().Replace("\"", ""); - var logMessage = ProcessText(GetFormattedText(timestamp, logLevel, sourceContext, $"{message}{exception}")); - output.WriteLine(logMessage); - } - - protected abstract string ProcessText(string text); - - protected virtual string GetFormattedText(string timestamp, string logLevel, string sourceContext, string message) - { - return $"[{timestamp} {logLevel}][{sourceContext}] {message}"; - } -} diff --git a/SPTarkov.Server/Logger/ConsoleFormatter.cs b/SPTarkov.Server/Logger/ConsoleFormatter.cs deleted file mode 100644 index 77d0bb6b..00000000 --- a/SPTarkov.Server/Logger/ConsoleFormatter.cs +++ /dev/null @@ -1,19 +0,0 @@ -namespace SPTarkov.Server.Logger; - -public class ConsoleFormatter : AbstractFormatter -{ - public static ConsoleFormatter Default - { - get; - } = new(); - - protected override string ProcessText(string text) - { - return text; - } - - protected override string GetFormattedText(string timestamp, string logLevel, string sourceContext, string message) - { - return message; - } -} diff --git a/SPTarkov.Server/Logger/FileFormatter.cs b/SPTarkov.Server/Logger/FileFormatter.cs deleted file mode 100644 index 55d2a4c2..00000000 --- a/SPTarkov.Server/Logger/FileFormatter.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.Text.RegularExpressions; - -namespace SPTarkov.Server.Logger; - -public class FileFormatter : AbstractFormatter -{ - public static FileFormatter Default - { - get; - } = new(); - - protected override string ProcessText(string message) - { - foreach (Match match in Regex.Matches(message, @"\x1b\[[0-9]{1,2}(;[0-1]{1,2}){0,1}m")) - { - message = message.Replace(match.Value, ""); - } - - return message.Replace("\"", ""); - } -} diff --git a/SPTarkov.Server/Logger/SptLoggerExtensions.cs b/SPTarkov.Server/Logger/SptLoggerExtensions.cs new file mode 100644 index 00000000..92e7dba3 --- /dev/null +++ b/SPTarkov.Server/Logger/SptLoggerExtensions.cs @@ -0,0 +1,31 @@ +using SPTarkov.Server.Core.Utils; +using SPTarkov.Server.Core.Utils.Logger; + +namespace SPTarkov.Server.Logger; + +public static class SptLoggerExtensions +{ + + public static IHostBuilder UseSptLogger(this IHostBuilder builder) + { + if (builder == null) throw new ArgumentNullException(nameof(builder)); + + builder.ConfigureServices((_, collection) => + { + collection.AddSptLogger(); + }); + + return builder; + } + + public static IServiceCollection AddSptLogger(this IServiceCollection collection) + { + if (collection == null) throw new ArgumentNullException(nameof(collection)); + + collection.AddSingleton(sp => + new SptLoggerProvider(sp.GetService(), sp.GetService(), sp.GetService())); + + return collection; + } + +} diff --git a/SPTarkov.Server/Logger/SptLoggerProvider.cs b/SPTarkov.Server/Logger/SptLoggerProvider.cs new file mode 100644 index 00000000..7cd29988 --- /dev/null +++ b/SPTarkov.Server/Logger/SptLoggerProvider.cs @@ -0,0 +1,25 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Utils; +using SPTarkov.Server.Core.Utils.Logger; + +namespace SPTarkov.Server.Logger; + +[Injectable] +public class SptLoggerProvider(JsonUtil jsonUtil, FileUtil fileUtil, SptLoggerQueueManager queueManager) : ILoggerProvider, ILoggerFactory +{ + private List loggerProviders = new(); + + public void Dispose() + { + } + + public void AddProvider(ILoggerProvider provider) + { + loggerProviders?.Add(provider); + } + + public ILogger CreateLogger(string categoryName) + { + return new SptLoggerWrapper(categoryName, jsonUtil, fileUtil, queueManager); + } +} diff --git a/SPTarkov.Server/Logger/SptLoggerWrapper.cs b/SPTarkov.Server/Logger/SptLoggerWrapper.cs new file mode 100644 index 00000000..ed3d8d98 --- /dev/null +++ b/SPTarkov.Server/Logger/SptLoggerWrapper.cs @@ -0,0 +1,80 @@ +using SPTarkov.Server.Core.Utils; +using SPTarkov.Server.Core.Utils.Logger; +using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; + +namespace SPTarkov.Server.Logger; + +public class SptLoggerWrapper : ILogger +{ + private readonly SptLogger _logger; + + public SptLoggerWrapper(string category, JsonUtil jsonUtil, FileUtil fileUtil, SptLoggerQueueManager queueManager) + { + _logger = new SptLogger(fileUtil, jsonUtil, queueManager); + _logger.OverrideCategory(category); + } + + public IDisposable? BeginScope(TState state) where TState : notnull + { + return null; + } + + public bool IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel) + { + return _logger.IsLogEnabled(ConvertLogLevel(logLevel)); + } + + public void Log(Microsoft.Extensions.Logging.LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func formatter) + { + var level = ConvertLogLevel(logLevel); + switch (level) + { + case LogLevel.Fatal: + _logger.Critical(formatter(state, exception), exception); + break; + case LogLevel.Error: + _logger.Error(formatter(state, exception), exception); + break; + case LogLevel.Warn: + _logger.Warning(formatter(state, exception), exception); + break; + case LogLevel.Info: + _logger.Info(formatter(state, exception), exception); + break; + case LogLevel.Debug: + case LogLevel.Trace: + _logger.Debug(formatter(state, exception), exception); + break; + default: + throw new ArgumentOutOfRangeException(); + } + } + + protected Microsoft.Extensions.Logging.LogLevel ConvertLogLevel(LogLevel level) + { + return level switch + { + LogLevel.Trace => Microsoft.Extensions.Logging.LogLevel.Trace, + LogLevel.Debug => Microsoft.Extensions.Logging.LogLevel.Debug, + LogLevel.Info => Microsoft.Extensions.Logging.LogLevel.Information, + LogLevel.Warn => Microsoft.Extensions.Logging.LogLevel.Warning, + LogLevel.Error => Microsoft.Extensions.Logging.LogLevel.Error, + LogLevel.Fatal => Microsoft.Extensions.Logging.LogLevel.Critical, + _ => throw new ArgumentOutOfRangeException(nameof(level), level, null) + }; + } + + protected LogLevel ConvertLogLevel(Microsoft.Extensions.Logging.LogLevel level) + { + return level switch + { + Microsoft.Extensions.Logging.LogLevel.Trace => LogLevel.Trace, + Microsoft.Extensions.Logging.LogLevel.Debug => LogLevel.Debug, + Microsoft.Extensions.Logging.LogLevel.Information => LogLevel.Info, + Microsoft.Extensions.Logging.LogLevel.Warning => LogLevel.Warn, + Microsoft.Extensions.Logging.LogLevel.Error => LogLevel.Error, + Microsoft.Extensions.Logging.LogLevel.Critical => LogLevel.Fatal, + _ => throw new ArgumentOutOfRangeException(nameof(level), level, null) + }; + } +} diff --git a/SPTarkov.Server/Logger/WebApplicationLogger.cs b/SPTarkov.Server/Logger/WebApplicationLogger.cs deleted file mode 100644 index 2ec7aff2..00000000 --- a/SPTarkov.Server/Logger/WebApplicationLogger.cs +++ /dev/null @@ -1,119 +0,0 @@ -using SPTarkov.Server.Core.Models.Logging; -using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Server.Core.Utils.Logger; -using SPTarkov.Common.Annotations; -using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; - -namespace SPTarkov.Server.Logger; - -[Injectable] -public class SptWebApplicationLogger : ISptLogger -{ - - private readonly ILogger _logger; - private static ILogger? _fileLogger; - - public SptWebApplicationLogger(ILoggerFactory provider) - { - _logger = provider.CreateLogger(typeof(T).FullName ?? "SPT Logger Default Name"); - if (_fileLogger == null) - { - _fileLogger = provider.CreateLogger(typeof(FileLogger).FullName ?? "SPT Logger Default Name"); - } - } - - public void LogWithColor( - string data, - LogTextColor? textColor = null, - LogBackgroundColor? backgroundColor = null, - Exception? ex = null - ) - { - if (textColor != null || backgroundColor != null) - { - _logger.LogInformation(ex, GetColorizedText(data, textColor, backgroundColor)); - } - else - { - _logger.LogInformation(ex, data); - } - } - - public void Success(string data, Exception? ex = null) - { - _logger.LogInformation(ex, GetColorizedText(data, LogTextColor.Green)); - } - - public void Error(string data, Exception? ex = null) - { - _logger.LogError(ex, GetColorizedText(data, LogTextColor.Red)); - } - - public void Warning(string data, Exception? ex = null) - { - _logger.LogWarning(ex, GetColorizedText(data, LogTextColor.Yellow)); - } - - public void Info(string data, Exception? ex = null) - { - _logger.LogInformation(ex, data); - } - - public void Debug(string data, Exception? ex = null) - { - _logger.LogDebug(ex, data); - } - - public void Critical(string data, Exception? ex = null) - { - _logger.LogCritical(ex, GetColorizedText(data, LogTextColor.Black, LogBackgroundColor.Red)); - } - - public void WriteToLogFile(string body, LogLevel level = LogLevel.Info) - { - _fileLogger?.Log(ConvertLogLevel(level), body); - } - - public bool IsLogEnabled(LogLevel level) - { - return _logger.IsEnabled(ConvertLogLevel(level)); - } - - private string GetColorizedText( - string data, - LogTextColor? textColor = null, - LogBackgroundColor? backgroundColor = null - ) - { - var colorString = string.Empty; - if (textColor != null) - { - colorString += ((int) textColor.Value).ToString(); - } - - if (backgroundColor != null) - { - colorString += string.IsNullOrEmpty(colorString) - ? ((int) backgroundColor.Value).ToString() - : $";{((int) backgroundColor.Value).ToString()}"; - } - - return $"\x1b[{colorString}m{data}\x1b[0m"; - } - - protected Microsoft.Extensions.Logging.LogLevel ConvertLogLevel(LogLevel level) - { - return level switch - { - LogLevel.Trace => Microsoft.Extensions.Logging.LogLevel.Trace, - LogLevel.Debug => Microsoft.Extensions.Logging.LogLevel.Debug, - LogLevel.Success - or LogLevel.Info - or LogLevel.Custom => Microsoft.Extensions.Logging.LogLevel.Information, - LogLevel.Warn => Microsoft.Extensions.Logging.LogLevel.Warning, - LogLevel.Error => Microsoft.Extensions.Logging.LogLevel.Error, - LogLevel.Fatal => Microsoft.Extensions.Logging.LogLevel.Critical, - _ => throw new ArgumentOutOfRangeException(nameof(level), level, null) - }; - } -} diff --git a/SPTarkov.Server/Modding/ModDllLoader.cs b/SPTarkov.Server/Modding/ModDllLoader.cs index 12a37895..efd49ab7 100644 --- a/SPTarkov.Server/Modding/ModDllLoader.cs +++ b/SPTarkov.Server/Modding/ModDllLoader.cs @@ -1,4 +1,3 @@ -using System.Reflection; using System.Runtime.Loader; using System.Text.Json; using SPTarkov.Server.Core.Models.Spt.Mod; @@ -49,7 +48,7 @@ public class ModDllLoader } /// - /// Check the provided directory path for a dll and .json file, load into memory + /// Check the provided directory path for a dll and .json file, load into memory /// /// Directory path that contains mod files /// SptMod diff --git a/SPTarkov.Server/Modding/ModLoadOrder.cs b/SPTarkov.Server/Modding/ModLoadOrder.cs index 51040520..76089d15 100644 --- a/SPTarkov.Server/Modding/ModLoadOrder.cs +++ b/SPTarkov.Server/Modding/ModLoadOrder.cs @@ -5,9 +5,9 @@ namespace SPTarkov.Server.Modding; public class ModLoadOrder(ICloner cloner) { + protected Dictionary loadOrder = new(); protected Dictionary mods = new(); protected Dictionary modsAvailable = new(); - protected Dictionary loadOrder = new(); public Dictionary SetModList(Dictionary mods) { diff --git a/SPTarkov.Server/Modding/ModValidator.cs b/SPTarkov.Server/Modding/ModValidator.cs index e77cb38f..17cb1555 100644 --- a/SPTarkov.Server/Modding/ModValidator.cs +++ b/SPTarkov.Server/Modding/ModValidator.cs @@ -1,10 +1,10 @@ -using SPTarkov.Server.Core.Models.Spt.Config; +using SPTarkov.Common.Semver; +using SPTarkov.Server.Core.Models.Spt.Config; using SPTarkov.Server.Core.Models.Spt.Mod; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Semver; using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel; namespace SPTarkov.Server.Modding; @@ -20,8 +20,8 @@ public class ModValidator( { protected readonly string basepath = "user/mods/"; protected readonly string modOrderPath = "user/mods/order.json"; - protected Dictionary order = []; protected Dictionary imported = []; + protected Dictionary order = []; protected HashSet skippedMods = []; protected CoreConfig sptConfig = configServer.GetConfig(); @@ -147,7 +147,10 @@ public class ModValidator( { if (ShouldSkipMod(mod.PackageJson)) { - logger.Warning(localisationService.GetText("modloader-skipped_mod", new { mod })); + logger.Warning(localisationService.GetText("modloader-skipped_mod", new + { + mod + })); continue; } @@ -174,7 +177,7 @@ public class ModValidator( } /// - /// Check for duplicate mods loaded, show error if any + /// Check for duplicate mods loaded, show error if any /// /// Dictionary of mod package.json data protected void CheckForDuplicateMods(Dictionary modPackageData) @@ -184,7 +187,7 @@ public class ModValidator( foreach (var mod in modPackageData.Values) { var name = $"{mod.Author}-{mod.Name}"; - groupedMods.Add(name, [..(groupedMods.GetValueOrDefault(name) ?? []), mod]); + groupedMods.Add(name, [..groupedMods.GetValueOrDefault(name) ?? [], mod]); // if there's more than one entry for a given mod it means there's at least 2 mods with the same author and name trying to load. if (groupedMods[name].Count > 1 && !skippedMods.Contains(name)) @@ -201,7 +204,7 @@ public class ModValidator( } /// - /// Returns an array of valid mods + /// Returns an array of valid mods /// /// mods to validate /// array of mod folder names @@ -212,7 +215,7 @@ public class ModValidator( /// - /// Is the passed in mod compatible with the running server version + /// Is the passed in mod compatible with the running server version /// /// Mod to check compatibility with SPT /// True if compatible @@ -234,9 +237,9 @@ public class ModValidator( logger.Error( localisationService.GetText("modloader-outdated_sptversion_field", new { - modName = modName, + modName, modVersion = mod.Version, - desiredSptVersion = mod.SptVersion, + desiredSptVersion = mod.SptVersion }) ); @@ -247,7 +250,7 @@ public class ModValidator( } /// - /// Read loadorder.json (create if doesnt exist) and return sorted list of mods + /// Read loadorder.json (create if doesnt exist) and return sorted list of mods /// /// string array of sorted mod names public List SortModsLoadOrder() @@ -263,7 +266,7 @@ public class ModValidator( } /// - /// Compile mod and add into class property "imported" + /// Compile mod and add into class property "imported" /// /// Name of mod to compile/add protected void AddMod(SptMod mod) @@ -275,13 +278,13 @@ public class ModValidator( { name = mod.PackageJson.Name, version = mod.PackageJson.Version, - author = mod.PackageJson.Author, + author = mod.PackageJson.Author }) ); } /// - /// Checks if a given mod should be loaded or skipped + /// Checks if a given mod should be loaded or skipped /// /// mod package.json data /// @@ -309,7 +312,7 @@ public class ModValidator( localisationService.GetText("modloader-missing_dependency", new { mod = modName, - modDependency = modDependency + modDependency }) ); return false; @@ -321,9 +324,9 @@ public class ModValidator( localisationService.GetText("modloader-outdated_dependency", new { mod = modName, - modDependency = modDependency, + modDependency, currentVersion = loadedMods[modDependency].Version, - requiredVersion = requiredVersion + requiredVersion }) ); return false; @@ -351,7 +354,7 @@ public class ModValidator( { author = mod.Author, name = mod.Name, - incompatibleModName = incompatibleModName + incompatibleModName }) ); return false; @@ -362,7 +365,7 @@ public class ModValidator( } /// - /// Validate a mod passes a number of checks + /// Validate a mod passes a number of checks /// /// name of mod in /mods/ to validate /// true if valid diff --git a/SPTarkov.Server/Program.cs b/SPTarkov.Server/Program.cs index 24ad31c9..1155478e 100644 --- a/SPTarkov.Server/Program.cs +++ b/SPTarkov.Server/Program.cs @@ -1,17 +1,16 @@ using System.Runtime; +using SPTarkov.Common.Semver; +using SPTarkov.Common.Semver.Implementations; +using SPTarkov.DI; using SPTarkov.Server.Core.Context; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.External; using SPTarkov.Server.Core.Models.Spt.Mod; using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Utils; -using Serilog; -using Serilog.Exceptions; -using SPTarkov.Common.Semver; -using SPTarkov.Common.Semver.Implementations; +using SPTarkov.Server.Core.Utils.Logger; using SPTarkov.Server.Logger; using SPTarkov.Server.Modding; -using SPTarkov.DI; namespace SPTarkov.Server; @@ -44,6 +43,7 @@ public static class Program var serviceProvider = builder.Services.BuildServiceProvider(); var logger = serviceProvider.GetService().CreateLogger("Server"); + try { var watermark = serviceProvider.GetService(); @@ -88,32 +88,18 @@ public static class Program Console.WriteLine(ex); logger.LogCritical(ex, "Critical exception, stopping server..."); } + finally + { + serviceProvider.GetService>()?.DumpAndStop(); + } } private static WebApplicationBuilder CreateNewHostBuilder(string[]? args = null) { var builder = WebApplication.CreateBuilder(args); builder.Logging.ClearProviders(); - - if (ProgramStatics.DEBUG()) - { - builder.Configuration.AddJsonFile("appsettings.Development.json", true, true); - } - else - { - builder.Configuration.AddJsonFile("appsettings.json", true, true); - } - - builder.Host.UseSerilog((context, provider, logger) => - { - logger - .ReadFrom.Configuration(context.Configuration) - .ReadFrom.Services(provider) - .Enrich.FromLogContext() - .Enrich.WithExceptionDetails() - .Enrich.WithThreadName() - .Enrich.WithThreadId(); - }); + builder.Configuration.SetBasePath(Directory.GetCurrentDirectory()); + builder.Host.UseSptLogger(); return builder; } @@ -132,7 +118,7 @@ public static class Program DependencyInjectionRegistrator.RegisterSptComponents(typeof(Program).Assembly, typeof(App).Assembly, builder.Services); // register the mod validator components var provider = builder.Services - .AddScoped(typeof(ISptLogger), typeof(SptWebApplicationLogger)) + .AddScoped(typeof(ISptLogger), typeof(SptLogger)) .AddScoped(typeof(ISemVer), typeof(SemanticVersioningSemVer)) .AddSingleton() .AddSingleton() diff --git a/SPTarkov.Server/SPTarkov.Server.csproj b/SPTarkov.Server/SPTarkov.Server.csproj index 21b5bbac..9a0764bc 100644 --- a/SPTarkov.Server/SPTarkov.Server.csproj +++ b/SPTarkov.Server/SPTarkov.Server.csproj @@ -29,12 +29,6 @@ - - - - - - @@ -42,14 +36,12 @@ Always True - - - + Always - - + + Always - + diff --git a/SPTarkov.Server/appsettings.Development.json b/SPTarkov.Server/appsettings.Development.json deleted file mode 100644 index d54831b7..00000000 --- a/SPTarkov.Server/appsettings.Development.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "Serilog": { - "Using": [ - "Serilog.Sinks.Console", - "Serilog.Sinks.File" - ], - "MinimumLevel": { - "Default": "Verbose", - "Override": { - "Microsoft": "Verbose" - } - }, - "WriteTo": [ - { - "Name": "Logger", - "Args": { - "configureLogger": { - "Filter": [ - { - "Name": "ByExcluding", - "Args": { - "expression": "StartsWith(SourceContext, 'SPTarkov.Server.Core.Servers.Http.RequestLogger')" - } - }, - { - "Name": "ByExcluding", - "Args": { - "expression": "SourceContext like 'Microsoft%'" - } - } - ], - "WriteTo": [ - { - "Name": "Console", - "Args": { - "formatter": "SPTarkov.Server.Logger.ConsoleFormatter::Default, SPTarkov.Server" - } - }, - { - "Name": "File", - "Args": { - "path": "./user/logs/spt/spt.txt", - "rollingInterval": "Day", - "fileSizeLimitBytes": "20971520", - "rollOnFileSizeLimit": true, - "formatter": "SPTarkov.Server.Logger.FileFormatter::Default, SPTarkov.Server" - } - } - ] - } - } - }, - { - "Name": "Logger", - "Args": { - "configureLogger": { - "Filter": [ - { - "Name": "ByIncludingOnly", - "Args": { - "expression": "StartsWith(SourceContext, 'SPTarkov.Server.Core.Servers.Http.RequestLogger')" - } - } - ], - "WriteTo": [ - { - "Name": "File", - "Args": { - "formatter": "SPTarkov.Server.Logger.FileFormatter::Default, SPTarkov.Server", - "path": "./user/logs/requests/requests.txt", - "rollingInterval": "Day", - "fileSizeLimitBytes": "20971520", - "rollOnFileSizeLimit": true - } - } - ] - } - } - }, - { - "Name": "Logger", - "Args": { - "configureLogger": { - "Filter": [ - { - "Name": "ByIncludingOnly", - "Args": { - "expression": "SourceContext like 'Microsoft%'" - } - } - ], - "WriteTo": [ - { - "Name": "File", - "Args": { - "path": "./user/logs/kestrel/kestrel.txt", - "rollingInterval": "Day", - "fileSizeLimitBytes": "20971520", - "rollOnFileSizeLimit": true, - "outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj}{NewLine}{Exception}" - } - } - ] - } - } - } - ], - "Enrich": [ - "FromLogContext", - "WithExceptionDetails", - "WithThreadId" - ] - } -} diff --git a/SPTarkov.Server/appsettings.json b/SPTarkov.Server/appsettings.json deleted file mode 100644 index fad010ad..00000000 --- a/SPTarkov.Server/appsettings.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "Serilog": { - "Using": [ - "Serilog.Sinks.Console", - "Serilog.Sinks.File" - ], - "MinimumLevel": { - "Default": "Verbose", - "Override": { - "Microsoft": "Verbose" - } - }, - "WriteTo": [ - { - "Name": "Logger", - "Args": { - "configureLogger": { - "Filter": [ - { - "Name": "ByExcluding", - "Args": { - "expression": "StartsWith(SourceContext, 'SPTarkov.Server.Core.Servers.Http.RequestLogger')" - } - }, - { - "Name": "ByExcluding", - "Args": { - "expression": "SourceContext like 'Microsoft%'" - } - } - ], - "WriteTo": [ - { - "Name": "Console", - "Args": { - "formatter": "SPTarkov.Server.Logger.ConsoleFormatter::Default, SPTarkov.Server" - } - }, - { - "Name": "File", - "Args": { - "path": "./user/logs/spt/spt.txt", - "rollingInterval": "Day", - "fileSizeLimitBytes": "20971520", - "rollOnFileSizeLimit": true, - "formatter": "SPTarkov.Server.Logger.FileFormatter::Default, SPTarkov.Server" - } - } - ] - } - } - } - ], - "Enrich": [ - "FromLogContext", - "WithExceptionDetails", - "WithThreadId" - ] - } -} diff --git a/SPTarkov.Server/sptLogger.Development.json b/SPTarkov.Server/sptLogger.Development.json new file mode 100644 index 00000000..6d8cbb1c --- /dev/null +++ b/SPTarkov.Server/sptLogger.Development.json @@ -0,0 +1,71 @@ +{ + "loggers": [ + { + "type": "File", + "logLevel": "Trace", + "format": "[%date% %time%][%level%][%logger%] %message%", + "filePath": "./user/logs/kestrel/kestrel.txt", + "filters": [ + + { + "type": "Include", + "name": "Microsoft\\.AspNetCore\\.Server\\.Kestrel.*", + "matchingType": "Regex" + } + ] + }, + { + "type": "File", + "logLevel": "Trace", + "format": "[%date% %time%][%level%][%logger%] %message%", + "filePath": "./user/logs/spt/spt.txt", + "filters": [ + { + "type": "Exclude", + "name": ".*RequestLogger", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": "Microsoft\\.AspNetCore\\.Server\\.Kestrel.*", + "matchingType": "Regex" + } + ] + }, + { + "type": "File", + "logLevel": "Trace", + "format": "[%date% %time%][%level%][%logger%] %message%", + "filePath": "./user/logs/requests/requests.txt", + "filters": [ + { + "type": "Include", + "name": ".*RequestLogger", + "matchingType": "Regex" + } + ] + }, + { + "type": "Console", + "logLevel": "Trace", + "format": "%message%", + "filters": [ + { + "type": "Exclude", + "name": "Microsoft.*", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": ".*FileLogger", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": ".*RequestLogger", + "matchingType": "Regex" + } + ] + } + ] +} diff --git a/SPTarkov.Server/sptLogger.json b/SPTarkov.Server/sptLogger.json new file mode 100644 index 00000000..8d5b4094 --- /dev/null +++ b/SPTarkov.Server/sptLogger.json @@ -0,0 +1,57 @@ +{ + "loggers": [ + { + "type": "File", + "logLevel": "Trace", + "format": "[%date% %time%][%level%][%logger%] %message%", + "filePath": "./user/logs/spt/spt.txt", + "filters": [ + { + "type": "Exclude", + "name": ".*RequestLogger", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": "Microsoft\\.AspNetCore\\.Server\\.Kestrel.*", + "matchingType": "Regex" + } + ] + }, + { + "type": "File", + "logLevel": "Trace", + "format": "[%date% %time%][%level%][%logger%] %message%", + "filePath": "./user/logs/requests/requests.txt", + "filters": [ + { + "type": "Include", + "name": ".*RequestLogger", + "matchingType": "Regex" + } + ] + }, + { + "type": "Console", + "logLevel": "Info", + "format": "%message%", + "filters": [ + { + "type": "Exclude", + "name": "Microsoft.*", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": ".*FileLogger", + "matchingType": "Regex" + }, + { + "type": "Exclude", + "name": ".*RequestLogger", + "matchingType": "Regex" + } + ] + } + ] +} diff --git a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.cs b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.cs index 711f19cd..dfcc126e 100644 --- a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.cs +++ b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.cs @@ -1,3 +1,4 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Helpers; using SPTarkov.Server.Core.Models.Eft.Common.Tables; @@ -7,7 +8,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; using Path = System.IO.Path; namespace HideoutCraftQuestIdGenerator; @@ -137,8 +137,8 @@ public class HideoutCraftQuestIdGenerator( } // Try to find the quest that matches this production - var questProductionOutputs = _questProductionOutputList.Where( - output => output.ItemTemplate == production.EndProduct && output.Quantity == production.Count + var questProductionOutputs = _questProductionOutputList.Where(output => + output.ItemTemplate == production.EndProduct && output.Quantity == production.Count ) .ToList(); diff --git a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.csproj b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.csproj index 803e4cab..5eb50062 100644 --- a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.csproj +++ b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGenerator.csproj @@ -1,6 +1,6 @@ - + true @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGeneratorLauncher.cs b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGeneratorLauncher.cs index af289818..d33e2da0 100644 --- a/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGeneratorLauncher.cs +++ b/Tools/HideoutCraftQuestIdGenerator/HideoutCraftQuestIdGeneratorLauncher.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Utils; using Microsoft.Extensions.DependencyInjection; using SPTarkov.DI; +using SPTarkov.Server.Core.Utils; namespace HideoutCraftQuestIdGenerator; diff --git a/Tools/HideoutCraftQuestIdGenerator/SptBasicLogger.cs b/Tools/HideoutCraftQuestIdGenerator/SptBasicLogger.cs index 5a53f0d9..b027dddd 100644 --- a/Tools/HideoutCraftQuestIdGenerator/SptBasicLogger.cs +++ b/Tools/HideoutCraftQuestIdGenerator/SptBasicLogger.cs @@ -1,7 +1,7 @@ +using SPTarkov.Common.Annotations; using SPTarkov.Server.Core.Models.Logging; using SPTarkov.Server.Core.Models.Spt.Logging; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace HideoutCraftQuestIdGenerator; @@ -51,13 +51,24 @@ public class SptBasicLogger : ISptLogger Console.WriteLine($"{categoryName}: {data}"); } - public void WriteToLogFile(string body, LogLevel level = LogLevel.Info) + public void Log( + LogLevel level, + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) { - Console.WriteLine($"{categoryName}: {body}"); + throw new NotImplementedException(); } public bool IsLogEnabled(LogLevel level) { return true; } + + public void DumpAndStop() + { + throw new NotImplementedException(); + } } diff --git a/Tools/ItemTplGenerator/ItemTplGenerator.cs b/Tools/ItemTplGenerator/ItemTplGenerator.cs index 0842064c..2917e13d 100644 --- a/Tools/ItemTplGenerator/ItemTplGenerator.cs +++ b/Tools/ItemTplGenerator/ItemTplGenerator.cs @@ -1,3 +1,5 @@ +using SPTarkov.Common.Annotations; +using SPTarkov.Common.Extensions; using SPTarkov.Server.Core.Callbacks; using SPTarkov.Server.Core.DI; using SPTarkov.Server.Core.Helpers; @@ -7,8 +9,6 @@ using SPTarkov.Server.Core.Models.Utils; using SPTarkov.Server.Core.Servers; using SPTarkov.Server.Core.Services; using SPTarkov.Server.Core.Utils; -using SPTarkov.Common.Annotations; -using SPTarkov.Common.Extensions; using Path = System.IO.Path; namespace ItemTplGenerator; @@ -77,7 +77,7 @@ public class ItemTplGenerator( } /// - /// Return an object containing all items in the game with a generated name + /// Return an object containing all items in the game with a generated name /// /// An object containing a generated item name to item ID association private Dictionary GenerateItemsObject() @@ -227,7 +227,7 @@ public class ItemTplGenerator( } /// - /// Clear any non-alpha numeric characters, and fix multiple underscores + /// Clear any non-alpha numeric characters, and fix multiple underscores /// /// The enum key to sanitize /// The sanitized enum key @@ -320,7 +320,7 @@ public class ItemTplGenerator( } /// - /// Generate a prefix for the passed in item + /// Generate a prefix for the passed in item /// /// The item to generate the prefix for /// The prefix of the given item @@ -419,7 +419,7 @@ public class ItemTplGenerator( } /// - /// Return the name of the passed in item, formatted for use in an enum + /// Return the name of the passed in item, formatted for use in an enum /// /// The item to generate the name for /// The name of the given item diff --git a/Tools/ItemTplGenerator/ItemTplGenerator.csproj b/Tools/ItemTplGenerator/ItemTplGenerator.csproj index 803e4cab..5eb50062 100644 --- a/Tools/ItemTplGenerator/ItemTplGenerator.csproj +++ b/Tools/ItemTplGenerator/ItemTplGenerator.csproj @@ -1,6 +1,6 @@ - + true @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/Tools/ItemTplGenerator/ItemTplGeneratorLauncher.cs b/Tools/ItemTplGenerator/ItemTplGeneratorLauncher.cs index 9d9ce0c9..74f5b967 100644 --- a/Tools/ItemTplGenerator/ItemTplGeneratorLauncher.cs +++ b/Tools/ItemTplGenerator/ItemTplGeneratorLauncher.cs @@ -1,6 +1,6 @@ -using SPTarkov.Server.Core.Utils; -using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection; using SPTarkov.DI; +using SPTarkov.Server.Core.Utils; namespace ItemTplGenerator; diff --git a/Tools/ItemTplGenerator/SptBasicLogger.cs b/Tools/ItemTplGenerator/SptBasicLogger.cs index 346ec495..5e032590 100644 --- a/Tools/ItemTplGenerator/SptBasicLogger.cs +++ b/Tools/ItemTplGenerator/SptBasicLogger.cs @@ -1,7 +1,7 @@ -using SPTarkov.Server.Core.Models.Logging; +using SPTarkov.Common.Annotations; +using SPTarkov.Server.Core.Models.Logging; using SPTarkov.Server.Core.Models.Spt.Logging; using SPTarkov.Server.Core.Models.Utils; -using SPTarkov.Common.Annotations; namespace ItemTplGenerator; @@ -51,6 +51,17 @@ public class SptBasicLogger : ISptLogger Console.WriteLine($"{categoryName}: {data}"); } + public void Log( + LogLevel level, + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) + { + throw new NotImplementedException(); + } + public void WriteToLogFile(string body, LogLevel level = LogLevel.Info) { Console.WriteLine($"{categoryName}: {body}"); @@ -60,4 +71,9 @@ public class SptBasicLogger : ISptLogger { return true; } + + public void DumpAndStop() + { + throw new NotImplementedException(); + } } diff --git a/UnitTests/Mock/MockLogger.cs b/UnitTests/Mock/MockLogger.cs index a5fe96f5..0015dc59 100644 --- a/UnitTests/Mock/MockLogger.cs +++ b/UnitTests/Mock/MockLogger.cs @@ -41,6 +41,17 @@ public class MockLogger : ISptLogger Console.WriteLine(data); } + public void Log( + LogLevel level, + string data, + LogTextColor? textColor = null, + LogBackgroundColor? backgroundColor = null, + Exception? ex = null + ) + { + throw new NotImplementedException(); + } + public void WriteToLogFile(string body, LogLevel level = LogLevel.Info) { throw new NotImplementedException(); @@ -51,6 +62,11 @@ public class MockLogger : ISptLogger return true; } + public void DumpAndStop() + { + throw new NotImplementedException(); + } + public void LogWithColor( string data, Exception? ex = null, diff --git a/UnitTests/Tests/Test.cs b/UnitTests/Tests/Test.cs index d50e4716..989b5e08 100644 --- a/UnitTests/Tests/Test.cs +++ b/UnitTests/Tests/Test.cs @@ -12,7 +12,7 @@ public class Test [TestInitialize] public void Setup() { - var importer = new ImporterUtil(new MockLogger(), new FileUtil(new MockLogger()), new JsonUtil()); + var importer = new ImporterUtil(new MockLogger(), new FileUtil(), new JsonUtil()); var loadTask = importer.LoadRecursiveAsync("./TestAssets/"); loadTask.Wait(); _templates = loadTask.Result; diff --git a/UnitTests/Tests/Utils/ClonerTest.cs b/UnitTests/Tests/Utils/ClonerTest.cs index b09e6858..6fb3979e 100644 --- a/UnitTests/Tests/Utils/ClonerTest.cs +++ b/UnitTests/Tests/Utils/ClonerTest.cs @@ -8,19 +8,19 @@ namespace UnitTests.Tests.Utils; [TestClass] public class ClonerTest { - private Templates? _templates; - - private ICloner _jsonCloner; - private ICloner _reflectionsCloner; private ICloner _fastCloner; + private ICloner _jsonCloner; + private JsonUtil _jsonUtil; + private ICloner _reflectionsCloner; + private Templates? _templates; [TestInitialize] public void Setup() { _jsonUtil = new JsonUtil(); - var importer = new ImporterUtil(new MockLogger(), new FileUtil(new MockLogger()), _jsonUtil); + var importer = new ImporterUtil(new MockLogger(), new FileUtil(), _jsonUtil); var loadTask = importer.LoadRecursiveAsync("./TestAssets/"); loadTask.Wait(); _templates = loadTask.Result; diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj index 019ba27f..4c7a88f5 100644 --- a/UnitTests/UnitTests.csproj +++ b/UnitTests/UnitTests.csproj @@ -1,13 +1,13 @@ - + enable - + @@ -17,9 +17,9 @@ - - - + + + diff --git a/server-csharp.sln.DotSettings b/server-csharp.sln.DotSettings index a2a24c46..34e0f2f3 100644 --- a/server-csharp.sln.DotSettings +++ b/server-csharp.sln.DotSettings @@ -1,6 +1,7 @@  True True + True True True True \ No newline at end of file